Tweak release notes

This commit is contained in:
Eelco Dolstra 2022-01-24 12:45:35 +01:00
parent 8c778e3d9d
commit 3782017272

View file

@ -1,19 +1,21 @@
# Release X.Y (202?-??-??) # Release X.Y (202?-??-??)
* The Nix cli now searches for a `flake.nix` up until the root of the current * The Nix CLI now searches for a `flake.nix` up until the root of the current
git repository or a filesystem boundary rather than just in the current Git repository or a filesystem boundary rather than just in the current
directory. directory.
* The TOML parser used by `builtins.fromTOML` has been replaced by [a * The TOML parser used by `builtins.fromTOML` has been replaced by [a
more compliant one](https://github.com/ToruNiina/toml11). more compliant one](https://github.com/ToruNiina/toml11).
* Added `:st`/`:show-trace` commands to nix repl, which are used to * Added `:st`/`:show-trace` commands to `nix repl`, which are used to
set or toggle display of error traces. set or toggle display of error traces.
* New builtin function `builtins.zipAttrsWith` with same functionality * New builtin function `builtins.zipAttrsWith` with the same
as `lib.zipAttrsWith` from nixpkgs, but much more efficient. functionality as `lib.zipAttrsWith` from Nixpkgs, but much more
efficient.
* New command `nix store copy-log` to copy build logs from one store * New command `nix store copy-log` to copy build logs from one store
to another. to another.
* The `commit-lockfile-summary` option can be set to a non-empty string * The `commit-lockfile-summary` option can be set to a non-empty
to override the commit summary used when commiting an updated lockfile. string to override the commit summary used when commiting an updated
This may be used in conjunction with the nixConfig attribute in lockfile. This may be used in conjunction with the `nixConfig`
`flake.nix` to better conform to repository conventions. attribute in `flake.nix` to better conform to repository
* `docker run -ti nixos/nix:master` will place you in the docker container with conventions.
the latest version of Nix from the `master` branch. * `docker run -ti nixos/nix:master` will place you in the Docker
container with the latest version of Nix from the `master` branch.