Skip to content

chore: release - #190

Merged
QaidVoid merged 1 commit into
mainfrom
release-plz-2026-08-04T09-31-19Z
Aug 5, 2026
Merged

chore: release#190
QaidVoid merged 1 commit into
mainfrom
release-plz-2026-08-04T09-31-19Z

Conversation

@QaidVoid

@QaidVoid QaidVoid commented Aug 4, 2026

Copy link
Copy Markdown
Member

🤖 New release

  • soar-dl: 0.11.0 -> 0.12.0 (⚠ API breaking changes)
  • soar-core: 0.17.0 -> 0.17.1 (✓ API compatible changes)
  • soar-operations: 0.4.0 -> 0.4.1 (✓ API compatible changes)
  • soar-cli: 0.13.0 -> 0.13.1
  • soar-registry: 0.6.0 -> 0.6.1
  • soar-db: 0.6.0 -> 0.6.1

soar-dl breaking changes

--- failure constructible_struct_adds_field: externally-constructible struct adds field ---

Description:
A pub struct constructible with a struct literal has a new pub field. Existing struct literals must be updated to include the new field.
        ref: https://doc.rust-lang.org/reference/expressions/struct-expr.html
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.48.0/src/lints/constructible_struct_adds_field.ron

Failed in:
  field ClientConfig.ip_family in /tmp/.tmpmjJZub/soar/crates/soar-dl/src/http_client.rs:23
Changelog

soar-dl

0.12.0 - 2026-08-05

⛰️ Features

  • (cli) Add --ipv4 and --ipv6 flags - (2ee8e22)

🐛 Bug Fixes

  • (dl) Tolerate filesystems without xattr support - (f7080c3)
  • (dl) Surface underlying download errors - (d06823a)
  • (http) Honor proxy env vars and bound connect time - (3a43c0f)

soar-core

0.17.1 - 2026-08-05

🐛 Bug Fixes

  • (dl) Surface underlying download errors - (d06823a)

soar-operations

0.4.1 - 2026-08-05

🐛 Bug Fixes

  • (core) Create system-mode database when writable - (6b5d35e)

soar-cli

0.13.1 - 2026-08-05

⛰️ Features

  • (cli) Add --ipv4 and --ipv6 flags - (2ee8e22)

🐛 Bug Fixes

  • (cli) Print info entries in package query format - (2291b37)
  • (core) Create system-mode database when writable - (6b5d35e)
  • (dl) Surface underlying download errors - (d06823a)
  • (dl) Tolerate filesystems without xattr support - (f7080c3)
  • (http) Honor proxy env vars and bound connect time - (3a43c0f)

soar-registry

0.6.1 - 2026-08-05

⚙️ Miscellaneous Tasks

  • Updated the following local packages: soar-dl - (0000000)

soar-db

0.6.1 - 2026-08-05

⚙️ Miscellaneous Tasks

  • Updated the following local packages: soar-registry - (0000000)


This PR was generated with release-plz.

Summary by CodeRabbit

  • New Features
    • Added CLI options to force IPv4 or IPv6 connections.
  • Bug Fixes
    • Improved package-query-format output.
    • System-mode databases are now created when the location is writable.
    • Download errors now include their underlying causes.
    • Improved compatibility with filesystems that lack extended attributes.
    • Proxy environment variables are honored with bounded connection times.
  • Documentation
    • Added release notes for the latest CLI and component updates.

@QaidVoid QaidVoid added the release New Release (Probably Automated) label Aug 4, 2026
@cloudflare-workers-and-pages

cloudflare-workers-and-pages Bot commented Aug 4, 2026

Copy link
Copy Markdown

Deploying soar-docs with  Cloudflare Pages  Cloudflare Pages

Latest commit: ad60dd7
Status: ✅  Deploy successful!
Preview URL: https://c9601ee2.soar-docs.pages.dev
Branch Preview URL: https://release-plz-2026-08-04t09-31.soar-docs.pages.dev

View logs

@coderabbitai

coderabbitai Bot commented Aug 4, 2026

Copy link
Copy Markdown
Contributor

Review Change Stack

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro Plus

Run ID: 0e2a0199-a119-41c3-9a92-c3b5a75f715e

📥 Commits

Reviewing files that changed from the base of the PR and between 6b5d35e and db1ae7e.

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

📝 Walkthrough

Walkthrough

This release updates workspace and crate versions, aligns local dependency versions, and adds changelog entries for CLI flags, download errors, proxy handling, and package updates.

Changes

Workspace release update

Layer / File(s) Summary
Package and dependency version alignment
Cargo.toml, crates/*/Cargo.toml
Workspace dependencies and package manifests use the updated crate versions.
Release changelog entries
CHANGELOG.md, crates/*/CHANGELOG.md
Changelogs record the releases and document the CLI, download, proxy, and package updates.

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

