Skip to content

chore: release - #211

Open
QaidVoid wants to merge 1 commit into
mainfrom
release-plz-2026-09-20T03-19-07Z
Open

QaidVoid wants to merge 1 commit into
mainfrom
release-plz-2026-09-20T03-19-07Z

Conversation

@QaidVoid

@QaidVoid QaidVoid commented Sep 20, 2026

Copy link
Copy Markdown
Member

🤖 New release

  • soar-utils: 0.5.2 -> 0.5.3 (✓ API compatible changes)
  • soar-config: 0.13.0 -> 0.14.0 (⚠ API breaking changes)
  • soar-dl: 0.12.2 -> 0.13.0 (⚠ API breaking changes)
  • soar-registry: 0.6.4 -> 0.6.5 (✓ API compatible changes)
  • soar-db: 0.7.2 -> 0.7.3 (✓ API compatible changes)
  • soar-events: 0.3.1 -> 0.3.2 (✓ API compatible changes)
  • soar-package: 0.6.0 -> 0.6.1 (✓ API compatible changes)
  • soar-core: 0.17.4 -> 0.18.0 (⚠ API breaking changes)
  • soar-operations: 0.6.0 -> 0.6.1 (✓ API compatible changes)
  • soar-cli: 0.13.4 -> 0.13.5

soar-config breaking changes

--- failure constructible_struct_adds_field: struct exhaustively constructible through public API adds field ---

Description:
A pub struct that could be exhaustively constructed with a literal using only public API has a new pub field, breaking existing exhaustive literals.
        ref: https://doc.rust-lang.org/reference/expressions/struct-expr.html
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.50.0/src/lints/constructible_struct_adds_field.ron

Failed in:
  field PackageOptions.codeberg in /tmp/.tmpQ0erE6/soar/crates/soar-config/src/packages.rs:237
  field PackageOptions.gitea in /tmp/.tmpQ0erE6/soar/crates/soar-config/src/packages.rs:244
  field Config.forge_tokens in /tmp/.tmpQ0erE6/soar/crates/soar-config/src/config.rs:127
  field ResolvedPackage.codeberg in /tmp/.tmpQ0erE6/soar/crates/soar-config/src/packages.rs:358
  field ResolvedPackage.gitea in /tmp/.tmpQ0erE6/soar/crates/soar-config/src/packages.rs:359

--- failure method_parameter_count_changed: pub method parameter count changed ---

Description:
A publicly-visible method now takes a different number of parameters, not counting the receiver (self) parameter.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#fn-change-arity
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.50.0/src/lints/method_parameter_count_changed.ron

Failed in:
  soar_config::profile::Profile::get_packages_path takes 0 parameters in /tmp/.tmpIc1qUz/soar-config/src/profile.rs:32, but now takes 1 parameters in /tmp/.tmpQ0erE6/soar/crates/soar-config/src/profile.rs:35
  soar_config::profile::Profile::get_cache_path takes 0 parameters in /tmp/.tmpIc1qUz/soar-config/src/profile.rs:40, but now takes 1 parameters in /tmp/.tmpQ0erE6/soar/crates/soar-config/src/profile.rs:44
  soar_config::profile::Profile::get_root_path takes 0 parameters in /tmp/.tmpIc1qUz/soar-config/src/profile.rs:52, but now takes 1 parameters in /tmp/.tmpQ0erE6/soar/crates/soar-config/src/profile.rs:60

soar-dl breaking changes

--- failure enum_no_repr_variant_discriminant_changed: enum variant had its discriminant change value ---

Description:
The enum's variant had its discriminant value change. This breaks downstream code that used its value via a numeric cast like `as isize`.
        ref: https://doc.rust-lang.org/reference/items/enumerations.html#assigning-discriminant-values
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.50.0/src/lints/enum_no_repr_variant_discriminant_changed.ron

