Highlights
- btcpayserver: 1.3.6 -> 1.3.7
- elementsd: 0.21.0 -> 0.21.0.1
- lightning-loop: 0.15.0-beta -> 0.16.0-beta
- lightning-pool: 0.5.1-alpha -> 0.5.3-alpha
- cl-rest: 0.6.0 -> 0.6.1
- rtl: 0.11.2 -> 0.12.0
Flake: Breaking changes for users of nixosModules
Please update your flake-based config in the following way:
-
If you're using
nixosModules.withSystemPkgs
:Before this release:
imports = [ nix-bitcoin.nixosModules.withSystemPkgs ];
Now:
imports = [ nix-bitcoin.nixosModule ];
-
If you're using
nixosModules.withLockedPkgs
:Before this release:
imports = [ nix-bitcoin.nixosModules.withLockedPkgs ];
Now:
imports = [ nix-bitcoin.nixosModule { # You can move this to one of your other modules nix-bitcoin.useVersionLockedPkgs = true; } ];
Change Log
#429 Add nixos-search support (@erikarvstedt)
#431 Improve Pkgs (@erikarvstedt)
#432 Improve flake (@erikarvstedt)
#433 cl-rest: 0.6.0 -> 0.6.1 & rtl: 0.11.2 -> 0.12.0 (@nixbitcoin)
#434 update nixpkgs{,-unstable} (@jonasnick)
#435 run-tests: fix vm
cmd (@erikarvstedt)
#437 bitcoind: fix error when defining passwordHMAC for RPC users (@erikarvstedt)