Skip to content

Bump ktor-server-core from 1.3.1 to 1.5.0#43

Closed
dependabot-preview[bot] wants to merge 1 commit into
masterfrom
dependabot/maven/io.ktor-ktor-server-core-1.5.0
Closed

Bump ktor-server-core from 1.3.1 to 1.5.0#43
dependabot-preview[bot] wants to merge 1 commit into
masterfrom
dependabot/maven/io.ktor-ktor-server-core-1.5.0

Conversation

@dependabot-preview

Copy link
Copy Markdown
Contributor

Bumps ktor-server-core from 1.3.1 to 1.5.0.

Release notes

Sourced from ktor-server-core's releases.

1.5.0

Published 22 Dec 2020

  • Fixed crash when sending large responses in 1.4.2 (KTOR-1369)
  • Introduced URLBuilder function to append paths (KTOR-403)
  • Allowed OkHttpConfig to configure WebSocket.Factory (KTOR-951)
  • Get client certificate information from request (KTOR-424)
  • Fixed quoting Content-Disposition additional parameters (KTOR-455)
  • Support Java HTTP Client (KTOR-348)
  • Serializing collections of different element types (KTOR-1163)
  • Introduced Netty tcpKeepAlive option (KTOR-368)
  • Implemented development mode for Ktor (KTOR-1184)
  • Implemented proper unhandled exception handling strategy (KTOR-835)
  • Added OAuth feature config to avoid Dropbox issue (KTOR-715)
  • Fixed trailing slashes handling in routing (KTOR-372)
  • Added CIO client proxy tunneling support (KTOR-1458)
  • Supported Sealed Classes inside Session-Objects (KTOR-826)
  • Fixed code autoreload (KTOR-664)
  • Added response text to the message of ResponseException and derived exceptions (KTOR-844)
  • Added ability to send cookies with HttpRequestBuilder (KTOR-926)
  • Added warning to HTTP/2 push API (KTOR-1329)
  • Fixed parsing Authorization header diagnostics (KTOR-1406)
  • Fixed CORS character encoding issue (KTOR-1370)
  • Added CORS anyHeader in feature configuration (KTOR-977, KTOR-1263)
  • Added curl engine option sslVerify (KTOR-1093)
  • Fixed client response validation in some cases (KTOR-1412)
  • Introduced support for pre-compresed files (KTOR-1447)
  • Fixed Apache client engine sometimes hits an unrecoverable socket timeout when using ChannelWriterContent (KTOR-1149)
  • Fixed typo val socketTimeout in CIOEngineConfig cause it's a property in the config (KTOR-1240)
  • Added excludeSuffix to HttpsRedirect feature (KTOR-1197)
  • Fixed CIO client connectRetryAttempts = 0 handling (KTOR-1125)
  • Added option to use specific alias from keystore in CIO TLSConfigBuilder JVM (KTOR-941)

1.4.3

Published 1 Dec 2020

  • Client: URL encode / escaping is wrong (KTOR-341)
  • HTTP/2 push fails with netty engine (KTOR-800)
  • Request headers exceeding expected threshold are not handled correctly (KTOR-905)
  • iOS client fails with CoroutinesInternalError when Logging is used (KTOR-924)
  • Experimental API and compatibility guarantees (KTOR-1035)
  • CIO: client engine exceptions are both logged and thrown (KTOR-1127)
  • Timeout feature: android engine throws Java's SocketTimeoutException instead of ConnectTimeoutException (KTOR-1229)
  • Input.readTextExactBytes(n) on empty input different behavior per platform (KTOR-1235)
  • HttpRedirect feature alters Location header value (KTOR-1236)
Changelog

Sourced from ktor-server-core's changelog.

1.5.0

