Skip to content

Commit 78748a2

Browse files
authored
Merge pull request #413 from aysylu/0.2.0
v0.2.0 release
2 parents 746d214 + c505eaa commit 78748a2

File tree

4 files changed

+18
-3
lines changed

4 files changed

+18
-3
lines changed

CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
This is the changelog of Kritis releases
22

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+
318
v0.1.1:
419
* Fixed memory leak due to unused connections
520

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ GOOS ?= $(shell go env GOOS)
1717
GOARCH = amd64
1818
BUILD_DIR ?= ./out
1919
COMMIT ?= $(shell git rev-parse HEAD)
20-
VERSION ?= v0.1.1
20+
VERSION ?= v0.2.0
2121
IMAGE_TAG ?= $(COMMIT)
2222

2323
# Used for integration testing. example:

kritis-charts/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ apiVersion: v1
22
appVersion: "0.0.1"
33
description: A Helm chart for Kubernetes
44
name: kritis-charts
5-
version: 0.1.1
5+
version: 0.2.0

kritis-charts/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
replicaCount: 1
66

77
image:
8-
tag: v0.1.1
8+
tag: v0.2.0
99
image: kritis-server
1010
name: kritis-server
1111
pullPolicy: Always

0 commit comments

Comments
 (0)