Skip to content

chore: bump & publish crates - #2427

Merged
wolfv merged 5 commits into
mainfrom
release-plz-2026-04-16T08-49-05Z
May 20, 2026
Merged

chore: bump & publish crates#2427
wolfv merged 5 commits into
mainfrom
release-plz-2026-04-16T08-49-05Z

Conversation

@prefix-dev-release-bot

@prefix-dev-release-bot prefix-dev-release-bot Bot commented Apr 16, 2026

Copy link
Copy Markdown
Contributor

🤖 New release

  • rattler_build_types: 0.1.6 -> 0.1.7
  • rattler_build_jinja: 0.1.6 -> 0.1.7
  • rattler_build_networking: 0.1.5 -> 0.1.6
  • rattler_build_script: 0.2.3 -> 0.2.4
  • rattler_build_variant_config: 0.1.6 -> 0.1.7
  • rattler_build_recipe: 0.1.6 -> 0.1.7
  • rattler_build_source_cache: 0.1.5 -> 0.1.6
  • rattler_build_core: 0.2.4 -> 0.2.5
  • rattler_build_recipe_generator: 0.1.5 -> 0.1.6
  • rattler_build_package: 0.1.6 -> 0.1.7
  • rattler_build_yaml_parser: 0.1.6 -> 0.1.7
Changelog

rattler_build_types

0.1.7 - 2026-05-20

Other

  • update Cargo.toml dependencies

rattler_build_jinja

0.1.7 - 2026-05-20

Added

  • git.latest_tag_distance (#2484)

Fixed

  • correct git.latest_tag_distance parsing for dashed tag names (#2491)

rattler_build_networking

0.1.6 - 2026-05-20

Other

  • bump rattler crates and migrate to reqwest 0.13 (#2493)
  • lazily initialize the BaseClient (#2456)

rattler_build_script

0.2.4 - 2026-05-20

Fixed

  • set CONDA_BUILD env var in build_env.sh to fix env-isolation none (#2433)

Other

  • bump rattler crates and migrate to reqwest 0.13 (#2493)

rattler_build_variant_config

0.1.7 - 2026-05-20

Other

  • update Cargo.toml dependencies

rattler_build_recipe

0.1.7 - 2026-05-20

Added

  • v3 packages (#2452)
  • remove experimental guard for staging outputs (#2432)

Fixed

  • inherit build number for cache outputs (#2460)
  • variant tracking and env vars for staging cache inheritance (#2455)
  • disable build file auto-discovery for multi-output recipes (#2436)

Other

  • bump rattler dependencies (#2457)

rattler_build_source_cache

0.1.6 - 2026-05-20

Fixed

  • validate source attestations (#2338)

Other

  • bump rattler crates and migrate to reqwest 0.13 (#2493)
  • lazily initialize the BaseClient (#2456)

rattler_build_core

0.2.5 - 2026-05-20

Added

  • Allow build scripts to override package contents (#2476)
  • add warn when repodata unsupported (#2472)
  • v3 packages (#2452)

Fixed

  • validate source attestations (#2338)
  • improve error handling in DependencyResolutionError (#2485)
  • respect .orig-only sources in patch application (#2470)
  • variant tracking and env vars for staging cache inheritance (#2455)
  • remove PKG_* environment variables in staging cache, set variant values (#2449)
  • use force directory removal to handle Windows file locks (#2444)
  • prevent stacking of pending-rm suffixes on Windows cleanup (#2439)
  • set CONDA_BUILD env var in build_env.sh to fix env-isolation none (#2433)
  • include default env vars also in test environment (#2425)

Other

  • bump rattler crates (#2502)
  • bump rattler crates and migrate to reqwest 0.13 (#2493)
  • lazily initialize the BaseClient (#2456)
  • bump rattler dependencies (#2457)

rattler_build_recipe_generator

0.1.6 - 2026-05-20

Other

  • bump rattler crates and migrate to reqwest 0.13 (#2493)

rattler_build_package

0.1.7 - 2026-05-20

Added

Other

  • bump rattler dependencies (#2457)

rattler_build_yaml_parser

0.1.7 - 2026-05-20

Other

  • updated the following local packages: rattler_build_jinja


This PR was generated with release-plz.

@prefix-dev-release-bot
prefix-dev-release-bot Bot force-pushed the release-plz-2026-04-16T08-49-05Z branch 10 times, most recently from 7b7fdec to eeb4a13 Compare April 22, 2026 06:26
@prefix-dev-release-bot
prefix-dev-release-bot Bot force-pushed the release-plz-2026-04-16T08-49-05Z branch 12 times, most recently from 369d2d0 to c7a7eb0 Compare May 4, 2026 07:41
@prefix-dev-release-bot
prefix-dev-release-bot Bot force-pushed the release-plz-2026-04-16T08-49-05Z branch 7 times, most recently from 30a334e to 83a6cf8 Compare May 8, 2026 07:30
@prefix-dev-release-bot
prefix-dev-release-bot Bot force-pushed the release-plz-2026-04-16T08-49-05Z branch 5 times, most recently from d01314c to 34813c6 Compare May 13, 2026 16:18
@prefix-dev-release-bot
prefix-dev-release-bot Bot force-pushed the release-plz-2026-04-16T08-49-05Z branch 3 times, most recently from 0e9d4a7 to 59b2fd1 Compare May 20, 2026 07:44
@prefix-dev-release-bot
prefix-dev-release-bot Bot force-pushed the release-plz-2026-04-16T08-49-05Z branch from 837870e to 1e50ac8 Compare May 20, 2026 07:56
prefix-dev-release-bot Bot and others added 2 commits May 20, 2026 07:56
minijinja 2.20.0 split chained comparisons (e.g. `a < b < c`) out of
Expr::BinOp into a dedicated Expr::Compare variant, which broke the
exhaustive match in collect_variables_from_expr. Add a Compare arm that
walks the left-hand expression and every operand of the chain so all
referenced variables continue to be tracked.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
wolfv and others added 2 commits May 20, 2026 11:38
The playground crate is excluded from the main workspace and keeps its
own lockfile for WASM dep resolution. It was still pinned to minijinja
2.18, so after adding the Expr::Compare arm (only present in 2.20+) the
WASM build broke with E0599 on the playground crate.

Run `cargo update -p minijinja` inside the playground so it resolves to
2.20.0 like the rest of the workspace.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
…pace

py-rattler-build/rust/ has its own Cargo.lock (it's a separate
Cargo project, not a workspace member). It was still pinned to
minijinja 2.18.0, so pre-commit's py-rattler-build-cargo-clippy job
failed with E0599 on Expr::Compare after the source fix landed.

Same shape as the playground lockfile bump in the previous commit.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
@wolfv
wolfv merged commit 3b208fe into main May 20, 2026
11 checks passed
@wolfv
wolfv deleted the release-plz-2026-04-16T08-49-05Z branch May 20, 2026 12:41
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant