diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2022-02-22 14:23:39 +0100 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2022-02-22 14:23:39 +0100 |
commit | 38eea2c503a70e32dd6110937d49705976d5fc7a (patch) | |
tree | ba1c7159d36648a412e01e721fddae2ea10104e7 /doc/manual/src/release-notes | |
parent | d4428d00ae05cd21c256f9490c7f089ec04fd962 (diff) |
Update release notes
Diffstat (limited to 'doc/manual/src/release-notes')
-rw-r--r-- | doc/manual/src/release-notes/rl-next.md | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/doc/manual/src/release-notes/rl-next.md b/doc/manual/src/release-notes/rl-next.md index 80eed9397..7dd8387d8 100644 --- a/doc/manual/src/release-notes/rl-next.md +++ b/doc/manual/src/release-notes/rl-next.md @@ -1,5 +1,18 @@ # Release X.Y (202?-??-??) +* A number of "default" flake output attributes have been + renamed. These are: + + * `defaultPackage.<system>` → `packages.<system>.default` + * `defaultApps.<system>` → `apps.<system>.default` + * `defaultTemplate` → `templates.default` + * `defaultBundler.<system>` → `bundlers.<system>.default` + * `overlay` → `overlays.default` + * `devShell.<system>` → `devShells.<system>.default` + + The old flake output attributes still work, but `nix flake check` + will warn about them. + * `nix bundle` breaking API change now supports bundlers of the form `bundler.<system>.<name>= derivation: another-derivation;`. This supports additional functionality to inspect evaluation information during bundling. A |