Skip to content
Merged
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
26 changes: 13 additions & 13 deletions Cargo.lock

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

28 changes: 14 additions & 14 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ lto = "fat"
codegen-units = 1

[workspace.package]
version = "1.24.0"
version = "1.25.0"
edition = "2024"
rust-version = "1.93"
license = "MIT"
Expand Down Expand Up @@ -148,19 +148,19 @@ diffy = "0.5"
# Internal crates — `version` is required so `cargo publish` can resolve
# transitive crate dependencies via crates.io. release-plz keeps these
# versions in sync with [workspace.package].version during release PRs.
aube = { path = "crates/aube", version = "1.24.0" }
aube-codes = { path = "crates/aube-codes", version = "1.24.0" }
aube-settings = { path = "crates/aube-settings", version = "1.24.0" }
aube-resolver = { path = "crates/aube-resolver", version = "1.24.0" }
aube-registry = { path = "crates/aube-registry", version = "1.24.0" }
aube-store = { path = "crates/aube-store", version = "1.24.0" }
aube-linker = { path = "crates/aube-linker", version = "1.24.0" }
aube-lockfile = { path = "crates/aube-lockfile", version = "1.24.0" }
aube-manifest = { path = "crates/aube-manifest", version = "1.24.0" }
aube-runtime = { path = "crates/aube-runtime", version = "1.24.0" }
aube-scripts = { path = "crates/aube-scripts", version = "1.24.0" }
aube-workspace = { path = "crates/aube-workspace", version = "1.24.0" }
aube-util = { path = "crates/aube-util", version = "1.24.0" }
aube = { path = "crates/aube", version = "1.25.0" }
aube-codes = { path = "crates/aube-codes", version = "1.25.0" }
aube-settings = { path = "crates/aube-settings", version = "1.25.0" }
aube-resolver = { path = "crates/aube-resolver", version = "1.25.0" }
aube-registry = { path = "crates/aube-registry", version = "1.25.0" }
aube-store = { path = "crates/aube-store", version = "1.25.0" }
aube-linker = { path = "crates/aube-linker", version = "1.25.0" }
aube-lockfile = { path = "crates/aube-lockfile", version = "1.25.0" }
aube-manifest = { path = "crates/aube-manifest", version = "1.25.0" }
aube-runtime = { path = "crates/aube-runtime", version = "1.25.0" }
aube-scripts = { path = "crates/aube-scripts", version = "1.25.0" }
aube-workspace = { path = "crates/aube-workspace", version = "1.25.0" }
aube-util = { path = "crates/aube-util", version = "1.25.0" }

