aboutsummaryrefslogtreecommitdiff
path: root/doc/manual/src/release-notes
diff options
context:
space:
mode:
authortomberek <tomberek@users.noreply.github.com>2021-12-23 15:22:52 -0500
committerGitHub <noreply@github.com>2021-12-23 15:22:52 -0500
commitf4041893688914db9a3598ce5f6186b049a48678 (patch)
tree80c468f0bf29f26f6600b0bf90d34b4415f6968b /doc/manual/src/release-notes
parentb6cc0a704d8c1432e230ff65d4b74ea7114a730b (diff)
parentaf553b20902b8b8efbccab5f880879b09e95eb32 (diff)
Merge branch 'master' into flake_search
Diffstat (limited to 'doc/manual/src/release-notes')
-rw-r--r--doc/manual/src/release-notes/rl-2.5.md16
-rw-r--r--doc/manual/src/release-notes/rl-next.md6
2 files changed, 21 insertions, 1 deletions
diff --git a/doc/manual/src/release-notes/rl-2.5.md b/doc/manual/src/release-notes/rl-2.5.md
new file mode 100644
index 000000000..dd6fd3b0f
--- /dev/null
+++ b/doc/manual/src/release-notes/rl-2.5.md
@@ -0,0 +1,16 @@
+# Release 2.5 (2021-12-13)
+
+* The garbage collector no longer blocks new builds, so the message
+ `waiting for the big garbage collector lock...` is a thing of the
+ past.
+
+* Binary cache stores now have a setting `compression-level`.
+
+* `nix develop` now has a flag `--unpack` to run `unpackPhase`.
+
+* Lists can now be compared lexicographically using the `<` operator.
+
+* New built-in function: `builtins.groupBy`, with the same functionality as
+ Nixpkgs' `lib.groupBy`, but faster.
+
+* `nix repl` now has a `:log` command.
diff --git a/doc/manual/src/release-notes/rl-next.md b/doc/manual/src/release-notes/rl-next.md
index 2826fc8be..44c6e2c09 100644
--- a/doc/manual/src/release-notes/rl-next.md
+++ b/doc/manual/src/release-notes/rl-next.md
@@ -1,4 +1,5 @@
-# Release 2.5 (2021-XX-XX)
+# Release X.Y (202?-??-??)
+
* Binary cache stores now have a setting `compression-level`.
@@ -10,3 +11,6 @@
Nixpkgs' `lib.groupBy`, but faster.
* Nix now searches for a flake.nix up until git or filesystem boundary.
+
+* The TOML parser used by `builtins.fromTOML` has been replaced by [a
+ more compliant one](https://github.com/ToruNiina/toml11).