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

build(deps): bump the versions group with 18 updates #64

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 20, 2025

Bumps the versions group with 18 updates:

Package From To
org.jetbrains.kotlinx:kotlinx-coroutines-core 1.9.0 1.10.1
org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm 1.9.0 1.10.1
org.jetbrains.kotlinx:kotlinx-serialization-json 1.7.3 1.8.0
com.charleskorn.kaml:kaml 0.66.0 0.67.0
org.jetbrains.exposed:exposed-java-time 0.57.0 0.58.0
org.jetbrains.exposed:exposed-jdbc 0.57.0 0.58.0
org.jetbrains.exposed:exposed-dao 0.57.0 0.58.0
org.jetbrains.exposed:exposed-core 0.57.0 0.58.0
org.xerial:sqlite-jdbc 3.47.1.0 3.48.0.0
com.github.MockBukkit:MockBukkit 4.12.0 4.27.0
ru.astrainteractive.klibs:mikro-core 1.8.11 1.8.13
ru.astrainteractive.klibs:kstorage 3.2.1 3.2.3
ru.astrainteractive.astralibs:exposed 3.17.1 3.19.2
ru.astrainteractive.astralibs:core 3.17.1 3.19.2
ru.astrainteractive.astralibs:menu-bukkit 3.17.1 3.19.2
ru.astrainteractive.astralibs:core-bukkit 3.17.1 3.19.2
ru.astrainteractive.astralibs:command 3.17.1 3.19.2
ru.astrainteractive.astralibs:command-bukkit 3.17.1 3.19.2

Updates org.jetbrains.kotlinx:kotlinx-coroutines-core from 1.9.0 to 1.10.1

Release notes

Sourced from org.jetbrains.kotlinx:kotlinx-coroutines-core's releases.

Version 1.10.1

  • Fixed binary incompatibility introduced for non-JVM targets in #4261 (#4309).

