chore(deps): update upgrade all non-major gradle dependencies #127
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
5.8.0
->5.9.1
5.8.0
->5.9.1
2.3.8
->2.3.11
2.3.8
->2.3.11
2.3.8
->2.3.11
2.3.8
->2.3.11
0.23.2
->0.24.0
1.6.3
->1.7.0
0.5.0
->0.6.0
4.2.2
->4.4.0
12.1.0
->12.1.1
5.8.0
->5.9.1
1.9.22
->1.9.24
1.9.22
->1.9.24
Release Notes
kotest/kotest (io.kotest:kotest-assertions-core)
v5.9.1
What's Changed
Assertions
infix
variant ofshouldNotBeNull
that accepts a block by @sschuberth in https://github.com/kotest/kotest/pull/4060Framework
Property-testing
Arb.list<T?>
due to performance issues by @Kantis in https://github.com/kotest/kotest/pull/4023Docs
Build / CI/CD / Dependency updates
New Contributors
Full Changelog: kotest/kotest@v5.9.0...v5.9.1
v5.9.0
Highlights
Support for wasmJs has been added, curtesy of @OliverO2
What's Changed
collection.shouldContainAllInAnyOrder()
by @u-ways-e in https://github.com/kotest/kotest/pull/3995New Contributors
Full Changelog: kotest/kotest@v5.8.1...v5.9.0
v5.8.1
What's Changed
Long
assertions and property testers by @RusticFlare in https://github.com/kotest/kotest/pull/3720BigDecimal.ZERO.shouldBePositive()
returning true by @pubiqq in https://github.com/kotest/kotest/pull/3814intersect
matcher to ranges by @AlexCue987 in https://github.com/kotest/kotest/pull/3792shouldNotBePositive
andshouldNotBeNegative
matchers for BigDecimal by @pubiqq in https://github.com/kotest/kotest/pull/3818Iterable
inwithData
on root level by @obecker in https://github.com/kotest/kotest/pull/3831shouldBe expected
equivalent toshould be(expected)
for non-matcher objects by @pubiqq in https://github.com/kotest/kotest/pull/3827New Contributors
Full Changelog: kotest/kotest@v5.8.0...v5.8.1
ktorio/ktor (io.ktor:ktor-serialization-kotlinx-json)
v2.3.11
Compare Source
Bugfixes
v2.3.10
Compare Source
Bugfixes
NumberFormatException
when uploading file larger than INT_MAX bytes (~2.1 GiB) since 2.3.0 (KTOR-6851)Improvements
Logger.ANDROID
(KTOR-1219)v2.3.9
Compare Source
Improvements
Bugfixes
Kotlin/kotlinx.atomicfu (org.jetbrains.kotlinx:atomicfu)
v0.24.0
Compare Source
atomicfu-gradle-plugin
inatomicfu.properties
file and read it from this file during application (#405).Kotlin/kotlinx.serialization (org.jetbrains.kotlinx:kotlinx-serialization-json)
v1.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 backwards compatible with previous versions.
The only difference with 1.7.0-RC is that
classDiscriminatorMode
property inJsonBuilder
is marked as experimental,as it should have been when it was introduced (#2680).
Kotlin/kotlinx-datetime (org.jetbrains.kotlinx:kotlinx-datetime)
v0.6.0
Instant
values without the second-of-minute component on the JVM and JS, fixing inconsistency with Native (#369)kotlinx-serialization
classes when serialization is not used (#336)Changelog relative to version 0.6.0-RC.2
Instant
values without the second-of-minute component on the JVM and JS, fixing inconsistency with Native (#369)stat
usages to comply with Apple's new publishing requirements (#385)optional
is directly between numbers (#362)ajalt/clikt (com.github.ajalt.clikt:clikt)
v4.4.0
Compare Source
Added
linuxArm64
andwasmJs
targets.Changed
In a subcommand with
argument().multiple()
, the behavior is now the same regardless of the value ofallowMultipleSubcommands
: if a token matches a subcommand name, it's now treated as a subcommand rather than a positional argument.Due to changes to the internal parsing algorithm, the exact details of error messages when multiple usage errors occur have changed in some cases.
Breaking Change: Moved the following parameters from
CliktCommand
's constructor; override the corresponding properties instead:help
fun help
epilog
fun helpEpilog
invokeWithoutSubcommand
val invokeWithoutSubcommand
printHelpOnEmptyArgs
val printHelpOnEmptyArgs
helpTags
val helpTags
autoCompleteEnvvar
val autoCompleteEnvvar
allowMultipleSubcommands
val allowMultipleSubcommands
treatUnknownOptionsAsArgs
val treatUnknownOptionsAsArgs
hidden
val hiddenFromHelp
The following methods on
CliktCommand
have been renamed:commandHelp
->help
,commandHelpEpilog
->epilog
. The old names are deprecated.Breaking Change:
CliktCommand.main
andCliktCommand.parse
are now extension functions rather than methods.Fixed
allowMultipleSubcommands=true
and a subcommand has excess arguments followed by another subcommand.Deprecated
Context.originalArgv
. It will now always return an empty list. If your commands need an argv, you can pass it to them before you run them.Removed
v4.3.0
Compare Source
Added
limit
parameter tooption().counted()
to limit the number of times the option can be used. You can either clamp the value to the limit, or throw an error if the limit is exceeded. (#483)Context.registerClosable
andContext.callOnClose
to allow you to register cleanup actions that will be called when the command exits. (#395)Fixed
unrecognized modifier 'i'
that happened on tab-completion when using sub command aliases. Thanks to @hick209 for the contribution. (#500)complete:13: command not found: compdef
. Thanks to @hick209 for the contribution. (#499)Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR has been generated by Mend Renovate. View repository job log here.