Skip to content

Commit d529ba4

Browse files
authored
release v0.19.3 (#3836)
1 parent 2d5197d commit d529ba4

File tree

13 files changed

+35
-59
lines changed

13 files changed

+35
-59
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
## v0.19.3
2+
3+
### Changes
4+
5+
- **Breaking change**: Changed the `go.operator-sdk.io` plugin to only write a `plugins` PROJECT field and run the OLM integration plugin if the project version is "3-alpha" or above. ([#3716](https://github.com/operator-framework/operator-sdk/pull/3716))
6+
- Fix CVE-2020-14040 by upgrading to golang.org/x/text v0.3.3. ([#3459](https://github.com/operator-framework/operator-sdk/pull/3459))
7+
8+
### Bug Fixes
9+
10+
- Fixed debug logging in the `bundle validate` subcommand of `operator-sdk`. ([#3812](https://github.com/operator-framework/operator-sdk/pull/3812))
11+
- Fixed incorrect (cluster) role name assignments in generated CSVs [#3600](https://github.com/operator-framework/operator-sdk/issues/3600). ([#3714](https://github.com/operator-framework/operator-sdk/pull/3714))
12+
- Fixed issue that caused scorecard to fail loading local bundle due to a bug search method for the bundle metadata directory. ([#3829](https://github.com/operator-framework/operator-sdk/pull/3829))
13+
- Stop reconciling tasks when the event raised is a rescue in Ansible-based Operators. More info: [Bugzilla 1856714](https://bugzilla.redhat.com/show_bug.cgi?id=1856714). ([#3727](https://github.com/operator-framework/operator-sdk/pull/3727))
14+
115
## v0.19.2
216

317
### Changes

changelog/fragments/3-alpha-config.yaml

Lines changed: 0 additions & 20 deletions
This file was deleted.

changelog/fragments/bundle-validate-verbose.yaml

Lines changed: 0 additions & 4 deletions
This file was deleted.

changelog/fragments/fix-csv-role-names.yaml

Lines changed: 0 additions & 5 deletions
This file was deleted.

changelog/fragments/fix-cve-2020-14040.yaml

Lines changed: 0 additions & 10 deletions
This file was deleted.

changelog/fragments/fix-find-metadata-dir.yaml

Lines changed: 0 additions & 7 deletions
This file was deleted.

changelog/fragments/rescue-reconciliation.yaml

Lines changed: 0 additions & 8 deletions
This file was deleted.

internal/scaffold/ansible/go_mod.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ const goModTmpl = `module {{ .Repo }}
4141
go 1.13
4242
4343
require (
44-
github.com/operator-framework/operator-sdk v0.19.x
44+
github.com/operator-framework/operator-sdk v0.19.3
4545
sigs.k8s.io/controller-runtime v0.6.0
4646
)
4747

internal/scaffold/go_mod.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ const goModTmpl = `module {{ .Repo }}
4040
go 1.13
4141
4242
require (
43-
github.com/operator-framework/operator-sdk v0.19.x
43+
github.com/operator-framework/operator-sdk v0.19.3
4444
sigs.k8s.io/controller-runtime v0.6.0
4545
)
4646

internal/scaffold/helm/go_mod.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ const goModTmpl = `module {{ .Repo }}
4141
go 1.13
4242
4343
require (
44-
github.com/operator-framework/operator-sdk v0.19.x
44+
github.com/operator-framework/operator-sdk v0.19.3
4545
sigs.k8s.io/controller-runtime v0.6.0
4646
)
4747

0 commit comments

Comments
 (0)