From 10cc3b288d0e73a16f5da983c99b8d78f3a7ded1 Mon Sep 17 00:00:00 2001 From: Jade Lovelace Date: Thu, 18 Jul 2024 19:21:23 +0200 Subject: Add release notes for removing overflow from Nix language Change-Id: Ib75ab5b8b4d879035d7ee7678f9cd0c491a39c0a --- doc/manual/rl-next/ban-integer-overflow.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 doc/manual/rl-next/ban-integer-overflow.md (limited to 'doc/manual') diff --git a/doc/manual/rl-next/ban-integer-overflow.md b/doc/manual/rl-next/ban-integer-overflow.md new file mode 100644 index 000000000..d704db651 --- /dev/null +++ b/doc/manual/rl-next/ban-integer-overflow.md @@ -0,0 +1,23 @@ +--- +synopsis: Define integer overflow in the Nix language as an error +issues: [fj#423] +cls: [1594, 1595, 1597, 1609] +category: Fixes +credits: [jade] +--- + +Previously, integer overflow in the Nix language invoked C++ level signed overflow, which was undefined behaviour, but *probably* manifested as wrapping around on overflow. + +Since prior to the public release of Lix, Lix had C++ signed overflow defined to crash the process and nobody noticed this having accidentally removed overflow from the Nix language for three months until it was caught by fiddling around. +Given the significant body of actual Nix code that has been evaluated by Lix in that time, it does not appear that nixpkgs or much of importance depends on integer overflow, so it is safe to turn into an error. + +Some other overflows were fixed: +- `builtins.fromJSON` of values greater than the maximum representable value in a signed 64-bit integer will generate an error. +- `nixConfig` in flakes will no longer accept negative values for configuration options. + +Integer overflow now looks like the following: + +``` +ยป nix eval --expr '9223372036854775807 + 1' +error: integer overflow in adding 9223372036854775807 + 1 +``` -- cgit v1.2.3 From 26e56780caaa3fe23bd1c7589c9ebde220381683 Mon Sep 17 00:00:00 2001 From: Jade Lovelace Date: Thu, 18 Jul 2024 19:35:43 +0200 Subject: Fixup a bunch of references to nixos.org manuals (plus one reference to CppNix github) Change-Id: Id8b3d2897f3b54e286861805cfd421adc4d5de47 --- doc/manual/src/contributing/testing.md | 1 - 1 file changed, 1 deletion(-) (limited to 'doc/manual') diff --git a/doc/manual/src/contributing/testing.md b/doc/manual/src/contributing/testing.md index b6b5318e0..cea6ee3bf 100644 --- a/doc/manual/src/contributing/testing.md +++ b/doc/manual/src/contributing/testing.md @@ -247,7 +247,6 @@ To ensure that characterization testing doesn't make it harder to intentionally The integration tests are defined in the Nix flake under the `hydraJobs.tests` attribute. These tests include everything that needs to interact with external services or run Lix in a non-trivial distributed setup. -Because these tests are expensive and require more than what the standard github-actions setup provides, they only run on the master branch (on ). You can run them manually with `nix build .#hydraJobs.tests.{testName}` or `nix-build -A hydraJobs.tests.{testName}` -- cgit v1.2.3