|
| 1 | +# Release 3.15.2 (2026-01-20) |
| 2 | + |
| 3 | +* Based on [upstream Nix 2.33.1](../release-notes/rl-2.33.md). |
| 4 | + |
| 5 | +## What's Changed |
| 6 | + |
| 7 | +### Improved performance for users with a lot of dependencies |
| 8 | + |
| 9 | +If you even had the occasion to query your binary cache for over 110,000 store path simultaneously you might have found it rather slow. |
| 10 | +Previously, Nix would enqueue all the downloads at once. |
| 11 | +This appears to trigger quadratic behavior in curl. |
| 12 | + |
| 13 | +Determinate Nix now enqueues a reasonable number of subtitutions once. |
| 14 | +At the same time, we fixed a performance issue in the progress bar with so many dependencies. |
| 15 | + |
| 16 | +PR: [DeterminateSystems/nix-src#315](https://github.com/DeterminateSystems/nix-src/pull/315) |
| 17 | + |
| 18 | +### Lazy trees update: path inputs are now lazy |
| 19 | + |
| 20 | +Previously inputs like `path:///path/to/a/dependency` were eagerly fetched when lazy-trees is enabled. |
| 21 | +In Determinate Nix 3.15.2, path input types are also fetched lazily. |
| 22 | +This change saves time and improves performance for users with path inputs. |
| 23 | + |
| 24 | +PRs: |
| 25 | +* [DeterminateSystems/nix-src#312](https://github.com/DeterminateSystems/nix-src/pull/312) |
| 26 | +* [DeterminateSystems/nix-src#317](https://github.com/DeterminateSystems/nix-src/pull/317) |
| 27 | + |
| 28 | +### `nix repl` now reports the Determinate version |
| 29 | + |
| 30 | +A small change, but now `nix repl` correctly reports the Determinate Nix version: |
| 31 | + |
| 32 | +``` |
| 33 | +$ nix repl |
| 34 | +Nix (Determinate Nix 3.15.1) 2.33.0 |
| 35 | +Type :? for help. |
| 36 | +nix-repl> |
| 37 | +``` |
| 38 | + |
| 39 | +PR: [DeterminateSystems/nix-src#316](https://github.com/DeterminateSystems/nix-src/pull/316) |
| 40 | + |
| 41 | +## New Contributors |
| 42 | +* @dliberalesso made their first contribution in [DeterminateSystems/nix-src#313](https://github.com/DeterminateSystems/nix-src/pull/313) |
| 43 | + |
| 44 | +**Full Changelog**: [v3.15.1...v3.15.2](https://github.com/DeterminateSystems/nix-src/compare/v3.15.1...v3.15.2) |
0 commit comments