Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the all group with 19 updates #981

Merged
merged 1 commit into from
Nov 4, 2024
Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 4, 2024

Bumps the all group with 19 updates:

Package From To
com.fasterxml.jackson.module:jackson-module-kotlin 2.18.0 2.18.1
com.fasterxml.jackson.datatype:jackson-datatype-jsr310 2.18.0 2.18.1
com.fasterxml.jackson.dataformat:jackson-dataformat-xml 2.18.0 2.18.1
io.ktor:ktor-client-apache 3.0.0 3.0.1
io.ktor:ktor-client-jackson 3.0.0 3.0.1
com.charleskorn.kaml:kaml 0.61.0 0.62.2
io.ktor:ktor-serialization-kotlinx-json 3.0.0 3.0.1
io.ktor:ktor-client-cio 3.0.0 3.0.1
io.ktor:ktor-server-content-negotiation 3.0.0 3.0.1
io.ktor:ktor-server-cio 3.0.0 3.0.1
io.ktor:ktor-server-resources 3.0.0 3.0.1
io.ktor:ktor-server-websockets 3.0.0 3.0.1
io.ktor:ktor-client-content-negotiation 3.0.0 3.0.1
io.ktor:ktor-server-auth-jwt 3.0.0 3.0.1
io.ktor:ktor-server-metrics-micrometer 3.0.0 3.0.1
io.ktor:ktor-server-call-logging 3.0.0 3.0.1
io.ktor:ktor-server-default-headers 3.0.0 3.0.1
io.ktor:ktor-server-caching-headers 3.0.0 3.0.1
io.ktor:ktor-server-status-pages 3.0.0 3.0.1

Updates com.fasterxml.jackson.module:jackson-module-kotlin from 2.18.0 to 2.18.1

Commits
  • 3f1c827 [maven-release-plugin] prepare release jackson-module-kotlin-2.18.1
  • fb5b731 Prep for 2.18.1 release
  • f27a76e Merge pull request #836 from k163377/fix-docs
  • 62e4015 Fix docs
  • 3b48486 Back to snapshot dep
  • ad4b22e [maven-release-plugin] prepare for next development iteration
  • See full diff in compare view

Updates com.fasterxml.jackson.datatype:jackson-datatype-jsr310 from 2.18.0 to 2.18.1

Updates com.fasterxml.jackson.dataformat:jackson-dataformat-xml from 2.18.0 to 2.18.1

