Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@

## [0.12.4](https://github.com/pkgforge/soar/compare/v0.12.3...v0.12.4) - 2026-06-14

### ⛰️ Features

- *(install)* Install packages from a local file path - ([20ce381](https://github.com/pkgforge/soar/commit/20ce38171ac2fd58862ba862f304fb1757cdbaf2))

Comment on lines +2 to +7

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.

⚠️ Potential issue | πŸ”΄ Critical

🧩 Analysis chain

🏁 Script executed:

# Check for the actual commit that corresponds to v0.12.4
git log --oneline --all | grep -i "0.12.4\|bump.*version" | head -20

Repository: pkgforge/soar

Length of output: 39


🏁 Script executed:

# Check current git state and recent commits
git log --oneline -10

Repository: pkgforge/soar

Length of output: 80


🏁 Script executed:

# Look for .release-plz.toml configuration
find . -name ".release-plz.toml" -o -name "release-plz.toml" | head -5

Repository: pkgforge/soar

Length of output: 77


🏁 Script executed:

# Verify the CHANGELOG.md content at the mentioned lines
head -20 CHANGELOG.md | cat -n

Repository: pkgforge/soar

Length of output: 1178


🏁 Script executed:

# Check the release commit details
git show 5a1db54 --stat | head -30

Repository: pkgforge/soar

Length of output: 1704


🏁 Script executed:

# Get the full content of .release-plz.toml
cat ./.release-plz.toml

Repository: pkgforge/soar

Length of output: 2544


🏁 Script executed:

# Check git tags to confirm v0.12.4
git tag -l "*0.12.4*" -n1

Repository: pkgforge/soar

Length of output: 39


Replace placeholder commit hash with actual commit reference.

Line 6 contains 0000000, a placeholder hash that creates a broken link. Replace it with 5a1db54 (the release commit hash) to ensure the changelog entry links correctly.

Additionally, verify that the package list "soar-package, soar-core, soar-operations" matches the configured packages in .release-plz.toml which specifies changelog_include=["soar-config", "soar-core"]. There is a mismatch: the changelog lists "soar-package" and "soar-operations" but the configuration includes "soar-config".

πŸ€– 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 `@CHANGELOG.md` around lines 2 - 7, Replace the placeholder commit hash 0000000
with the actual release commit hash 5a1db54 in the changelog entry to fix the
broken link. Additionally, update the package list in the changelog to match the
configured packages in .release-plz.toml: replace the currently listed
"soar-package, soar-core, soar-operations" with the correct package references
from the configuration file which specifies "soar-config" and "soar-core".

## [0.12.3](https://github.com/pkgforge/soar/compare/v0.12.2...v0.12.3) - 2026-06-06

### ⛰️ Features
Expand Down
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,12 @@ serde_json = { version = "1.0.149", features = ["indexmap"] }
serial_test = "3.3.1"
sha2 = "0.10.9"
soar-config = { version = "0.9.0", path = "crates/soar-config" }
soar-core = { version = "0.16.1", path = "crates/soar-core" }
soar-core = { version = "0.16.2", path = "crates/soar-core" }
soar-db = { version = "0.5.3", path = "crates/soar-db" }
soar-dl = { version = "0.10.0", path = "crates/soar-dl" }
soar-events = { version = "0.1.0", path = "crates/soar-events" }
soar-operations = { version = "0.2.2", path = "crates/soar-operations" }
soar-package = { version = "0.3.3", path = "crates/soar-package" }
soar-operations = { version = "0.2.3", path = "crates/soar-operations" }
soar-package = { version = "0.4.0", path = "crates/soar-package" }
soar-registry = { version = "0.4.3", path = "crates/soar-registry" }
soar-utils = { version = "0.4.1", path = "crates/soar-utils" }
squishy = { version = "0.5.0", features = ["appimage", "dwarfs"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/soar-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "soar-cli"
version = "0.12.3"
version = "0.12.4"
description = "A modern package manager for Linux"
default-run = "soar"
license.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions crates/soar-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@

## [0.16.2](https://github.com/pkgforge/soar/compare/soar-core-v0.16.1...soar-core-v0.16.2) - 2026-06-14

### ⛰️ Features

- *(install)* Install packages from a local file path - ([20ce381](https://github.com/pkgforge/soar/commit/20ce38171ac2fd58862ba862f304fb1757cdbaf2))

## [0.16.1](https://github.com/pkgforge/soar/compare/soar-core-v0.16.0...soar-core-v0.16.1) - 2026-06-06

### βš™οΈ Miscellaneous Tasks
Expand Down
2 changes: 1 addition & 1 deletion crates/soar-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "soar-core"
version = "0.16.1"
version = "0.16.2"
description = "Core library for soar package manager"
license.workspace = true
edition.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions crates/soar-operations/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@

## [0.2.3](https://github.com/pkgforge/soar/compare/soar-operations-v0.2.2...soar-operations-v0.2.3) - 2026-06-14

### ⛰️ Features

- *(install)* Install packages from a local file path - ([20ce381](https://github.com/pkgforge/soar/commit/20ce38171ac2fd58862ba862f304fb1757cdbaf2))

## [0.2.2](https://github.com/pkgforge/soar/compare/soar-operations-v0.2.1...soar-operations-v0.2.2) - 2026-06-06

### ⛰️ Features
Expand Down
2 changes: 1 addition & 1 deletion crates/soar-operations/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "soar-operations"
version = "0.2.2"
version = "0.2.3"
description = "Business logic for soar package manager"
license.workspace = true
edition.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions crates/soar-package/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@

## [0.4.0](https://github.com/pkgforge/soar/compare/soar-package-v0.3.3...soar-package-v0.4.0) - 2026-06-14

### πŸ› Bug Fixes

- *(integrate)* Don't clobber desktop Icon field when package ships no matching icon - ([caf1ba6](https://github.com/pkgforge/soar/commit/caf1ba6dd7df4cb227161dfa2530acc985e04dd3))

## [0.3.3](https://github.com/pkgforge/soar/compare/soar-package-v0.3.2...soar-package-v0.3.3) - 2026-06-06

### βš™οΈ Miscellaneous Tasks
Expand Down
2 changes: 1 addition & 1 deletion crates/soar-package/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "soar-package"
version = "0.3.3"
version = "0.4.0"
description = "Package format handling for soar package manager"
edition.workspace = true
readme.workspace = true
Expand Down
Loading