1.10.0

  • Kotlin was updated to 2.1.0 (#4284).
  • Introduced Flow.any, Flow.all, and Flow.none (#4212). Thanks, @​CLOVIS-AI!
  • Reorganized kotlinx-coroutines-debug and kotlinx-coroutines-core code to avoid a split package between the two artifacts (#4247). Note that directly referencing kotlinx.coroutines.debug.AgentPremain must now be replaced with kotlinx.coroutines.debug.internal.AgentPremain. Thanks, @​sellmair!
  • No longer shade byte-buddy in kotlinx-coroutines-debug, reducing the artifact size and simplifying the build configuration of client code. Thanks, @​sellmair!
  • Fixed NullPointerException when using Java-deserialized kotlinx-coroutines-core exceptions (#4291). Thanks, @​AlexRiedler!
  • Properly report exceptions thrown by CoroutineDispatcher.dispatch instead of raising internal errors (#4091). Thanks, @​zuevmaxim!
  • Fixed a bug that delayed scheduling of a Dispatchers.Default or Dispatchers.IO task after a yield() in rare scenarios (#4248).
  • Fixed a bug that prevented the main() coroutine on Wasm/WASI from executing after a delay() call in some scenarios (#4239).
  • Fixed scheduling of runBlocking tasks on Kotlin/Native that arrive after the runBlocking block was exited (#4245).
  • Fixed some terminal Flow operators sometimes resuming without taking cancellation into account (#4254). Thanks, @​jxdabc!
  • Fixed a bug on the JVM that caused coroutine-bound ThreadLocal values not to get cleaned when using non-CoroutineDispatcher continuation interceptors (#4296).
  • Small tweaks, fixes, and documentation improvements.
Changelog

Sourced from org.jetbrains.kotlinx:kotlinx-coroutines-core's changelog.

Version 1.10.1

  • Fixed binary incompatibility introduced for non-JVM targets in #4261 (#4309).

Version 1.10.0

  • Kotlin was updated to 2.1.0 (#4284).
  • Introduced Flow.any, Flow.all, and Flow.none (#4212). Thanks, @​CLOVIS-AI!
  • Reorganized kotlinx-coroutines-debug and kotlinx-coroutines-core code to avoid a split package between the two artifacts (#4247). Note that directly referencing kotlinx.coroutines.debug.AgentPremain must now be replaced with kotlinx.coroutines.debug.internal.AgentPremain. Thanks, @​sellmair!
  • No longer shade byte-buddy in kotlinx-coroutines-debug, reducing the artifact size and simplifying the build configuration of client code. Thanks, @​sellmair!
  • Fixed NullPointerException when using Java-deserialized kotlinx-coroutines-core exceptions (#4291). Thanks, @​AlexRiedler!
  • Properly report exceptions thrown by CoroutineDispatcher.dispatch instead of raising internal errors (#4091). Thanks, @​zuevmaxim!
  • Fixed a bug that delayed scheduling of a Dispatchers.Default or Dispatchers.IO task after a yield() in rare scenarios (#4248).
  • Fixed a bug that prevented the main() coroutine on Wasm/WASI from executing after a delay() call in some scenarios (#4239).
  • Fixed scheduling of runBlocking tasks on Kotlin/Native that arrive after the runBlocking block was exited (#4245).
  • Fixed some terminal Flow operators sometimes resuming without taking cancellation into account (#4254). Thanks, @​jxdabc!
  • Fixed a bug on the JVM that caused coroutine-bound ThreadLocal values not to get cleaned when using non-CoroutineDispatcher continuation interceptors (#4296).
  • Small tweaks, fixes, and documentation improvements.
Commits
  • ee92d16 Version 1.10.1
  • 9a773f1 Ignore a flaky test
  • 2a9b88c Fix binary incompatibility introduced in #4261 (#4310)
  • 33b18cd Version 1.10.0
  • d2f2717 Merge remote-tracking branch 'origin/master' into develop
  • bed3d29 Introduce Flow.any, Flow.all, Flow.none
  • ec83195 Disable timing-sensitive test on Windows
  • 8f83057 Do not initialize non-mocked Dispatchers.Main unnecessarily (#4301)
  • f8c0304 Properly cleanup thread locals for non-CoroutineDispatcher-intercepte… (#4303)
  • 2cafea4 Update Kotlin to 2.1.0 (#4284)
  • Additional commits viewable in compare view

Updates org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm from 1.9.0 to 1.10.1

Release notes

Sourced from org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm's releases.

Version 1.10.1

  • Fixed binary incompatibility introduced for non-JVM targets in #4261 (#4309).

1.10.0

  • Kotlin was updated to 2.1.0 (#4284).
  • Introduced Flow.any, Flow.all, and Flow.none (#4212). Thanks, @​CLOVIS-AI!
  • Reorganized kotlinx-coroutines-debug and kotlinx-coroutines-core code to avoid a split package between the two artifacts (#4247). Note that directly referencing kotlinx.coroutines.debug.AgentPremain must now be replaced with kotlinx.coroutines.debug.internal.AgentPremain. Thanks, @​sellmair!
  • No longer shade byte-buddy in kotlinx-coroutines-debug, reducing the artifact size and simplifying the build configuration of client code. Thanks, @​sellmair!
  • Fixed NullPointerException when using Java-deserialized kotlinx-coroutines-core exceptions (#4291). Thanks, @​AlexRiedler!
  • Properly report exceptions thrown by CoroutineDispatcher.dispatch instead of raising internal errors (#4091). Thanks, @​zuevmaxim!
  • Fixed a bug that delayed scheduling of a Dispatchers.Default or Dispatchers.IO task after a yield() in rare scenarios (#4248).
  • Fixed a bug that prevented the main() coroutine on Wasm/WASI from executing after a delay() call in some scenarios (#4239).
  • Fixed scheduling of runBlocking tasks on Kotlin/Native that arrive after the runBlocking block was exited (#4245).
  • Fixed some terminal Flow operators sometimes resuming without taking cancellation into account (#4254). Thanks, @​jxdabc!
  • Fixed a bug on the JVM that caused coroutine-bound ThreadLocal values not to get cleaned when using non-CoroutineDispatcher continuation interceptors (#4296).
  • Small tweaks, fixes, and documentation improvements.
Changelog

Sourced from org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm's changelog.

Version 1.10.1

  • Fixed binary incompatibility introduced for non-JVM targets in #4261 (#4309).

Version 1.10.0

  • Kotlin was updated to 2.1.0 (#4284).
  • Introduced Flow.any, Flow.all, and Flow.none (#4212). Thanks, @​CLOVIS-AI!
  • Reorganized kotlinx-coroutines-debug and kotlinx-coroutines-core code to avoid a split package between the two artifacts (#4247). Note that directly referencing kotlinx.coroutines.debug.AgentPremain must now be replaced with kotlinx.coroutines.debug.internal.AgentPremain. Thanks, @​sellmair!
  • No longer shade byte-buddy in kotlinx-coroutines-debug, reducing the artifact size and simplifying the build configuration of client code. Thanks, @​sellmair!
  • Fixed NullPointerException when using Java-deserialized kotlinx-coroutines-core exceptions (#4291). Thanks, @​AlexRiedler!
  • Properly report exceptions thrown by CoroutineDispatcher.dispatch instead of raising internal errors (#4091). Thanks, @​zuevmaxim!
  • Fixed a bug that delayed scheduling of a Dispatchers.Default or Dispatchers.IO task after a yield() in rare scenarios (#4248).
  • Fixed a bug that prevented the main() coroutine on Wasm/WASI from executing after a delay() call in some scenarios (#4239).
  • Fixed scheduling of runBlocking tasks on Kotlin/Native that arrive after the runBlocking block was exited (#4245).
  • Fixed some terminal Flow operators sometimes resuming without taking cancellation into account (#4254). Thanks, @​jxdabc!
  • Fixed a bug on the JVM that caused coroutine-bound ThreadLocal values not to get cleaned when using non-CoroutineDispatcher continuation interceptors (#4296).
  • Small tweaks, fixes, and documentation improvements.
Commits
  • ee92d16 Version 1.10.1
  • 9a773f1 Ignore a flaky test
  • 2a9b88c Fix binary incompatibility introduced in #4261 (#4310)
  • 33b18cd Version 1.10.0
  • d2f2717 Merge remote-tracking branch 'origin/master' into develop
  • bed3d29 Introduce Flow.any, Flow.all, Flow.none
  • ec83195 Disable timing-sensitive test on Windows
  • 8f83057 Do not initialize non-mocked Dispatchers.Main unnecessarily (#4301)
  • f8c0304 Properly cleanup thread locals for non-CoroutineDispatcher-intercepte… (#4303)
  • 2cafea4 Update Kotlin to 2.1.0 (#4284)
  • Additional commits viewable in compare view

Updates org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm from 1.9.0 to 1.10.1

Release notes

Sourced from org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm's releases.

Version 1.10.1

  • Fixed binary incompatibility introduced for non-JVM targets in #4261 (#4309).

1.10.0

  • Kotlin was updated to 2.1.0 (#4284).
  • Introduced Flow.any, Flow.all, and Flow.none (#4212). Thanks, @​CLOVIS-AI!
  • Reorganized kotlinx-coroutines-debug and kotlinx-coroutines-core code to avoid a split package between the two artifacts (#4247). Note that directly referencing kotlinx.coroutines.debug.AgentPremain must now be replaced with kotlinx.coroutines.debug.internal.AgentPremain. Thanks, @​sellmair!
  • No longer shade byte-buddy in kotlinx-coroutines-debug, reducing the artifact size and simplifying the build configuration of client code. Thanks, @​sellmair!
  • Fixed NullPointerException when using Java-deserialized kotlinx-coroutines-core exceptions (#4291). Thanks, @​AlexRiedler!
  • Properly report exceptions thrown by CoroutineDispatcher.dispatch instead of raising internal errors (#4091). Thanks, @​zuevmaxim!
  • Fixed a bug that delayed scheduling of a Dispatchers.Default or Dispatchers.IO task after a yield() in rare scenarios (#4248).
  • Fixed a bug that prevented the main() coroutine on Wasm/WASI from executing after a delay() call in some scenarios (#4239).
  • Fixed scheduling of runBlocking tasks on Kotlin/Native that arrive after the runBlocking block was exited (#4245).
  • Fixed some terminal Flow operators sometimes resuming without taking cancellation into account (#4254). Thanks, @​jxdabc!
  • Fixed a bug on the JVM that caused coroutine-bound ThreadLocal values not to get cleaned when using non-CoroutineDispatcher continuation interceptors (#4296).
  • Small tweaks, fixes, and documentation improvements.
Changelog

Sourced from org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm's changelog.

Version 1.10.1

  • Fixed binary incompatibility introduced for non-JVM targets in #4261 (#4309).

Version 1.10.0

  • Kotlin was updated to 2.1.0 (#4284).
  • Introduced Flow.any, Flow.all, and Flow.none (#4212). Thanks, @​CLOVIS-AI!
  • Reorganized kotlinx-coroutines-debug and kotlinx-coroutines-core code to avoid a split package between the two artifacts (#4247). Note that directly referencing kotlinx.coroutines.debug.AgentPremain must now be replaced with kotlinx.coroutines.debug.internal.AgentPremain. Thanks, @​sellmair!
  • No longer shade byte-buddy in kotlinx-coroutines-debug, reducing the artifact size and simplifying the build configuration of client code. Thanks, @​sellmair!
  • Fixed NullPointerException when using Java-deserialized kotlinx-coroutines-core exceptions (#4291). Thanks, @​AlexRiedler!
  • Properly report exceptions thrown by CoroutineDispatcher.dispatch instead of raising internal errors (#4091). Thanks, @​zuevmaxim!
  • Fixed a bug that delayed scheduling of a Dispatchers.Default or Dispatchers.IO task after a yield() in rare scenarios (#4248).
  • Fixed a bug that prevented the main() coroutine on Wasm/WASI from executing after a delay() call in some scenarios (#4239).
  • Fixed scheduling of runBlocking tasks on Kotlin/Native that arrive after the runBlocking block was exited (#4245).
  • Fixed some terminal Flow operators sometimes resuming without taking cancellation into account (#4254). Thanks, @​jxdabc!
  • Fixed a bug on the JVM that caused coroutine-bound ThreadLocal values not to get cleaned when using non-CoroutineDispatcher continuation interceptors (#4296).
  • Small tweaks, fixes, and documentation improvements.
Commits
  • ee92d16 Version 1.10.1
  • 9a773f1 Ignore a flaky test
  • 2a9b88c Fix binary incompatibility introduced in #4261 (#4310)
  • 33b18cd Version 1.10.0
  • d2f2717 Merge remote-tracking branch 'origin/master' into develop
  • bed3d29 Introduce Flow.any, Flow.all, Flow.none
  • ec83195 Disable timing-sensitive test on Windows
  • 8f83057 Do not initialize non-mocked Dispatchers.Main unnecessarily (#4301)
  • f8c0304 Properly cleanup thread locals for non-CoroutineDispatcher-intercepte… (#4303)
  • 2cafea4 Update Kotlin to 2.1.0 (#4284)
  • Additional commits viewable in compare view

Updates org.jetbrains.kotlinx:kotlinx-serialization-json from 1.7.3 to 1.8.0

Release notes

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

1.8.0

This release contains all of the changes from 1.8.0-RC. Kotlin 2.1.0 is used as a default, while upcoming 2.1.10 is also supported. Also added small bugfixes, including speedup of ProtoWireType.from (#2879).

Changelog for 1.8.0-RC is presented below:

@JsonIgnoreUnknownKeys annotation

Previously, only global setting JsonBuilder.ignoreUnknownKeys controlled whether Json parser would throw exception if input contained a property that was not declared in a @Serializable class. There were a lot of complaints that this setting is not flexible enough. To address them, we added new @JsonIgnoreUnknownKeys annotation that can be applied on a per-class basis. With this annotation, it is possible to allow unknown properties for annotated classes, while general decoding methods (such as Json.decodeFromString and others) would still reject them for everything else. See details in the corresponding PR.

Stabilization of SerialDescriptor API and @SealedSerializationApi annotation

SerialDescriptor, SerialKind, and related API has been around for a long time and has proven itself useful. The main reason @ExperimentalSerializationApi was on SerialDescriptor's properties is that we wanted to discourage people from subclassing it. Fortunately, Kotlin 2.1 provides a special mechanism for such a case — SubclassOptInRequired. New kotlinx.serialization.SealedSerializationApi annotation designates APIs as public for use, but closed for implementation — the case for SerialDescriptor, which is a non-sealed interface for technical reasons. Now you can use most of SerialDescriptor and its builders API without the need to opt-in into experimental serialization API. See the PR for more details.

Note: All SerialKinds are stable API now, except PolymorphicKind — we may want to expand it in the future.

Generate Java 8's default method implementations in interfaces

TL;DR This change ensures better binary compatibility in the future for library. You should not experience any difference from it.

kotlinx.serialization library contains a lot of interfaces with default method implementations. Historically, Kotlin compiled a synthetic DefaultImpls class for them. Starting from Kotlin 1.4, it was possible to compile them using as Java 8's default methods to ensure that new methods can still be added to interfaces without the need for implementors to recompile. To preserve binary compatibility with existing clients, a special all-compatbility mode is supported in compiler to generate both default methods and synthetic DefaultImpls class.

Now, kotlinx.serialization finally makes use of this all-compatibility mode, which potentially allows us to add new methods to interfaces such as SerialDescriptor, Encoder, Decoder, etc., without breaking existing clients. This change is expected to have no effect on existing clients, and no action from your side is required.

... (truncated)

Changelog

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

1.8.0 / 2025-01-06

This release contains all of the changes from 1.8.0-RC. Kotlin 2.1.0 is used as a default, while upcoming 2.1.10 is also supported. Also added small bugfixes, including speedup of ProtoWireType.from (#2879).

1.8.0-RC / 2024-12-10

This is a release candidate for the next version. It is based on Kotlin 2.1.0 and includes a few new features, as well as bugfixes and improvements:

@JsonIgnoreUnknownKeys annotation

Previously, only global setting JsonBuilder.ignoreUnknownKeys controlled whether Json parser would throw exception if input contained a property that was not declared in a @Serializable class. There were a lot of complaints that this setting is not flexible enough. To address them, we added new @JsonIgnoreUnknownKeys annotation that can be applied on a per-class basis. With this annotation, it is possible to allow unknown properties for annotated classes, while general decoding methods (such as Json.decodeFromString and others) would still reject them for everything else. See details in the corresponding PR.

Stabilization of SerialDescriptor API and @SealedSerializationApi annotation

SerialDescriptor, SerialKind, and related API has been around for a long time and has proven itself useful. The main reason @ExperimentalSerializationApi was on SerialDescriptor's properties is that we wanted to discourage people from subclassing it. Fortunately, Kotlin 2.1 provides a special mechanism for such a case — SubclassOptInRequired. New kotlinx.serialization.SealedSerializationApi annotation designates APIs as public for use, but closed for implementation — the case for SerialDescriptor, which is a non-sealed interface for technical reasons. Now you can use most of SerialDescriptor and its builders API without the need to opt-in into experimental serialization API. See the PR for more details.

Note: All SerialKinds are stable API now, except PolymorphicKind — we may want to expand it in the future.

Generate Java 8's default method implementations in interfaces

TL;DR This change ensures better binary compatibility in the future for library. You should not experience any difference from it.

kotlinx.serialization library contains a lot of interfaces with default method implementations. Historically, Kotlin compiled a synthetic DefaultImpls class for them. Starting from Kotlin 1.4, it was possible to compile them using as Java 8's default methods to ensure that new methods can still be added to interfaces without the need for implementors to recompile. To preserve binary compatibility with existing clients, a special all-compatbility mode is supported in compiler

... (truncated)

Commits

Updates com.charleskorn.kaml:kaml from 0.66.0 to 0.67.0

Release notes

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

0.67.0

0.67.0 (2024-12-20)

Features

Dependency Updates

  • internal: update actions/setup-java action to v4.6.0 (#651) (8a16919)
  • internal: update gradle/actions action to v4.2.2 (#650) (2d074bc)
  • internal: update softprops/action-gh-release action to v2.2.0 (#647) (e4c96cb)
Commits
  • 4389472 feat: Make Yaml nodes serializable (#642)
  • 8a16919 deps(internal): update actions/setup-java action to v4.6.0 (#651)
  • 2d074bc deps(internal): update gradle/actions action to v4.2.2 (#650)
  • e4c96cb deps(internal): update softprops/action-gh-release action to v2.2.0 (#647)
  • See full diff in compare view

Updates org.jetbrains.exposed:exposed-java-time from 0.57.0 to 0.58.0

Release notes

Sourced from org.jetbrains.exposed:exposed-java-time's releases.

0.58.0

Change log

New Contributors

Changelog

Sourced from org.jetbrains.exposed:exposed-java-time's changelog.

0.58.0

What's Changed

Breaking changes:

  • fix: EXPOSED-662 SchemaUtils.listTables() returns empty list & closes db connection by @​joc-a in JetBrains/Exposed#2331
    • SchemaUtils.listTables() returns only the tables from the current schema. The behaviour was returned to the 0.56.0 version.
    • To get tables from all the schemas the method SchemaUtils.listTablesInAllSchemas() could be used.

Features:

Infrastructure:

  • springFramework 6.2.1
  • log4j2 2.24.3
  • org.junit:junit-bom 5.11.4
  • org.jetbrains.dokka 2.0.0
  • springBoot 3.4.1
  • kotlinCoroutines 1.10.0
  • kotlinCoroutines 1.10.1
  • org.xerial:sqlite-jdbc from 3.47.2.0
  • org.jetbrains.kotlinx.binary-compatibility-validator 0.17.0
  • org.jetbrains.kotlinx:kotlinx-serialization-json 1.8.0

Docs:

Commits
  • 628a5ee 0.58.0
  • 2652f5e 0.58.0
  • 2903535 0.58.0
  • 9105cc1 fix: EXPOSED-662 SchemaUtils.listTables() returns empty list & closes db conn...
  • b5c934d EXPOSED-675 Clarify that sort methods are from the Kotlin std lib in DAO's 'C...
  • e7ad4df docs: EXPOSED-682 Switch api link from deprecated select() (#2349)
  • a9feb99 build: Enable the new Dokka Gradle plugin (#2341)
  • 9fe5ad2 test: EXPOSED-683 Fix flaky task sqlserverComposeUp on TC build (#2350)
  • d763e8e chore: Deprecate functions that should be replaced by migration functions (#2...
  • ffa3eef feat: EXPOSED-654 Allow customizing the check constraint names of columns wit...
  • Additional commits viewable in compare view

Updates org.jetbrains.exposed:exposed-jdbc from 0.57.0 to 0.58.0

Release notes

Sourced from org.jetbrains.exposed:exposed-jdbc's releases.

0.58.0

Change log

New Contributors

Changelog

Sourced from org.jetbrains.exposed:exposed-jdbc's changelog.

0.58.0

What's Changed

Breaking changes:

  • fix: EXPOSED-662 SchemaUtils.listTables() returns empty list & closes db connection by @​joc-a in JetBrains/Exposed#2331
    • SchemaUtils.listTables() returns only the tables from the current schema. The behaviour was returned to the 0.56.0 version.
    • To get tables from all the schemas the method SchemaUtils.listTablesInAllSchemas() could be used.

Features:

Infrastructure:

  • springFramework 6.2.1
  • log4j2 2.24.3
  • org.junit:junit-bom 5.11.4
  • org.jetbrains.dokka 2.0.0
  • springBoot 3.4.1
  • kotlinCoroutines 1.10.0
  • kotlinCoroutines 1.10.1
  • org.xerial:sqlite-jdbc from 3.47.2.0
  • org.jetbrains.kotlinx.binary-compatibility-validator 0.17.0
  • org.jetbrains.kotlinx:kotlinx-serialization-json 1.8.0

Docs:

Commits
  • 628a5ee 0.58.0
  • 2652f5e 0.58.0
  • 2903535 0.58.0
  • 9105cc1 fix: EXPOSED-662 SchemaUtils.listTables() returns empty list & closes db conn...
  • b5c934d EXPOSED-675 Clarify that sort methods are from the Kotlin std lib in DAO's 'C...
  • e7ad4df docs: EXPOSED-682 Switch api link from deprecated select() (#2349)
  • a9feb99 build: Enable the new Dokka Gradle plugin (#2341)
  • 9fe5ad2 test: EXPOSED-683 Fix flaky task sqlserverComposeUp on TC build (#2350)
  • d763e8e chore: Deprecate functions that should be replaced by migration functions (#2...
  • ffa3eef feat: EXPOSED-654 Allow customizing the check constraint names of columns wit...
  • Additional commits viewable in compare view

Updates org.jetbrains.exposed:exposed-dao from 0.57.0 to 0.58.0

Release notes

Sourced from org.jetbrains.exposed:exposed-dao's releases.

0.58.0

Change log

New Contributors

Changelog

Sourced from org.jetbrains.exposed:exposed-dao's changelog.

0.58.0

What's Changed

Breaking changes:

  • fix: EXPOSED-662 SchemaUtils.listTables() returns empty list & closes db connection by @​joc-a in JetBrains/Exposed#2331
    • SchemaUtils.listTables() returns only the tables from the current schema. The behaviour was returned to the 0.56.0 version.
    • To get tables from all the schemas the method SchemaUtils.listTablesInAllSchemas() could be used.

Features:

Infrastructure:

  • springFramework 6.2.1
  • log4j2 2.24.3
  • org.junit:junit-bom 5.11.4
  • org.jetbrains.dokka 2.0.0
  • springBoot 3.4.1
  • kotlinCoroutines 1.10.0
  • kotlinCoroutines 1.10.1
  • org.xerial:sqlite-jdbc from 3.47.2.0
  • org.jetbrains.kotlinx.binary-compatibility-validator 0.17.0
  • org.jetbrains.kotlinx:kotlinx-serialization-json 1.8.0

Docs:

Commits
  • 628a5ee 0.58.0
  • 2652f5e 0.58.0
  • 2903535 0.58.0
  • 9105cc1 fix: EXPOSED-662 SchemaUtils.listTables() returns empty list & closes db conn...
  • b5c934d EXPOSED-675 Clarify that sort methods are from the Kotlin std lib in DAO's 'C...
  • e7ad4df docs: EXPOSED-682 Switch api link from deprecated select() (#2349)
  • a9feb99 build: Enable the new Dokka Gradle plugin (#2341)
  • 9fe5ad2 test: EXPOSED-683 Fix flaky task sqlserverComposeUp on TC build (#2350)
  • d763e8e chore: Deprecate functions that should be replaced by migration functions (#2...
  • ffa3eef feat: EXPOSED-654 Allow customizing the check constraint names of columns wit...
  • Additional commits viewable in compare view

Updates org.jetbrains.exposed:exposed-core from 0.57.0 to 0.58.0

Release notes

Sourced from org.jetbrains.exposed:exposed-core's releases.

0.58.0

Change log

New Contributors

Changelog

Sourced from org.jetbrains.exposed:exposed-core's changelog.

0.58.0

What's Changed

Breaking changes:

  • fix: EXPOSED-662 SchemaUtils.listTables() returns empty list & closes db connection by @​joc-a in JetBrains/Exposed#2331
    • SchemaUtils.listTables() returns only the tables from the current schema. The behaviour was returned to the 0.56.0 version.
    • To get tables from all the schemas the method SchemaUtils.listTablesInAllSchemas() could be used.

Features:

  • feat: [MariaDB] Support RETURNING clause by @​devgor88 in JetBrains/Exposed#2330
  • feat: EXPOSED-654 Allow customizing the check constraint...

    Description has been truncated

Bumps the versions group with 18 updates:

| Package | From | To |
| --- | --- | --- |
| [org.jetbrains.kotlinx:kotlinx-coroutines-core](https://github.com/Kotlin/kotlinx.coroutines) | `1.9.0` | `1.10.1` |
| [org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm](https://github.com/Kotlin/kotlinx.coroutines) | `1.9.0` | `1.10.1` |
| [org.jetbrains.kotlinx:kotlinx-serialization-json](https://github.com/Kotlin/kotlinx.serialization) | `1.7.3` | `1.8.0` |
| [com.charleskorn.kaml:kaml](https://github.com/charleskorn/kaml) | `0.66.0` | `0.67.0` |
| [org.jetbrains.exposed:exposed-java-time](https://github.com/JetBrains/Exposed) | `0.57.0` | `0.58.0` |
| [org.jetbrains.exposed:exposed-jdbc](https://github.com/JetBrains/Exposed) | `0.57.0` | `0.58.0` |
| [org.jetbrains.exposed:exposed-dao](https://github.com/JetBrains/Exposed) | `0.57.0` | `0.58.0` |
| [org.jetbrains.exposed:exposed-core](https://github.com/JetBrains/Exposed) | `0.57.0` | `0.58.0` |
| [org.xerial:sqlite-jdbc](https://github.com/xerial/sqlite-jdbc) | `3.47.1.0` | `3.48.0.0` |
| [com.github.MockBukkit:MockBukkit](https://github.com/MockBukkit/MockBukkit) | `4.12.0` | `4.27.0` |
| [ru.astrainteractive.klibs:mikro-core](https://github.com/makeevrserg/klibs.mikro) | `1.8.11` | `1.8.13` |
| [ru.astrainteractive.klibs:kstorage](https://github.com/makeevrserg/klibs.kstorage) | `3.2.1` | `3.2.3` |
| [ru.astrainteractive.astralibs:exposed](https://github.com/Astra-Interactive/AstraLibs) | `3.17.1` | `3.19.2` |
| [ru.astrainteractive.astralibs:core](https://github.com/Astra-Interactive/AstraLibs) | `3.17.1` | `3.19.2` |
| [ru.astrainteractive.astralibs:menu-bukkit](https://github.com/Astra-Interactive/AstraLibs) | `3.17.1` | `3.19.2` |
| [ru.astrainteractive.astralibs:core-bukkit](https://github.com/Astra-Interactive/AstraLibs) | `3.17.1` | `3.19.2` |
| [ru.astrainteractive.astralibs:command](https://github.com/Astra-Interactive/AstraLibs) | `3.17.1` | `3.19.2` |
| [ru.astrainteractive.astralibs:command-bukkit](https://github.com/Astra-Interactive/AstraLibs) | `3.17.1` | `3.19.2` |


Updates `org.jetbrains.kotlinx:kotlinx-coroutines-core` from 1.9.0 to 1.10.1
- [Release notes](https://github.com/Kotlin/kotlinx.coroutines/releases)
- [Changelog](https://github.com/Kotlin/kotlinx.coroutines/blob/master/CHANGES.md)
- [Commits](Kotlin/kotlinx.coroutines@1.9.0...1.10.1)

Updates `org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm` from 1.9.0 to 1.10.1
- [Release notes](https://github.com/Kotlin/kotlinx.coroutines/releases)
- [Changelog](https://github.com/Kotlin/kotlinx.coroutines/blob/master/CHANGES.md)
- [Commits](Kotlin/kotlinx.coroutines@1.9.0...1.10.1)

Updates `org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm` from 1.9.0 to 1.10.1
- [Release notes](https://github.com/Kotlin/kotlinx.coroutines/releases)
- [Changelog](https://github.com/Kotlin/kotlinx.coroutines/blob/master/CHANGES.md)
- [Commits](Kotlin/kotlinx.coroutines@1.9.0...1.10.1)

Updates `org.jetbrains.kotlinx:kotlinx-serialization-json` from 1.7.3 to 1.8.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.7.3...v1.8.0)

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

Updates `org.jetbrains.exposed:exposed-java-time` from 0.57.0 to 0.58.0
- [Release notes](https://github.com/JetBrains/Exposed/releases)
- [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md)
- [Commits](JetBrains/Exposed@0.57.0...0.58.0)

Updates `org.jetbrains.exposed:exposed-jdbc` from 0.57.0 to 0.58.0
- [Release notes](https://github.com/JetBrains/Exposed/releases)
- [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md)
- [Commits](JetBrains/Exposed@0.57.0...0.58.0)

Updates `org.jetbrains.exposed:exposed-dao` from 0.57.0 to 0.58.0
- [Release notes](https://github.com/JetBrains/Exposed/releases)
- [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md)
- [Commits](JetBrains/Exposed@0.57.0...0.58.0)

Updates `org.jetbrains.exposed:exposed-core` from 0.57.0 to 0.58.0
- [Release notes](https://github.com/JetBrains/Exposed/releases)
- [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md)
- [Commits](JetBrains/Exposed@0.57.0...0.58.0)

Updates `org.jetbrains.exposed:exposed-jdbc` from 0.57.0 to 0.58.0
- [Release notes](https://github.com/JetBrains/Exposed/releases)
- [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md)
- [Commits](JetBrains/Exposed@0.57.0...0.58.0)

Updates `org.jetbrains.exposed:exposed-dao` from 0.57.0 to 0.58.0
- [Release notes](https://github.com/JetBrains/Exposed/releases)
- [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md)
- [Commits](JetBrains/Exposed@0.57.0...0.58.0)

Updates `org.jetbrains.exposed:exposed-core` from 0.57.0 to 0.58.0
- [Release notes](https://github.com/JetBrains/Exposed/releases)
- [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md)
- [Commits](JetBrains/Exposed@0.57.0...0.58.0)

Updates `org.xerial:sqlite-jdbc` from 3.47.1.0 to 3.48.0.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.47.1.0...3.48.0.0)

Updates `com.github.MockBukkit:MockBukkit` from 4.12.0 to 4.27.0
- [Commits](MockBukkit/MockBukkit@v4.12.0...v4.27.0)

Updates `ru.astrainteractive.klibs:mikro-core` from 1.8.11 to 1.8.13
- [Release notes](https://github.com/makeevrserg/klibs.mikro/releases)
- [Commits](https://github.com/makeevrserg/klibs.mikro/commits/1.8.13)

Updates `ru.astrainteractive.klibs:kstorage` from 3.2.1 to 3.2.3
- [Release notes](https://github.com/makeevrserg/klibs.kstorage/releases)
- [Commits](https://github.com/makeevrserg/klibs.kstorage/commits/3.2.3)

Updates `ru.astrainteractive.astralibs:exposed` from 3.17.1 to 3.19.2
- [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases)
- [Commits](Astra-Interactive/AstraLibs@3.17.1...3.19.2)

Updates `ru.astrainteractive.astralibs:core` from 3.17.1 to 3.19.2
- [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases)
- [Commits](Astra-Interactive/AstraLibs@3.17.1...3.19.2)

Updates `ru.astrainteractive.astralibs:menu-bukkit` from 3.17.1 to 3.19.2
- [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases)
- [Commits](Astra-Interactive/AstraLibs@3.17.1...3.19.2)

Updates `ru.astrainteractive.astralibs:core-bukkit` from 3.17.1 to 3.19.2
- [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases)
- [Commits](Astra-Interactive/AstraLibs@3.17.1...3.19.2)

Updates `ru.astrainteractive.astralibs:command` from 3.17.1 to 3.19.2
- [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases)
- [Commits](Astra-Interactive/AstraLibs@3.17.1...3.19.2)

Updates `ru.astrainteractive.astralibs:command-bukkit` from 3.17.1 to 3.19.2
- [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases)
- [Commits](Astra-Interactive/AstraLibs@3.17.1...3.19.2)

Updates `ru.astrainteractive.astralibs:core` from 3.17.1 to 3.19.2
- [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases)
- [Commits](Astra-Interactive/AstraLibs@3.17.1...3.19.2)

Updates `ru.astrainteractive.astralibs:menu-bukkit` from 3.17.1 to 3.19.2
- [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases)
- [Commits](Astra-Interactive/AstraLibs@3.17.1...3.19.2)

Updates `ru.astrainteractive.astralibs:core-bukkit` from 3.17.1 to 3.19.2
- [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases)
- [Commits](Astra-Interactive/AstraLibs@3.17.1...3.19.2)

Updates `ru.astrainteractive.astralibs:command` from 3.17.1 to 3.19.2
- [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases)
- [Commits](Astra-Interactive/AstraLibs@3.17.1...3.19.2)

Updates `ru.astrainteractive.astralibs:command-bukkit` from 3.17.1 to 3.19.2
- [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases)
- [Commits](Astra-Interactive/AstraLibs@3.17.1...3.19.2)

---
updated-dependencies:
- dependency-name: org.jetbrains.kotlinx:kotlinx-coroutines-core
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: org.jetbrains.kotlinx:kotlinx-serialization-json
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: com.charleskorn.kaml:kaml
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: org.jetbrains.exposed:exposed-java-time
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: org.jetbrains.exposed:exposed-jdbc
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: org.jetbrains.exposed:exposed-dao
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: org.jetbrains.exposed:exposed-core
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: org.jetbrains.exposed:exposed-jdbc
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: org.jetbrains.exposed:exposed-dao
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: org.jetbrains.exposed:exposed-core
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: org.xerial:sqlite-jdbc
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: com.github.MockBukkit:MockBukkit
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: ru.astrainteractive.klibs:mikro-core
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: versions
- dependency-name: ru.astrainteractive.klibs:kstorage
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: versions
- dependency-name: ru.astrainteractive.astralibs:exposed
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: ru.astrainteractive.astralibs:core
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: ru.astrainteractive.astralibs:menu-bukkit
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: ru.astrainteractive.astralibs:core-bukkit
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: ru.astrainteractive.astralibs:command
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: ru.astrainteractive.astralibs:command-bukkit
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: ru.astrainteractive.astralibs:core
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: ru.astrainteractive.astralibs:menu-bukkit
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: ru.astrainteractive.astralibs:core-bukkit
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: ru.astrainteractive.astralibs:command
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: ru.astrainteractive.astralibs:command-bukkit
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
...

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 Jan 20, 2025
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant