Skip to content

Commit c247d4b

Browse files
authored
Release v1.10.0 (#5085)
Generate testdata; fix changelog and migration guide. Signed-off-by: jesus m. rodriguez <[email protected]>
1 parent 4135920 commit c247d4b

File tree

27 files changed

+89
-165
lines changed

27 files changed

+89
-165
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ SHELL = /bin/bash
44
# This value must be updated to the release tag of the most recent release, a change that must
55
# occur in the release commit. IMAGE_VERSION will be removed once each subproject that uses this
66
# version is moved to a separate repo and release process.
7-
export IMAGE_VERSION = v1.9.0
7+
export IMAGE_VERSION = v1.10.0
88
# Build-time variables to inject into binaries
99
export SIMPLE_VERSION = $(shell (test "$(shell git describe)" = "$(shell git describe --abbrev=0)" && echo $(shell git describe)) || echo $(shell git describe --abbrev=0)+git)
1010
export GIT_VERSION = $(shell git describe --dirty --tags --always)

changelog/fragments/bump-kustomize.yaml

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

changelog/fragments/generate-bundle-fix.yaml

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

changelog/fragments/helm-deepequals.yaml

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

changelog/fragments/java-operator-bump.yaml

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

changelog/fragments/modify-default-channel.yaml

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

changelog/fragments/xunit-xml-output.yaml

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

changelog/generated/v1.10.0.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
## v1.10.0
2+
3+
### Additions
4+
5+
- Provide XML formatting option for scorecard users. Additionally transforms scorecard result types to xunit testsuite/testcase layout. ([#5048](https://github.com/operator-framework/operator-sdk/pull/5048))
6+
7+
### Changes
8+
9+
- **Breaking change**: (ansible/v1) Bumped Kustomize version in ansible project scaffolding to 3.8.7. ([#5057](https://github.com/operator-framework/operator-sdk/pull/5057))
10+
11+
### Bug Fixes
12+
13+
- Fixed the `operator-sdk generate bundle` command to specify the right path of bundle metadata in bundle.Dockerfile. ([#5030](https://github.com/operator-framework/operator-sdk/pull/5030))
14+
- For Helm-based operators, fixed release equality comparison such that number values are compared and not their types to avoid unnecessary reconciliations. ([#5042](https://github.com/operator-framework/operator-sdk/pull/5042))
15+
- Bump java-operator-plugins. Adds `namespaced` plugin attribute and fixes resource version generation. ([#5020](https://github.com/operator-framework/operator-sdk/pull/5020))
16+
- In the `pkgman-to-bundle` command, changed the default channel name used for CSV's not specified in `package.yaml` to `defaultChannel` instead of "candidate". ([#5062](https://github.com/operator-framework/operator-sdk/pull/5062))

testdata/ansible/memcached-operator/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM quay.io/operator-framework/ansible-operator:v1.9.0
1+
FROM quay.io/operator-framework/ansible-operator:v1.10.0
22

33
COPY requirements.yml ${HOME}/requirements.yml
44
RUN ansible-galaxy collection install -r ${HOME}/requirements.yml \

testdata/ansible/memcached-operator/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ ifeq (,$(shell which ansible-operator 2>/dev/null))
109109
@{ \
110110
set -e ;\
111111
mkdir -p $(dir $(ANSIBLE_OPERATOR)) ;\
112-
curl -sSLo $(ANSIBLE_OPERATOR) https://github.com/operator-framework/operator-sdk/releases/download/v1.9.0/ansible-operator_$(OS)_$(ARCH) ;\
112+
curl -sSLo $(ANSIBLE_OPERATOR) https://github.com/operator-framework/operator-sdk/releases/download/v1.10.0/ansible-operator_$(OS)_$(ARCH) ;\
113113
chmod +x $(ANSIBLE_OPERATOR) ;\
114114
}
115115
else

0 commit comments

Comments
 (0)