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.7.0 (⚠ API breaking 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/.tmpG07ijy/soar/crates/soar-config/src/packages.rs:237
  field PackageOptions.gitea in /tmp/.tmpG07ijy/soar/crates/soar-config/src/packages.rs:244
  field Config.forge_tokens in /tmp/.tmpG07ijy/soar/crates/soar-config/src/config.rs:127
  field ResolvedPackage.codeberg in /tmp/.tmpG07ijy/soar/crates/soar-config/src/packages.rs:358
  field ResolvedPackage.gitea in /tmp/.tmpG07ijy/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/.tmpGzM0xk/soar-config/src/profile.rs:32, but now takes 1 parameters in /tmp/.tmpG07ijy/soar/crates/soar-config/src/profile.rs:35
  soar_config::profile::Profile::get_cache_path takes 0 parameters in /tmp/.tmpGzM0xk/soar-config/src/profile.rs:40, but now takes 1 parameters in /tmp/.tmpG07ijy/soar/crates/soar-config/src/profile.rs:44
  soar_config::profile::Profile::get_root_path takes 0 parameters in /tmp/.tmpGzM0xk/soar-config/src/profile.rs:52, but now takes 1 parameters in /tmp/.tmpG07ijy/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/.tmpG07ijy/soar/crates/soar-dl/src/platform.rs:26
  variant PlatformUrl::Direct 3 -> 5 in /tmp/.tmpG07ijy/soar/crates/soar-dl/src/platform.rs:29

--- failure enum_tuple_variant_changed_kind: An enum tuple variant changed kind ---

Description:
A public enum's exhaustive tuple variant has changed to a different kind of enum variant, breaking possible instantiations and patterns.
        ref: https://doc.rust-lang.org/reference/items/enumerations.html
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.50.0/src/lints/enum_tuple_variant_changed_kind.ron

Failed in:
  variant DownloadError::Network in /tmp/.tmpG07ijy/soar/crates/soar-dl/src/error.rs:23

--- 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/.tmpG07ijy/soar/crates/soar-dl/src/platform.rs:17
  variant PlatformUrl:Gitea in /tmp/.tmpG07ijy/soar/crates/soar-dl/src/platform.rs:21
  variant DownloadError:ForgeRequest in /tmp/.tmpG07ijy/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/.tmpGzM0xk/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/.tmpGzM0xk/soar-dl/src/release.rs:45, but now takes 2 parameters in /tmp/.tmpG07ijy/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/.tmpGzM0xk/soar-dl/src/traits.rs:1
  mod soar_dl::github, previously in file /tmp/.tmpGzM0xk/soar-dl/src/github.rs:1
  mod soar_dl::gitlab, previously in file /tmp/.tmpGzM0xk/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/.tmpGzM0xk/soar-dl/src/gitlab.rs:9
  struct soar_dl::gitlab::GitLabAsset, previously in file /tmp/.tmpGzM0xk/soar-dl/src/gitlab.rs:27
  struct soar_dl::github::GithubAsset, previously in file /tmp/.tmpGzM0xk/soar-dl/src/github.rs:22
  struct soar_dl::github::GithubRelease, previously in file /tmp/.tmpGzM0xk/soar-dl/src/github.rs:12
  struct soar_dl::gitlab::GitLabRelease, previously in file /tmp/.tmpGzM0xk/soar-dl/src/gitlab.rs:12
  struct soar_dl::github::Github, previously in file /tmp/.tmpGzM0xk/soar-dl/src/github.rs:9
  struct soar_dl::gitlab::GitLabAssets, previously in file /tmp/.tmpGzM0xk/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/.tmpGzM0xk/soar-dl/src/traits.rs:20
  trait soar_dl::traits::Release, previously in file /tmp/.tmpGzM0xk/soar-dl/src/traits.rs:9
  trait soar_dl::traits::Asset, previously in file /tmp/.tmpGzM0xk/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/.tmpG07ijy/soar/crates/soar-dl/src/release.rs:14

⚠ soar-core 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 InstallTarget.integrate in /tmp/.tmpG07ijy/soar/crates/soar-core/src/package/install.rs:493

--- 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/.tmpG07ijy/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/.tmpGzM0xk/soar-core/src/package/update_info.rs:33

⚠ soar-operations 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 InstallOptions.integrate in /tmp/.tmpG07ijy/soar/crates/soar-operations/src/types.rs:21
  field InstallOptions.integrate in /tmp/.tmpG07ijy/soar/crates/soar-operations/src/types.rs:21
Changelog

soar-utils

0.5.3 - 2026-09-26

⛰️ 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-26

⛰️ 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-26

⛰️ Features

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

🐛 Bug Fixes

  • Name the host when a request lookup fails - (eb6e0ab)

soar-registry

0.6.5 - 2026-09-26

⛰️ Features

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

🐛 Bug Fixes

  • Name the host when a request lookup fails - (eb6e0ab)

soar-db

0.7.3 - 2026-09-26

⛰️ Features

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

soar-events

0.3.2 - 2026-09-26

⛰️ Features

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

soar-package

0.6.1 - 2026-09-26

⛰️ Features

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

soar-core

0.18.0 - 2026-09-26

⛰️ Features

  • (install) Integrate local files in place with --integrate - (8f14c0b)
  • Support codeberg, gitea and forgejo release sources (#209) - (af71c58)

🐛 Bug Fixes

  • (config) Isolate system-mode paths behind SOAR_SYSTEM_* (#212) - (d079157)
  • Name the host when a request lookup fails - (eb6e0ab)

soar-operations

0.7.0 - 2026-09-26

⛰️ Features

  • (install) Integrate local files in place with --integrate - (8f14c0b)
  • Support codeberg, gitea and forgejo release sources (#209) - (af71c58)

soar-cli

0.13.5 - 2026-09-26

⛰️ Features

  • (install) Integrate local files in place with --integrate - (8f14c0b)
  • Support codeberg, gitea and forgejo release sources (#209) - (af71c58)

🐛 Bug Fixes

  • (config) Isolate system-mode paths behind SOAR_SYSTEM_* (#212) - (d079157)
  • Name the host when a request lookup fails - (eb6e0ab)


This PR was generated with release-plz.

Summary by CodeRabbit

  • New Features
    • Added support for release sources hosted on Codeberg, Gitea, and Forgejo.
    • Added an --integrate option to integrate local files in place.
  • Bug Fixes
    • System-mode paths are now isolated using dedicated environment variables.
    • Failed request lookups now identify the host involved, making errors clearer.

@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: 5749244d-0ef4-4602-9761-83a5597ee32d

📥 Commits

Reviewing files that changed from the base of the PR and between 670090c and 287caa3.

⛔ Files ignored due to path filters (1)
  • Cargo.lock is excluded by !**/*.lock
📒 Files selected for processing (12)
  • CHANGELOG.md
  • Cargo.toml
  • 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-operations/Cargo.toml
  • 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-dl/CHANGELOG.md
  • crates/soar-events/CHANGELOG.md
  • crates/soar-utils/CHANGELOG.md
  • crates/soar-registry/CHANGELOG.md
  • crates/soar-db/CHANGELOG.md
  • crates/soar-core/CHANGELOG.md
  • crates/soar-package/CHANGELOG.md
  • crates/soar-operations/CHANGELOG.md
  • CHANGELOG.md
  • crates/soar-config/CHANGELOG.md

Included review availability: This review used your included allowance. Your plan provides up to 4 included reviews per hour; 3 remain after this review.


📝 Walkthrough

Walkthrough

This release updates package and workspace dependency versions. It adds changelog entries for Codeberg, Gitea, and Forgejo release-source support. The changelogs also record system-mode path changes and host names in request lookup failures.

Changes

Release metadata

Layer / File(s) Summary
Package and workspace version alignment
Cargo.toml, crates/soar-*/Cargo.toml
Package versions and corresponding workspace dependency versions are updated for the release.
Release changelog entries
CHANGELOG.md, crates/soar-*/CHANGELOG.md
The changelogs record release versions and dates, release-source support, system-mode path isolation, and naming the host when a request lookup fails.

Priority: ➖ Normal

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

Change: Other

Merge Risk: ⚪ Minimal · up to 287ca

Release metadata is consistent, with no actionable merge risk identified.

Architecture Summary

Architecture risk: 🔵 Low · up to 287ca

The change affects 3 systems.

Changed systems: crates, Cargo.toml, CHANGELOG.md

Architecture concerns
No architecture-level concerns identified.

Review details

Systems and components

  • observed — crates (service) was modified; 19 changed files map to changed impact.
  • observed — Cargo.toml (service) was modified; 1 changed file maps to changed impact.
  • observed — CHANGELOG.md (service) was modified; 1 changed file maps to changed impact.

Before / after behavior

  • observed — Modified behavior in crates/soar-cli/Cargo.toml: The version field of the soar-cli package is incremented from 0.13.4 to 0.13.5.
  • observed — Modified behavior in crates/soar-config/Cargo.toml: The version field in [package] was updated from 0.13.0 to 0.14.0.
  • observed — Modified behavior in crates/soar-core/Cargo.toml: The package version field is updated from 0.17.4 to 0.18.0.
  • observed — Modified behavior in crates/soar-db/Cargo.toml: Updated the soar-db package version from 0.7.2 to 0.7.3.
🚥 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, which matches the version bumps and changelog updates in the pull request.
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • 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 2 times, most recently from 8d86b34 to 670090c Compare September 24, 2026 15:21
@QaidVoid
QaidVoid force-pushed the release-plz-2026-09-20T03-19-07Z branch from 670090c to 287caa3 Compare September 26, 2026 11:54

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