Skip to content
This repository was archived by the owner on Nov 13, 2025. It is now read-only.

Bump the kotlin group across 1 directory with 6 updates#52

Merged
Buried-In-Code merged 1 commit intomainfrom
dependabot/gradle/kotlin-2e8d6644d3
Jul 11, 2025
Merged

Bump the kotlin group across 1 directory with 6 updates#52
Buried-In-Code merged 1 commit intomainfrom
dependabot/gradle/kotlin-2e8d6644d3

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Jul 11, 2025

Bumps the kotlin group with 6 updates in the / directory:

Package From To
org.junit.jupiter:junit-jupiter 5.13.2 5.13.3
org.jetbrains.kotlinx:kotlinx-datetime 0.7.0-0.6.x-compat 0.7.1-0.6.x-compat
org.jetbrains.kotlinx:kotlinx-serialization-json 1.8.1 1.9.0
org.apache.logging.log4j:log4j-slf4j2-impl 2.25.0 2.25.1
org.xerial:sqlite-jdbc 3.50.1.0 3.50.2.0
org.jlleitschuh.gradle.ktlint 12.3.0 13.0.0

Updates org.junit.jupiter:junit-jupiter from 5.13.2 to 5.13.3

Release notes

Sourced from org.junit.jupiter:junit-jupiter's releases.

JUnit 5.13.3 = Platform 1.13.3 + Jupiter 5.13.3 + Vintage 5.13.3

See Release Notes.

Full Changelog: junit-team/junit-framework@r5.13.2...r5.13.3

