Skip to content

Update Samples dependencies #204

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open

Update Samples dependencies #204

wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 24, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
org.jetbrains.kotlinx:kotlinx-rpc-grpc-core 0.8.0-grpc-71 -> 0.8.0-grpc-79 age adoption passing confidence
org.jetbrains.kotlinx:kotlinx-serialization-core 1.8.1 -> 1.9.0 age adoption passing confidence
org.jetbrains.kotlinx:kotlinx-serialization-json 1.8.1 -> 1.9.0 age adoption passing confidence
io.ktor.plugin 3.1.3 -> 3.2.0 age adoption passing confidence
io.ktor:ktor-client-js 3.1.3 -> 3.2.0 age adoption passing confidence
io.ktor:ktor-client-cio 3.1.3 -> 3.2.0 age adoption passing confidence
io.ktor:ktor-client-websockets 3.1.3 -> 3.2.0 age adoption passing confidence
io.ktor:ktor-client-core 3.1.3 -> 3.2.0 age adoption passing confidence
io.ktor:ktor-server-test-host 3.1.3 -> 3.2.0 age adoption passing confidence
io.ktor:ktor-server-host-common-jvm 3.1.3 -> 3.2.0 age adoption passing confidence
io.ktor:ktor-server-websockets-jvm 3.1.3 -> 3.2.0 age adoption passing confidence
io.ktor:ktor-server-cors-jvm 3.1.3 -> 3.2.0 age adoption passing confidence
io.ktor:ktor-server-netty-jvm 3.1.3 -> 3.2.0 age adoption passing confidence
io.ktor:ktor-server-core-jvm 3.1.3 -> 3.2.0 age adoption passing confidence
org.jetbrains.kotlinx.rpc.plugin 0.8.0-grpc-79 -> 0.8.0 age adoption passing confidence
org.jetbrains.kotlin-wrappers:kotlin-wrappers-bom 2025.6.11 -> 2025.7.0 age adoption passing confidence
com.android.library (source) 8.11.0-alpha07 -> 8.11.0 age adoption passing confidence
com.android.application (source) 8.11.0-alpha07 -> 8.11.0 age adoption passing confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

Kotlin/kotlinx.serialization (org.jetbrains.kotlinx:kotlinx-serialization-core)

v1.9.0

==================

This release updates Kotlin version to 2.2.0, includes several bugfixes and provides serializers for kotlin.time.Instant.

Add kotlin.time.Instant serializers

Instant class was moved from kotlinx-datetime library to Kotlin standard library.
As a result, kotlinx-datetime 0.7.0 no longer has serializers for the Instant class.
To use new kotlin.time.Instant class in your @​Serializable classes,
you can use this 1.9.0 kotlinx-serialization version (Kotlin 2.2 is required).
You can choose between default InstantSerializer which uses its string representation,
or specify InstantComponentSerializer that represents instant as its components.
See details in the PR.

