Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Oct 25, 2025

This PR contains the following updates:

Package Change Age Confidence
it.krzeminski:snakeyaml-engine-kmp 3.2.1 -> 4.0.1 age confidence

Release Notes

krzema12/snakeyaml-engine-kmp (it.krzeminski:snakeyaml-engine-kmp)

v4.0.1: 4.0.1

What's Changed

Full Changelog: krzema12/snakeyaml-engine-kmp@v4.0.0...v4.0.1

v4.0.0: 4.0.0

‼️ This release is not usable!

See #​600.


Corresponds to snakeyaml-engine 2.10 + several unreleased changes.

What's Changed
Customer-facing
Breaking

To migrate to the new API, convert e.g.

LoadSettings.builder()
    .setLabel("foobar")
    .build()

to

LoadSettings(
    label = "foobar",
)

and non-trivial usages of builders, e.g.:

val builder = LoadSettings.builder()
// ...
if (...) {
    builder.setLabel("foobar")
}
val settings = builder.build()

to using the .copy { } function:

val settings = LoadSettings(...)
settings.copy {
    if (...) {
        label = "foobar"
    }
}
Other
Internal

Full Changelog: krzema12/snakeyaml-engine-kmp@v3.2.1...v4.0.0


Configuration

📅 Schedule: Branch creation - "every 1 week on saturday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot enabled auto-merge (squash) October 25, 2025 04:35
@krzema12 krzema12 changed the title fix(deps): update dependency it.krzeminski:snakeyaml-engine-kmp to v4 fix(deps): update snakeyaml-engine-kmp to 4.0.1 and kaml to 0.102.0 Oct 28, 2025
@renovate
Copy link
Contributor Author

renovate bot commented Oct 28, 2025

Edited/Blocked Notification

Renovate 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.

@renovate renovate bot merged commit 50395b2 into main Oct 28, 2025
4 checks passed
@renovate renovate bot deleted the renovate/it.krzeminski-snakeyaml-engine-kmp-4.x branch October 28, 2025 13:52
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants