-
Notifications
You must be signed in to change notification settings - Fork 4
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
chore(deps): update all non-major dependencies (except core kotlin) #531
Conversation
### What's done: * .
Edited/Blocked NotificationRenovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR. You can manually request rebase by checking the rebase/retry box above. ⚠ Warning: custom changes will be lost. |
### What's done: * .
@@ -9,7 +9,7 @@ org.gradle.caching=true | |||
# Kotlin | |||
kotlin.code.style=official | |||
kotlin.mpp.stability.nowarn=true | |||
kotlin.native.cacheKind.linuxX64=static | |||
kotlin.native.cacheKind.linuxX64=none |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
think it's okay
build failed with caches
### What's done: * .
@@ -9,7 +9,6 @@ org.gradle.caching=true | |||
# Kotlin | |||
kotlin.code.style=official | |||
kotlin.mpp.stability.nowarn=true | |||
kotlin.native.cacheKind.linuxX64=static | |||
kotlin.mpp.hierarchicalStructureSupport=true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Codecov Report
@@ Coverage Diff @@
## main #531 +/- ##
=========================================
Coverage 48.32% 48.32%
Complexity 164 164
=========================================
Files 53 53
Lines 1877 1877
Branches 313 313
=========================================
Hits 907 907
Misses 841 841
Partials 129 129
Flags with carried forward coverage won't be shown. Click here to find out more.
|
This PR contains the following updates:
5.6.1
->5.6.2
0.4.1
->0.5.0
0.4.1
->0.5.0
1.5.0
->1.5.1
1.5.0
->1.5.1
1.5.0
->1.5.1
Release Notes
kotest/kotest
v5.6.2
5.6.2 May 2023
Assertions
Property testing
Arb.string()
to only generate Strings of printable ascii charactersDocumentation
Other
Arb.string()
With Kotest 5.6.0,
Codepoint.ascii()
was changed to include a wider range of ascii chararacters, andCodepoint.printableAscii()
was introduced with the historic range used byCodepoint.ascii()
.Arb.string()
has been usingCodepoint.ascii()
as it's default for generating chars for the string. This caused issues for some users, and we decided to revertArb.string()
to the historic behavior by changing the default to the newCodepoint.printableAscii()
.Hopefully this doesn't cause any issues for you. If it does, you can revert to the 5.6.0 ~ 5.6.1 behavior by using
Codepoint.ascii()
explicitly.If you added explicit usage of
Codepoint.printableAscii()
to circumvent the issue, you can safely remove the explicit parameter starting with Kotest 5.6.2.New Contributors
Full Changelog: kotest/kotest@v5.6.1...v5.6.2
akuleshov7/ktoml
v0.5.0
Breaking changes
TomlConfig
and left only those that useTomlInputConfig
orTomlOutputConfig
;Changes that deserve your attention
❗ Now
toml-file
is only one of the example for reading the data from source. For your particular case you can implement your own source provider based on okio.Source. For this purpose we have preparedtoml-source
module and implemented an example with java streams for JVM target.What else is new
Infrastructure changes
Full Changelog: orchestr7/ktoml@v0.4.1...v0.5.0
Kotlin/kotlinx.serialization
v1.5.1
==================
This release contains an important Native targets overhaul, as well as numerous enhancements and bugfixes.
Kotlin 1.8.21 is used by default.
New set of Native targets
The official Kotlin target support policy has recently been published
describing new target policy: each target belongs to a certain tier, and different tiers have different stability guarantees.
The official recommendation for library authors is to support targets up to Tier 3,
and kotlinx.serialization now follows it.
It means that in this release, there are a lot of new targets added from this tier,
such as
androidNativeX86
orwatchosDeviceArm64
.Note that since they belong to Tier 3, they're not auto-tested on CI.
kotlinx.serialization also ships some deprecated Kotlin/Native targets that do not belong to any tier (e.g.
iosArm32
,mingwX86
).We'll continue to release them, but we do not provide support for them, nor do we plan to add new targets from the deprecated list.
Improvements in Json elements
There are two new function sets that should make creating raw Json elements easier.
First one contains overloads for
JsonPrimitive
constructor-like functionthat accept unsigned types:
JsonPrimitive(1u)
.Second one adds new
addAll
functions toJsonArrayBuilder
to be used with collectionsof numbers, booleans or strings:
buildJsonArray { addAll(listOf(1, 2, 3)) }
Both were contributed to us by aSemy.
Other enhancements
target
variables tosink
(#2226)Bugfixes
Configuration
📅 Schedule: Branch creation - "before 4am on Monday" (UTC), 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.