Skip to content

Commit 125d0df

Browse files
committed
*: release v0.19.4
1 parent 03c2570 commit 125d0df

File tree

12 files changed

+25
-46
lines changed

12 files changed

+25
-46
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.4
2+
3+
### Changes
4+
5+
- In `ansible-operator` and `helm-operator`, print git commit when logging version information. ([#3850](https://github.com/operator-framework/operator-sdk/pull/3850))
6+
7+
### Bug Fixes
8+
9+
- Resolved an issue that caused bundle validation to unnecessarily restrict CSV names to a specific format. Now, only DNS-1123 subdomain validity is verified. ([#3886](https://github.com/operator-framework/operator-sdk/pull/3886))
10+
- Fixed a bug with `run packagemanifests` that caused the underlying registry pod to fail to start. Changed the registry pod image from `quay.io/openshift/origin-operator-registry:latest` to `quay.io/operator-framework/upstream-registry-builder:latest`. ([#3894](https://github.com/operator-framework/operator-sdk/pull/3894))
11+
- Fix an issue in `run packagemanifests` where the registry server writes files in locations that require root. ([#3894](https://github.com/operator-framework/operator-sdk/pull/3894))
12+
- Fix the migration guide link in the deprecation message of `operator-sdk`. ([#3876](https://github.com/operator-framework/operator-sdk/pull/3876))
13+
14+
115
## v0.19.3
216

317
### Changes

changelog/fragments/fix-migration-guide-link.yaml

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

changelog/fragments/fix-run-packagemanifests-e2e.yaml

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

changelog/fragments/relax-csv-name-validation-v0.19.x.yaml

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

changelog/fragments/run-pkgmnfs-writable-dir.yaml

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

changelog/fragments/v0-19-x-ansible-helm-commit-info.yaml

Lines changed: 0 additions & 6 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.4
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.4
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.4
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+git"
24+
Version = "v0.19.4"
2525
GitVersion = "unknown"
2626
GitCommit = "unknown"
2727
KubernetesVersion = "unknown"

0 commit comments

Comments
 (0)