@@ -5,6 +5,42 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
8
+ ### [0.41.4] - 2025-02-18
9
+ #### ✨ Highlights
10
+ This release add support for S3 backends.
11
+ You can configure a custom S3 backend in your `pixi.toml` file.
12
+ This allows you to use a custom S3 bucket as a channel for your project.
13
+
14
+ ```toml
15
+ # pixi.toml
16
+ [project]
17
+ channels = ["s3://my-bucket/custom-channel"]
18
+
19
+ [project.s3-options.my-bucket]
20
+ endpoint-url = "https://my-s3-host"
21
+ region = "us-east-1"
22
+ force-path-style = false
23
+ ```
24
+
25
+ #### Changed
26
+
27
+ - Implement `package.build.configuration` parsing by @wolfv in [#3115](https://github.com/prefix-dev/pixi/pull/3115)
28
+ - Add S3 backend support by @delsner in [#2825](https://github.com/prefix-dev/pixi/pull/2825)
29
+
30
+ #### Documentation
31
+
32
+ - Add S3 documentation by @pavelzw in [#2835](https://github.com/prefix-dev/pixi/pull/2835)
33
+ - Document git dependencies in pixi build documentation by @nichmor in [#3126](https://github.com/prefix-dev/pixi/pull/3126)
34
+
35
+ #### Fixed
36
+
37
+ - Manually exposed executables are removed after `pixi global update` by @Hofer-Julian in [#3109](https://github.com/prefix-dev/pixi/pull/3109)
38
+ - Changing cmake doesn't trigger rebuild by @Hofer-Julian in [#3102](https://github.com/prefix-dev/pixi/pull/3102)
39
+ - `BUILD_EDITABLE_PYTHON` env flag by @Hofer-Julian in [#3128](https://github.com/prefix-dev/pixi/pull/3128)
40
+ - Change the progress message during mapping of packages by @tdejager in [#3155](https://github.com/prefix-dev/pixi/pull/3155)
41
+ - Skip unneeded url parse and only add git+ when needed by @ruben-arts in [#3139](https://github.com/prefix-dev/pixi/pull/3139)
42
+ - Reinstall if required is source and installed is from registry by @ruben-arts in [#3131](https://github.com/prefix-dev/pixi/pull/3131)
43
+
8
44
### [0.41.3] - 2025-02-12
9
45
#### Changed
10
46
- Added `--dry-run` flag to pixi run by @noamgot in [#3107](https://github.com/prefix-dev/pixi/pull/3107)
0 commit comments