Skip to content

Commit e645c5c

Browse files
authored
feat(nix): Default to release build (#388)
* feat(nix): Default to release build * chore: Update changelog
1 parent 5c1e86f commit e645c5c

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

default.nix

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@
66
(import (sources.gomod2nix+"/overlay.nix"))
77
];
88
}
9+
, release ? true
910
, cargo ? import ./Cargo.nix {
10-
inherit nixpkgs pkgs; release = false;
11+
inherit nixpkgs pkgs release;
1112
defaultCrateOverrides = pkgs.defaultCrateOverrides // {
1213
stackable-cockpit-web = attrs: {
1314
nativeBuildInputs = [ pkgs.nodePackages.yarn pkgs.nodejs_20 ];

rust/stackablectl/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,14 @@ All notable changes to this project will be documented in this file.
77
### Fixed
88

99
- nix: Update nixpkgs and upgrade nodejs-18 to nodejs_20 ([#384]).
10+
- nix: Default to release build ([#388]).
1011
- Switch to idempotent Helm installations for demos and stacks ([#386]).
1112
- Ignore failed re-application of Jobs due to immutability in demo and stack installations.
1213
Display those manifests to the user, so they can decide if they need to delete and recreate it ([#386]).
1314

1415
[#384]: https://github.com/stackabletech/stackable-cockpit/pull/384
1516
[#386]: https://github.com/stackabletech/stackable-cockpit/pull/386
17+
[#388]: https://github.com/stackabletech/stackable-cockpit/pull/388
1618

1719
## [1.0.0] - 2025-06-02
1820

0 commit comments

Comments
 (0)