[profile.dev]
debug = 1
2 changes: 1 addition & 1 deletion aube.usage.kdl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name aube
bin aube
version "1.24.0"
version "1.25.0"
about "A fast Node.js package manager"
usage "Usage: aube [OPTIONS] [COMMAND]"
flag "-C --dir --cd --prefix" help="Change to directory before running (like `make -C` or `mise --cd`)" global=#true {
Expand Down
11 changes: 11 additions & 0 deletions crates/aube-codes/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.25.0](https://github.com/jdx/aube/compare/aube-codes-v1.24.0...aube-codes-v1.25.0) - 2026-06-25

### Added

- *(runtime)* add shell-activated tool shims ([#945](https://github.com/jdx/aube/pull/945))
- *(resolver)* support globs and version unions in minimumReleaseAgeExclude ([#941](https://github.com/jdx/aube/pull/941))

### Other

- refresh benchmarks for v1.24.0 ([#937](https://github.com/jdx/aube/pull/937))

## [1.24.0](https://github.com/jdx/aube/compare/aube-codes-v1.23.0...aube-codes-v1.24.0) - 2026-06-23

### Added
Expand Down
12 changes: 12 additions & 0 deletions crates/aube-linker/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.25.0](https://github.com/jdx/aube/compare/aube-linker-v1.24.0...aube-linker-v1.25.0) - 2026-06-25

### Added

- *(runtime)* add shell-activated tool shims ([#945](https://github.com/jdx/aube/pull/945))

### Other

- *(linker)* hoist redundant per-package dep-path encode ([#943](https://github.com/jdx/aube/pull/943))
- *(linker)* OS-gate packageImportMethod=auto (reflink on macOS), with the auto-only hardlink fallback scoped to auto ([#944](https://github.com/jdx/aube/pull/944))
- refresh benchmarks for v1.24.0 ([#937](https://github.com/jdx/aube/pull/937))

## [1.24.0](https://github.com/jdx/aube/compare/aube-linker-v1.23.0...aube-linker-v1.24.0) - 2026-06-23

### Other
Expand Down
12 changes: 12 additions & 0 deletions crates/aube-lockfile/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.25.0](https://github.com/jdx/aube/compare/aube-lockfile-v1.24.0...aube-lockfile-v1.25.0) - 2026-06-25

### Added

- *(runtime)* add shell-activated tool shims ([#945](https://github.com/jdx/aube/pull/945))

### Other

- *(linker)* hoist redundant per-package dep-path encode ([#943](https://github.com/jdx/aube/pull/943))
- *(lockfile)* byte-cursor subset parser for pnpm-lock.yaml ([#912](https://github.com/jdx/aube/pull/912))
- refresh benchmarks for v1.24.0 ([#937](https://github.com/jdx/aube/pull/937))

## [1.24.0](https://github.com/jdx/aube/compare/aube-lockfile-v1.23.0...aube-lockfile-v1.24.0) - 2026-06-23

### Other
Expand Down
10 changes: 10 additions & 0 deletions crates/aube-manifest/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.25.0](https://github.com/jdx/aube/compare/aube-manifest-v1.24.0...aube-manifest-v1.25.0) - 2026-06-25

### Added

- *(runtime)* add shell-activated tool shims ([#945](https://github.com/jdx/aube/pull/945))

### Other

- refresh benchmarks for v1.24.0 ([#937](https://github.com/jdx/aube/pull/937))

## [1.24.0](https://github.com/jdx/aube/compare/aube-manifest-v1.23.0...aube-manifest-v1.24.0) - 2026-06-23

### Other
Expand Down
10 changes: 10 additions & 0 deletions crates/aube-registry/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.25.0](https://github.com/jdx/aube/compare/aube-registry-v1.24.0...aube-registry-v1.25.0) - 2026-06-25

### Added

- *(runtime)* add shell-activated tool shims ([#945](https://github.com/jdx/aube/pull/945))

### Other

- refresh benchmarks for v1.24.0 ([#937](https://github.com/jdx/aube/pull/937))

## [1.24.0](https://github.com/jdx/aube/compare/aube-registry-v1.23.0...aube-registry-v1.24.0) - 2026-06-23

### Other
Expand Down
12 changes: 12 additions & 0 deletions crates/aube-resolver/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.25.0](https://github.com/jdx/aube/compare/aube-resolver-v1.24.0...aube-resolver-v1.25.0) - 2026-06-25

### Added

- *(runtime)* add shell-activated tool shims ([#945](https://github.com/jdx/aube/pull/945))
- *(resolver)* support globs and version unions in minimumReleaseAgeExclude ([#941](https://github.com/jdx/aube/pull/941))

### Other

- *(resolver)* index existing-lockfile scans by name ([#930](https://github.com/jdx/aube/pull/930))
- refresh benchmarks for v1.24.0 ([#937](https://github.com/jdx/aube/pull/937))

## [1.24.0](https://github.com/jdx/aube/compare/aube-resolver-v1.23.0...aube-resolver-v1.24.0) - 2026-06-23

### Fixed
Expand Down
10 changes: 10 additions & 0 deletions crates/aube-runtime/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.25.0](https://github.com/jdx/aube/compare/aube-runtime-v1.24.0...aube-runtime-v1.25.0) - 2026-06-25

### Added

- *(runtime)* add shell-activated tool shims ([#945](https://github.com/jdx/aube/pull/945))

### Other

- refresh benchmarks for v1.24.0 ([#937](https://github.com/jdx/aube/pull/937))

## [1.24.0](https://github.com/jdx/aube/compare/aube-runtime-v1.23.0...aube-runtime-v1.24.0) - 2026-06-23

### Other
Expand Down
10 changes: 10 additions & 0 deletions crates/aube-scripts/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.25.0](https://github.com/jdx/aube/compare/aube-scripts-v1.24.0...aube-scripts-v1.25.0) - 2026-06-25

### Added

- *(runtime)* add shell-activated tool shims ([#945](https://github.com/jdx/aube/pull/945))

### Other

- refresh benchmarks for v1.24.0 ([#937](https://github.com/jdx/aube/pull/937))

## [1.24.0](https://github.com/jdx/aube/compare/aube-scripts-v1.23.0...aube-scripts-v1.24.0) - 2026-06-23

### Other
Expand Down
12 changes: 12 additions & 0 deletions crates/aube-settings/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.25.0](https://github.com/jdx/aube/compare/aube-settings-v1.24.0...aube-settings-v1.25.0) - 2026-06-25

### Added

- *(runtime)* add shell-activated tool shims ([#945](https://github.com/jdx/aube/pull/945))
- *(resolver)* support globs and version unions in minimumReleaseAgeExclude ([#941](https://github.com/jdx/aube/pull/941))

### Other

- *(linker)* OS-gate packageImportMethod=auto (reflink on macOS), with the auto-only hardlink fallback scoped to auto ([#944](https://github.com/jdx/aube/pull/944))
- refresh benchmarks for v1.24.0 ([#937](https://github.com/jdx/aube/pull/937))

## [1.24.0](https://github.com/jdx/aube/compare/aube-settings-v1.23.0...aube-settings-v1.24.0) - 2026-06-23

### Added
Expand Down
10 changes: 10 additions & 0 deletions crates/aube-store/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.25.0](https://github.com/jdx/aube/compare/aube-store-v1.24.0...aube-store-v1.25.0) - 2026-06-25

### Added

- *(runtime)* add shell-activated tool shims ([#945](https://github.com/jdx/aube/pull/945))

### Other

- refresh benchmarks for v1.24.0 ([#937](https://github.com/jdx/aube/pull/937))

## [1.24.0](https://github.com/jdx/aube/compare/aube-store-v1.23.0...aube-store-v1.24.0) - 2026-06-23

### Fixed
Expand Down
10 changes: 10 additions & 0 deletions crates/aube-util/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.25.0](https://github.com/jdx/aube/compare/aube-util-v1.24.0...aube-util-v1.25.0) - 2026-06-25

### Added

- *(runtime)* add shell-activated tool shims ([#945](https://github.com/jdx/aube/pull/945))

### Other

- refresh benchmarks for v1.24.0 ([#937](https://github.com/jdx/aube/pull/937))

## [1.24.0](https://github.com/jdx/aube/compare/aube-util-v1.23.0...aube-util-v1.24.0) - 2026-06-23

### Other
Expand Down
10 changes: 10 additions & 0 deletions crates/aube-workspace/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.25.0](https://github.com/jdx/aube/compare/aube-workspace-v1.24.0...aube-workspace-v1.25.0) - 2026-06-25

### Added

- *(runtime)* add shell-activated tool shims ([#945](https://github.com/jdx/aube/pull/945))

### Other

- refresh benchmarks for v1.24.0 ([#937](https://github.com/jdx/aube/pull/937))

## [1.24.0](https://github.com/jdx/aube/compare/aube-workspace-v1.23.0...aube-workspace-v1.24.0) - 2026-06-23

### Other
Expand Down
Loading
Loading