Skip to content

Commit

Permalink
chore(release): v2.1.3 (#232)
Browse files Browse the repository at this point in the history
* chore(release): v2.1.3

* chore(doc): update changelog
  • Loading branch information
Zenithar authored Jul 26, 2023
1 parent 31ce2f8 commit a3f9859
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 11 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
## 2.1.3

### 2022-07-26

DIST:

* CI
* Build with Golang 1.20.6
* Dependency updates

## 2.1.2

### 2022-07-11

DIST:

* CI
* Dependency updates

## 2.1.1

### 2022-06-22

DIST:

* CI
Expand All @@ -9,6 +30,8 @@ DIST:

## 2.1.0

### 2022-06-02

FEATURES:

* container/seal:
Expand Down
2 changes: 1 addition & 1 deletion default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ buildGoModule rec {
src = lib.cleanSource ./.;

subPackages = [ "cmd/harp" ];
vendorSha256 = "sha256-Y7tCEEpryLYdFDPAPssCnd/O3TcZsubbYCZSj2HeerA=";
vendorSha256 = "sha256-9D3JLNkXoQL+oa+P+i3uCI+wmpStLX5uWtHnZZrpRAc=";
ldflags = [
"-s" "-w" "-buildid="
"-X zntr.io/harp/v2/build/version.Name=harp"
Expand Down
12 changes: 6 additions & 6 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
owner = "frapposelli";
repo = "wwhrd";
rev = "${version}";
sha256 = "sha256-OxJFxa833AmjFIOeLI94SxpP/Jlz7d4qglQwQm9TPG4=";
sha256 = "sha256-jppPciJR2A1uKWhr+CB1Aquh33JXag0gjoBvohdt6+k=";
};

vendorSha256 = null;
Expand All @@ -75,10 +75,10 @@
owner = "CycloneDX";
repo = "cyclonedx-gomod";
rev = "${version}";
sha256 = "sha256-wrBFt06ym3tfSMJW+1KSv6J9dGwGqpqHIgjn50VlU0k=";
sha256 = "sha256-BTvvVwompM7Ie4BsRcjT4yxLLJc1qH1514A4uzwgGCc=";
};

vendorSha256 = "sha256-1gEDHn7EcNVY10ahaEirn8KghgxpsS2pLC7HoycE428=";
vendorSha256 = "sha256-uJgC44JtBSEwR6iKg8nmVmsFdyc3rtKSYxt8dbCABe0=";
subPackages = [ "cmd/cyclonedx-gomod" ];

nativeBuildInputs = [ pkgs.installShellFiles ];
Expand Down
2 changes: 1 addition & 1 deletion pkg/bundle/ruleset/engine/cel/ext/package.go
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ func celPackageIsCSOCompliant(lhs ref.Val) ref.Val {
return types.Bool(true)
}

func celPackageGetSecret(reg ref.TypeAdapter) func(lhs, rhs ref.Val) ref.Val {
func celPackageGetSecret(reg types.Adapter) func(lhs, rhs ref.Val) ref.Val {
return func(lhs, rhs ref.Val) ref.Val {
x, _ := lhs.ConvertToNative(reflect.TypeOf(&bundlev1.Package{}))
p, ok := x.(*bundlev1.Package)
Expand Down

0 comments on commit a3f9859

Please sign in to comment.