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 27 updates #21

Merged
merged 2 commits into from
Jun 10, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 10, 2024

Bumps the versions group with 27 updates:

Package From To
org.jetbrains.kotlinx:kotlinx-serialization-json 1.6.3 1.7.0
com.charleskorn.kaml:kaml 0.59.0 0.60.0
org.jetbrains.exposed:exposed-java-time 0.51.0 0.51.1
org.jetbrains.exposed:exposed-jdbc 0.51.0 0.51.1
org.jetbrains.exposed:exposed-dao 0.51.0 0.51.1
org.jetbrains.exposed:exposed-core 0.51.0 0.51.1
io.papermc.paper:paper-api 1.20.5-R0.1-SNAPSHOT 1.20.6-R0.1-SNAPSHOT
org.spigotmc:spigot-api 1.20.5-R0.1-SNAPSHOT 1.20.6-R0.1-SNAPSHOT
org.spigotmc:spigot 1.20.5-R0.1-SNAPSHOT 1.20.6-R0.1-SNAPSHOT
ru.astrainteractive.klibs:mikro-core 1.8.1 1.8.2
ru.astrainteractive.klibs:kdi 1.4.1 1.4.2
ru.astrainteractive.astralibs:orm 3.6.0 3.7.0
ru.astrainteractive.astralibs:core 3.6.0 3.7.0
ru.astrainteractive.astralibs:menu-bukkit 3.6.0 3.7.0
ru.astrainteractive.astralibs:core-bukkit 3.6.0 3.7.0
ru.astrainteractive.astralibs:command 3.6.0 3.7.0
ru.astrainteractive.astralibs:command-bukkit 3.6.0 3.7.0
ru.astrainteractive.gradleplugin.detekt 1.2.0 1.3.1
ru.astrainteractive.gradleplugin.detekt.compose 1.2.0 1.3.1
ru.astrainteractive.gradleplugin.dokka.root 1.2.0 1.3.1
ru.astrainteractive.gradleplugin.dokka.module 1.2.0 1.3.1
ru.astrainteractive.gradleplugin.java.core 1.2.0 1.3.1
ru.astrainteractive.gradleplugin.stub.javadoc 1.2.0 1.3.1
ru.astrainteractive.gradleplugin.publication 1.2.0 1.3.1
ru.astrainteractive.gradleplugin.root.info 1.2.0 1.3.1
ru.astrainteractive.gradleplugin.minecraft.empty 1.2.0 1.3.1
ru.astrainteractive.gradleplugin.minecraft.multiplatform 1.2.0 1.3.1

Updates org.jetbrains.kotlinx:kotlinx-serialization-json from 1.6.3 to 1.7.0

Release notes

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

1.7.0

This release contains all of the changes from 1.7.0-RC and is compatible with Kotlin 2.0. Please note that for reasons explained in the 1.7.0-RC changelog, it may not be possible to use it with the Kotlin 1.9.x compiler plugin. Yet, it is still fully backward compatible with previous versions.