Commits
  • 7411dc6 [maven-release-plugin] prepare release jackson-dataformat-xml-2.18.1
  • 23caee5 Prepare for 2.18.1 release
  • 7375278 Merge branch '2.18' of github.com:FasterXML/jackson-dataformat-xml into 2.18
  • 5265704 Add test to verify #517 still failing (#673)
  • a5ab6a7 Merge branch '2.17' into 2.18
  • 7da4860 Fix bad renaming (went to 2.17 instead of master)
  • eff8f8a Modify surefire plugin failing test scope (#674)
  • 29d946c Manual merge of pom.xml
  • 90f48fb ...
  • c262e76 Merge branch '2.17' into 2.18
  • Additional commits viewable in compare view

Updates io.ktor:ktor-client-apache from 3.0.0 to 3.0.1

Release notes

Sourced from io.ktor:ktor-client-apache's releases.

3.0.1

Published 29 October 2024

Bugfixes

  • Remove space from the default client user agent (KTOR-7655)
  • Url.segments throws on URLs with root path (KTOR-7625)
  • Digest Auth does not implement nc parameter correctly according to RFC 7616 (KTOR-4318)
  • about:blank URL should be parsed correctly as about:blank (KTOR-7410)
  • ByteReadChannel.{readShort/readInt/readLong} could lead to CPU-bound indefinite loop since 3.0.0 (KTOR-7571)
  • CIO: Requests face connection timeouts when executed on the Android main dispatcher (KTOR-6803)
  • receiveMultipart fails with "IOException: Failed to parse multipart" when content-type is capitalized (KTOR-7596)

Improvements

  • WebSockets logging: The plugin calls toString() unnecessarily on transformed response body (KTOR-7623)
  • INFO log message with all server interceptors on server startup (KTOR-7326)
  • Digest auth: username and cnonce parameters aren't surrounded with quotes (KTOR-7561)
  • ContentType.fromFilePath for newer file formats HEIC, AVIF, HEIF (KTOR-7536)
  • Support missing native targets in ktor-serialization-kotlinx-xml (KTOR-7583)
Changelog

Sourced from io.ktor:ktor-client-apache's changelog.

3.0.1

Published 29 October 2024

Bugfixes

  • Remove space from the default client user agent (KTOR-7655)
  • Url.segments throws on URLs with root path (KTOR-7625)
  • Digest Auth does not implement nc parameter correctly according to RFC 7616 (KTOR-4318)
  • about:blank URL should be parsed correctly as about:blank (KTOR-7410)
  • ByteReadChannel.{readShort/readInt/readLong} could lead to CPU-bound indefinite loop since 3.0.0 (KTOR-7571)
  • CIO: Requests face connection timeouts when executed on the Android main dispatcher (KTOR-6803)
  • receiveMultipart fails with "IOException: Failed to parse multipart" when content-type is capitalized (KTOR-7596)

Improvements

  • WebSockets logging: The plugin calls toString() unnecessarily on transformed response body (KTOR-7623)
  • INFO log message with all server interceptors on server startup (KTOR-7326)
  • Digest auth: username and cnonce parameters aren't surrounded with quotes (KTOR-7561)
  • ContentType.fromFilePath for newer file formats HEIC, AVIF, HEIF (KTOR-7536)
  • Support missing native targets in ktor-serialization-kotlinx-xml (KTOR-7583)
Commits
  • 205479f Release 3.0.1 (#4432)
  • e5e8ae7 KTOR-6158 JS. Remove redundant require calls (#4422)
  • 8c271cb KTOR-7596 Make multipart Content-Type check case-insensitive (#4413)
  • 5a7bf7f KTOR-7623 Evaluate trace logs lazily in WebSockets client plugin (#4429)
  • 0ae547f KTOR-7326 Remove debug implementation of Pipeline.toString (#4419)
  • 4f45166 Update ktor monorepo to v3.0.1-eap-1122 (#4415)
  • 451f664 KTOR-7625: Url.segments parsing fix
  • 95426ce chore: remove redundant backticks (#4425)
  • 3d71a28 Update dependency org.apache.velocity:velocity-engine-core to v2.4.1 (#4416)
  • caceb62 Update dependency org.junit.jupiter:junit-jupiter to v5.11.3 (#4417)
  • Additional commits viewable in compare view

Updates io.ktor:ktor-client-jackson from 3.0.0 to 3.0.1

Release notes

Sourced from io.ktor:ktor-client-jackson's releases.

3.0.1

Published 29 October 2024

Bugfixes

  • Remove space from the default client user agent (KTOR-7655)
  • Url.segments throws on URLs with root path (KTOR-7625)
  • Digest Auth does not implement nc parameter correctly according to RFC 7616 (KTOR-4318)
  • about:blank URL should be parsed correctly as about:blank (KTOR-7410)
  • ByteReadChannel.{readShort/readInt/readLong} could lead to CPU-bound indefinite loop since 3.0.0 (KTOR-7571)
  • CIO: Requests face connection timeouts when executed on the Android main dispatcher (KTOR-6803)
  • receiveMultipart fails with "IOException: Failed to parse multipart" when content-type is capitalized (KTOR-7596)

Improvements

  • WebSockets logging: The plugin calls toString() unnecessarily on transformed response body (KTOR-7623)
  • INFO log message with all server interceptors on server startup (KTOR-7326)
  • Digest auth: username and cnonce parameters aren't surrounded with quotes (KTOR-7561)
  • ContentType.fromFilePath for newer file formats HEIC, AVIF, HEIF (KTOR-7536)
  • Support missing native targets in ktor-serialization-kotlinx-xml (KTOR-7583)
Changelog

Sourced from io.ktor:ktor-client-jackson's changelog.

3.0.1

Published 29 October 2024

Bugfixes

  • Remove space from the default client user agent (KTOR-7655)
  • Url.segments throws on URLs with root path (KTOR-7625)
  • Digest Auth does not implement nc parameter correctly according to RFC 7616 (KTOR-4318)
  • about:blank URL should be parsed correctly as about:blank (KTOR-7410)
  • ByteReadChannel.{readShort/readInt/readLong} could lead to CPU-bound indefinite loop since 3.0.0 (KTOR-7571)
  • CIO: Requests face connection timeouts when executed on the Android main dispatcher (KTOR-6803)
  • receiveMultipart fails with "IOException: Failed to parse multipart" when content-type is capitalized (KTOR-7596)

Improvements

  • WebSockets logging: The plugin calls toString() unnecessarily on transformed response body (KTOR-7623)
  • INFO log message with all server interceptors on server startup (KTOR-7326)
  • Digest auth: username and cnonce parameters aren't surrounded with quotes (KTOR-7561)
  • ContentType.fromFilePath for newer file formats HEIC, AVIF, HEIF (KTOR-7536)
  • Support missing native targets in ktor-serialization-kotlinx-xml (KTOR-7583)
Commits
  • 205479f Release 3.0.1 (#4432)
  • e5e8ae7 KTOR-6158 JS. Remove redundant require calls (#4422)
  • 8c271cb KTOR-7596 Make multipart Content-Type check case-insensitive (#4413)
  • 5a7bf7f KTOR-7623 Evaluate trace logs lazily in WebSockets client plugin (#4429)
  • 0ae547f KTOR-7326 Remove debug implementation of Pipeline.toString (#4419)
  • 4f45166 Update ktor monorepo to v3.0.1-eap-1122 (#4415)
  • 451f664 KTOR-7625: Url.segments parsing fix
  • 95426ce chore: remove redundant backticks (#4425)
  • 3d71a28 Update dependency org.apache.velocity:velocity-engine-core to v2.4.1 (#4416)
  • caceb62 Update dependency org.junit.jupiter:junit-jupiter to v5.11.3 (#4417)
  • Additional commits viewable in compare view

Updates com.charleskorn.kaml:kaml from 0.61.0 to 0.62.2

Release notes

Sourced from com.charleskorn.kaml:kaml's releases.

0.62.2

0.62.2 (2024-11-01)

Bug Fixes

  • Decoder does not represent the current node correctly (#617) (dbb29e7)

Dependency Updates

  • internal: update softprops/action-gh-release action to v2.0.9 (#637) (0fa2c17)

0.62.1

0.62.1 (2024-10-30)

Bug Fixes

  • use serializers from the module in decodeFromYamlNode (#636) (3ec93d8)

Chores

  • don't change automatically created release to draft (9bee143)
  • don't generate release for test-only changes (ac19b82)

0.62.0

0.62.0 (2024-10-30)

Features

Bug fixes

Dependency Updates

  • update dependency org.jetbrains.kotlinx:kotlinx-serialization-core to v1.7.3 (#605)
  • update kotlin to v2.0.21 (#633)
  • update dependency com.squareup.okio:okio to v3.9.1 (#613)
  • update dependency it.krzeminski:snakeyaml-engine-kmp to v3.0.3 (#632)
Commits
  • dbb29e7 fix: Decoder does not represent the current node correctly (#617)
  • 0fa2c17 deps(internal): update softprops/action-gh-release action to v2.0.9 (#637)
  • 91afa66 test: extract null reading tests (#616)
  • ac19b82 chore: don't generate release for test-only changes
  • 3ec93d8 fix: use serializers from the module in decodeFromYamlNode (#636)
  • 9bee143 chore: don't change automatically created release to draft
  • 3b2b119 Only try to publish a release if a new release was created.
  • fd0a1b2 Merge pull request #633 from charleskorn/renovate/kotlin
  • 6318518 Merge pull request #635 from charleskorn/renovate/actions-setup-node-4.x
  • 1043bd7 Merge pull request #605 from charleskorn/renovate/org.jetbrains.kotlinx-kotli...
  • Additional commits viewable in compare view

Updates io.ktor:ktor-serialization-kotlinx-json from 3.0.0 to 3.0.1

Release notes

Sourced from io.ktor:ktor-serialization-kotlinx-json's releases.

3.0.1

Published 29 October 2024

Bugfixes

  • Remove space from the default client user agent (KTOR-7655)
  • Url.segments throws on URLs with root path (KTOR-7625)
  • Digest Auth does not implement nc parameter correctly according to RFC 7616 (KTOR-4318)
  • about:blank URL should be parsed correctly as about:blank (KTOR-7410)
  • ByteReadChannel.{readShort/readInt/readLong} could lead to CPU-bound indefinite loop since 3.0.0 (KTOR-7571)
  • CIO: Requests face connection timeouts when executed on the Android main dispatcher (KTOR-6803)
  • receiveMultipart fails with "IOException: Failed to parse multipart" when content-type is capitalized (KTOR-7596)

Improvements

  • WebSockets logging: The plugin calls toString() unnecessarily on transformed response body (KTOR-7623)
  • INFO log message with all server interceptors on server startup (KTOR-7326)
  • Digest auth: username and cnonce parameters aren't surrounded with quotes (KTOR-7561)
  • ContentType.fromFilePath for newer file formats HEIC, AVIF, HEIF (KTOR-7536)
  • Support missing native targets in ktor-serialization-kotlinx-xml (KTOR-7583)
Changelog

Sourced from io.ktor:ktor-serialization-kotlinx-json's changelog.

3.0.1

Published 29 October 2024

Bugfixes

  • Remove space from the default client user agent (KTOR-7655)
  • Url.segments throws on URLs with root path (KTOR-7625)
  • Digest Auth does not implement nc parameter correctly according to RFC 7616 (KTOR-4318)
  • about:blank URL should be parsed correctly as about:blank (KTOR-7410)
  • ByteReadChannel.{readShort/readInt/readLong} could lead to CPU-bound indefinite loop since 3.0.0 (KTOR-7571)
  • CIO: Requests face connection timeouts when executed on the Android main dispatcher (KTOR-6803)
  • receiveMultipart fails with "IOException: Failed to parse multipart" when content-type is capitalized (KTOR-7596)

Improvements

  • WebSockets logging: The plugin calls toString() unnecessarily on transformed response body (KTOR-7623)
  • INFO log message with all server interceptors on server startup (KTOR-7326)
  • Digest auth: username and cnonce parameters aren't surrounded with quotes (KTOR-7561)
  • ContentType.fromFilePath for newer file formats HEIC, AVIF, HEIF (KTOR-7536)
  • Support missing native targets in ktor-serialization-kotlinx-xml (KTOR-7583)
Commits
  • 205479f Release 3.0.1 (#4432)
  • e5e8ae7 KTOR-6158 JS. Remove redundant require calls (#4422)
  • 8c271cb KTOR-7596 Make multipart Content-Type check case-insensitive (#4413)
  • 5a7bf7f KTOR-7623 Evaluate trace logs lazily in WebSockets client plugin (#4429)
  • 0ae547f KTOR-7326 Remove debug implementation of Pipeline.toString (#4419)
  • 4f45166 Update ktor monorepo to v3.0.1-eap-1122 (#4415)
  • 451f664 KTOR-7625: Url.segments parsing fix
  • 95426ce chore: remove redundant backticks (#4425)
  • 3d71a28 Update dependency org.apache.velocity:velocity-engine-core to v2.4.1 (#4416)
  • caceb62 Update dependency org.junit.jupiter:junit-jupiter to v5.11.3 (#4417)
  • Additional commits viewable in compare view

Updates io.ktor:ktor-client-cio from 3.0.0 to 3.0.1

Release notes

Sourced from io.ktor:ktor-client-cio's releases.

3.0.1

Published 29 October 2024

Bugfixes

  • Remove space from the default client user agent (KTOR-7655)
  • Url.segments throws on URLs with root path (KTOR-7625)
  • Digest Auth does not implement nc parameter correctly according to RFC 7616 (KTOR-4318)
  • about:blank URL should be parsed correctly as about:blank (KTOR-7410)
  • ByteReadChannel.{readShort/readInt/readLong} could lead to CPU-bound indefinite loop since 3.0.0 (KTOR-7571)
  • CIO: Requests face connection timeouts when executed on the Android main dispatcher (KTOR-6803)
  • receiveMultipart fails with "IOException: Failed to parse multipart" when content-type is capitalized (KTOR-7596)

Improvements

  • WebSockets logging: The plugin calls toString() unnecessarily on transformed response body (KTOR-7623)
  • INFO log message with all server interceptors on server startup (KTOR-7326)
  • Digest auth: username and cnonce parameters aren't surrounded with quotes (KTOR-7561)
  • ContentType.fromFilePath for newer file formats HEIC, AVIF, HEIF (KTOR-7536)
  • Support missing native targets in ktor-serialization-kotlinx-xml (KTOR-7583)
Changelog

Sourced from io.ktor:ktor-client-cio's changelog.

3.0.1

Published 29 October 2024

Bugfixes

  • Remove space from the default client user agent (KTOR-7655)
  • Url.segments throws on URLs with root path (KTOR-7625)
  • Digest Auth does not implement nc parameter correctly according to RFC 7616 (KTOR-4318)
  • about:blank URL should be parsed correctly as about:blank (KTOR-7410)
  • ByteReadChannel.{readShort/readInt/readLong} could lead to CPU-bound indefinite loop since 3.0.0 (KTOR-7571)
  • CIO: Requests face connection timeouts when executed on the Android main dispatcher (KTOR-6803)
  • receiveMultipart fails with "IOException: Failed to parse multipart" when content-type is capitalized (KTOR-7596)

Improvements

  • WebSockets logging: The plugin calls toString() unnecessarily on transformed response body (KTOR-7623)
  • INFO log message with all server interceptors on server startup (KTOR-7326)
  • Digest auth: username and cnonce parameters aren't surrounded with quotes (KTOR-7561)
  • ContentType.fromFilePath for newer file formats HEIC, AVIF, HEIF (KTOR-7536)
  • Support missing native targets in ktor-serialization-kotlinx-xml (KTOR-7583)
Commits
  • 205479f Release 3.0.1 (#4432)
  • e5e8ae7 KTOR-6158 JS. Remove redundant require calls (#4422)
  • 8c271cb KTOR-7596 Make multipart Content-Type check case-insensitive (#4413)
  • 5a7bf7f KTOR-7623 Evaluate trace logs lazily in WebSockets client plugin (#4429)
  • 0ae547f KTOR-7326 Remove debug implementation of Pipeline.toString (#4419)
  • 4f45166 Update ktor monorepo to v3.0.1-eap-1122 (#4415)
  • 451f664 KTOR-7625: Url.segments parsing fix
  • 95426ce chore: remove redundant backticks (#4425)
  • 3d71a28 Update dependency org.apache.velocity:velocity-engine-core to v2.4.1 (#4416)
  • caceb62 Update dependency org.junit.jupiter:junit-jupiter to v5.11.3 (#4417)
  • Additional commits viewable in compare view

Updates io.ktor:ktor-server-content-negotiation from 3.0.0 to 3.0.1

Release notes

Sourced from io.ktor:ktor-server-content-negotiation's releases.

3.0.1

Published 29 October 2024

Bugfixes

  • Remove space from the default client user agent (KTOR-7655)
  • Url.segments throws on URLs with root path (KTOR-7625)
  • Digest Auth does not implement nc parameter correctly according to RFC 7616 (KTOR-4318)
  • about:blank URL should be parsed correctly as about:blank (KTOR-7410)
  • ByteReadChannel.{readShort/readInt/readLong} could lead to CPU-bound indefinite loop since 3.0.0 (KTOR-7571)
  • CIO: Requests face connection timeouts when executed on the Android main dispatcher (KTOR-6803)
  • receiveMultipart fails with "IOException: Failed to parse multipart" when content-type is capitalized (KTOR-7596)

Improvements

  • WebSockets logging: The plugin calls toString() unnecessarily on transformed response body (KTOR-7623)
  • INFO log message with all server interceptors on server startup (KTOR-7326)
  • Digest auth: username and cnonce parameters aren't surrounded with quotes (KTOR-7561)
  • ContentType.fromFilePath for newer file formats HEIC, AVIF, HEIF (KTOR-7536)
  • Support missing native targets in ktor-serialization-kotlinx-xml (KTOR-7583)
Changelog

Sourced from io.ktor:ktor-server-content-negotiation's changelog.

3.0.1

Published 29 October 2024

Bugfixes

  • Remove space from the default client user agent (KTOR-7655)
  • Url.segments throws on URLs with root path (KTOR-7625)
  • Digest Auth does not implement nc parameter correctly according to RFC 7616 (KTOR-4318)
  • about:blank URL should be parsed correctly as about:blank (KTOR-7410)
  • ByteReadChannel.{readShort/readInt/readLong} could lead to CPU-bound indefinite loop since 3.0.0 (KTOR-7571)
  • CIO: Requests face connection timeouts when executed on the Android main dispatcher (KTOR-6803)
  • receiveMultipart fails with "IOException: Failed to parse multipart" when content-type is capitalized (KTOR-7596)

Improvements

  • WebSockets logging: The plugin calls toString() unnecessarily on transformed response body (KTOR-7623)
  • INFO log message with all server interceptors on server startup (KTOR-7326)
  • Digest auth: username and cnonce parameters aren't surrounded with quotes (KTOR-7561)
  • ContentType.fromFilePath for newer file formats HEIC, AVIF, HEIF (KTOR-7536)
  • Support missing native targets in ktor-serialization-kotlinx-xml (KTOR-7583)
Commits
  • 205479f Release 3.0.1 (#4432)
  • e5e8ae7 KTOR-6158 JS. Remove redundant require calls (#4422)
  • 8c271cb KTOR-7596 Make multipart Content-Type check case-insensitive (#4413)
  • 5a7bf7f KTOR-7623 Evaluate trace logs lazily in WebSockets client plugin (#4429)
  • 0ae547f KTOR-7326 Remove debug implementation of Pipeline.toString (#4419)
  • 4f45166 Update ktor monorepo to v3.0.1-eap-1122 (#4415)
  • 451f664 KTOR-7625: Url.segments parsing fix
  • 95426ce chore: remove redundant backticks (#4425)
  • 3d71a28 Update dependency org.apache.velocity:velocity-engine-core to v2.4.1 (#4416)
  • caceb62 Update dependency org.junit.jupiter:junit-jupiter to v5.11.3 (#4417)
  • Additional commits viewable in compare view

Updates io.ktor:ktor-server-cio from 3.0.0 to 3.0.1

Release notes

Sourced from io.ktor:ktor-server-cio's releases.

3.0.1

Published 29 October 2024

Bugfixes

  • Remove space from the default client user agent (KTOR-7655)
  • Url.segments throws on URLs with root path (KTOR-7625)
  • Digest Auth does not implement nc parameter correctly according to RFC 7616 (KTOR-4318)
  • about:blank URL should be parsed correctly as about:blank (KTOR-7410)
  • ByteReadChannel.{readShort/readInt/readLong} could lead to CPU-bound indefinite loop since 3.0.0 (KTOR-7571)
  • CIO: Requests face connection timeouts when executed on the Android main dispatcher (KTOR-6803)
  • receiveMultipart fails with "IOException: Failed to parse multipart" when content-type is capitalized (KTOR-7596)

Improvements

  • WebSockets logging: The plugin calls toString() unnecessarily on transformed response body (KTOR-7623)
  • INFO log message with all server interceptors on server startup (KTOR-7326)
  • Digest auth: username and cnonce parameters aren't surrounded with quotes (KTOR-7561)
  • ContentType.fromFilePath for newer file formats HEIC, AVIF, HEIF (KTOR-7536)
  • Support missing native targets in ktor-serialization-kotlinx-xml (KTOR-7583)
Changelog

Sourced from io.ktor:ktor-server-cio's changelog.

3.0.1

Published 29 October 2024

Bugfixes

  • Remove space from the default client user agent (KTOR-7655)
  • Url.segments throws on URLs with root path (KTOR-7625)
  • Digest Auth does not implement nc parameter correctly according to RFC 7616 (KTOR-4318)
  • about:blank URL should be parsed correctly as about:blank (KTOR-7410)
  • ByteReadChannel.{readShort/readInt/readLong} could lead to CPU-bound indefinite loop since 3.0.0 (KTOR-7571)
  • CIO: Requests face connection timeouts when executed on the Android main dispatcher (KTOR-6803)
  • receiveMultipart fails with "IOException: Failed to parse multipart" when content-type is capitalized (KTOR-7596)

Improvements

  • WebSockets logging: The plugin calls toString() unnecessarily on transformed response body (KTOR-7623)
  • INFO log message with all server interceptors on server startup (KTOR-7326)
  • Digest auth: username and cnonce parameters aren't surrounded with quotes (KTOR-7561)
  • ContentType.fromFilePath for newer file formats HEIC, AVIF, HEIF (KTOR-7536)
  • Support missing native targets in ktor-serialization-kotlinx-xml (KTOR-7583)
Commits
  • 205479f Release 3.0.1 (#4432)
  • e5e8ae7 KTOR-6158 JS. Remove redundant require calls (#4422)
  • 8c271cb KTOR-7596 Make multipart Content-Type check case-insensitive (#4413)
  • 5a7bf7f KTOR-7623 Evaluate trace logs lazily in WebSockets client plugin (#4429)
  • 0ae547f KTOR-7326 Remove debug implementation of Pipeline.toString (#4419)
  • 4f45166 Update ktor monorepo to v3.0.1-eap-1122 (#4415)
  • 451f664 KTOR-7625: Url.segments parsing fix
  • 95426ce chore: remove redundant backticks (#4425)
  • 3d71a28 Update dependency org.apache.velocity:velocity-engine-core to v2.4.1 (#4416)
  • caceb62 Update dependency org.junit.jupiter:junit-jupiter to v5.11.3 (#4417)
  • Additional commits viewable in compare view

Updates io.ktor:ktor-server-resources from 3.0.0 to 3.0.1

Release notes

Sourced from io.ktor:ktor-server-resources's releases.

3.0.1

Published 29 October 2024

Bugfixes

  • Remove space from the default client user agent (KTOR-7655)
  • Url.segments throws on URLs with root path (KTOR-7625)
  • Digest Auth does not implement nc parameter correctly according to RFC 7616 (KTOR-4318)
  • about:blank URL should be parsed correctly as about:blank (KTOR-7410)
  • ByteReadChannel.{readShort/readInt/readLong} could lead to CPU-bound indefinite loop since 3.0.0 (KTOR-7571)
  • CIO: Requests face connection timeouts when executed on the Android main dispatcher (KTOR-6803)
  • receiveMultipart fails with "IOException: Failed to parse multipart" when content-type is capitalized (KTOR-7596)

Improvements

  • WebSockets logging: The plugin calls toString() unnecessarily on transformed response body (KTOR-7623)
  • INFO log message with all server interceptors on server startup (KTOR-7326)
  • Digest auth: username and cnonce parameters aren't surrounded with quotes (KTOR-7561)
  • ContentType.fromFilePath for newer file formats HEIC, AVIF, HEIF (KTOR-7536)
  • Support missing native targets in ktor-serialization-kotlinx-xml (KTOR-7583)
Changelog

Sourced from io.ktor:ktor-server-resources's changelog.

3.0.1

Published 29 October 2024

Bugfixes

  • Remove space from the default client user agent (KTOR-7655)
  • Url.segments throws on URLs with root path (KTOR-7625)
  • Digest Auth does not implement nc parameter correctly according to RFC 7616 (KTOR-4318)
  • about:blank URL should be parsed correctly as about:blank (KTOR-7410)
  • ByteReadChannel.{readShort/readInt/readLong} could lead to CPU-bound indefinite loop since 3.0.0 (KTOR-7571)
  • CIO: Requests face connection timeouts when executed on the Android main dispatcher (KTOR-6803)
  • receiveMultipart fails with "IOException: Failed to parse multipart" when content-type is capitalized (KTOR-7596)

Improvements

  • WebSockets logging: The plugin calls toString() unnecessarily on transformed response body (KTOR-7623)
  • INFO log message with all server interceptors on server startup (KTOR-7326)
  • Digest auth: username and cnonce parameters aren't surrounded with quotes (KTOR-7561)
  • ContentType.fromFilePath for newer file formats HEIC, AVIF, HEIF (KTOR-7536)
  • Support missing native targets in ktor-serialization-kotlinx-xml (KTOR-7583)
Commits
  • 205479f Release 3.0.1 (#4432)
  • e5e8ae7 KTOR-6158 JS. Remove redundant require calls (#4422)
  • 8c271cb KTOR-7596 Make multipart Content-Type check case-insensitive (#4413)
  • 5a7bf7f KTOR-7623 Evaluate trace logs lazily in WebSockets client plugin (#4429)
  • 0ae547f KTOR-7326 Remove debug implementation of Pipeline.toString (#4419)
  • 4f45166 Update ktor monorepo to v3.0.1-eap-1122 (#4415)
  • 451f664 KTOR-7625: Url.segments parsing fix
  • 95426ce chore: remove redundant backticks (#4425)
  • 3d71a28 Update dependency org.apache.velocity:velocity-engine-core to v2.4.1 (#4416)
  • caceb62 Update dependency org.junit.jupiter:junit-jupiter to v5.11.3 (#4417)
  • Additional commits viewable in compare view

Updates io.ktor:ktor-server-websockets from 3.0.0 to 3.0.1

Release notes

Sourced from io.ktor:ktor-server-websockets's releases.

3.0.1

Published 29 October 2024

Bugfixes

  • Remove space from the default client user agent (KTOR-7655)
  • Url.segments throws on URLs with root path (KTOR-7625)
  • Digest Auth does not implement nc parameter correctly according to RFC 7616 (KTOR-4318)
  • about:blank URL should be parsed correctly as about:blank (KTOR-7410)
  • ByteReadChannel.{readShort/readInt/readLong} could lead to CPU-bound indefinite loop since 3.0.0 (KTOR-7571)
  • CIO: Requests face connection timeouts when executed on the Android main dispatcher (KTOR-6803)
  • receiveMultipart fails with "IOException: Failed to parse multipart" when content-type is capitalized (KTOR-7596)

Improvements

  • WebSockets logging: The plugin calls toString() unnecessarily on transformed response body (KTOR-7623)
  • INFO log message with all server interceptors on server startup (KTOR-7326)
  • Digest auth: username and cnonce parameters aren't surrounded with quotes (KTOR-7561)
  • ContentType.fromFilePath for newer file formats HEIC, AVIF, HEIF (KTOR-7536)
  • Support missing native targets in ktor-serialization-kotlinx-xml (KTOR-7583)
Changelog

Sourced from io.ktor:ktor-server-websockets's changelog.

3.0.1

Published 29 October 2024

Bugfixes

  • Remove space from the default client user agent (KTOR-7655)
  • Url.segments throws on URLs with root path (KTOR-7625)
  • Digest Auth does not implement nc parameter correctly according to RFC 7616 (KTOR-4318)
  • about:blank URL should be parsed correctly as about:blank (KTOR-7410)
  • ByteReadChannel....

    Description has been truncated

Bumps the all group with 19 updates:

| Package | From | To |
| --- | --- | --- |
| [com.fasterxml.jackson.module:jackson-module-kotlin](https://github.com/FasterXML/jackson-module-kotlin) | `2.18.0` | `2.18.1` |
| com.fasterxml.jackson.datatype:jackson-datatype-jsr310 | `2.18.0` | `2.18.1` |
| [com.fasterxml.jackson.dataformat:jackson-dataformat-xml](https://github.com/FasterXML/jackson-dataformat-xml) | `2.18.0` | `2.18.1` |
| [io.ktor:ktor-client-apache](https://github.com/ktorio/ktor) | `3.0.0` | `3.0.1` |
| [io.ktor:ktor-client-jackson](https://github.com/ktorio/ktor) | `3.0.0` | `3.0.1` |
| [com.charleskorn.kaml:kaml](https://github.com/charleskorn/kaml) | `0.61.0` | `0.62.2` |
| [io.ktor:ktor-serialization-kotlinx-json](https://github.com/ktorio/ktor) | `3.0.0` | `3.0.1` |
| [io.ktor:ktor-client-cio](https://github.com/ktorio/ktor) | `3.0.0` | `3.0.1` |
| [io.ktor:ktor-server-content-negotiation](https://github.com/ktorio/ktor) | `3.0.0` | `3.0.1` |
| [io.ktor:ktor-server-cio](https://github.com/ktorio/ktor) | `3.0.0` | `3.0.1` |
| [io.ktor:ktor-server-resources](https://github.com/ktorio/ktor) | `3.0.0` | `3.0.1` |
| [io.ktor:ktor-server-websockets](https://github.com/ktorio/ktor) | `3.0.0` | `3.0.1` |
| [io.ktor:ktor-client-content-negotiation](https://github.com/ktorio/ktor) | `3.0.0` | `3.0.1` |
| [io.ktor:ktor-server-auth-jwt](https://github.com/ktorio/ktor) | `3.0.0` | `3.0.1` |
| [io.ktor:ktor-server-metrics-micrometer](https://github.com/ktorio/ktor) | `3.0.0` | `3.0.1` |
| [io.ktor:ktor-server-call-logging](https://github.com/ktorio/ktor) | `3.0.0` | `3.0.1` |
| [io.ktor:ktor-server-default-headers](https://github.com/ktorio/ktor) | `3.0.0` | `3.0.1` |
| [io.ktor:ktor-server-caching-headers](https://github.com/ktorio/ktor) | `3.0.0` | `3.0.1` |
| [io.ktor:ktor-server-status-pages](https://github.com/ktorio/ktor) | `3.0.0` | `3.0.1` |


Updates `com.fasterxml.jackson.module:jackson-module-kotlin` from 2.18.0 to 2.18.1
- [Commits](FasterXML/jackson-module-kotlin@jackson-module-kotlin-2.18.0...jackson-module-kotlin-2.18.1)

Updates `com.fasterxml.jackson.datatype:jackson-datatype-jsr310` from 2.18.0 to 2.18.1

Updates `com.fasterxml.jackson.dataformat:jackson-dataformat-xml` from 2.18.0 to 2.18.1
- [Commits](FasterXML/jackson-dataformat-xml@jackson-dataformat-xml-2.18.0...jackson-dataformat-xml-2.18.1)

Updates `io.ktor:ktor-client-apache` from 3.0.0 to 3.0.1
- [Release notes](https://github.com/ktorio/ktor/releases)
- [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md)
- [Commits](ktorio/ktor@3.0.0...3.0.1)

Updates `io.ktor:ktor-client-jackson` from 3.0.0 to 3.0.1
- [Release notes](https://github.com/ktorio/ktor/releases)
- [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md)
- [Commits](ktorio/ktor@3.0.0...3.0.1)

Updates `com.charleskorn.kaml:kaml` from 0.61.0 to 0.62.2
- [Release notes](https://github.com/charleskorn/kaml/releases)
- [Changelog](https://github.com/charleskorn/kaml/blob/main/.releaserc.yml)
- [Commits](charleskorn/kaml@0.61.0...0.62.2)

Updates `io.ktor:ktor-serialization-kotlinx-json` from 3.0.0 to 3.0.1
- [Release notes](https://github.com/ktorio/ktor/releases)
- [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md)
- [Commits](ktorio/ktor@3.0.0...3.0.1)

Updates `io.ktor:ktor-client-cio` from 3.0.0 to 3.0.1
- [Release notes](https://github.com/ktorio/ktor/releases)
- [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md)
- [Commits](ktorio/ktor@3.0.0...3.0.1)

Updates `io.ktor:ktor-server-content-negotiation` from 3.0.0 to 3.0.1
- [Release notes](https://github.com/ktorio/ktor/releases)
- [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md)
- [Commits](ktorio/ktor@3.0.0...3.0.1)

Updates `io.ktor:ktor-server-cio` from 3.0.0 to 3.0.1
- [Release notes](https://github.com/ktorio/ktor/releases)
- [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md)
- [Commits](ktorio/ktor@3.0.0...3.0.1)

Updates `io.ktor:ktor-server-resources` from 3.0.0 to 3.0.1
- [Release notes](https://github.com/ktorio/ktor/releases)
- [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md)
- [Commits](ktorio/ktor@3.0.0...3.0.1)

Updates `io.ktor:ktor-server-websockets` from 3.0.0 to 3.0.1
- [Release notes](https://github.com/ktorio/ktor/releases)
- [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md)
- [Commits](ktorio/ktor@3.0.0...3.0.1)

Updates `io.ktor:ktor-client-content-negotiation` from 3.0.0 to 3.0.1
- [Release notes](https://github.com/ktorio/ktor/releases)
- [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md)
- [Commits](ktorio/ktor@3.0.0...3.0.1)

Updates `io.ktor:ktor-server-auth-jwt` from 3.0.0 to 3.0.1
- [Release notes](https://github.com/ktorio/ktor/releases)
- [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md)
- [Commits](ktorio/ktor@3.0.0...3.0.1)

Updates `io.ktor:ktor-server-metrics-micrometer` from 3.0.0 to 3.0.1
- [Release notes](https://github.com/ktorio/ktor/releases)
- [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md)
- [Commits](ktorio/ktor@3.0.0...3.0.1)

Updates `io.ktor:ktor-server-call-logging` from 3.0.0 to 3.0.1
- [Release notes](https://github.com/ktorio/ktor/releases)
- [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md)
- [Commits](ktorio/ktor@3.0.0...3.0.1)

Updates `io.ktor:ktor-server-default-headers` from 3.0.0 to 3.0.1
- [Release notes](https://github.com/ktorio/ktor/releases)
- [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md)
- [Commits](ktorio/ktor@3.0.0...3.0.1)

Updates `io.ktor:ktor-server-caching-headers` from 3.0.0 to 3.0.1
- [Release notes](https://github.com/ktorio/ktor/releases)
- [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md)
- [Commits](ktorio/ktor@3.0.0...3.0.1)

Updates `io.ktor:ktor-server-status-pages` from 3.0.0 to 3.0.1
- [Release notes](https://github.com/ktorio/ktor/releases)
- [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md)
- [Commits](ktorio/ktor@3.0.0...3.0.1)

---
updated-dependencies:
- dependency-name: com.fasterxml.jackson.module:jackson-module-kotlin
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: com.fasterxml.jackson.datatype:jackson-datatype-jsr310
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: com.fasterxml.jackson.dataformat:jackson-dataformat-xml
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: io.ktor:ktor-client-apache
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: io.ktor:ktor-client-jackson
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: com.charleskorn.kaml:kaml
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: io.ktor:ktor-serialization-kotlinx-json
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: io.ktor:ktor-client-cio
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: io.ktor:ktor-server-content-negotiation
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: io.ktor:ktor-server-cio
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: io.ktor:ktor-server-resources
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: io.ktor:ktor-server-websockets
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: io.ktor:ktor-client-content-negotiation
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: io.ktor:ktor-server-auth-jwt
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: io.ktor:ktor-server-metrics-micrometer
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: io.ktor:ktor-server-call-logging
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: io.ktor:ktor-server-default-headers
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: io.ktor:ktor-server-caching-headers
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: io.ktor:ktor-server-status-pages
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Nov 4, 2024
@IRus IRus merged commit 9285b01 into main Nov 4, 2024
9 checks passed
@dependabot dependabot bot deleted the dependabot/gradle/all-75651ba819 branch November 4, 2024 06:43
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 java Pull requests that update Java code
Development

Successfully merging this pull request may close these issues.

1 participant