-
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) #574
base: main
Are you sure you want to change the base?
Conversation
JUnit Tests (Linux, EnricoMi/publish-unit-test-result-action@v1)97 tests 93 ✅ 3s ⏱️ Results for commit ccea6a1. ♻️ This comment has been updated with latest results. |
JUnit Tests (macOS, EnricoMi/publish-unit-test-result-action@v1)48 tests 46 ✅ 2s ⏱️ Results for commit ccea6a1. ♻️ This comment has been updated with latest results. |
JUnit Tests (Windows, EnricoMi/publish-unit-test-result-action@v1)97 tests 93 ✅ 12s ⏱️ Results for commit ccea6a1. ♻️ This comment has been updated with latest results. |
@@ -11,7 +11,7 @@ ktoml = "0.5.1" | |||
multiplatform-diff = "0.5.0" | |||
kotlinpoet = "1.16.0" | |||
kotest = "5.8.1" | |||
sarif4k = "0.5.0" | |||
sarif4k = "0.6.0" |
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.
need to downgrade the version since it has conflict with sarif-utils
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.
why, if we already merged the same in the sarif-utils
?
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.
because we didn't release a new version of sarif-utils
ad33b30
to
4593f08
Compare
4593f08
to
fd745b4
Compare
275805f
to
f76333e
Compare
f95537f
to
9ae30c2
Compare
5a1e9af
to
2290d90
Compare
0f41f80
to
04dae8a
Compare
3bfab23
to
0b38faf
Compare
0b38faf
to
9a0966f
Compare
7ae3e0e
to
f2e0266
Compare
f2e0266
to
810b13b
Compare
88385c6
to
b396ef9
Compare
a7d0c1f
to
c5f8095
Compare
94e7898
to
b38e13c
Compare
78c04f9
to
bc66b9f
Compare
2a9254b
to
d5ec890
Compare
bdcb4de
to
1550977
Compare
1550977
to
0a0f72c
Compare
0a0f72c
to
3a4304e
Compare
3a4304e
to
31ed95f
Compare
6c652d1
to
2fec091
Compare
c8ae88b
to
36b004a
Compare
36b004a
to
ccea6a1
Compare
This PR contains the following updates:
5.10.2
->5.11.3
5.8.1
->5.9.1
2.10.1
->2.11.0
3.16.2
->3.18.2
0.18.3
->0.19.1
1.23.5
->1.23.7
2.23.1
->2.24.2
2.23.1
->2.24.2
0.5.0
->0.6.0
0.5.0
->0.7.0
0.5.1
->0.5.2
0.5.1
->0.5.2
0.5.1
->0.5.2
3.8.0
->3.9.1
3.8.0
->3.9.1
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
New Features
Breaking Changes
Requirements
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
ajoberstar/reckon (org.ajoberstar.reckon:reckon-gradle)
v0.19.1
Compare Source
NOTE: 0.19.1 is the same as 0.19.0. There was a publishing issue preventing 0.19.0 from getting out to Central.
This release makes commit message scope suppliers more flexible.
Use of
scopeSupplier = calcScopeFromCommitMessages()
allowed specifying the scope with a commit message likemajor: My Message
orpatch: My message
. However, there was a special case when the project hadn't reached 1.0.0 yet.Before a project reaches 1.0.0,
major:
prefixes were downgraded tominor
. The intent was to encourage breaking changes to still be committed asmajor:
for consistency, but respecting that reaching 1.0.0 is a more significant decision than just the first breaking change introduced into your code.The downside was that the only alternative to get to 1.0.0 was to use
-Preckon.scope=major
to supersede what the commit message supplier decided. This can be incompatible with many workflows that don't allow user interaction when reckon runs.With this release:
scopeSupplier = calcScopeFromCommitMessages()
now additionally supports amajor!:
prefix which ignores whether the project is pre-1.0.0 and forces use of the major scopescopeSupplier = calcScopeFromCommitMessageParser(BiFunction)
which allows custom logic to consider both the commit message and whether the project is pre-1.0.0 when it makes it's scope decisionscopeSupplier = calcScopeFromCommitMessages(Function)
continues to use the same pre-1.0.0 behavior when a major scope is returned for backwards compatibilityBreaking Changes
None
Enhancements
Fixes
Deprecations
None
Compatibility
Tested against the following versions.
detekt/detekt (io.gitlab.arturbosch.detekt:detekt-gradle-plugin)
v1.23.7
Compare Source
1.23.7 - 2024-09-08
This is a point release for Detekt
1.23.0
, built against Kotlin2.0.10
, with fixes for several bugs that got reported by the community.Notable Changes
Changelog
UndocumentedPublicProperty
- #7426public companion
object forUndocumentedPublicClass
- #7219Housekeeping/Docs
v1.23.6
Compare Source
1.23.6 - 2024-03-23
This is a point release for Detekt
1.23.0
, where we added support for Kotlin1.9.23
and fixed several bugs that got reported by the community.Changelog
Contributors
We would like to thank the following contributors that made this release possible: @BraisGabin, @psuzn, @t-kameyama.
detekt/sarif4k (io.github.detekt.sarif4k:sarif4k)
v0.6.0
Compare Source
Critical changes
What's Changed
f43a0e5
by @renovate in https://github.com/detekt/sarif4k/pull/68e12d46a
by @renovate in https://github.com/detekt/sarif4k/pull/77a8a3f3a
by @renovate in https://github.com/detekt/sarif4k/pull/750ab4596
by @renovate in https://github.com/detekt/sarif4k/pull/79ec92e82
by @renovate in https://github.com/detekt/sarif4k/pull/915d5d22a
by @renovate in https://github.com/detekt/sarif4k/pull/96417ae3c
by @renovate in https://github.com/detekt/sarif4k/pull/102PropertyBag
by @BraisGabin in https://github.com/detekt/sarif4k/pull/1019704b39
by @renovate in https://github.com/detekt/sarif4k/pull/104New Contributors
Full Changelog: detekt/sarif4k@0.5.0...0.6.0
petertrr/kotlin-multiplatform-diff (io.github.petertrr:kotlin-multiplatform-diff)
v0.7.0
What's Changed
New Contributors
Full Changelog: petertrr/kotlin-multiplatform-diff@v0.6.0...v0.7.0
v0.6.0
What's Changed
Introduce Myers algorithm in linear space by @lppedd in https://github.com/petertrr/kotlin-multiplatform-diff/pull/112
chore(deps): update all github actions to v4 (major) by @renovate in https://github.com/petertrr/kotlin-multiplatform-diff/pull/99
Update Gradle to 8.6, switch to new Gradle GH actions by @petertrr in https://github.com/petertrr/kotlin-multiplatform-diff/pull/100
chore(deps): update dependency org.jetbrains.kotlin.multiplatform to v1.9.22 by @renovate in https://github.com/petertrr/kotlin-multiplatform-diff/pull/95
chore(deps): update detekt to v1.23.5 by @renovate in https://github.com/petertrr/kotlin-multiplatform-diff/pull/96
chore(deps): update junit to v5.10.1 by @renovate in https://github.com/petertrr/kotlin-multiplatform-diff/pull/94
chore(deps): update plugin org.ajoberstar.reckon.settings to v0.18.2 by @renovate in https://github.com/petertrr/kotlin-multiplatform-diff/pull/90
Update build configuration to reflect KGP improvements by @lppedd in https://github.com/petertrr/kotlin-multiplatform-diff/pull/102
Update codecov action to v4 by @petertrr in https://github.com/petertrr/kotlin-multiplatform-diff/pull/109
Perform an overall code cleanup by @lppedd in https://github.com/petertrr/kotlin-multiplatform-diff/pull/108
Support WebAssembly targets by @lppedd in https://github.com/petertrr/kotlin-multiplatform-diff/pull/111
Switch to the new Gradle action in release.yml by @petertrr in https://github.com/petertrr/kotlin-multiplatform-diff/pull/110
New Contributors
Full Changelog: petertrr/kotlin-multiplatform-diff@v0.5.0...v0.6.0
akuleshov7/ktoml (com.akuleshov7:ktoml-source)
v0.5.2
Main
What's Changed
New Contributors
Full Changelog: orchestr7/ktoml@v0.5.1...v0.5.2
square/okio (com.squareup.okio:okio-fakefilesystem)
v3.9.1
2024-09-12
Path.relativeTo
.Note: this artifact is only used in 'okio-fakefilesystem' and 'okio-nodefilesystem' and not in the Okio core.
v3.9.0
2024-03-12
FileSystem.SYSTEM
can be used in source sets that target both Kotlin/Native andKotlin/JVM. Previously, we had this symbol in each source set but it wasn't available to
common source sets.
COpaquePointer.readByteString(...)
creates a ByteString from a memory address.InflaterSource
,DeflaterSink
,GzipSink
, andGzipSource
in Kotlin/Native.FileMetadata.lastModifiedAtMillis()
is interpreted as UTC and not the host machine's time zone.of ZIP's built-in DOS timestamps, and the 2038 time bombs of ZIP's extended timestamps.
FileSystem.RESOURCES
.NullPointerException
ifCloseable.use { ... }
returns null.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 is behind base branch, 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 was generated by Mend Renovate. View the repository job log.