Skip to content

Commit

Permalink
Release v1.3.1 (#4485)
Browse files Browse the repository at this point in the history
Signed-off-by: Eric Stroczynski <ericstroczynski@gmail.com>
  • Loading branch information
Eric Stroczynski committed Feb 4, 2021
1 parent 835b648 commit af8bc8d
Show file tree
Hide file tree
Showing 10 changed files with 35 additions and 54 deletions.
4 changes: 0 additions & 4 deletions changelog/fragments/bugfix-generate-no-project-name.yaml

This file was deleted.

4 changes: 0 additions & 4 deletions changelog/fragments/bugfix-run-bundle-upgrade.yaml

This file was deleted.

6 changes: 0 additions & 6 deletions changelog/fragments/csv-gen-package-aware.yaml

This file was deleted.

This file was deleted.

4 changes: 0 additions & 4 deletions changelog/fragments/fix-bundle-validate-panic.yaml

This file was deleted.

8 changes: 0 additions & 8 deletions changelog/fragments/fix-trim-format-dns1123-functions.yaml

This file was deleted.

18 changes: 0 additions & 18 deletions changelog/fragments/helm-ansible-download-makefile.yaml

This file was deleted.

4 changes: 0 additions & 4 deletions changelog/fragments/helm-uninstall-fix.yaml

This file was deleted.

13 changes: 13 additions & 0 deletions changelog/generated/v1.3.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
## v1.3.1

### Bug Fixes

- Project version now determines how package name is retrieved for a project. ([#4443](https://github.com/operator-framework/operator-sdk/pull/4443))
- `run bundle-upgrade` now handles error gracefully when a previous operator version doesn't exist. ([#4451](https://github.com/operator-framework/operator-sdk/pull/4451))
- For Go-based projects, `generate <bundle|packagemanifests>` subcommands now consider package and type names when parsing Go API types files to generate a CSV's `owned.customresourcedefinitions`, such that types in different packages and files will not overwrite each other. ([#4480](https://github.com/operator-framework/operator-sdk/pull/4480))
- Bumped operator-framework/api to prevent `operator-sdk bundle validate` from exiting non-0 when validation emits only warnings. ([#4458](https://github.com/operator-framework/operator-sdk/pull/4458))
- Fixed panic when "operator-sdk bundle validate" fails. ([#4386](https://github.com/operator-framework/operator-sdk/pull/4386))
- Fixed invalid object names generated for long package names passed to `run packagemanifests` & `run bundle`. ([#4476](https://github.com/operator-framework/operator-sdk/pull/4476))
- Corrected the download URL for helm-operator and ansible-operator in their respective project types. ([#4412](https://github.com/operator-framework/operator-sdk/pull/4412))
- Fixed the order of helm-operator, ansible-operator, and kustomize binary checks in the Makefile. ([#4412](https://github.com/operator-framework/operator-sdk/pull/4412))
- Fixed a bug that caused the Helm operator to remove the finalizer without doing a helm uninstall. ([#4457](https://github.com/operator-framework/operator-sdk/pull/4457))
22 changes: 22 additions & 0 deletions website/content/en/docs/upgrading-sdk-version/v1.3.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
title: v1.3.1
weight: 998996999
---

## For Helm and Ansible projects, fix the helm-operator and ansible-operator URLs in the Makefile

- Helm projects:
Old: `https://github.com/operator-framework/operator-sdk/releases/download/v1.3.0/helm-operator-v1.3.0-$(ARCHOPER)-$(OSOPER)`
New: `https://github.com/operator-framework/operator-sdk/releases/download/v1.3.1/helm-operator_$(OS)_$(ARCH)`
- Ansible projects:
Old: `https://github.com/operator-framework/operator-sdk/releases/download/v1.3.0/ansible-operator-v1.3.0-$(ARCHOPER)-$(OSOPER)`
New: `https://github.com/operator-framework/operator-sdk/releases/download/v1.3.1/ansible-operator_$(OS)_$(ARCH)`

_See [#4412](https://github.com/operator-framework/operator-sdk/pull/4412) for more details._

## For Helm and Ansible projects, fix the `helm-operator`, `ansible-operator`, and `kustomize` Makefile rules

These rules will download a local binary but not use it if a global binary is present.
See the diff in [this PR](https://github.com/operator-framework/operator-sdk/pull/4407) for how to fix this.

_See [#4412](https://github.com/operator-framework/operator-sdk/pull/4412) for more details._

0 comments on commit af8bc8d

Please sign in to comment.