Failed in:
  variant PlatformUrl::Oci 2 -> 4 in /tmp/.tmpQ0erE6/soar/crates/soar-dl/src/platform.rs:26
  variant PlatformUrl::Direct 3 -> 5 in /tmp/.tmpQ0erE6/soar/crates/soar-dl/src/platform.rs:29

--- failure enum_variant_added: enum variant added on exhaustive enum ---

Description:
A publicly-visible enum without #[non_exhaustive] has a new variant.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#enum-variant-new
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.50.0/src/lints/enum_variant_added.ron

Failed in:
  variant PlatformUrl:Codeberg in /tmp/.tmpQ0erE6/soar/crates/soar-dl/src/platform.rs:17
  variant PlatformUrl:Gitea in /tmp/.tmpQ0erE6/soar/crates/soar-dl/src/platform.rs:21
  variant DownloadError:ForgeRequest in /tmp/.tmpQ0erE6/soar/crates/soar-dl/src/error.rs:80

--- failure function_missing: pub fn removed or renamed ---

Description:
A publicly-visible function cannot be imported by its prior path. A `pub use` may have been removed, or the function itself may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.50.0/src/lints/function_missing.ron

Failed in:
  function soar_dl::platform::fetch_releases_json, previously in file /tmp/.tmpIc1qUz/soar-dl/src/platform.rs:140

--- failure method_parameter_count_changed: pub method parameter count changed ---

Description:
A publicly-visible method now takes a different number of parameters, not counting the receiver (self) parameter.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#fn-change-arity
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.50.0/src/lints/method_parameter_count_changed.ron

Failed in:
  soar_dl::release::ReleaseDownload::new takes 1 parameters in /tmp/.tmpIc1qUz/soar-dl/src/release.rs:45, but now takes 2 parameters in /tmp/.tmpQ0erE6/soar/crates/soar-dl/src/release.rs:37

--- failure module_missing: pub module removed or renamed ---

Description:
A publicly-visible module cannot be imported by its prior path. A `pub use` may have been removed, or the module may have been renamed, removed, or made non-public.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.50.0/src/lints/module_missing.ron

Failed in:
  mod soar_dl::traits, previously in file /tmp/.tmpIc1qUz/soar-dl/src/traits.rs:1
  mod soar_dl::github, previously in file /tmp/.tmpIc1qUz/soar-dl/src/github.rs:1
  mod soar_dl::gitlab, previously in file /tmp/.tmpIc1qUz/soar-dl/src/gitlab.rs:1

--- failure struct_missing: pub struct removed or renamed ---

Description:
A publicly-visible struct cannot be imported by its prior path. A `pub use` may have been removed, or the struct itself may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.50.0/src/lints/struct_missing.ron

Failed in:
  struct soar_dl::gitlab::GitLab, previously in file /tmp/.tmpIc1qUz/soar-dl/src/gitlab.rs:9
  struct soar_dl::gitlab::GitLabAsset, previously in file /tmp/.tmpIc1qUz/soar-dl/src/gitlab.rs:27
  struct soar_dl::github::GithubAsset, previously in file /tmp/.tmpIc1qUz/soar-dl/src/github.rs:22
  struct soar_dl::github::GithubRelease, previously in file /tmp/.tmpIc1qUz/soar-dl/src/github.rs:12
  struct soar_dl::gitlab::GitLabRelease, previously in file /tmp/.tmpIc1qUz/soar-dl/src/gitlab.rs:12
  struct soar_dl::github::Github, previously in file /tmp/.tmpIc1qUz/soar-dl/src/github.rs:9
  struct soar_dl::gitlab::GitLabAssets, previously in file /tmp/.tmpIc1qUz/soar-dl/src/gitlab.rs:22

--- failure trait_missing: pub trait removed or renamed ---

Description:
A publicly-visible trait cannot be imported by its prior path. A `pub use` may have been removed, or the trait itself may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.50.0/src/lints/trait_missing.ron

