Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare 0.13.15 release #460

Merged
merged 1 commit into from
May 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---

copyright:
years: 2020-2023
lastupdated: "2023-11-07"
years: 2020-2024
lastupdated: "2024-05-14"

---

Expand All @@ -13,6 +13,13 @@ This project adheres to [Semantic Versioning](http://semver.org/).

## v-next


## v0.13.15

Released: 2024-05-14

* Remediates CVE-2024-2961 in glibc

## v0.13.14

* github.com/docker/docker update for CVE-2024-29018
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
GOFILES=$(shell find . -type f -name '*.go' -not -path "./code-generator/*" -not -path "./pkg/apis/*")
GOPACKAGES=$(shell go list ./... | grep -v test/ | grep -v pkg/apis/)

VERSION=v0.13.14
VERSION=v0.13.15
TAG=$(VERSION)
GOTAGS='containers_image_openpgp'

Expand Down
4 changes: 3 additions & 1 deletion helm/portieris/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v1
name: portieris
version: v0.13.14
version: v0.13.15
description: Admission Controller webhook for enforcing image trust in your cluster
maintainers:
- name: Stuart Hayton
Expand All @@ -9,3 +9,5 @@ maintainers:
email: [email protected]
- name: Michael Hough
email: [email protected]
- name: Aaron Collins
email: [email protected]
2 changes: 1 addition & 1 deletion helm/portieris/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ image:
host: icr.io/portieris
pullSecret:
image: portieris
tag: v0.13.14
tag: v0.13.15
pullPolicy: Always

service:
Expand Down
4 changes: 2 additions & 2 deletions scripts/env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
export PORTIERIS_PULL_APIKEY=
export PORTIERIS_TESTIMAGE_APIKEY=
# charts to test
export VERSION=v0.13.14
# image tag to test e.g. prep-v0.13.14
export VERSION=v0.13.15
# image tag to test e.g. prep-v0.13.15
export TAG=

# name of the secret used to pull portieris made from $REG and $PORTIERIS_PULL_APIKEY
Expand Down
Loading