The only difference with 1.7.0-RC is that the classDiscriminatorMode property in JsonBuilder is marked as experimental, as it should have been when it was introduced (#2680).

1.7.0-RC

This is a release candidate for the next version. It is based on Kotlin 2.0.0-RC3 and is fully compatible with a stable Kotlin 2.0 release. Due to a potential breaking change (see below), it requires a compiler plugin with a version at least of 2.0.0-RC1.

Important change: priority of PolymorphicSerializer for interfaces during call to serializer() function

Non-sealed interfaces in kotlinx.serialization are always serializable with a polymorphic serializer, even if they do not have @Serializable annotation. This also means that serializersModule.serializer<SomeInterface>() call will return you a serializer capable of polymorphism. This function was written in a way that it unconditionally returns a PolymorphicSerializer if type argument is a non-sealed interface. This caused problems with SerializersModule functionality, because actual module was not taken into consideration, and therefore it was impossible to override serializer for interface using 'contextual serialization' feature. The problem is described in detail here. To overcome these problems, we had to change the behavior of this function regarding interfaces. It now looks into SerializersModule first if T is a non-sealed interface, and only if there is no registered contextual serializer for T, it returns a polymorphic serializer.

Behavior before 1.7.0-RC:

interface SomeInterface
val module = SerializersModule {
contextual(SomeInterface::class, CustomSomeInterfaceSerializer)
}
// Prints PolymorphicSerializer<SomeInterface>:
println(module.serializer<SomeInterface>())

Behavior in 1.7.0-RC, 1.7.0, and higher:

interface SomeInterface
val module = SerializersModule {
contextual(SomeInterface::class, CustomSomeInterfaceSerializer)
}
// Prints CustomSomeInterfaceSerializer:
println(module.serializer<SomeInterface>())

We expect minimal impact from this change, but be aware of it anyway. Implementation details are available in this PR.

Due to the serializer() function being also a compiler intrinsic, code of kotlinx.serialization compiler plugin also accommodates this change in the 2.0 branch. To get a consistent result from both plugin and runtime, kotlinx.serialization compiler plugin should be at least of 2.0.0-RC1 version. To verify so, 1.7.0-RC runtime will be rejected by older plugins.

... (truncated)

Changelog

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

1.7.0 / 2024-06-05

This release contains all of the changes from 1.7.0-RC and is compatible with Kotlin 2.0. Please note that for reasons explained in the 1.7.0-RC changelog, it may not be possible to use it with the Kotlin 1.9.x compiler plugin. Yet, it is still fully backwards compatible with previous versions.

The only difference with 1.7.0-RC is that classDiscriminatorMode property in JsonBuilder is marked as experimental, as it should have been when it was introduced (#2680).

1.7.0-RC / 2024-05-16

This is a release candidate for the next version. It is based on Kotlin 2.0.0-RC3 and is fully compatible with a stable Kotlin 2.0 release. Due to a potential breaking change (see below), it requires a compiler plugin with a version at least of 2.0.0-RC1.

Important change: priority of PolymorphicSerializer for interfaces during call to serializer() function

Non-sealed interfaces in kotlinx.serialization are always serializable with a polymorphic serializer, even if they do not have @Serializable annotation. This also means that serializersModule.serializer<SomeInterface>() call will return you a serializer capable of polymorphism. This function was written in a way that it unconditionally returns a PolymorphicSerializer if type argument is a non-sealed interface. This caused problems with SerializersModule functionality, because actual module was not taken into consideration, and therefore it was impossible to override serializer for interface using 'contextual serialization' feature. The problem is described in details here. To overcome these problems, we had to change the behavior of this function regarding interfaces. It now looks into SerializersModule first if T is a non-sealed interface, and only if there is no registered contextual serializer for T, it returns a polymorphic serializer.

Behavior before 1.7.0-RC:

interface SomeInterface
val module = SerializersModule {
contextual(SomeInterface::class, CustomSomeInterfaceSerializer)
}
// Prints PolymorphicSerializer<SomeInterface>:
println(module.serializer<SomeInterface>())

Behavior in 1.7.0-RC, 1.7.0, and higher:

interface SomeInterface
val module = SerializersModule {
contextual(SomeInterface::class, CustomSomeInterfaceSerializer)
}
// Prints CustomSomeInterfaceSerializer:
println(module.serializer<SomeInterface>())
</tr></table>

... (truncated)

Commits
  • d2dc7d2 Update to Kotlin 2.0 and prepare 1.7.0 release (#2706)
  • 1cac162 Merge remote-tracking branch 'origin/master' into dev
  • fbd0734 Use @​PublishedApi annotation on functions called from plugin-generated code (...
  • 4bf4113 Add bencoding to community-supported formats (#2687)
  • c487e78 JSON: Fix mutable classDiscriminatorMode in config, and mark experimental i...
  • 385c97d Remove yellow code (#2691)
  • 688f64b Added link to kotlinx-serialization-smile in the formats list (#2689)
  • 1f38e22 Add additional repository
  • dd1b76e Prepare Changelog and Readme for 1.7.0-RC release
  • b4bf182 Raise Require-Kotlin-Version to 2.0.0-RC1
  • Additional commits viewable in compare view

Updates com.charleskorn.kaml:kaml from 0.59.0 to 0.60.0

Release notes

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

0.60.0

  • Updated: build with Kotlin 2.0.0
  • Updated: use snakeyaml-engine-kmp 3.0.0
  • Updated: use kotlinx-serialization 1.7.0
Commits
  • 93643a6 Merge pull request #564 from charleskorn/renovate/org.jetbrains.kotlinx-kotli...
  • e849476 Update dependency org.jetbrains.kotlinx:kotlinx-serialization-core to v1.7.0
  • 4ccfd66 Merge pull request #566 from krzema12/update-snakeyaml-engine-kmp-to-3.0.0
  • f8128c6 Merge pull request #565 from krzema12/update-kotlin-to-2.0
  • a6ed887 Update dependency it.krzeminski:snakeyaml-engine-kmp to v3
  • 36243c9 Still some changes in yarn.lock?
  • d55c034 One more try to regenerate yarn.lock
  • 12c2c32 Update Kotlin to 2.0
  • fccf2b3 Update plugin io.kotest.multiplatform to v5.9.1
  • ff0765b Update Kotest to v5.9.1
  • Additional commits viewable in compare view

Updates org.jetbrains.exposed:exposed-java-time from 0.51.0 to 0.51.1

Release notes

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

0.51.1

Change log

Changelog

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

0.51.1

Bug fixes:

Commits
  • 5ad1ecc chore: Bump Exposed version from 0.51.0 to 0.51.1
  • 184c7ec fix: EXPOSED-389 Coalesce operator returning nullable value (#2107)
  • See full diff in compare view

Updates org.jetbrains.exposed:exposed-jdbc from 0.51.0 to 0.51.1

Release notes

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

0.51.1

Change log

Changelog

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

0.51.1

Bug fixes:

Commits
  • 5ad1ecc chore: Bump Exposed version from 0.51.0 to 0.51.1
  • 184c7ec fix: EXPOSED-389 Coalesce operator returning nullable value (#2107)
  • See full diff in compare view

Updates org.jetbrains.exposed:exposed-dao from 0.51.0 to 0.51.1

Release notes

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

0.51.1

Change log

Changelog

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

0.51.1

Bug fixes:

Commits
  • 5ad1ecc chore: Bump Exposed version from 0.51.0 to 0.51.1
  • 184c7ec fix: EXPOSED-389 Coalesce operator returning nullable value (#2107)
  • See full diff in compare view

Updates org.jetbrains.exposed:exposed-core from 0.51.0 to 0.51.1

Release notes

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

0.51.1

Change log

Changelog

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

0.51.1

Bug fixes:

Commits
  • 5ad1ecc chore: Bump Exposed version from 0.51.0 to 0.51.1
  • 184c7ec fix: EXPOSED-389 Coalesce operator returning nullable value (#2107)
  • See full diff in compare view

Updates org.jetbrains.exposed:exposed-jdbc from 0.51.0 to 0.51.1

Release notes

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

0.51.1

Change log

Changelog

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

0.51.1

Bug fixes:

Commits
  • 5ad1ecc chore: Bump Exposed version from 0.51.0 to 0.51.1
  • 184c7ec fix: EXPOSED-389 Coalesce operator returning nullable value (#2107)
  • See full diff in compare view

Updates org.jetbrains.exposed:exposed-dao from 0.51.0 to 0.51.1

Release notes

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

0.51.1

Change log

Changelog

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

0.51.1

Bug fixes:

Commits
  • 5ad1ecc chore: Bump Exposed version from 0.51.0 to 0.51.1
  • 184c7ec fix: EXPOSED-389 Coalesce operator returning nullable value (#2107)
  • See full diff in compare view

Updates org.jetbrains.exposed:exposed-core from 0.51.0 to 0.51.1

Release notes

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

0.51.1

Change log

Changelog

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

0.51.1

Bug fixes:

Commits
  • 5ad1ecc chore: Bump Exposed version from 0.51.0 to 0.51.1
  • 184c7ec fix: EXPOSED-389 Coalesce operator returning nullable value (#2107)
  • See full diff in compare view

Updates io.papermc.paper:paper-api from 1.20.5-R0.1-SNAPSHOT to 1.20.6-R0.1-SNAPSHOT

Updates org.spigotmc:spigot-api from 1.20.5-R0.1-SNAPSHOT to 1.20.6-R0.1-SNAPSHOT

Updates org.spigotmc:spigot from 1.20.5-R0.1-SNAPSHOT to 1.20.6-R0.1-SNAPSHOT

Updates org.spigotmc:spigot-api from 1.20.5-R0.1-SNAPSHOT to 1.20.6-R0.1-SNAPSHOT

Updates org.spigotmc:spigot from 1.20.5-R0.1-SNAPSHOT to 1.20.6-R0.1-SNAPSHOT

Updates ru.astrainteractive.klibs:mikro-core from 1.8.1 to 1.8.2

Commits

Updates ru.astrainteractive.klibs:kdi from 1.4.1 to 1.4.2

Commits

Updates ru.astrainteractive.astralibs:orm from 3.6.0 to 3.7.0

Commits
  • 841fbf6 Merge pull request #30 from Astra-Interactive/better-logging
  • 40da919 add better logging system
  • fed81be Merge pull request #29 from Astra-Interactive/component-ser-extension
  • d3acfe2 add component extension to KyroiComponentSerializer
  • See full diff in compare view

Updates ru.astrainteractive.astralibs:core from 3.6.0 to 3.7.0

Commits
  • 841fbf6 Merge pull request #30 from Astra-Interactive/better-logging
  • 40da919 add better logging system
  • fed81be Merge pull request #29 from Astra-Interactive/component-ser-extension
  • d3acfe2 add component extension to KyroiComponentSerializer
  • See full diff in compare view

Updates ru.astrainteractive.astralibs:menu-bukkit from 3.6.0 to 3.7.0

Commits
  • 841fbf6 Merge pull request #30 from Astra-Interactive/better-logging
  • 40da919 add better logging system
  • fed81be Merge pull request #29 from Astra-Interactive/component-ser-extension
  • d3acfe2 add component extension to KyroiComponentSerializer
  • See full diff in compare view

Updates ru.astrainteractive.astralibs:core-bukkit from 3.6.0 to 3.7.0

Commits
  • 841fbf6 Merge pull request #30 from Astra-Interactive/better-logging
  • 40da919 add better logging system
  • fed81be Merge pull request #29 from Astra-Interactive/component-ser-extension
  • d3acfe2 add component extension to KyroiComponentSerializer
  • See full diff in compare view

Updates ru.astrainteractive.astralibs:command from 3.6.0 to 3.7.0

Commits
  • 841fbf6 Merge pull request #30 from Astra-Interactive/better-logging
  • 40da919 add better logging system
  • fed81be Merge pull request #29 from Astra-Interactive/component-ser-extension
  • d3acfe2 add component extension to KyroiComponentSerializer
  • See full diff in compare view

Updates ru.astrainteractive.astralibs:command-bukkit from 3.6.0 to 3.7.0

Commits
  • 841fbf6 Merge pull request #30 from Astra-Interactive/better-logging
  • 40da919 add better logging system
  • fed81be Merge pull request #29 from Astra-Interactive/component-ser-extension
  • d3acfe2 add component extension to KyroiComponentSerializer
  • See full diff in compare view

Updates ru.astrainteractive.astralibs:core from 3.6.0 to 3.7.0

Commits
  • 841fbf6 Merge pull request #30 from Astra-Interactive/better-logging
  • 40da919 add better logging system
  • fed81be Merge pull request #29 from Astra-Interactive/component-ser-extension
  • d3acfe2 add component extension to KyroiComponentSerializer
  • See full diff in compare view

Updates ru.astrainteractive.astralibs:menu-bukkit from 3.6.0 to 3.7.0

Commits
  • 841fbf6 Merge pull request #30 from Astra-Interactive/better-logging
  • 40da919 add better logging system
  • fed81be Merge pull request #29 from Astra-Interactive/component-ser-extension
  • d3acfe2 add component extension to KyroiComponentSerializer
  • See full diff in compare view

Updates ru.astrainteractive.astralibs:core-bukkit from 3.6.0 to 3.7.0

Commits
  • 841fbf6 Merge pull request #30 from Astra-Interactive/better-logging
  • 40da919 add better logging system
  • fed81be Merge pull request #29 from Astra-Interactive/component-ser-extension
  • d3acfe2 add component extension to KyroiComponentSerializer
  • See full diff in compare view

Updates ru.astrainteractive.astralibs:command from 3.6.0 to 3.7.0

Commits
  • 841fbf6 Merge pull request #30 from Astra-Interactive/better-logging
  • 40da919 add better logging system
  • fed81be Merge pull request #29 from Astra-Interactive/component-ser-extension
  • d3acfe2 add component extension to KyroiComponentSerializer
  • See full diff in compare view

Updates ru.astrainteractive.astralibs:command-bukkit from 3.6.0 to 3.7.0

Commits
  • 841fbf6 Merge pull request #30 from Astra-Interactive/better-logging
  • 40da919 add better logging system
  • fed81be Merge pull request #29 from Astra-Interactive/component-ser-extension
  • d3acfe2 add component extension to KyroiComponentSerializer
  • See full diff in compare view

Updates ru.astrainteractive.gradleplugin.detekt from 1.2.0 to 1.3.1

Release notes

Sourced from ru.astrainteractive.gradleplugin.detekt's releases.

1.3.1

  • fix hierarchyInfo plugin with android dependency

1.3.0

  • added hierarchyGroup which will automatically generate id of module based on it's path
Commits

Updates ru.astrainteractive.gradleplugin.detekt.compose from 1.2.0 to 1.3.1

Release notes

Sourced from ru.astrainteractive.gradleplugin.detekt.compose's releases.

1.3.1

  • fix hierarchyInfo plugin with android dependency

1.3.0

  • added hierarchyGroup which will automatically generate id of module based on it's path
Commits

Updates ru.astrainteractive.gradleplugin.dokka.root from 1.2.0 to 1.3.1

Release notes

Sourced from ru.astrainteractive.gradleplugin.dokka.root's releases.

1.3.1

  • fix hierarchyInfo plugin with android dependency

1.3.0

  • added hierarchyGroup which will automatically generate id of module based on it's path
Commits

Updates ru.astrainteractive.gradleplugin.dokka.module from 1.2.0 to 1.3.1

Release notes

Sourced from ru.astrainteractive.gradleplugin.dokka.module's releases.

1.3.1

  • fix hierarchyInfo plugin with android dependency

1.3.0

  • added hierarchyGroup which will automatically generate id of module based on it's path
Commits

Updates ru.astrainteractive.gradleplugin.java.core from 1.2.0 to 1.3.1

Release notes

Sourced from ru.astrainteractive.gradleplugin.java.core's releases.

1.3.1

  • fix hierarchyInfo plugin with android dependency

1.3.0

  • added hierarchyGroup which will automatically generate id of module based on it's path
Commits

Updates ru.astrainteractive.gradleplugin.stub.javadoc from 1.2.0 to 1.3.1

Release notes

Sourced from ru.astrainteractive.gradleplugin.stub.javadoc's releases.

1.3.1

  • fix hierarchyInfo plugin with android dependency

1.3.0

  • added hierarchyGroup which will automatically generate id of module based on it's path
Commits

Updates ru.astrainteractive.gradleplugin.publication from 1.2.0 to 1.3.1

Release notes

Sourced from ru.astrainteractive.gradleplugin.publication's releases.

1.3.1

  • fix hierarchyInfo plugin with android dependency

1.3.0

  • added hierarchyGroup which will automatically generate id of module based on it's path
Commits

Updates ru.astrainteractive.gradleplugin.root.info from 1.2.0 to 1.3.1

Release notes

Sourced from ru.astrainteractive.gradleplugin.root.info's releases.

1.3.1

  • fix hierarchyInfo plugin with android dependency

1.3.0

  • added hierarchyGroup which will automatically generate id of module based on it's path
Commits

Updates ru.astrainteractive.gradleplugin.minecraft.empty from 1.2.0 to 1.3.1

Release notes

Sourced from ru.astrainteractive.gradleplugin.minecraft.empty's releases.

1.3.1

  • fix hierarchyInfo plugin with android dependency

1.3.0

  • added hierarchyGroup which will automatically generate id of module based on it's path
Commits

Updates ru.astrainteractive.gradleplugin.minecraft.multiplatform from 1.2.0 to 1.3.1

Release notes

Sourced from ru.astrainteractive.gradleplugin.minecraft.multiplatform's releases.

1.3.1

  • fix hierarchyInfo plugin with android dependency

1.3.0

  • added hierarchyGroup which will automatically generate id of module based on it's path
Commits

Updates ru.astrainteractive.gradleplugin.detekt.compose from 1.2.0 to 1.3.1

Release notes

Sourced from ru.astrainteractive.gradleplugin.detekt.compose's releases.

1.3.1

  • fix hierarchyInfo plugin with android dependency

1.3.0

  • added hierarchyGroup which will automatically generate id of module based on it's path
Commits

Updates ru.astrainteractive.gradleplugin.dokka.root from 1.2.0 to 1.3.1

Release notes

Sourced from ru.astrainteractive.gradleplugin.dokka.root's releases.

1.3.1

  • fix hierarchyInfo plugin with android dependency

1.3.0

  • added hierarchyGroup which will automatically generate id of module based on it's path
Commits

Updates ru.astrainteractive.gradleplugin.dokka.module from 1.2.0 to 1.3.1

Release notes

Sourced from ru.astrainteractive.gradleplugin.dokka.module's releases.

1.3.1

  • fix hierarchyInfo plugin with android dependency

1.3.0

  • added hierarchyGroup which will automatically generate id of module based on it's path
Commits

Updates ru.astrainteractive.gradleplugin.java.core from 1.2.0 to 1.3.1

Release notes

Sourced from ru.astrainteractive.gradleplugin.java.core's releases.

1.3.1

  • fix hierarchyInfo plugin with android dependency

1.3.0

  • added hierarchyGroup which will automatically generate id of module based on it's path
Commits

Updates ru.astrainteractive.gradleplugin.stub.javadoc from 1.2.0 to 1.3.1

Release notes

Sourced from ru.astrainteractive.gradleplugin.stub.javadoc's releases.

1.3.1

  • fix hierarchyInfo plugin with android dependency

1.3.0

  • added hierarchyGroup which will automatically generate id of module based on it's path
Commits

Updates ru.astrainteractive.gradleplugin.publication from 1.2.0 to 1.3.1

Release notes

Sourced from ru.astrainteractive.gradleplugin.publication's releases.

1.3.1

  • fix hierarchyInfo plugin with android dependency

1.3.0

  • added hierarchyGroup which will automatically generate id of module based on it's path
Commits

Updates ru.astrainteractive.gradleplugin.root.info from 1.2.0 to 1.3.1

Release notes

Sourced from ru.astrainteractive.gradleplugin.root.info's releases.

1.3.1

  • fix hierarchyInfo plugin with android dependency

1.3.0

  • added hierarchyGroup which will automatically generate id of module based on it's path
Commits
  • fe9fff6 update readme
  • 53e704a fix android dependency for hierarchyGroup
  • 4357f3a Merge pull request #9 from makeevrserg/updated-info-root

Bumps the versions group with 27 updates:

| Package | From | To |
| --- | --- | --- |
| [org.jetbrains.kotlinx:kotlinx-serialization-json](https://github.com/Kotlin/kotlinx.serialization) | `1.6.3` | `1.7.0` |
| [com.charleskorn.kaml:kaml](https://github.com/charleskorn/kaml) | `0.59.0` | `0.60.0` |
| [org.jetbrains.exposed:exposed-java-time](https://github.com/JetBrains/Exposed) | `0.51.0` | `0.51.1` |
| [org.jetbrains.exposed:exposed-jdbc](https://github.com/JetBrains/Exposed) | `0.51.0` | `0.51.1` |
| [org.jetbrains.exposed:exposed-dao](https://github.com/JetBrains/Exposed) | `0.51.0` | `0.51.1` |
| [org.jetbrains.exposed:exposed-core](https://github.com/JetBrains/Exposed) | `0.51.0` | `0.51.1` |
| io.papermc.paper:paper-api | `1.20.5-R0.1-SNAPSHOT` | `1.20.6-R0.1-SNAPSHOT` |
| org.spigotmc:spigot-api | `1.20.5-R0.1-SNAPSHOT` | `1.20.6-R0.1-SNAPSHOT` |
| org.spigotmc:spigot | `1.20.5-R0.1-SNAPSHOT` | `1.20.6-R0.1-SNAPSHOT` |
| [ru.astrainteractive.klibs:mikro-core](https://github.com/makeevrserg/klibs.mikro) | `1.8.1` | `1.8.2` |
| [ru.astrainteractive.klibs:kdi](https://github.com/makeevrserg/klibs.kdi) | `1.4.1` | `1.4.2` |
| [ru.astrainteractive.astralibs:orm](https://github.com/Astra-Interactive/AstraLibs) | `3.6.0` | `3.7.0` |
| [ru.astrainteractive.astralibs:core](https://github.com/Astra-Interactive/AstraLibs) | `3.6.0` | `3.7.0` |
| [ru.astrainteractive.astralibs:menu-bukkit](https://github.com/Astra-Interactive/AstraLibs) | `3.6.0` | `3.7.0` |
| [ru.astrainteractive.astralibs:core-bukkit](https://github.com/Astra-Interactive/AstraLibs) | `3.6.0` | `3.7.0` |
| [ru.astrainteractive.astralibs:command](https://github.com/Astra-Interactive/AstraLibs) | `3.6.0` | `3.7.0` |
| [ru.astrainteractive.astralibs:command-bukkit](https://github.com/Astra-Interactive/AstraLibs) | `3.6.0` | `3.7.0` |
| [ru.astrainteractive.gradleplugin.detekt](https://github.com/makeevrserg/gradle-plugin) | `1.2.0` | `1.3.1` |
| [ru.astrainteractive.gradleplugin.detekt.compose](https://github.com/makeevrserg/gradle-plugin) | `1.2.0` | `1.3.1` |
| [ru.astrainteractive.gradleplugin.dokka.root](https://github.com/makeevrserg/gradle-plugin) | `1.2.0` | `1.3.1` |
| [ru.astrainteractive.gradleplugin.dokka.module](https://github.com/makeevrserg/gradle-plugin) | `1.2.0` | `1.3.1` |
| [ru.astrainteractive.gradleplugin.java.core](https://github.com/makeevrserg/gradle-plugin) | `1.2.0` | `1.3.1` |
| [ru.astrainteractive.gradleplugin.stub.javadoc](https://github.com/makeevrserg/gradle-plugin) | `1.2.0` | `1.3.1` |
| [ru.astrainteractive.gradleplugin.publication](https://github.com/makeevrserg/gradle-plugin) | `1.2.0` | `1.3.1` |
| [ru.astrainteractive.gradleplugin.root.info](https://github.com/makeevrserg/gradle-plugin) | `1.2.0` | `1.3.1` |
| [ru.astrainteractive.gradleplugin.minecraft.empty](https://github.com/makeevrserg/gradle-plugin) | `1.2.0` | `1.3.1` |
| [ru.astrainteractive.gradleplugin.minecraft.multiplatform](https://github.com/makeevrserg/gradle-plugin) | `1.2.0` | `1.3.1` |


Updates `org.jetbrains.kotlinx:kotlinx-serialization-json` from 1.6.3 to 1.7.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.6.3...v1.7.0)

Updates `com.charleskorn.kaml:kaml` from 0.59.0 to 0.60.0
- [Release notes](https://github.com/charleskorn/kaml/releases)
- [Commits](charleskorn/kaml@0.59.0...0.60.0)

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

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

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

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

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

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

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

Updates `io.papermc.paper:paper-api` from 1.20.5-R0.1-SNAPSHOT to 1.20.6-R0.1-SNAPSHOT

Updates `org.spigotmc:spigot-api` from 1.20.5-R0.1-SNAPSHOT to 1.20.6-R0.1-SNAPSHOT

Updates `org.spigotmc:spigot` from 1.20.5-R0.1-SNAPSHOT to 1.20.6-R0.1-SNAPSHOT

Updates `org.spigotmc:spigot-api` from 1.20.5-R0.1-SNAPSHOT to 1.20.6-R0.1-SNAPSHOT

Updates `org.spigotmc:spigot` from 1.20.5-R0.1-SNAPSHOT to 1.20.6-R0.1-SNAPSHOT

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

Updates `ru.astrainteractive.klibs:kdi` from 1.4.1 to 1.4.2
- [Release notes](https://github.com/makeevrserg/klibs.kdi/releases)
- [Commits](makeevrserg/klibs.kdi@1.4.1...1.4.2)

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

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

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

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

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

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

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

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

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

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

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

Updates `ru.astrainteractive.gradleplugin.detekt` from 1.2.0 to 1.3.1
- [Release notes](https://github.com/makeevrserg/gradle-plugin/releases)
- [Commits](makeevrserg/gradle-plugin@1.2.0...1.3.1)

Updates `ru.astrainteractive.gradleplugin.detekt.compose` from 1.2.0 to 1.3.1
- [Release notes](https://github.com/makeevrserg/gradle-plugin/releases)
- [Commits](makeevrserg/gradle-plugin@1.2.0...1.3.1)

Updates `ru.astrainteractive.gradleplugin.dokka.root` from 1.2.0 to 1.3.1
- [Release notes](https://github.com/makeevrserg/gradle-plugin/releases)
- [Commits](makeevrserg/gradle-plugin@1.2.0...1.3.1)

Updates `ru.astrainteractive.gradleplugin.dokka.module` from 1.2.0 to 1.3.1
- [Release notes](https://github.com/makeevrserg/gradle-plugin/releases)
- [Commits](makeevrserg/gradle-plugin@1.2.0...1.3.1)

Updates `ru.astrainteractive.gradleplugin.java.core` from 1.2.0 to 1.3.1
- [Release notes](https://github.com/makeevrserg/gradle-plugin/releases)
- [Commits](makeevrserg/gradle-plugin@1.2.0...1.3.1)

Updates `ru.astrainteractive.gradleplugin.stub.javadoc` from 1.2.0 to 1.3.1
- [Release notes](https://github.com/makeevrserg/gradle-plugin/releases)
- [Commits](makeevrserg/gradle-plugin@1.2.0...1.3.1)

Updates `ru.astrainteractive.gradleplugin.publication` from 1.2.0 to 1.3.1
- [Release notes](https://github.com/makeevrserg/gradle-plugin/releases)
- [Commits](makeevrserg/gradle-plugin@1.2.0...1.3.1)

Updates `ru.astrainteractive.gradleplugin.root.info` from 1.2.0 to 1.3.1
- [Release notes](https://github.com/makeevrserg/gradle-plugin/releases)
- [Commits](makeevrserg/gradle-plugin@1.2.0...1.3.1)

Updates `ru.astrainteractive.gradleplugin.minecraft.empty` from 1.2.0 to 1.3.1
- [Release notes](https://github.com/makeevrserg/gradle-plugin/releases)
- [Commits](makeevrserg/gradle-plugin@1.2.0...1.3.1)

Updates `ru.astrainteractive.gradleplugin.minecraft.multiplatform` from 1.2.0 to 1.3.1
- [Release notes](https://github.com/makeevrserg/gradle-plugin/releases)
- [Commits](makeevrserg/gradle-plugin@1.2.0...1.3.1)

Updates `ru.astrainteractive.gradleplugin.detekt.compose` from 1.2.0 to 1.3.1
- [Release notes](https://github.com/makeevrserg/gradle-plugin/releases)
- [Commits](makeevrserg/gradle-plugin@1.2.0...1.3.1)

Updates `ru.astrainteractive.gradleplugin.dokka.root` from 1.2.0 to 1.3.1
- [Release notes](https://github.com/makeevrserg/gradle-plugin/releases)
- [Commits](makeevrserg/gradle-plugin@1.2.0...1.3.1)

Updates `ru.astrainteractive.gradleplugin.dokka.module` from 1.2.0 to 1.3.1
- [Release notes](https://github.com/makeevrserg/gradle-plugin/releases)
- [Commits](makeevrserg/gradle-plugin@1.2.0...1.3.1)

Updates `ru.astrainteractive.gradleplugin.java.core` from 1.2.0 to 1.3.1
- [Release notes](https://github.com/makeevrserg/gradle-plugin/releases)
- [Commits](makeevrserg/gradle-plugin@1.2.0...1.3.1)

Updates `ru.astrainteractive.gradleplugin.stub.javadoc` from 1.2.0 to 1.3.1
- [Release notes](https://github.com/makeevrserg/gradle-plugin/releases)
- [Commits](makeevrserg/gradle-plugin@1.2.0...1.3.1)

Updates `ru.astrainteractive.gradleplugin.publication` from 1.2.0 to 1.3.1
- [Release notes](https://github.com/makeevrserg/gradle-plugin/releases)
- [Commits](makeevrserg/gradle-plugin@1.2.0...1.3.1)

Updates `ru.astrainteractive.gradleplugin.root.info` from 1.2.0 to 1.3.1
- [Release notes](https://github.com/makeevrserg/gradle-plugin/releases)
- [Commits](makeevrserg/gradle-plugin@1.2.0...1.3.1)

Updates `ru.astrainteractive.gradleplugin.minecraft.empty` from 1.2.0 to 1.3.1
- [Release notes](https://github.com/makeevrserg/gradle-plugin/releases)
- [Commits](makeevrserg/gradle-plugin@1.2.0...1.3.1)

Updates `ru.astrainteractive.gradleplugin.minecraft.multiplatform` from 1.2.0 to 1.3.1
- [Release notes](https://github.com/makeevrserg/gradle-plugin/releases)
- [Commits](makeevrserg/gradle-plugin@1.2.0...1.3.1)

---
updated-dependencies:
- 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-patch
  dependency-group: versions
- dependency-name: org.jetbrains.exposed:exposed-jdbc
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: versions
- dependency-name: org.jetbrains.exposed:exposed-dao
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: versions
- dependency-name: org.jetbrains.exposed:exposed-core
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: versions
- dependency-name: org.jetbrains.exposed:exposed-jdbc
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: versions
- dependency-name: org.jetbrains.exposed:exposed-dao
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: versions
- dependency-name: org.jetbrains.exposed:exposed-core
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: versions
- dependency-name: io.papermc.paper:paper-api
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: versions
- dependency-name: org.spigotmc:spigot-api
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: versions
- dependency-name: org.spigotmc:spigot
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: versions
- dependency-name: org.spigotmc:spigot-api
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: versions
- dependency-name: org.spigotmc:spigot
  dependency-type: direct:production
  update-type: version-update:semver-patch
  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:kdi
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: versions
- dependency-name: ru.astrainteractive.astralibs:orm
  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
- dependency-name: ru.astrainteractive.gradleplugin.detekt
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: ru.astrainteractive.gradleplugin.detekt.compose
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: ru.astrainteractive.gradleplugin.dokka.root
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: ru.astrainteractive.gradleplugin.dokka.module
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: ru.astrainteractive.gradleplugin.java.core
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: ru.astrainteractive.gradleplugin.stub.javadoc
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: ru.astrainteractive.gradleplugin.publication
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: ru.astrainteractive.gradleplugin.root.info
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: ru.astrainteractive.gradleplugin.minecraft.empty
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: ru.astrainteractive.gradleplugin.minecraft.multiplatform
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: ru.astrainteractive.gradleplugin.detekt.compose
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: ru.astrainteractive.gradleplugin.dokka.root
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: ru.astrainteractive.gradleplugin.dokka.module
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: ru.astrainteractive.gradleplugin.java.core
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: ru.astrainteractive.gradleplugin.stub.javadoc
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: ru.astrainteractive.gradleplugin.publication
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: ru.astrainteractive.gradleplugin.root.info
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: ru.astrainteractive.gradleplugin.minecraft.empty
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: ru.astrainteractive.gradleplugin.minecraft.multiplatform
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
...

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 Jun 10, 2024
@makeevrserg makeevrserg self-assigned this Jun 10, 2024
@makeevrserg makeevrserg merged commit 04defd8 into master Jun 10, 2024
4 checks passed
@dependabot dependabot bot deleted the dependabot/gradle/versions-d6a8ec7e32 branch June 10, 2024 11:45
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.

None yet

1 participant