diff options
author | Shea Levy <shea@shealevy.com> | 2021-01-28 09:37:43 -0500 |
---|---|---|
committer | Shea Levy <shea@shealevy.com> | 2021-02-24 08:22:17 -0500 |
commit | 98d1b64400cc7b75216fc885859883c707c18bef (patch) | |
tree | 81b82449977fd5ef0b9c01b38c15666458d567a5 /doc/manual/src | |
parent | ec3497c1d63f4c0547d0402d92015f846f56aac7 (diff) |
Initialize plugins after handling initial command line flags
This is technically a breaking change, since attempting to set plugin
files after the first non-flag argument will now throw an error. This
is acceptable given the relative lack of stability in a plugin
interface and the need to tie the knot somewhere once plugins can
actually define new subcommands.
Diffstat (limited to 'doc/manual/src')
-rw-r--r-- | doc/manual/src/release-notes/rl-2.4.md | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/manual/src/release-notes/rl-2.4.md b/doc/manual/src/release-notes/rl-2.4.md new file mode 100644 index 000000000..26ba70904 --- /dev/null +++ b/doc/manual/src/release-notes/rl-2.4.md @@ -0,0 +1,7 @@ +# Release 2.4 (202X-XX-XX) + + - It is now an error to modify the `plugin-files` setting via a + command-line flag that appears after the first non-flag argument + to any command, including a subcommand to `nix`. For example, + `nix-instantiate default.nix --plugin-files ""` must now become + `nix-instantiate --plugin-files "" default.nix`. |