···144144145145- The EC2 image module previously detected and activated swap-formatted instance store devices and partitions in stage-1 (initramfs). This behaviour has been removed. Users relying on this should provide their own implementation.
146146147147+- `fail2ban` has been updated to 1.0.2, which has a few breaking changes compared to 0.11.2 ([changelog for 1.0.1](https://github.com/fail2ban/fail2ban/blob/1.0.1/ChangeLog), [changelog for 1.0.2](https://github.com/fail2ban/fail2ban/blob/1.0.2/ChangeLog))
148148+147149- Calling `makeSetupHook` without passing a `name` argument is deprecated.
148150149151- `lib.systems.examples.ghcjs` and consequently `pkgsCross.ghcjs` now use the target triplet `javascript-unknown-ghcjs` instead of `js-unknown-ghcjs`. This has been done to match an [upstream decision](https://gitlab.haskell.org/ghc/ghc/-/commit/6636b670233522f01d002c9b97827d00289dbf5c) to follow Cabal's platform naming more closely. Nixpkgs will also reject `js` as an architecture name.
+4-3
nixos/lib/test-driver/test_driver/machine.py
···737737 self.connected = True
738738739739 def screenshot(self, filename: str) -> None:
740740- word_pattern = re.compile(r"^\w+$")
741741- if word_pattern.match(filename):
742742- filename = os.path.join(self.out_dir, f"{filename}.png")
740740+ if "." not in filename:
741741+ filename += ".png"
742742+ if "/" not in filename:
743743+ filename = os.path.join(self.out_dir, filename)
743744 tmp = f"{filename}.ppm"
744745745746 with self.nested(