Failed in:
  trait soar_dl::traits::Platform, previously in file /tmp/.tmpIc1qUz/soar-dl/src/traits.rs:20
  trait soar_dl::traits::Release, previously in file /tmp/.tmpIc1qUz/soar-dl/src/traits.rs:9
  trait soar_dl::traits::Asset, previously in file /tmp/.tmpIc1qUz/soar-dl/src/traits.rs:3

--- failure type_allows_fewer_generic_type_params: type now allows fewer generic type parameters ---

Description:
A type now allows fewer generic type parameters than it used to. Uses of this type that supplied all previously-supported generic types will be broken.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#trait-new-parameter-no-default
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.50.0/src/lints/type_allows_fewer_generic_type_params.ron

Failed in:
  Struct ReleaseDownload allows 1 -> 0 generic types in /tmp/.tmpQ0erE6/soar/crates/soar-dl/src/release.rs:14

soar-core breaking changes

--- failure enum_changed_kind: pub enum changed kind ---

Description:
A public enum has been replaced by a different kind of item at the same path, which breaks code that relied on the enum's variants and representation.
        ref: https://github.com/obi1kenobi/cargo-semver-checks/issues/302
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.50.0/src/lints/enum_changed_kind.ron

Failed in:
  enum soar_core::package::release_source::ReleaseSource became struct in /tmp/.tmpQ0erE6/soar/crates/soar-core/src/package/release_source.rs:35

--- failure enum_missing: pub enum removed or renamed ---

Description:
A publicly-visible enum cannot be imported by its prior path. A `pub use` may have been removed, or the enum itself may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.50.0/src/lints/enum_missing.ron

Failed in:
  enum soar_core::package::update_info::Forge, previously in file /tmp/.tmpIc1qUz/soar-core/src/package/update_info.rs:33
Changelog

soar-utils

0.5.3 - 2026-09-23

