Skip to content

Commit 0fbd4de

Browse files
authored
Revert "release v0.19.3 (#3817)" (#3828)
This reverts commit d564373. The release failed CI, so the problem must be fixed, and then this can be redone.
1 parent d564373 commit 0fbd4de

File tree

12 files changed

+52
-34
lines changed

12 files changed

+52
-34
lines changed

CHANGELOG.md

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,3 @@
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-
- 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))
13-
141
## v0.19.2
152

163
### Changes
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
entries:
2+
- description: >
3+
Changed the `go.operator-sdk.io` plugin to only write a `plugins` PROJECT field and
4+
run the OLM integration plugin if the project version is "3-alpha" or above.
5+
kind: change
6+
breaking: true
7+
migration:
8+
header: Upgrade your project from version "2" to "3-alpha"
9+
body: >
10+
The SDK's default Go plugin no longer supports OLM-related project files
11+
nor writes a `plugins` PROJECT field for projects scaffolded previously with
12+
`operator-sdk init --project-version=2`, Please migrate to project version "3-alpha"
13+
for support of these features by adding the following to your `PROJECT` file:
14+
15+
```yaml
16+
version: "3-alpha" # Updated from "2"
17+
layout: go.kubebuilder.io/v2
18+
plugins:
19+
go.sdk.operatorframework.io/v2-alpha: {}
20+
```
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
entries:
2+
- description: Fixed debug logging in the `bundle validate` subcommand of `operator-sdk`
3+
kind: "bugfix"
4+
breaking: false
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
entries:
2+
- description: >
3+
Fixed incorrect (cluster) role name assignments in generated CSVs
4+
[#3600](https://github.com/operator-framework/operator-sdk/issues/3600).
5+
kind: bugfix
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# entries is a list of entries to include in
2+
# release notes and/or the migration guide
3+
entries:
4+
- description: >
5+
Fix CVE-2020-14040 by upgrading to golang.org/x/text v0.3.3
6+
7+
kind: "change"
8+
9+
# Is this a breaking change?
10+
breaking: false
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
entries:
2+
- description: >
3+
Stop reconciling tasks when the event raised is a rescue in Ansible-based Operators.
4+
More info: [Bugzilla 1856714](https://bugzilla.redhat.com/show_bug.cgi?id=1856714)
5+
6+
kind: "bugfix"
7+
8+
breaking: false

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.3
44+
github.com/operator-framework/operator-sdk v0.19.x
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.3
43+
github.com/operator-framework/operator-sdk v0.19.x
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.3
44+
github.com/operator-framework/operator-sdk v0.19.x
4545
sigs.k8s.io/controller-runtime v0.6.0
4646
)
4747

version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import (
2121

2222
//var needs to be used instead of const for ldflags
2323
var (
24-
Version = "v0.19.3"
24+
Version = "v0.19.2+git"
2525
GitVersion = "unknown"
2626
GitCommit = "unknown"
2727
KubernetesVersion = "unknown"

0 commit comments

Comments
 (0)