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
295 changes: 158 additions & 137 deletions Cargo.lock

Large diffs are not rendered by default.

34 changes: 17 additions & 17 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -211,29 +211,29 @@ zstd = { version = "0.13", default-features = false }
coalesced_map = { path = "crates/coalesced_map", version = "=0.1.4", default-features = false }
file_url = { path = "crates/file_url", version = "=0.3.2", default-features = false }
path_resolver = { path = "crates/path_resolver", version = "=0.2.12", default-features = false }
rattler = { path = "crates/rattler", version = "=0.48.1", default-features = false }
rattler_cache = { path = "crates/rattler_cache", version = "=0.10.4", default-features = false }
rattler_conda_types = { path = "crates/rattler_conda_types", version = "=0.49.0", default-features = false }
rattler_config = { path = "crates/rattler_config", version = "=0.6.2", default-features = false }
rattler = { path = "crates/rattler", version = "=0.48.2", default-features = false }
rattler_cache = { path = "crates/rattler_cache", version = "=0.10.5", default-features = false }
rattler_conda_types = { path = "crates/rattler_conda_types", version = "=0.49.1", default-features = false }
rattler_config = { path = "crates/rattler_config", version = "=0.7.0", default-features = false }
rattler_digest = { path = "crates/rattler_digest", version = "=1.3.2", default-features = false }
rattler_git = { path = "crates/rattler_git", version = "=0.2.1", default-features = false }
rattler_index = { path = "crates/rattler_index", version = "=0.30.11", default-features = false }
rattler_git = { path = "crates/rattler_git", version = "=0.3.0", default-features = false }
rattler_index = { path = "crates/rattler_index", version = "=0.31.0", default-features = false }
rattler_libsolv_c = { path = "crates/rattler_libsolv_c", version = "=1.4.1", default-features = false }
rattler_lock = { path = "crates/rattler_lock", version = "=0.32.0", default-features = false }
rattler_lock = { path = "crates/rattler_lock", version = "=0.32.1", default-features = false }
rattler_macros = { path = "crates/rattler_macros", version = "=1.1.2", default-features = false }
rattler_menuinst = { path = "crates/rattler_menuinst", version = "=0.2.72", default-features = false }
rattler_networking = { path = "crates/rattler_networking", version = "=0.30.3", default-features = false }
rattler_package_streaming = { path = "crates/rattler_package_streaming", version = "=0.26.9", default-features = false }
rattler_menuinst = { path = "crates/rattler_menuinst", version = "=0.2.73", default-features = false }
rattler_networking = { path = "crates/rattler_networking", version = "=0.30.4", default-features = false }
rattler_package_streaming = { path = "crates/rattler_package_streaming", version = "=0.27.0", default-features = false }
rattler_prefix_guard = { path = "crates/rattler_prefix_guard", version = "=0.1.2", default-features = false }
rattler_pty = { path = "crates/rattler_pty", version = "=0.2.16", default-features = false }
rattler_redaction = { path = "crates/rattler_redaction", version = "=0.2.2", default-features = false }
rattler_repodata_gateway = { path = "crates/rattler_repodata_gateway", version = "=0.31.0", default-features = false }
rattler_s3 = { path = "crates/rattler_s3", version = "=0.2.9", default-features = false }
rattler_sandbox = { path = "crates/rattler_sandbox", version = "=0.2.26", default-features = false }
rattler_shell = { path = "crates/rattler_shell", version = "=0.27.12", default-features = false }
rattler_solve = { path = "crates/rattler_solve", version = "=9.0.0", default-features = false }
rattler_upload = { path = "crates/rattler_upload", version = "=0.10.1", default-features = false }
rattler_virtual_packages = { path = "crates/rattler_virtual_packages", version = "=4.1.0", default-features = false }
rattler_repodata_gateway = { path = "crates/rattler_repodata_gateway", version = "=0.32.0", default-features = false }
rattler_s3 = { path = "crates/rattler_s3", version = "=0.2.10", default-features = false }
rattler_sandbox = { path = "crates/rattler_sandbox", version = "=0.2.27", default-features = false }
rattler_shell = { path = "crates/rattler_shell", version = "=0.27.13", default-features = false }
rattler_solve = { path = "crates/rattler_solve", version = "=9.0.1", default-features = false }
rattler_upload = { path = "crates/rattler_upload", version = "=0.10.2", default-features = false }
rattler_virtual_packages = { path = "crates/rattler_virtual_packages", version = "=5.0.0", default-features = false }

# This is also a rattler crate, but we only pin it to minor version
simple_spawn_blocking = { path = "crates/simple_spawn_blocking", version = "1.1", default-features = false }
15 changes: 15 additions & 0 deletions crates/rattler-bin/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.8](https://github.com/conda/rattler/compare/rattler-bin-v0.2.7...rattler-bin-v0.2.8) - 2026-08-11

### Added

- Improve `rattler solve` output ([#2644](https://github.com/conda/rattler/pull/2644))

### Fixed

- follow the OCI registry's WWW-Authenticate challenge ([#2628](https://github.com/conda/rattler/pull/2628))

### Other

- speed up CUDA virtual package detection ([#2568](https://github.com/conda/rattler/pull/2568))
- unblock pixi setup and source package builds ([#2642](https://github.com/conda/rattler/pull/2642))

## [0.2.7](https://github.com/conda/rattler/compare/rattler-bin-v0.2.6...rattler-bin-v0.2.7) - 2026-08-03

### Other
Expand Down
2 changes: 1 addition & 1 deletion crates/rattler-bin/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rattler-bin"
version = "0.2.7"
version = "0.2.8"
edition.workspace = true
authors = ["Bas Zalmstra <zalmstra.bas@gmail.com>"]
description = "Rust binary for common Conda operations"
Expand Down
6 changes: 6 additions & 0 deletions crates/rattler/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.48.2](https://github.com/conda/rattler/compare/rattler-v0.48.1...rattler-v0.48.2) - 2026-08-11

### Other

- updated the following local packages: rattler_conda_types, rattler_config, rattler_networking, rattler_package_streaming, rattler_cache, rattler_shell, rattler_menuinst

## [0.48.1](https://github.com/conda/rattler/compare/rattler-v0.48.0...rattler-v0.48.1) - 2026-08-03

### Other
Expand Down
2 changes: 1 addition & 1 deletion crates/rattler/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
exclude = ["**/snapshots/**"]
name = "rattler"
version = "0.48.1"
version = "0.48.2"
edition.workspace = true
authors = ["Bas Zalmstra <zalmstra.bas@gmail.com>"]
description = "Rust library to install conda environments"
Expand Down
6 changes: 6 additions & 0 deletions crates/rattler_cache/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.10.5](https://github.com/conda/rattler/compare/rattler_cache-v0.10.4...rattler_cache-v0.10.5) - 2026-08-11

### Added

- *(rattler_cache)* add package layer filtering ([#2652](https://github.com/conda/rattler/pull/2652))

## [0.10.4](https://github.com/conda/rattler/compare/rattler_cache-v0.10.3...rattler_cache-v0.10.4) - 2026-07-24

### Added
Expand Down
2 changes: 1 addition & 1 deletion crates/rattler_cache/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rattler_cache"
version = "0.10.4"
version = "0.10.5"
description = "A crate to manage the caching of data in rattler"
categories = { workspace = true }
homepage = { workspace = true }
Expand Down
7 changes: 7 additions & 0 deletions crates/rattler_conda_types/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.49.1](https://github.com/conda/rattler/compare/rattler_conda_types-v0.49.0...rattler_conda_types-v0.49.1) - 2026-08-11

### Added

- *(rattler_conda_types)* convert to and from `semver::Version` ([#2641](https://github.com/conda/rattler/pull/2641))
- add CEP-6 channel notice support ([#2639](https://github.com/conda/rattler/pull/2639))

## [0.49.0](https://github.com/conda/rattler/compare/rattler_conda_types-v0.48.1...rattler_conda_types-v0.49.0) - 2026-07-24

### Added
Expand Down
2 changes: 1 addition & 1 deletion crates/rattler_conda_types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
exclude = ["**/snapshots/**", "benches/**"]
name = "rattler_conda_types"
version = "0.49.0"
version = "0.49.1"
edition.workspace = true
authors = ["Bas Zalmstra <zalmstra.bas@gmail.com>"]
description = "Rust data types for common types used within the Conda ecosystem"
Expand Down
7 changes: 7 additions & 0 deletions crates/rattler_config/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.7.0](https://github.com/conda/rattler/compare/rattler_config-v0.6.2...rattler_config-v0.7.0) - 2026-08-11

### Added

- add a shared config layer read by all rattler-based tools ([#2645](https://github.com/conda/rattler/pull/2645))
- add CEP-6 channel notice support ([#2639](https://github.com/conda/rattler/pull/2639))

## [0.6.2](https://github.com/conda/rattler/compare/rattler_config-v0.6.1...rattler_config-v0.6.2) - 2026-07-24

### Other
Expand Down
2 changes: 1 addition & 1 deletion crates/rattler_config/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
exclude = ["**/snapshots/**", "test-data/**"]
name = "rattler_config"
version = "0.6.2"
version = "0.7.0"
edition.workspace = true
authors = []
description = "A crate to configure rattler and derived tools."
Expand Down
6 changes: 6 additions & 0 deletions crates/rattler_git/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.3.0](https://github.com/conda/rattler/compare/rattler_git-v0.2.1...rattler_git-v0.3.0) - 2026-08-11

### Fixed

- *(rattler_git)* harden LFS checkouts and add path filters ([#2640](https://github.com/conda/rattler/pull/2640))

## [0.2.1](https://github.com/conda/rattler/compare/rattler_git-v0.2.0...rattler_git-v0.2.1) - 2026-07-24

### Other
Expand Down
2 changes: 1 addition & 1 deletion crates/rattler_git/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rattler_git"
version = "0.2.1"
version = "0.3.0"
edition.workspace = true
license.workspace = true
repository.workspace = true
Expand Down
10 changes: 10 additions & 0 deletions crates/rattler_index/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]

## [0.31.0](https://github.com/conda/rattler/compare/rattler_index-v0.30.11...rattler_index-v0.31.0) - 2026-08-11

### Added

- add CEP-6 channel notice support ([#2639](https://github.com/conda/rattler/pull/2639))

### Other

- unblock pixi setup and source package builds ([#2642](https://github.com/conda/rattler/pull/2642))

## [0.30.11](https://github.com/conda/rattler/compare/rattler_index-v0.30.10...rattler_index-v0.30.11) - 2026-08-03

### Other
Expand Down
2 changes: 1 addition & 1 deletion crates/rattler_index/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
exclude = ["tests/**"]
name = "rattler_index"
version = "0.30.11"
version = "0.31.0"
edition.workspace = true
authors = []
description = "A crate to index conda channels and create a repodata.json file."
Expand Down
6 changes: 6 additions & 0 deletions crates/rattler_lock/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.32.1](https://github.com/conda/rattler/compare/rattler_lock-v0.32.0...rattler_lock-v0.32.1) - 2026-08-11

### Other

- updated the following local packages: rattler_conda_types, rattler_solve

## [0.32.0](https://github.com/conda/rattler/compare/rattler_lock-v0.31.7...rattler_lock-v0.32.0) - 2026-08-03

### Added
Expand Down
2 changes: 1 addition & 1 deletion crates/rattler_lock/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
exclude = ["**/snapshots/**"]
name = "rattler_lock"
version = "0.32.0"
version = "0.32.1"
edition.workspace = true
authors = ["Bas Zalmstra <zalmstra.bas@gmail.com>"]
description = "Rust data types for conda lock"
Expand Down
6 changes: 6 additions & 0 deletions crates/rattler_menuinst/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.73](https://github.com/conda/rattler/compare/rattler_menuinst-v0.2.72...rattler_menuinst-v0.2.73) - 2026-08-11

### Other

- updated the following local packages: rattler_conda_types, rattler_shell

## [0.2.72](https://github.com/conda/rattler/compare/rattler_menuinst-v0.2.71...rattler_menuinst-v0.2.72) - 2026-08-03

### Other
Expand Down
2 changes: 1 addition & 1 deletion crates/rattler_menuinst/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
exclude = ["**/snapshots/**", "test-data/**"]
name = "rattler_menuinst"
version = "0.2.72"
version = "0.2.73"
edition.workspace = true
authors = ["Wolf Vollprecht <w.vollprecht@gmail.com>"]
description = "Install menu entries for a Conda package"
Expand Down
7 changes: 7 additions & 0 deletions crates/rattler_networking/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.30.4](https://github.com/conda/rattler/compare/rattler_networking-v0.30.3...rattler_networking-v0.30.4) - 2026-08-11

### Fixed

- *(rattler_networking)* report a missing OCI manifest as a 404 instead of erroring ([#2651](https://github.com/conda/rattler/pull/2651))
- follow the OCI registry's WWW-Authenticate challenge ([#2628](https://github.com/conda/rattler/pull/2628))

## [0.30.3](https://github.com/conda/rattler/compare/rattler_networking-v0.30.2...rattler_networking-v0.30.3) - 2026-07-24

### Other
Expand Down
2 changes: 1 addition & 1 deletion crates/rattler_networking/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
exclude = ["tests/**", "**/snapshots/**"]
name = "rattler_networking"
version = "0.30.3"
version = "0.30.4"
edition.workspace = true
authors = ["Wolf Vollprecht <w.vollprecht@gmail.com>"]
description = "Authenticated requests in the conda ecosystem"
Expand Down
6 changes: 6 additions & 0 deletions crates/rattler_package_streaming/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.27.0](https://github.com/conda/rattler/compare/rattler_package_streaming-v0.26.9...rattler_package_streaming-v0.27.0) - 2026-08-11

### Added

- add PackageArchive for sparse reads from conda packages ([#2632](https://github.com/conda/rattler/pull/2632))

## [0.26.9](https://github.com/conda/rattler/compare/rattler_package_streaming-v0.26.8...rattler_package_streaming-v0.26.9) - 2026-07-24

### Other
Expand Down
2 changes: 1 addition & 1 deletion crates/rattler_package_streaming/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
exclude = ["tests/**", "benches/**", "**/snapshots/**"]
name = "rattler_package_streaming"
version = "0.26.9"
version = "0.27.0"
edition.workspace = true
authors = ["Bas Zalmstra <zalmstra.bas@gmail.com>"]
description = "Extract and stream of Conda package archives"
Expand Down
12 changes: 12 additions & 0 deletions crates/rattler_repodata_gateway/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]

## [0.32.0](https://github.com/conda/rattler/compare/rattler_repodata_gateway-v0.31.0...rattler_repodata_gateway-v0.32.0) - 2026-08-11

### Added

- add CEP-6 channel notice support ([#2639](https://github.com/conda/rattler/pull/2639))

### Fixed

- *(repodata-gateway)* limit concurrent shard cache reads ([#2163](https://github.com/conda/rattler/pull/2163))
- *(repodata_gateway)* test remote run_exports against a local server ([#2648](https://github.com/conda/rattler/pull/2648))
- Failing test ([#2647](https://github.com/conda/rattler/pull/2647))

## [0.31.0](https://github.com/conda/rattler/compare/rattler_repodata_gateway-v0.30.1...rattler_repodata_gateway-v0.31.0) - 2026-07-24

### Added
Expand Down
2 changes: 1 addition & 1 deletion crates/rattler_repodata_gateway/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
exclude = ["benches/**", "**/snapshots/**"]
name = "rattler_repodata_gateway"
version = "0.31.0"
version = "0.32.0"
edition.workspace = true
authors = ["Bas Zalmstra <zalmstra.bas@gmail.com>"]
description = "A crate to interact with Conda repodata"
Expand Down
6 changes: 6 additions & 0 deletions crates/rattler_s3/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.10](https://github.com/conda/rattler/compare/rattler_s3-v0.2.9...rattler_s3-v0.2.10) - 2026-08-11

### Other

- updated the following local packages: rattler_networking

## [0.2.9](https://github.com/conda/rattler/compare/rattler_s3-v0.2.8...rattler_s3-v0.2.9) - 2026-07-24

### Other
Expand Down
2 changes: 1 addition & 1 deletion crates/rattler_s3/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rattler_s3"
version = "0.2.9"
version = "0.2.10"
description = "A crate to streamline interaction with S3 storage for rattler"
categories.workspace = true
homepage.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions crates/rattler_sandbox/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.27](https://github.com/conda/rattler/compare/rattler_sandbox-v0.2.26...rattler_sandbox-v0.2.27) - 2026-08-11

### Other

- update Cargo.lock dependencies

## [0.2.26](https://github.com/conda/rattler/compare/rattler_sandbox-v0.2.25...rattler_sandbox-v0.2.26) - 2026-07-28

### Other
Expand Down
2 changes: 1 addition & 1 deletion crates/rattler_sandbox/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
exclude = ["tests/**"]
name = "rattler_sandbox"
version = "0.2.26"
version = "0.2.27"
description = "A crate to run executables in a sandbox"
categories.workspace = true
homepage.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions crates/rattler_shell/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.27.13](https://github.com/conda/rattler/compare/rattler_shell-v0.27.12...rattler_shell-v0.27.13) - 2026-08-11

### Fixed

- *(shell)* escape env var values in activation script ([#2621](https://github.com/conda/rattler/pull/2621))

## [0.27.12](https://github.com/conda/rattler/compare/rattler_shell-v0.27.11...rattler_shell-v0.27.12) - 2026-08-03

### Other
Expand Down
2 changes: 1 addition & 1 deletion crates/rattler_shell/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
exclude = ["**/snapshots/**"]
name = "rattler_shell"
version = "0.27.12"
version = "0.27.13"
edition.workspace = true
authors = ["Wolf Vollprecht <w.vollprecht@gmail.com>"]
description = "A crate to help with activation and deactivation of a conda environment"
Expand Down
Loading
Loading