Skip to content

Commit de6a14d

Browse files
authored
Release v1.24.0 (#6071)
Signed-off-by: Jonathan Berkhahn <[email protected]> Signed-off-by: Jonathan Berkhahn <[email protected]>
1 parent 7119cec commit de6a14d

File tree

28 files changed

+95
-161
lines changed

28 files changed

+95
-161
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.23.0
7+
export IMAGE_VERSION = v1.24.0
88
# Build-time variables to inject into binaries
99
export SIMPLE_VERSION = $(shell (test "$(shell git describe --tags)" = "$(shell git describe --tags --abbrev=0)" && echo $(shell git describe --tags)) || echo $(shell git describe --tags --abbrev=0)+git)
1010
export GIT_VERSION = $(shell git describe --dirty --tags --always)

changelog/fragments/bump-java-operator-plugins.yaml

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

changelog/fragments/kuttl-selector.yaml

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

changelog/fragments/rbu-channel-fix.yaml

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

changelog/fragments/rbu-stall-fix.yaml

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

changelog/fragments/support-arm64.yaml

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

changelog/generated/v1.24.0.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
## v1.24.0
2+
3+
### Changes
4+
5+
- Bumping java-operator-plugins to v0.6.0. ([#6007](https://github.com/operator-framework/operator-sdk/pull/6007))
6+
7+
### Bug Fixes
8+
9+
- Support test selectors in scorecard-kuttl. This only works if you supply a test name in the config for the entrypoint in the scorecard test config.yaml
10+
In the `stages.tests`section add an `entrypoint`, in this entrypoint you add the name of the test you want to associate with the selector.
11+
If you have a kuttl test directory called `smoke` your entrypoint should have `- smoke` as an entry. That way scorecard can pass that into the image and kuttl will run the single test. ([#6015](https://github.com/operator-framework/operator-sdk/pull/6015))
12+
- `operator-sdk run bundle(-upgrade)`: fixed bug that made it so bundles weren't properly upgraded if the channel used in the bundle wasn't in the same channel as the bundle installed via `operator-sdk run bundle`. Using `operator-sdk run bundle` will now use a default channel instead of the one in the bundle. ([#6042](https://github.com/operator-framework/operator-sdk/pull/6042))
13+
- `operator-sdk run bundle(-upgrade)`: fixed bug causing `operator-sdk run bundle-upgrade` and `operator-sdk run bundle ... --index-image=...` to stall indefinitely. ([#6040](https://github.com/operator-framework/operator-sdk/pull/6040))
14+
- For Ansible & Helm-based operators, the generated `Makefile` does not handle converting `aarch64` to `arm64`. This prevents it from downloading the appropriate binaries.
15+
This change simply adds a call to `sed` to convert `aarch64` to `arm64`. ([#5480](https://github.com/operator-framework/operator-sdk/pull/5480))

internal/bindata/olm/versions.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
package olm
1616

1717
var availableVersions = map[string]struct{}{
18-
"0.19.1": {},
1918
"0.20.0": {},
2019
"0.21.2": {},
20+
"0.22.0": {},
2121
}
2222

2323
// HasVersion returns whether version maps to released OLM manifests as bindata.

internal/testutils/olm.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import (
2626
)
2727

2828
const (
29-
OlmVersionForTestSuite = "0.21.2"
29+
OlmVersionForTestSuite = "0.22.0"
3030
)
3131

3232
var makefilePackagemanifestsFragment = `

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.23.0
1+
FROM quay.io/operator-framework/ansible-operator:v1.24.0
22

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

0 commit comments

Comments
 (0)