Possibly related PRs

  • pkgforge/soar#124: Automated multi-crate release updates with matching manifest and changelog changes.
  • pkgforge/soar#146: Release-plz updates across workspace manifests, dependencies, and changelogs.
  • pkgforge/soar#166: Automated version and changelog updates across overlapping workspace crates.
🚥 Pre-merge checks | ✅ 4 | ❌ 1

❌ Failed checks (1 inconclusive)

Check name Status Explanation Resolution
Title check ❓ Inconclusive The title indicates a release but does not identify the packages or version changes included in the pull request. Use a specific title such as “chore: release v0.13.1 and update workspace package versions.”
✅ Passed checks (4 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
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.
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch release-plz-2026-08-04T09-31-19Z

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.

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 2

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@crates/soar-core/CHANGELOG.md`:
- Line 6: Update the changelog entry for the local package updates to replace
the placeholder 0000000 commit link with the actual repository commit hash, or
remove the link if no valid hash is available.

In `@crates/soar-db/CHANGELOG.md`:
- Line 6: Replace the 0000000 placeholder with the actual release commit SHA in
crates/soar-db/CHANGELOG.md lines 6-6 for soar-registry,
crates/soar-operations/CHANGELOG.md lines 6-6 for the four-package entry, and
crates/soar-registry/CHANGELOG.md lines 6-6 for soar-dl.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro Plus

Run ID: 21fb139b-30bc-4339-ab17-b0a06c442242

📥 Commits

Reviewing files that changed from the base of the PR and between 3a43c0f and ad60dd7.

⛔ Files ignored due to path filters (1)
  • Cargo.lock is excluded by !**/*.lock
📒 Files selected for processing (13)
  • CHANGELOG.md
  • Cargo.toml
  • crates/soar-cli/Cargo.toml
  • crates/soar-core/CHANGELOG.md
  • crates/soar-core/Cargo.toml
  • crates/soar-db/CHANGELOG.md
  • crates/soar-db/Cargo.toml
  • crates/soar-dl/CHANGELOG.md
  • crates/soar-dl/Cargo.toml
  • crates/soar-operations/CHANGELOG.md
  • crates/soar-operations/Cargo.toml
  • crates/soar-registry/CHANGELOG.md
  • crates/soar-registry/Cargo.toml

Comment thread crates/soar-core/CHANGELOG.md Outdated

### ⚙️ Miscellaneous Tasks

- Updated the following local packages: soar-registry - ([0000000](https://github.com/pkgforge/soar/commit/0000000))

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win

Replace the placeholder commit reference in all release changelogs.

The 0000000 reference is not the release commit SHA. Replace it with the actual SHA in each entry.

  • crates/soar-db/CHANGELOG.md#L6-L6: update the soar-registry commit link.
  • crates/soar-operations/CHANGELOG.md#L6-L6: update the four-package commit link.
  • crates/soar-registry/CHANGELOG.md#L6-L6: update the soar-dl commit link.
📍 Affects 3 files
  • crates/soar-db/CHANGELOG.md#L6-L6 (this comment)
  • crates/soar-operations/CHANGELOG.md#L6-L6
  • crates/soar-registry/CHANGELOG.md#L6-L6
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@crates/soar-db/CHANGELOG.md` at line 6, Replace the 0000000 placeholder with
the actual release commit SHA in crates/soar-db/CHANGELOG.md lines 6-6 for
soar-registry, crates/soar-operations/CHANGELOG.md lines 6-6 for the
four-package entry, and crates/soar-registry/CHANGELOG.md lines 6-6 for soar-dl.

@QaidVoid
QaidVoid force-pushed the release-plz-2026-08-04T09-31-19Z branch 2 times, most recently from d193bfe to 6b55ba4 Compare August 5, 2026 04:01
@coderabbitai

coderabbitai Bot commented Aug 5, 2026

Copy link
Copy Markdown
Contributor

Note

GitHub couldn't provide a complete incremental comparison for this pull request, so CodeRabbit is performing a full review instead. This review may take a little longer.

@QaidVoid
QaidVoid force-pushed the release-plz-2026-08-04T09-31-19Z branch from 6b55ba4 to db1ae7e Compare August 5, 2026 18:02
@coderabbitai

coderabbitai Bot commented Aug 5, 2026

Copy link
Copy Markdown
Contributor

Note

GitHub couldn't provide a complete incremental comparison for this pull request, so CodeRabbit is performing a full review instead. This review may take a little longer.

@QaidVoid
QaidVoid merged commit ae017bd into main Aug 5, 2026
10 checks passed
github-actions Bot pushed a commit to Azathothas/soar that referenced this pull request Aug 5, 2026
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