⛰️ Features

  • Support codeberg, gitea and forgejo release sources (#209) - (af71c58)

🐛 Bug Fixes

  • (config) Isolate system-mode paths behind SOAR_SYSTEM_* (#212) - (d079157)

soar-config

0.14.0 - 2026-09-23

⛰️ Features

  • Support codeberg, gitea and forgejo release sources (#209) - (af71c58)

🐛 Bug Fixes

  • (config) Isolate system-mode paths behind SOAR_SYSTEM_* (#212) - (d079157)

soar-dl

0.13.0 - 2026-09-23

⛰️ Features

  • Support codeberg, gitea and forgejo release sources (#209) - (af71c58)

soar-registry

0.6.5 - 2026-09-23

⛰️ Features

  • Support codeberg, gitea and forgejo release sources (#209) - (af71c58)

soar-db

0.7.3 - 2026-09-23

⛰️ Features

  • Support codeberg, gitea and forgejo release sources (#209) - (af71c58)

soar-events

0.3.2 - 2026-09-23

⛰️ Features

  • Support codeberg, gitea and forgejo release sources (#209) - (af71c58)

soar-package

0.6.1 - 2026-09-23

⛰️ Features

  • Support codeberg, gitea and forgejo release sources (#209) - (af71c58)

soar-core

0.18.0 - 2026-09-23

⛰️ Features

  • Support codeberg, gitea and forgejo release sources (#209) - (af71c58)

🐛 Bug Fixes

  • (config) Isolate system-mode paths behind SOAR_SYSTEM_* (#212) - (d079157)

soar-operations

0.6.1 - 2026-09-23

⛰️ Features

  • Support codeberg, gitea and forgejo release sources (#209) - (af71c58)

soar-cli

0.13.5 - 2026-09-23

⛰️ Features

  • Support codeberg, gitea and forgejo release sources (#209) - (af71c58)

🐛 Bug Fixes

  • (config) Isolate system-mode paths behind SOAR_SYSTEM_* (#212) - (d079157)


This PR was generated with release-plz.

Summary by CodeRabbit

  • New Features
    • Added support for release sources hosted on Codeberg, Gitea, and Forgejo.
  • Bug Fixes
    • Fixed system-mode path handling to prevent paths from overlapping with standard-mode paths.

@cloudflare-workers-and-pages

cloudflare-workers-and-pages Bot commented Sep 20, 2026

Copy link
Copy Markdown

Deploying soar-docs with  Cloudflare Pages  Cloudflare Pages

Latest commit: 5d26bea
Status: ✅  Deploy successful!
Preview URL: https://dbf8ba17.soar-docs.pages.dev
Branch Preview URL: https://release-plz-2026-09-20t03-19.soar-docs.pages.dev

View logs

@QaidVoid QaidVoid added the release New Release (Probably Automated) label Sep 20, 2026
@coderabbitai

coderabbitai Bot commented Sep 20, 2026

Copy link
Copy Markdown
Contributor

Review in Change Stack →

Navigate logical layers of code changes, visualize relationships, and explore their blast radius.

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Advanced

Run ID: 0e82266a-78e9-4c1a-b596-764cbca94a20

📥 Commits

Reviewing files that changed from the base of the PR and between 5d26bea and 8d86b34.

⛔ Files ignored due to path filters (1)
  • Cargo.lock is excluded by !**/*.lock
📒 Files selected for processing (10)
  • CHANGELOG.md
  • crates/soar-config/CHANGELOG.md
  • crates/soar-core/CHANGELOG.md
  • crates/soar-db/CHANGELOG.md
  • crates/soar-dl/CHANGELOG.md
  • crates/soar-events/CHANGELOG.md
  • crates/soar-operations/CHANGELOG.md
  • crates/soar-package/CHANGELOG.md
  • crates/soar-registry/CHANGELOG.md
  • crates/soar-utils/CHANGELOG.md
🚧 Files skipped from review as they are similar to previous changes (10)
  • crates/soar-operations/CHANGELOG.md
  • crates/soar-package/CHANGELOG.md
  • crates/soar-db/CHANGELOG.md
  • crates/soar-registry/CHANGELOG.md
  • crates/soar-dl/CHANGELOG.md
  • crates/soar-utils/CHANGELOG.md
  • crates/soar-events/CHANGELOG.md
  • CHANGELOG.md
  • crates/soar-core/CHANGELOG.md
  • crates/soar-config/CHANGELOG.md

Included review availability: Your plan provides up to 4 included reviews per hour; 2 remain after this review.


📝 Walkthrough

Walkthrough

This release updates package and workspace dependency versions. It adds changelog entries describing support for Codeberg, Gitea, and Forgejo release sources, plus isolation of system-mode paths behind SOAR_SYSTEM_* variables.

Changes

Release metadata

Layer / File(s) Summary
Package and workspace version alignment
Cargo.toml, crates/soar-*/Cargo.toml
Package versions and matching workspace dependency versions are updated for the release.
Release changelog entries
CHANGELOG.md, crates/soar-*/CHANGELOG.md
The changelogs record release versions and dates, Codeberg, Gitea, and Forgejo release-source support, and isolation of system-mode paths behind SOAR_SYSTEM_* variables.

Priority: ➖ Normal

Estimated code review effort: 1 (Trivial) | ~5 minutes

Change: Other

Merge Risk: ⚪ Minimal · up to 8d86b

No specific merge-blocking issue is identified; proceed with normal release checks.

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check. Docstring coverage is scoped to functions touched by this diff. Analyzed 0 functions across 0…
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title identifies this as a release chore. That matches the version bumps and changelog updates, although it does not name the released versions.
✨ Finishing Touches 💡 1
🧪 Generate unit tests (beta)
  • Commit to this branch
  • Create a new PR
🛠️ Fix failing CI checks 💡
  • Commit to this branch
  • Create a new PR

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@QaidVoid
QaidVoid force-pushed the release-plz-2026-09-20T03-19-07Z branch from 5d26bea to 8d86b34 Compare September 23, 2026 03:32

This branch has not been deployed

No deployments
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

release New Release (Probably Automated)

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant