File tree 4 files changed +18
-3
lines changed
4 files changed +18
-3
lines changed Original file line number Diff line number Diff line change 1
1
This is the changelog of Kritis releases
2
2
3
+ v0.2.0:
4
+ * Added support for separating image and Attestor into different GCP projects.
5
+ * Improvements for highly available Kritis:
6
+ * ` namespaceSelector ` to allowlist critical namespaces, e.g. ` kube-system ` ,
7
+ in the event Kritis is unavailable.
8
+ * No-op refactoring to use two new interfaces to work with attestations:
9
+ * ` ValidatedAttestation ` -- a trusted, verified attestion.
10
+ * ` ValidatingTransport ` -- allows caller to obtain ` ValidatedAttestation `
11
+ for a given image.
12
+ * Added clarifications for guarantees in ` ListNoteOccurrences ` when retrieving
13
+ attestations.
14
+ * Cleanup:
15
+ * removed API version from NoteReference.
16
+ * s/Occurence/Occurrence where applicable.
17
+
3
18
v0.1.1:
4
19
* Fixed memory leak due to unused connections
5
20
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ GOOS ?= $(shell go env GOOS)
17
17
GOARCH = amd64
18
18
BUILD_DIR ?= ./out
19
19
COMMIT ?= $(shell git rev-parse HEAD)
20
- VERSION ?= v0.1.1
20
+ VERSION ?= v0.2.0
21
21
IMAGE_TAG ?= $(COMMIT )
22
22
23
23
# Used for integration testing. example:
Original file line number Diff line number Diff line change @@ -2,4 +2,4 @@ apiVersion: v1
2
2
appVersion : " 0.0.1"
3
3
description : A Helm chart for Kubernetes
4
4
name : kritis-charts
5
- version : 0.1.1
5
+ version : 0.2.0
Original file line number Diff line number Diff line change 5
5
replicaCount : 1
6
6
7
7
image :
8
- tag : v0.1.1
8
+ tag : v0.2.0
9
9
image : kritis-server
10
10
name : kritis-server
11
11
pullPolicy : Always
You can’t perform that action at this time.
0 commit comments