Published 22 Dec 2020

  • Fixed crash when sending large responses in 1.4.2 (KTOR-1369)
  • Introduced URLBuilder function to append paths (KTOR-403)
  • Allowed OkHttpConfig to configure WebSocket.Factory (KTOR-951)
  • Get client certificate information from request (KTOR-424)
  • Fixed quoting Content-Disposition additional parameters (KTOR-455)
  • Support Java HTTP Client (KTOR-348)
  • Serializing collections of different element types (KTOR-1163)
  • Introduced Netty tcpKeepAlive option (KTOR-368)
  • Implemented development mode for Ktor (KTOR-1184)
  • Implemented proper unhandled exception handling strategy (KTOR-835)
  • Added OAuth feature config to avoid Dropbox issue (KTOR-715)
  • Fixed trailing slashes handling in routing (KTOR-372)
  • Added CIO client proxy tunneling support (KTOR-1458)
  • Supported Sealed Classes inside Session-Objects (KTOR-826)
  • Fixed code autoreload (KTOR-664)
  • Added response text to the message of ResponseException and derived exceptions (KTOR-844)
  • Added ability to send cookies with HttpRequestBuilder (KTOR-926)
  • Added warning to HTTP/2 push API (KTOR-1329)
  • Fixed parsing Authorization header diagnostics (KTOR-1406)
  • Fixed CORS character encoding issue (KTOR-1370)
  • Added CORS anyHeader in feature configuration (KTOR-977, KTOR-1263)
  • Added curl engine option sslVerify (KTOR-1093)
  • Fixed client response validation in some cases (KTOR-1412)
  • Introduced support for pre-compresed files (KTOR-1447)
  • Fixed Apache client engine sometimes hits an unrecoverable socket timeout when using ChannelWriterContent (KTOR-1149)
  • Fixed typo val socketTimeout in CIOEngineConfig cause it's a property in the config (KTOR-1240)
  • Added excludeSuffix to HttpsRedirect feature (KTOR-1197)
  • Fixed CIO client connectRetryAttempts = 0 handling (KTOR-1125)
  • Added option to use specific alias from keystore in CIO TLSConfigBuilder JVM (KTOR-941)

1.4.3

Published 1 Dec 2020

  • Client: URL encode / escaping is wrong (KTOR-341)
  • HTTP/2 push fails with netty engine (KTOR-800)
  • Request headers exceeding expected threshold are not handled correctly (KTOR-905)
  • iOS client fails with CoroutinesInternalError when Logging is used (KTOR-924)
  • Experimental API and compatibility guarantees (KTOR-1035)
  • CIO: client engine exceptions are both logged and thrown (KTOR-1127)
  • Timeout feature: android engine throws Java's SocketTimeoutException instead of ConnectTimeoutException (KTOR-1229)
  • Input.readTextExactBytes(n) on empty input different behavior per platform (KTOR-1235)
  • HttpRedirect feature alters Location header value (KTOR-1236)
Commits
  • f028b0c Fix missing dependency
  • a1ab17e KTOR-348 Support Java HTTP Client (#2187)
  • cff7346 Rewrite ApacheRequestProducer (#2191)
  • 3e325b2 KTOR-1195 Introduce PublicAPICandidate annotation
  • a3a4552 KTOR-1263 Allow any header in cors configuration
  • 96b149b KTOR-341 Add tests to check correct url escaping (#2183)
  • d361be0 KTOR-1197 fix failing test
  • b8f66a6 KTOR-1240 Fix socketTimeout val in EndpointConfig (#2030) (#2049)
  • fb0919d KTOR-1215 Add explicit visibility modifier (#2166)
  • 40545cb KTOR-1197 Add excludeSuffix to HttpsRedirect feature
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
  • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
  • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
  • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
  • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
  • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot dashboard:

  • Update frequency (including time of day and day of week)
  • Pull request limits (per update run and/or open at any time)
  • Out-of-range updates (receive only lockfile updates, if desired)
  • Security updates (receive only security updates, if desired)

Bumps [ktor-server-core](https://github.com/ktorio/ktor) from 1.3.1 to 1.5.0.
- [Release notes](https://github.com/ktorio/ktor/releases)
- [Changelog](https://github.com/ktorio/ktor/blob/master/CHANGELOG.md)
- [Commits](ktorio/ktor@1.3.1...1.5.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
@dependabot-preview dependabot-preview Bot added the dependencies Pull requests that update a dependency file label Dec 22, 2020
@dependabot-preview

Copy link
Copy Markdown
Contributor Author

Superseded by #45.

@dependabot-preview dependabot-preview Bot deleted the dependabot/maven/io.ktor-ktor-server-core-1.5.0 branch January 28, 2021 20:16
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants