Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
## v0.19.4

### Changes

- In `ansible-operator` and `helm-operator`, print git commit when logging version information. ([#3850](https://github.com/operator-framework/operator-sdk/pull/3850))

### Bug Fixes

- 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))
- 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))
- 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))
- Fix the migration guide link in the deprecation message of `operator-sdk`. ([#3876](https://github.com/operator-framework/operator-sdk/pull/3876))


## v0.19.3

### Changes
Expand Down
5 changes: 0 additions & 5 deletions changelog/fragments/fix-migration-guide-link.yaml

This file was deleted.

17 changes: 0 additions & 17 deletions changelog/fragments/fix-run-packagemanifests-e2e.yaml

This file was deleted.

8 changes: 0 additions & 8 deletions changelog/fragments/relax-csv-name-validation-v0.19.x.yaml

This file was deleted.

5 changes: 0 additions & 5 deletions changelog/fragments/run-pkgmnfs-writable-dir.yaml

This file was deleted.

6 changes: 0 additions & 6 deletions changelog/fragments/v0-19-x-ansible-helm-commit-info.yaml

This file was deleted.

2 changes: 1 addition & 1 deletion internal/scaffold/ansible/go_mod.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const goModTmpl = `module {{ .Repo }}
go 1.13

require (
github.com/operator-framework/operator-sdk v0.19.x
github.com/operator-framework/operator-sdk v0.19.4
sigs.k8s.io/controller-runtime v0.6.0
)

Expand Down
2 changes: 1 addition & 1 deletion internal/scaffold/go_mod.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const goModTmpl = `module {{ .Repo }}
go 1.13

require (
github.com/operator-framework/operator-sdk v0.19.x
github.com/operator-framework/operator-sdk v0.19.4
sigs.k8s.io/controller-runtime v0.6.0
)

Expand Down
2 changes: 1 addition & 1 deletion internal/scaffold/helm/go_mod.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const goModTmpl = `module {{ .Repo }}
go 1.13

require (
github.com/operator-framework/operator-sdk v0.19.x
github.com/operator-framework/operator-sdk v0.19.4
sigs.k8s.io/controller-runtime v0.6.0
)

Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (

//var needs to be used instead of const for ldflags
var (
Version = "v0.19.3+git"
Version = "v0.19.4"
GitVersion = "unknown"
GitCommit = "unknown"
KubernetesVersion = "unknown"
Expand Down
2 changes: 1 addition & 1 deletion website/content/en/docs/install-operator-sdk.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ $ brew install operator-sdk

```sh
# Set the release version variable
$ RELEASE_VERSION=v0.19.3
$ RELEASE_VERSION=v0.19.4
# Linux
$ curl -LO https://github.com/operator-framework/operator-sdk/releases/download/${RELEASE_VERSION}/operator-sdk-${RELEASE_VERSION}-x86_64-linux-gnu
$ curl -LO https://github.com/operator-framework/operator-sdk/releases/download/${RELEASE_VERSION}/ansible-operator-${RELEASE_VERSION}-x86_64-linux-gnu
Expand Down
6 changes: 6 additions & 0 deletions website/content/en/docs/migration/v0.19.4.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
title: v0.19.4
weight: 999980996
---

There are no migrations for this release! :tada: