Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Apr 14, 2025

This PR contains the following updates:

Package Type Update Change Age Confidence
gradle (source) minor 8.13 -> 8.14.3 age confidence
net.fabricmc:fabric-language-kotlin dependencies patch 1.13.2+kotlin.2.1.20 -> 1.13.7+kotlin.2.2.21 age confidence
net.fabricmc:fabric-loader dependencies minor 0.16.13 -> 0.17.3 age confidence
fabric-loom plugin minor 1.10.5 -> 1.12.3 age confidence
net.md-5:bungeecord-api dependencies patch 1.21-R0.3-SNAPSHOT -> 1.21-R0.5-SNAPSHOT age confidence
org.jetbrains.kotlin.plugin.serialization plugin minor 2.1.20 -> 2.2.21 age confidence
org.jetbrains.kotlinx:kotlinx-serialization-core dependencies minor 1.8.1 -> 1.9.0 age confidence
org.jetbrains.kotlin.kapt plugin minor 2.1.20 -> 2.2.21 age confidence
com.influxdb:influxdb-client-java (source) dependencies minor 7.2.0 -> 7.3.0 age confidence
com.charleskorn.kaml:kaml dependencies minor 0.76.0 -> 0.102.0 age confidence
org.jetbrains.kotlin.jvm plugin minor 2.1.20 -> 2.2.21 age confidence

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.3

Compare 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:

  • Java 24 support
  • GraalVM Native Image toolchain selection
  • Enhancements to test reporting
  • Build Authoring improvements

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:

./gradlew wrapper --gradle-version=8.14.3 && ./gradlew 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.

v8.14.2: 8.14.2

Compare Source

The Gradle team is excited to announce Gradle 8.14.2.

Here are the highlights of this release:

  • Java 24 support
  • GraalVM Native Image toolchain selection
  • Enhancements to test reporting
  • Build Authoring improvements

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.2 by updating your wrapper:

./gradlew wrapper --gradle-version=8.14.2 && ./gradlew 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.

v8.14.1: 8.14.1

Compare Source

The Gradle team is excited to announce Gradle 8.14.1.

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.1 by updating your wrapper:

./gradlew wrapper --gradle-version=8.14.1 && ./gradlew 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.

v8.14: 8.14

Compare Source

The Gradle team is excited to announce Gradle 8.14.

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 by updating your wrapper:

./gradlew wrapper --gradle-version=8.14 && ./gradlew 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.

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

v1.9.0

Compare Source

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

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)
influxdata/influxdb-client-java (com.influxdb:influxdb-client-java)

v7.3.0

Features
  • #​821: Prevent duplicate interceptors in OkHttpClient builder
Dependencies

⚠️ Important Notice: Starting from this release, we won’t be listing every dependency change in our changelog. This helps us maintain the project faster and focus on important features for our InfluxDB client.

charleskorn/kaml (com.charleskorn.kaml:kaml)

v0.102.0

Compare Source

Dependency Updates
  • update dependency com.squareup.okio:okio to v3.16.2 (#​769) (a2f0dfd)

v0.101.0

Compare Source

Chores
  • don't trigger release on KSP plugin updates (0c10c5f)
Dependency Updates

v0.100.0

Compare Source

Dependency Updates

v0.99.0

Compare Source

Dependency Updates
  • internal: update actions/setup-node action to v6 (#​771) (9a61118)
  • internal: update dependency semantic-release to v25 (#​773) (b71f5b2)
  • internal: update dependency semantic-release to v25.0.1 (#​775) (01b7753)
  • internal: update kotest to v6.0.4 (#​772) (6fcbd4f)
  • internal: update softprops/action-gh-release action to v2.4.1 (#​770) (41367a2)
  • update plugin com.google.devtools.ksp to v2.3.0 (#​778) (82ad6f3)

v0.98.0

Compare Source

Dependency Updates
  • internal: update gradle/actions action to v4.4.4 (#​764) (1ec4103)
  • internal: update gradle/actions action to v5 (#​765) (08e513d)
  • internal: update softprops/action-gh-release action to v2.3.4 (#​766) (d41d9d7)
  • internal: update softprops/action-gh-release action to v2.4.0 (#​767) (6d2daee)
  • update plugin com.google.devtools.ksp to v2.2.20-2.0.4 (#​768) (0ae58d5)

v0.97.0

Compare Source

Dependency Updates
  • internal: update dependency semantic-release to v24.2.9 (#​761) (87a7e38)
  • internal: update gradle to v9.1.0 (#​760) (2f71a06)
  • update dependency it.krzeminski:snakeyaml-engine-kmp to v3.2.1 (#​763) (9139ce6)

v0.96.0

Compare Source

Dependency Updates
  • internal: update dependency semantic-release to v24.2.8 (#​758) (6b3006b)
  • update plugin com.google.devtools.ksp to v2.2.20-2.0.3 (#​759) (e3b6af4)

v0.95.0

Compare Source

Dependency Updates

v0.94.0

Compare Source

Dependency Updates
  • update dependency org.ajoberstar.reckon:reckon-gradle to v1.0.1 (#​751) (5a8712a)

v0.93.0

Compare Source

Dependency Updates

v0.92.0

Compare Source

Dependency Updates
  • update dependency org.jetbrains.kotlinx:kotlinx-serialization-core to v1.9.0 (#​655) (d5d48c9)

v0.91.0

Compare Source

Dependency Updates
  • update dependency it.krzeminski:snakeyaml-engine-kmp to v3.2.0 (#​746) (c71d9d4)

v0.90.0

Compare Source

Dependency Updates

v0.89.0

Compare Source

Dependency Updates
  • update plugin com.google.devtools.ksp to v2.2.10-2.0.2 (#​745) (ddbf030)

v0.88.0

Compare Source

Chores
  • add lock file for Wasm dependencies to fix incorrect tagging of release builds (b032da7)
Dependency Updates
  • internal: update actions/checkout action to v4.3.0 (#​741) (15ecb8c)
  • internal: update actions/checkout action to v5 (#​742) (a73bd72)
  • internal: update amannn/action-semantic-pull-request action to v6 (#​743) (e8933b3)
  • internal: update dependency node to v22 (#​739) (6464676)
  • internal: update gradle/actions action to v4.4.2 (#​737) (2320792)

v0.85.0

Compare Source

Chores
  • fix publishing to Maven Central (a3415f0)
Dependency Updates
  • internal: update dependency com.diffplug.spotless:spotless-plugin-gradle to v7.1.0 (#​727) (84c4b74)
  • internal: update dependency conventional-changelog-conventionalcommits to v9.1.0 (#​729) (3df4d8b)
  • internal: update dependency gradle to v8.14.3 (#​726) (05d0479)
  • internal: update dependency semantic-release to v24.2.7 (#​730) (898d5f8)

v0.83.0

Compare Source

Dependency Updates
  • update dependency com.squareup.okio:okio to v3.14.0 (#​722) (d7db716)

v0.82.0

Compare Source

Dependency Updates
  • internal: update gradle/actions action to v4.4.1 (#​717) (79930ac)
  • internal: update softprops/action-gh-release action to v2.3.0 (#​715) (cec35a7)
  • internal: update softprops/action-gh-release action to v2.3.2 (#​716) (7888434)
  • update dependency com.squareup.okio:okio to v3.13.0 (#​718) (c06c76b)

v0.81.0

Compare Source

Features
Dependency Updates

v0.80.1

Compare Source

Bug Fixes
  • make YamlMap::get throw IncorrectTypeException with clearer message when value is not of expected type (#​699) (81f4e67)

v0.80.0

Compare Source

Chores
  • change minimum supported JVM version to 11 (d5e47c4)
  • fix deprecated Gradle configuration (e199230)
  • group Kotest updates together (9830e5d)

v0.79.0

Compare Source

Dependency Updates
  • internal: update dependency com.diffplug.spotless:spotless-plugin-gradle to v7.0.4 (#​712) (a426dbc)
  • internal: update dependency conventional-changelog-conventionalcommits to v9 (#​708) (098eba0)
  • internal: update dependency gradle to v8.14.1 (#​709) (258482e)
  • internal: update dependency semantic-release to v24.2.4 (#​705) (7d5e8c8)
  • internal: update dependency semantic-release to v24.2.5 (#​711) (1da74f7)
  • internal: update gradle/actions action to v4.4.0 (#​706) (3159ae0)
  • update dependency com.squareup.okio:okio to v3.12.0 (#​713) (171ef5f)

v0.78.0

Compare Source

Dependency Updates

v0.77.1

Compare Source

Bug Fixes
  • don't throw ClassCastException when using scalar decoding methods with contextual descriptor (#​678) (64bd99a)
Dependency Updates
  • internal: update actions/setup-node action to v4.4.0 (#​690) (8b4f56d)
  • internal: update dependency gradle to v8.14 (#​693) (5b48934)
  • internal: update softprops/action-gh-release action to v2.2.2 (#​692) (794c65f)

v0.77.0

Compare Source

Dependency Updates
  • update dependency org.ajoberstar.reckon:reckon-gradle to v0.19.2 (#​689) (774df58)

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 force-pushed the renovate/all-minor-patch branch from 6ca5180 to 5b4668e Compare April 17, 2025 06:34
@renovate renovate bot changed the title fix(deps): update dependency com.charleskorn.kaml:kaml to v0.77.0 fix(deps): update all non-major dependencies Apr 17, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 738f439 to 8d37fb4 Compare April 27, 2025 14:07
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 9c24d67 to cc9081a Compare May 14, 2025 10:50
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from bb0ee40 to f034528 Compare May 22, 2025 21:17
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 698e4f6 to 6b95600 Compare June 6, 2025 19:08
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from ea7c509 to 0da1609 Compare June 16, 2025 00:54
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 0d2e573 to 99a0070 Compare June 28, 2025 22:28
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 99a0070 to abd0f55 Compare July 4, 2025 15:28
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 750a999 to 19b09b7 Compare July 21, 2025 17:38
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 7a78e6a to 62b5f63 Compare August 6, 2025 09:29
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from c1b5635 to ac414f9 Compare August 12, 2025 09:35
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 4e4376e to 07a2bbf Compare August 15, 2025 06:17
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 48c7b88 to 5f62fb4 Compare August 17, 2025 12:34
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 5f62fb4 to 8a001a2 Compare August 27, 2025 05:38
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from dfef27b to 77aa425 Compare September 25, 2025 20:45
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 52deb84 to 47ea613 Compare September 30, 2025 19:38
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from dbe7024 to fb2b33e Compare October 9, 2025 19:43
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 124cc43 to 5cfda7b Compare October 26, 2025 20:57
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 5cfda7b to 2eee82a Compare October 30, 2025 17:49
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 2eee82a to 831426a Compare October 31, 2025 12:11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant