Update Samples dependencies #204
Open
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
8.14.2
->8.14.3
0.9.1
->0.10.0-grpc-122
0.9.1
->0.10.0-grpc-122
0.9.1
->0.10.0-grpc-122
0.9.1
->0.10.0-grpc-122
0.9.1
->0.10.0-grpc-122
1.4.1
->1.4.3
1.73.0
->1.74.0
0.9.1
->0.10.0-grpc-122
0.9.1
->0.10.0-grpc-122
0.10.0-grpc-121
->0.10.0-grpc-122
1.8.1
->1.9.0
1.8.1
->1.9.0
3.2.1
->3.3.0-eap-115
3.2.1
->3.2.3
3.2.1
->3.2.3
3.2.1
->3.2.3
3.2.1
->3.2.3
3.2.1
->3.2.3
3.2.1
->3.2.3
3.2.1
->3.2.3
3.2.1
->3.2.3
3.2.1
->3.2.3
3.2.1
->3.2.3
3.2.1
->3.2.3
3.2.1
->3.2.3
3.2.1
->3.2.3
3.2.1
->3.2.3
3.2.1
->3.2.3
3.2.1
->3.2.3
2025.06.01
->2025.07.00
1.2.1
->1.3.0
3.6.1
->3.7.0
0.10.0-grpc-121
->0.10.0-grpc-122
2025.6.11
->2025.8.6
8.11.0-alpha07
->8.12.0
8.11.0-alpha07
->8.12.0
Warning
Some dependencies could not be looked up. Check the Dependency Dashboard for more information.
Release Notes
gradle/gradle (gradle)
v8.14.3
: 8.14.3Compare Source
The Gradle team is excited to announce Gradle 8.14.3.
This is a patch release for 8.14. We recommend using 8.14.3 instead of 8.14.
Here are the highlights of this release:
Read the Release Notes
We would like to thank the following community members for their contributions to this release of Gradle:
Aurimas,
Ben Bader,
Björn Kautler,
chandre92,
Daniel Hammer,
Danish Nawab,
Florian Dreier,
Ivy Chen,
Jendrik Johannes,
jimmy1995-gu,
Madalin Valceleanu,
Na Minhyeok.
Upgrade instructions
Switch your build to use Gradle 8.14.3 by updating your wrapper:
See the Gradle 8.x upgrade guide to learn about deprecations, breaking changes and other considerations when upgrading.
For Java, Groovy, Kotlin and Android compatibility, see the full compatibility notes.
Reporting problems
If you find a problem with this release, please file a bug on GitHub Issues adhering to our issue guidelines.
If you're not sure you're encountering a bug, please use the forum.
We hope you will build happiness with Gradle, and we look forward to your feedback via Twitter or on GitHub.
grpc/grpc-java (io.grpc:grpc-netty)
v1.74.0
Compare Source
Behavior Changes
@generated=omit
(f8700a1
). This omitsjavax.annotation.Generated
from the generated code and makes theorg.apache.tomcat:annotations-api
compile-only dependency unnecessary (README and examples changes forthcoming; we delayed those changes until the release landed). You can use the option@generated=javax
for the previous behavior, but please also file an issue so we can develop alternativesa16d655
). Previously, the new blocking stub API was identical to the older blocking stub for unary RPCs and used the uncheckedStatusRuntimeException
. However, feedback demonstrated it was confusing to mix that with the checkedStatusException
inBlockingClientCall
. Now the new blocking stub uses StatusException throughout. grpc-java continues to support the old generated code, but the version of protoc-gen-grpc-java will dictate which API you see. If you support multiple generated code versions, you can use the older blocking v1 stub for unary RPCsBug Fixes
b04c673
,15c7573
). This was a very old race, not a recent regression. All streams should now properly fail instead of hanging, although in some cases they may be transparently retried1c43098
). Previously, changes in the wall time would impact its accounting482dc5c
). Only IP addresses were handled properly, and only IP addresses should be handled per gRFC A27efe9ccc
). Previously the resource was NACKed, but gRPC would continue waiting for the resource until a timeout was reached and claim the control plane didn’t send the resource. Now it will fail quickly with an informative errora5eaa66
). Previously all configuration refreshes were considered a new config, which had the potential for causing unexpected inefficiency problems. This was noticed by new code for gRFC A74 xDS Config Tears that is not yet enabled, so there are no known problems that this caused1df2a33
). This fixed pick_first and ring_hash behavior that could cause rare and “random” races in parent load balancers like aNullPointerException
inClusterImplLoadBalancer.createSubchannel()
, which had a ring_hash child. This is most likely to help xDS, as it heavily uses hierarchical LB policiesImprovements
f07eb47
). Previously, connections were created in-order (but non-blocking), so in a fast network the first address could be more likely to connect first given a "microsecond" headstart. That first connection then receives all the buffered RPCs, which could cause temporary, but repeated, load imbalances of the same backend when all clients receive the same list of addresses in the same order. This has been seen in practice, but it is unclear how often it happens. Shuffling has the potential to improve load distribution of new clients when using round_robin, weighted_round_robin, and least_request, which connect simultaneously to multiple addresses26bd0ee
). This avoids the potential of unnecessarily formatting an exception as a string when a subchannel fails to connect6f69363
). This adds compatibility for--incompatible_disable_target_default_provider_fields
c206428
)30d40a6
)Dependencies
46485c8
). This is used by the pre-built protoc-gen-grpc-java plugin on Maven Central. This should have no visible benefit, but gets us closer to upgrading to Protobuf 27 which added edition 2023 supportf99b2aa
). We aren’t aware of any visible changes to the results on Maven CentralKotlin/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
ktorio/ktor (io.ktor:ktor-client-js)
v3.2.3
Improvements
yaml
as the configuration file suffix (KTOR-8712)Bugfixes
\r\n
(KTOR-8687)v3.2.2
Improvements
event
beforedata
(KTOR-8627)Bugfixes
client.sse()
acts like a REST call and not a stream in test environment (KTOR-7910)JetBrains/kotlin-wrappers (org.jetbrains.kotlin-wrappers:kotlin-wrappers-bom)
v2025.8.6
Compare Source
Full Changelog: JetBrains/kotlin-wrappers@2025.8.5...2025.8.6
v2025.8.5
Compare Source
Full Changelog: JetBrains/kotlin-wrappers@2025.8.4...2025.8.5
v2025.8.4
Compare Source
Full Changelog: JetBrains/kotlin-wrappers@2025.8.3...2025.8.4
v2025.8.3
Compare Source
What's Changed
New Contributors
Full Changelog: JetBrains/kotlin-wrappers@2025.8.2...2025.8.3
v2025.8.2
Compare Source
Full Changelog: JetBrains/kotlin-wrappers@2025.8.1...2025.8.2
v2025.8.1
Compare Source
Full Changelog: JetBrains/kotlin-wrappers@2025.8.0...2025.8.1
v2025.8.0
Compare Source
Full Changelog: JetBrains/kotlin-wrappers@2025.7.15...2025.8.0
v2025.7.15
Compare Source
Full Changelog: JetBrains/kotlin-wrappers@2025.7.14...2025.7.15
v2025.7.14
Compare Source
What's Changed
5.10.2
by @aerialist7 in https://github.com/JetBrains/kotlin-wrappers/pull/2805Full Changelog: JetBrains/kotlin-wrappers@2025.7.13...2025.7.14
v2025.7.13
Compare Source
Full Changelog: JetBrains/kotlin-wrappers@2025.7.12...2025.7.13
v2025.7.12
Compare Source
Full Changelog: JetBrains/kotlin-wrappers@2025.7.11...2025.7.12
v2025.7.11
Compare Source
Full Changelog: JetBrains/kotlin-wrappers@2025.7.10...2025.7.11
v2025.7.10
Compare Source
Full Changelog: JetBrains/kotlin-wrappers@2025.7.9...2025.7.10
v2025.7.9
Compare Source
Full Changelog: JetBrains/kotlin-wrappers@2025.7.8...2025.7.9
v2025.7.8
Compare Source
Full Changelog: JetBrains/kotlin-wrappers@2025.7.7...2025.7.8
v2025.7.7
Compare Source
Full Changelog: JetBrains/kotlin-wrappers@2025.7.6...2025.7.7
v2025.7.6
Compare Source
Full Changelog: JetBrains/kotlin-wrappers@2025.7.5...2025.7.6
v2025.7.5
Compare Source
What's Changed
@JsAsync
from theweb
module (#2449). by @zibet27 in https://github.com/JetBrains/kotlin-wrappers/pull/2804Full Changelog: JetBrains/kotlin-wrappers@2025.7.4...2025.7.5
v2025.7.4
Compare Source
Full Changelog: JetBrains/kotlin-wrappers@2025.7.3...2025.7.4
v2025.7.3
Compare Source
What's Changed
suspend
extensions instead of@JsAsync
including externally defined parameters (#2449, #2761) by @zibet27 in https://github.com/JetBrains/kotlin-wrappers/pull/2802PromiseLike.await
extensions instead ofawaitPromiseLike
. (#2449, #2761) by @zibet27 in https://github.com/JetBrains/kotlin-wrappers/pull/2803Full Changelog: JetBrains/kotlin-wrappers@2025.7.2...2025.7.3
v2025.7.2
Compare Source
What's Changed
suspend
extensions instead of @JsAsync (#2449, #2761) by @zibet27 in https://github.com/JetBrains/kotlin-wrappers/pull/2801Full Changelog: JetBrains/kotlin-wrappers@2025.7.1...2025.7.2
v2025.7.1
Compare Source
What's Changed
@JsName
by @aerialist7 in https://github.com/JetBrains/kotlin-wrappers/pull/2798BaseAudioContext.decodeAudioData
by @zibet27 in https://github.com/JetBrains/kotlin-wrappers/pull/2799Full Changelog: JetBrains/kotlin-wrappers@2025.7.0...2025.7.1
v2025.7.0
Compare Source
What's Changed
@JsValue
fromEd25519
(#2449) by @zibet27 in https://github.com/JetBrains/kotlin-wrappers/pull/2795BigInt
andBitmask
(#2449) by @zibet27 in https://github.com/JetBrains/kotlin-wrappers/pull/2797Full 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.
This PR was generated by Mend Renovate. View the repository job log.