Other bugfixes

  • Fix resize in JsonPath (#​2995)
  • Fixed proguard rules for obfuscation to work correctly (#​2983)
ktorio/ktor (io.ktor:ktor-client-js)

v3.2.0

Published 12 June 2025

Features
  • Dependency injection Ktor extension (KTOR-8267)
  • Support Version Catalog (KTOR-8162)
  • Unix domain socket support at the Ktor Engine level (KTOR-4766)
  • Allow suspend Ktor modules (KTOR-8005)
  • Ability to use browser cookie storage (KTOR-539)
  • Configuration file deserialization (KTOR-7874)
  • HttpCache: Support evicting/clearing cache (KTOR-6653)
  • File configuration for dependencies (KTOR-8304)
Improvements
  • Excessive allocation of ApplicationConfig when loading multiple files from CLI (KTOR-8563)
  • Linux curl engine doesn't work for simultaneous websocket and http request (KTOR-8259)
  • ktor-network produces ProGuard warning (KTOR-8525)
  • More overloads for StringValuesBuilder.appendAll (KTOR-8573)
  • HttpClientCall: Deprecate wrapWithContent and wrap (KTOR-8378)
  • Add a way to create an ApplicationCall for testing (KTOR-7607)
  • Configuration access API improvements (KTOR-8185)
  • Application instance access in testApplication (KTOR-8215)
  • The TestApplication client should be configurable and mutable (KTOR-8465)
  • Support accessing resolved IP address on an instance of io.ktor.network.sockets.InetSocketAddress (KTOR-8490)
  • Deprecate SaveBodyPlugin in favor of HttpClientCall.save (KTOR-8367)
  • Obscure log message on server startup (KTOR-8519)
  • Routing: accept should return 406 if the Accept header isn't matched (KTOR-8416)
  • MicrometerMetrics: the route label can exceed length limit (KTOR-7274)
  • Micrometer: Make route label configurable (KTOR-8183)
  • Add more common ContentType values (KTOR-7108)
Bugfixes
  • Logging/Darwin: IOException is thrown when detecting if body is a binary (KTOR-8581)
  • Netty: NoSuchElementException or empty headers when responding with 204 (KTOR-8528)
  • YAML configuration: NoSuchElementException when parameter is expanded with curly braces (KTOR-8575)
  • ApplicationConfig: Most of the content is absent after merging configs (KTOR-8565)
  • Android: "ProtocolException: TRACE does not support writing" when sending TRACE request (KTOR-8352)
  • The "Content-Length: 0" header is added for GET requests sent to some servers (KTOR-6508)
  • HttpRequestRetry: requests with some IOException's thrown by Java engine aren't retried (KTOR-6770)
  • HttpCookies: Encoding of request cookies is not preserved in CookiesStorage (KTOR-8343)
  • Url class mangles data URLs (KTOR-5708)
  • SaveBodyPlugin: Logging plugin consumes response body (KTOR-6474)
  • Config deserialization does not respect testApplication environment (KTOR-8436)
  • Resources: Exclude a parent from query params when it is an object (KTOR-8507)
  • BearerAuthProvider does not clear token if refreshTokens returns null (KTOR-8470)
  • Coroutines launched from RoutingContext are not cancelled upon server shutdown (KTOR-8338)
  • Application job is not joined during shutdown (KTOR-8291)
  • HttpCache: InvalidCacheStateException thrown when Vary header has different entries is overly severe (KTOR-8345)
  • Fix socket channel close handling (KTOR-8201)
Kotlin/kotlinx-rpc (org.jetbrains.kotlinx.rpc.plugin)

v0.8.0

Published 30 June 2025

Overview

This release brings a lot of changes, including breaking changes:

  • Kotlin 2.2.0 Update
  • Decoupling of kotlinx.serialization from the core functionality
  • Simplifying lifetime schema (services lost their CoroutineScope)
  • Irreversible enforcement of the strict mode

These changes significantly reduce the number of footguns and improve the overall usability of the library.

Additionally, the internal structure of kRPC protocol and our compiler plugin reduced its complexity.
That allows us to provide better quality in future releases
(and this also applies to gRPC, even though in this particular release it was not a priority).

For the full list of changes that require migration,
see the Migration Guide.

Docs update

We added three new documentation sections:

Features 🎉
Breaking Changes 🔴
Bug fixes 🐛
Documentation 📗
Other Changes 🧹

New Contributors

Full Changelog: 0.7.0...0.8.0

JetBrains/kotlin-wrappers (org.jetbrains.kotlin-wrappers:kotlin-wrappers-bom)

v2025.7.0

Compare Source

What's Changed

Full Changelog: JetBrains/kotlin-wrappers@2025.6.15...2025.7.0

v2025.6.15

Compare Source

Full Changelog: JetBrains/kotlin-wrappers@2025.6.14...2025.6.15

v2025.6.14

Compare Source

Full Changelog: JetBrains/kotlin-wrappers@2025.6.13...2025.6.14

v2025.6.13

Compare Source

What's Changed

Full Changelog: JetBrains/kotlin-wrappers@2025.6.12...2025.6.13


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the dependencies Dependencies bump label Sep 24, 2024
@renovate renovate bot requested a review from Mr3zee September 24, 2024 09:23
@renovate renovate bot force-pushed the renovate/samples branch from 8d8cae9 to ae3910d Compare September 27, 2024 09:11
@renovate renovate bot changed the title Update dependency org.jetbrains.kotlinx:kotlinx-serialization-json to v1.7.3 Update Samples dependencies Sep 27, 2024
@renovate renovate bot force-pushed the renovate/samples branch 9 times, most recently from 217d48d to 7a42915 Compare October 7, 2024 21:16
@renovate renovate bot force-pushed the renovate/samples branch 8 times, most recently from 61acd80 to 0e59d54 Compare October 15, 2024 12:10
@renovate renovate bot force-pushed the renovate/samples branch 3 times, most recently from 3f635c1 to 671c4bc Compare October 20, 2024 20:00
@renovate renovate bot force-pushed the renovate/samples branch 6 times, most recently from 4bf83a5 to a6e90c7 Compare October 30, 2024 09:06
@renovate renovate bot force-pushed the renovate/samples branch 6 times, most recently from 267e2ca to 3a8787c Compare June 9, 2025 22:23
@renovate renovate bot force-pushed the renovate/samples branch 7 times, most recently from 9c70f1f to 3a2b27f Compare June 19, 2025 20:20
@renovate renovate bot force-pushed the renovate/samples branch 9 times, most recently from f2ef4f4 to 0ad8560 Compare June 27, 2025 16:07
@renovate renovate bot force-pushed the renovate/samples branch 6 times, most recently from 3ddc370 to ea1d632 Compare June 30, 2025 18:27
@renovate renovate bot force-pushed the renovate/samples branch from ea1d632 to a48c369 Compare July 1, 2025 07:14
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Dependencies bump
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants