Skip to content

Commit dbf92e8

Browse files
committed
Merge branch 'main' into feat/upgrade-to-lock-v7
2 parents a4b0f1b + e7b1d97 commit dbf92e8

File tree

99 files changed

+3295
-789
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

99 files changed

+3295
-789
lines changed

.github/workflows/scorecard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,6 @@ jobs:
7474
# Upload the results to GitHub's code scanning dashboard (optional).
7575
# Commenting out will disable upload of results to your repo's Code Scanning dashboard
7676
- name: "Upload to code-scanning"
77-
uses: github/codeql-action/upload-sarif@16140ae1a102900babc80a33c44059580f687047 # v4.30.9
77+
uses: github/codeql-action/upload-sarif@4e94bd11f71e507f7f87df81788dff88d1dacbfb # v4.31.0
7878
with:
7979
sarif_file: results.sarif

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ site/
2323
docs/_build/
2424
*.egg-info/
2525
dist/
26-
build/
26+
/build/
2727

2828
# Conda/Pixi environment related
2929
*.conda
@@ -117,4 +117,4 @@ secrets.json
117117
# Generated files
118118
*_pb2.py
119119
*_pb2_grpc.py
120-
files.txt
120+
files.txt

CHANGELOG.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,46 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
### [0.59.0] - 2025-10-29
9+
#### ✨ Highlights
10+
11+
This release introduces the ability to set the strategy used in the solve.
12+
You can learn more about this feature in the [documentation](https://pixi.sh/dev/reference/pixi_manifest/#solve-strategy-optional).
13+
14+
However, the main reason we are making this release is because one of our dependencies `astral-tokio-tar` below 0.5.6 has a high severity security issue titled `TARmageddon`.
15+
Updating that dependency fixes that.
16+
17+
18+
#### Added
19+
20+
- Add `solve-strategy` to the manifest and solve by @bobozaur in [#4789](https://github.com/prefix-dev/pixi/pull/4789)
21+
22+
23+
#### Changed
24+
25+
- Upgrade rust toolchain by @tdejager in [#4815](https://github.com/prefix-dev/pixi/pull/4815)
26+
- Update patch script to patch versions by @tdejager in [#4823](https://github.com/prefix-dev/pixi/pull/4823)
27+
- Configurable export name by @charles-turner-1 in [#4838](https://github.com/prefix-dev/pixi/pull/4838)
28+
29+
30+
#### Documentation
31+
32+
- Use custom search separator by @Hofer-Julian in [#4835](https://github.com/prefix-dev/pixi/pull/4835)
33+
34+
35+
#### Fixed
36+
37+
- CLI logging again by @tdejager in [#4812](https://github.com/prefix-dev/pixi/pull/4812)
38+
- Slim down trampoline dependency tree by removing `pixi_utils` by @wolfv in [#4817](https://github.com/prefix-dev/pixi/pull/4817)
39+
- Lefthook parallel by @Hofer-Julian in [#4836](https://github.com/prefix-dev/pixi/pull/4836)
40+
- CVE-2025-62518 by updating astral-tokio-tar by @niklaskorz in [#4833](https://github.com/prefix-dev/pixi/pull/4833)
41+
42+
43+
#### New Contributors
44+
* @charles-turner-1 made their first contribution in [#4838](https://github.com/prefix-dev/pixi/pull/4838)
45+
* @niklaskorz made their first contribution in [#4833](https://github.com/prefix-dev/pixi/pull/4833)
46+
* @bobozaur made their first contribution in [#4789](https://github.com/prefix-dev/pixi/pull/4789)
47+
848
### [0.58.0] - 2025-10-22
949
#### ✨ Highlights
1050

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ authors:
3030
- given-names: Julian
3131
family-names: Hofer
3232
33-
repository-code: 'https://github.com/prefix-dev/pixi/releases/tag/v0.58.0'
34-
url: 'https://pixi.sh/v0.58.0'
33+
repository-code: 'https://github.com/prefix-dev/pixi/releases/tag/v0.59.0'
34+
url: 'https://pixi.sh/v0.59.0'
3535
abstract: >-
3636
A cross-platform, language agnostic, package/project
3737
management tool for development in virtual environments.

0 commit comments

Comments
 (0)