Commits
  • 9e8abdd Release 5.13.3
  • 8a0be13 Improve message of discovery issues for ineffective @Order annotations (#4718)
  • 59d562e Fix Javadoc references
  • f4c202b Strip reasons when concatenating them in ConditionEvaluationResult
  • e5d0e0b Fix multiple issues with ConditionEvaluationResult reason values
  • e5c9a56 Improve display names in tests
  • cf19095 Polish release notes
  • aec59d2 Update dependency com.puppycrawl.tools:checkstyle to v10.26.1
  • 7d8fe2a Update dependency com.puppycrawl.tools:checkstyle to v10.26.0
  • d1ffa36 Update dependency com.puppycrawl.tools:checkstyle to v10.25.1
  • Additional commits viewable in compare view

Updates org.jetbrains.kotlinx:kotlinx-datetime from 0.7.0-0.6.x-compat to 0.7.1-0.6.x-compat

Release notes

Sourced from org.jetbrains.kotlinx:kotlinx-datetime's releases.

v0.7.1

  • Add kotlinx.datetime.Instant and kotlinx.datetime.Clock type aliases to, respectively, kotlin.time.Instant and kotlin.time.Clock to make migration more convenient.
  • Add a fallback timezone database implementation for Darwin that uses the Foundation framework if the timezone database is unavailable on the filesystem (#485).
  • Restore binary compatibility in string format definitions utilizing dates on the JVM (#545).
Changelog

Sourced from org.jetbrains.kotlinx:kotlinx-datetime's changelog.

CHANGELOG

0.7.1

  • Add kotlinx.datetime.Instant and kotlinx.datetime.Clock type aliases to, respectively, kotlin.time.Instant and kotlin.time.Clock to make migration more convenient.
  • Add a fallback timezone database implementation for Darwin that uses the Foundation framework if the timezone database is unavailable on the filesystem (#485).
  • Restore binary compatibility in string format definitions utilizing dates on the JVM (#545).

0.7.0

Breaking changes:

  • Remove kotlinx.datetime.Instant and kotlinx.datetime.Clock in favor of kotlin.time.Instant (#506). See https://github.com/Kotlin/kotlinx-datetime?tab=readme-ov-file#deprecation-of-instant for a description of what to do if this causes problems.
  • Unify the range of admissible LocalDate and LocalDateTime values on all platforms (#432).
  • Rename dayOfMonth to day, monthNumber to month (#84).
  • Make DayOfWeek and Month no longer type aliases to java.time.DayOfWeek and java.time.Month (#96).
  • Make "UTC" and not "Z" be the timezone identifier for TimeZone.UTC (#474).
  • Accept "z" in TimeZone.of, with the same meaning as "Z" (#529).
  • Add DateTimeFormat-based KSerializer implementations for datetime entities, and change the default serializers to be based on toString/parse pairs (#415).

Additions:

  • Add java.io.Serializable implementations for most of the entities in the library (#143). Thanks for spotting and fixing a potential vulnerability, @​lukellmann!
  • Add LocalDateRange, a range of LocalDate values (#190). Thanks, @​PeterAttardo!
  • Add YearMonth and YearMonthRange (#457).

Tweaks and fixes:

  • Support obtaining the system timezone on old Debian-based distributions (#430).
  • Fix not being able to parse some valid timezone identifiers using the timeZoneId() directive (#444).
  • Use the grammar defined in RFC 9557 for parsing timezone identifiers in the timeZoneId() directive, allowing parsing values not present in the timezone database (#531).
  • Improved error messages when formatting an invalid DateTimeComponents value (#471).
  • Set the JPMS dependency on kotlinx.serialization.core to be optional (#496).

0.6.2

  • Add the Wasm/WASI target support (#366). Thanks, @​igoriakovlev!
  • Add TimeSource.asClock (#164). Thanks, @​hfhbd!
  • Implement parsing and formatting day-of-year (#414)
  • Improve the precision of NSDate to Instant conversions (#427)
  • Deprecate DatePeriod.plus and DateTimePeriod.plus with a warning (#381)
  • Deprecate Clock.asTimeSource with a warning (#372)
  • Fix a bug in module-info preventing using kotlinx.datetime.format together with JPMS (#438). Thanks, @​cdelabou!
  • Small tweaks and fixes.

0.6.1

  • Prohibit parsing non-ASCII digits as numbers in DateTimeFormat (#405)
  • More accurately determine which files represent time zones and which don't on Linux and Darwin (#395)
  • Fix a regression that occasionally considered the right boundary of a time overlap to be a part of it on Native (#399)

... (truncated)

Commits

Updates org.jetbrains.kotlinx:kotlinx-serialization-json from 1.8.1 to 1.9.0

Release notes

Sourced from org.jetbrains.kotlinx:kotlinx-serialization-json's releases.

1.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 the 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 the 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)
Changelog

Sourced from org.jetbrains.kotlinx:kotlinx-serialization-json's changelog.

1.9.0 / 2025-06-27

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)
Commits

Updates org.apache.logging.log4j:log4j-slf4j2-impl from 2.25.0 to 2.25.1

Updates org.xerial:sqlite-jdbc from 3.50.1.0 to 3.50.2.0

Release notes

Sourced from org.xerial:sqlite-jdbc's releases.

Release 3.50.2.0

Changelog

🚀 Features

sqlite

  • upgrade to sqlite 3.50.2 (fb62309)

🐛 Fixes

jdbc

  • update JDBC3DatabaseMetaData to enable supported features (524ac3a)
  • ResultSetMetaData.getCatalogName incorrectly returns the table name (891b650), closes #1279

unscoped

🛠 Build

deps

  • bump org.sonatype.central:central-publishing-maven-plugin (d891708)

📝 Documentation

  • replace maven central links (6eea8c5)
  • update maven central badge in readme (9a4afe8)

Contributors

We'd like to thank the following people for their contributions: Gauthier, Gauthier Roebroeck, alexytomi, newdenim, prrvchr

Commits
  • 2d9f1ff chore(release): 3.50.2.0 [skip ci]
  • 7b493d5 chore: update native libraries
  • fb62309 feat(sqlite): upgrade to sqlite 3.50.2
  • 6eea8c5 docs: replace maven central links
  • d891708 build(deps): bump org.sonatype.central:central-publishing-maven-plugin
  • 170ce6e fix: faulty android detection
  • 524ac3a fix(jdbc): update JDBC3DatabaseMetaData to enable supported features
  • 9a4afe8 docs: update maven central badge in readme
  • 891b650 fix(jdbc): ResultSetMetaData.getCatalogName incorrectly returns the table name
  • 1a0662b chore(release): prepare next snapshot [skip ci]
  • See full diff in compare view

Updates org.jlleitschuh.gradle.ktlint from 12.3.0 to 13.0.0

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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the kotlin group with 6 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [org.junit.jupiter:junit-jupiter](https://github.com/junit-team/junit-framework) | `5.13.2` | `5.13.3` |
| [org.jetbrains.kotlinx:kotlinx-datetime](https://github.com/Kotlin/kotlinx-datetime) | `0.7.0-0.6.x-compat` | `0.7.1-0.6.x-compat` |
| [org.jetbrains.kotlinx:kotlinx-serialization-json](https://github.com/Kotlin/kotlinx.serialization) | `1.8.1` | `1.9.0` |
| org.apache.logging.log4j:log4j-slf4j2-impl | `2.25.0` | `2.25.1` |
| [org.xerial:sqlite-jdbc](https://github.com/xerial/sqlite-jdbc) | `3.50.1.0` | `3.50.2.0` |
| org.jlleitschuh.gradle.ktlint | `12.3.0` | `13.0.0` |



Updates `org.junit.jupiter:junit-jupiter` from 5.13.2 to 5.13.3
- [Release notes](https://github.com/junit-team/junit-framework/releases)
- [Commits](junit-team/junit-framework@r5.13.2...r5.13.3)

Updates `org.jetbrains.kotlinx:kotlinx-datetime` from 0.7.0-0.6.x-compat to 0.7.1-0.6.x-compat
- [Release notes](https://github.com/Kotlin/kotlinx-datetime/releases)
- [Changelog](https://github.com/Kotlin/kotlinx-datetime/blob/master/CHANGELOG.md)
- [Commits](https://github.com/Kotlin/kotlinx-datetime/commits)

Updates `org.jetbrains.kotlinx:kotlinx-serialization-json` from 1.8.1 to 1.9.0
- [Release notes](https://github.com/Kotlin/kotlinx.serialization/releases)
- [Changelog](https://github.com/Kotlin/kotlinx.serialization/blob/master/CHANGELOG.md)
- [Commits](Kotlin/kotlinx.serialization@v1.8.1...v1.9.0)

Updates `org.apache.logging.log4j:log4j-slf4j2-impl` from 2.25.0 to 2.25.1

Updates `org.xerial:sqlite-jdbc` from 3.50.1.0 to 3.50.2.0
- [Release notes](https://github.com/xerial/sqlite-jdbc/releases)
- [Changelog](https://github.com/xerial/sqlite-jdbc/blob/master/CHANGELOG)
- [Commits](xerial/sqlite-jdbc@3.50.1.0...3.50.2.0)

Updates `org.jlleitschuh.gradle.ktlint` from 12.3.0 to 13.0.0

---
updated-dependencies:
- dependency-name: org.junit.jupiter:junit-jupiter
  dependency-version: 5.13.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: kotlin
- dependency-name: org.jetbrains.kotlinx:kotlinx-datetime
  dependency-version: 0.7.1-0.6.x-compat
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: kotlin
- dependency-name: org.jetbrains.kotlinx:kotlinx-serialization-json
  dependency-version: 1.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: kotlin
- dependency-name: org.apache.logging.log4j:log4j-slf4j2-impl
  dependency-version: 2.25.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: kotlin
- dependency-name: org.xerial:sqlite-jdbc
  dependency-version: 3.50.2.0
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: kotlin
- dependency-name: org.jlleitschuh.gradle.ktlint
  dependency-version: 13.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: kotlin
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Jul 11, 2025
@Buried-In-Code Buried-In-Code merged commit 458acfd into main Jul 11, 2025
3 checks passed
@Buried-In-Code Buried-In-Code deleted the dependabot/gradle/kotlin-2e8d6644d3 branch July 11, 2025 20:46
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

dependencies Pull requests that update a dependency file java Pull requests that update Java code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant