Skip to content

Releases: Kuadrant/authorino-operator

v0.19.0

07 May 09:43
Compare
Choose a tag to compare

This release enables installations of Authorino v0.21.0

What's Changed

New Contributors

Full Changelog: v0.18.0...v0.19.0

v0.18.0

25 Mar 22:39
Compare
Choose a tag to compare

This release enables installations of Authorino v0.21.0

Full Changelog: v0.17.0...v0.18.0

v0.17.0

19 Mar 15:58
Compare
Choose a tag to compare

This release enables installations of Authorino v0.20.0

What's Changed

New Contributors

Full Changelog: v0.16.0...v0.17.0

v0.16.0

25 Nov 13:22
Compare
Choose a tag to compare

This release enables installations of Authorino v0.20.0

Full Changelog: v0.15.1...v0.16.0

v0.15.1

22 Nov 14:36
Compare
Choose a tag to compare

This release enables installations of Authorino v0.19.0

What's Changed

Full Changelog: v0.15.0...v0.15.1

v0.15.0

19 Nov 17:02
Compare
Choose a tag to compare

This release enables installations of Authorino v0.19.0

What's Changed

  • RELATED_IMAGE_AUTHORINO env var by @eguzki in #229
  • prepare-release: fill RELATED_IMAGE_AUTHORINO by @eguzki in #230

Full Changelog: v0.14.0...v0.15.0

v0.14.0

08 Nov 12:05
Compare
Choose a tag to compare

This release enables installations of Authorino v0.19.0


⚠️ Important!

After upgrading to Authorino v0.19.0, users must migrate all AuthConfig resources stored in the cluster's database to v1beta3 by running the following script. This will guarantee readiness for upgrading in the future to a newer version of Authorino where v1beta2 is no longer served.

cat << 'EOF' > /tmp/migrate.sh
#!/bin/bash
authconfigs=$(kubectl get authconfigs -A -o custom-columns='NAMESPACE:.metadata.namespace,NAME:.metadata.name' --no-headers)
while IFS=" " read -r namespace name; do
  kubectl get authconfig "$name" -n "$namespace" -o yaml > "/tmp/${name}.${namespace}.authconfig.yaml"
  kubectl apply -f "/tmp/${name}.${namespace}.authconfig.yaml"
done <<< "$authconfigs"
EOF
chmod +x /tmp/migrate.sh
/tmp/migrate.sh

What's Changed

Full Changelog: v0.13.1...v0.14.0

v0.13.1

08 Nov 11:11
576b679
Compare
Choose a tag to compare

This release enables installations of Authorino v0.18.1

What's Changed

Full Changelog: v0.13.0...v0.13.1

v0.13.0

02 Oct 16:05
Compare
Choose a tag to compare

This release enables installations of Authorino v0.18.0

What's Changed

Full Changelog: https://github.com/Kuadrant/authorino-operator/commits/v0.13.0

v0.13.0-rc2

02 Oct 16:45
Compare
Choose a tag to compare
v0.13.0-rc2 Pre-release
Pre-release

This release enables installations of Authorino v0.18.0

What's Changed

Full Changelog: https://github.com/Kuadrant/authorino-operator/commits/v0.13.0-rc2