From 2823a571e9e9a73e03938185547eccc3dd2ecf4c Mon Sep 17 00:00:00 2001 From: Volodymyr Zotov Date: Mon, 14 Jul 2025 10:37:35 -0500 Subject: [PATCH 1/2] Prepare release v1.9.1 --- .VERSION | 2 +- CHANGELOG.md | 12 ++++++++++++ Makefile | 2 +- version/version.go | 2 +- 4 files changed, 15 insertions(+), 3 deletions(-) diff --git a/.VERSION b/.VERSION index abb1658..ee672d8 100644 --- a/.VERSION +++ b/.VERSION @@ -1 +1 @@ -1.9.0 \ No newline at end of file +1.9.1 \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index b2741c8..b8e1e95 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,18 @@ --- +[//]: # (START/v1.9.1) +# v1.9.1 + +## Fixes + * Operator no longer panicking when handling 1Password items containing files. {#209} + +## Security + * HTTP Proxy bypass using IPv6 Zone IDs in golang.org/x/net. {#210} + * golang.org/x/net vulnerable to Cross-site Scripting. {#210} + +--- + [//]: # (START/v1.9.0) # v1.9.0 diff --git a/Makefile b/Makefile index 866f7c5..430c145 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ export MAIN_BRANCH ?= main # To re-generate a bundle for another specific version without changing the standard setup, you can: # - use the VERSION as arg of the bundle target (e.g make bundle VERSION=0.0.2) # - use environment variables to overwrite this value (e.g export VERSION=0.0.2) -VERSION ?= 1.9.0 +VERSION ?= 1.9.1 # CHANNELS define the bundle channels used in the bundle. # Add a new line here if you would like to change its default config. (E.g CHANNELS = "candidate,fast,stable") diff --git a/version/version.go b/version/version.go index c46e83f..c20b8b3 100644 --- a/version/version.go +++ b/version/version.go @@ -1,6 +1,6 @@ package version var ( - OperatorVersion = "1.9.0" + OperatorVersion = "1.9.1" OperatorSDKVersion = "1.34.1" ) From 8bd7d519fecdb03b1917575cf87de0ca00490973 Mon Sep 17 00:00:00 2001 From: Volodymyr Zotov Date: Mon, 14 Jul 2025 10:44:24 -0500 Subject: [PATCH 2/2] Update changelog --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b8e1e95..3b81f4b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,7 +16,7 @@ # v1.9.1 ## Fixes - * Operator no longer panicking when handling 1Password items containing files. {#209} + * Operator no longer panics when handling 1Password items containing files. {#209} ## Security * HTTP Proxy bypass using IPv6 Zone IDs in golang.org/x/net. {#210}