1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-13 14:02:42 +01:00

Tweak the release notes

This commit is contained in:
Graham Christensen 2025-07-18 14:34:01 -04:00
parent 8d478340a6
commit 082ffc3745
2 changed files with 18 additions and 11 deletions

View file

@ -113,12 +113,6 @@ This section lists the differences between upstream Nix 2.30 and Determinate Nix
<!-- Determinate Nix version 3.8.3 --> <!-- Determinate Nix version 3.8.3 -->
* Only build the manual on x86_64-linux by @edolstra in [DeterminateSystems/nix-src#148](https://github.com/DeterminateSystems/nix-src/pull/148)
* Add an `external-builders` experimental feature by @cole-h in [DeterminateSystems/nix-src#141](https://github.com/DeterminateSystems/nix-src/pull/141) * Add an `external-builders` experimental feature by @cole-h in [DeterminateSystems/nix-src#141](https://github.com/DeterminateSystems/nix-src/pull/141)
* Use WAL mode for SQLite cache databases by @edolstra in [DeterminateSystems/nix-src#150](https://github.com/DeterminateSystems/nix-src/pull/150)
* external-derivation-builder: run under build user by @cole-h in [DeterminateSystems/nix-src#152](https://github.com/DeterminateSystems/nix-src/pull/152)
* Add support for external builders by @edolstra in [DeterminateSystems/nix-src#78](https://github.com/DeterminateSystems/nix-src/pull/78) * Add support for external builders by @edolstra in [DeterminateSystems/nix-src#78](https://github.com/DeterminateSystems/nix-src/pull/78)

View file

@ -3,11 +3,24 @@
* Based on [upstream Nix 2.30.1](../release-notes/rl-2.30.md). * Based on [upstream Nix 2.30.1](../release-notes/rl-2.30.md).
## What's Changed ## What's Changed
* Only build the manual on x86_64-linux by @edolstra in [DeterminateSystems/nix-src#148](https://github.com/DeterminateSystems/nix-src/pull/148)
* Add an `external-builders` experimental feature by @cole-h in [DeterminateSystems/nix-src#141](https://github.com/DeterminateSystems/nix-src/pull/141)
* Use WAL mode for SQLite cache databases by @edolstra in [DeterminateSystems/nix-src#150](https://github.com/DeterminateSystems/nix-src/pull/150)
* external-derivation-builder: run under build user by @cole-h in [DeterminateSystems/nix-src#152](https://github.com/DeterminateSystems/nix-src/pull/152)
* Add support for external builders by @edolstra in [DeterminateSystems/nix-src#78](https://github.com/DeterminateSystems/nix-src/pull/78)
### Non-blocking evaluation caching
Users reporting evaluation would occasionally block other evaluation processes.
The evaluation cache database is now opened in write-ahead mode to prevent delaying evaluations.
PR: [DeterminateSystems/nix-src#150](https://github.com/DeterminateSystems/nix-src/pull/150)
### New experimental feature: `external-builders`
This experimental feature allows Nix to call an external program for the build environment.
The interface and behavior of this feature may change at any moment without a correspondingly major semver version change.
PRs:
- [DeterminateSystems/nix-src#141](https://github.com/DeterminateSystems/nix-src/pull/141)
- [DeterminateSystems/nix-src#152](https://github.com/DeterminateSystems/nix-src/pull/152)
- [DeterminateSystems/nix-src#78](https://github.com/DeterminateSystems/nix-src/pull/78)
**Full Changelog**: [v3.8.2...v3.8.3](https://github.com/DeterminateSystems/nix-src/compare/v3.8.2...v3.8.3) **Full Changelog**: [v3.8.2...v3.8.3](https://github.com/DeterminateSystems/nix-src/compare/v3.8.2...v3.8.3)