Skip to content

Commit c9c61b6

Browse files
author
Ish Shah
authored
Release v1.18.0 (#5571)
1 parent fb1b203 commit c9c61b6

File tree

26 files changed

+136
-180
lines changed

26 files changed

+136
-180
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.17.0
7+
export IMAGE_VERSION = v1.18.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/01-bump-java-operator-plugins.yaml

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

changelog/fragments/bump-api.yaml

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

changelog/fragments/image-digests.yaml

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

changelog/fragments/trim-quotes-input.yaml

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

changelog/fragments/upgrades.yaml

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

changelog/generated/v1.18.0.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
## v1.18.0
2+
3+
### Additions
4+
5+
- Add bundle size validator check for the command `operator-sdk bundle validate` check if the bundle is not bigger than ~4MB and warning the authors if the bundle size is closer to this amount. [More info](https://github.com/operator-framework/api/pull/210). ([#5552](https://github.com/operator-framework/operator-sdk/pull/5552))
6+
- Add warning check for properties defined in the CSV for the command `operator-sdk bundle validate` warning when found properties annotations in the CSV recommending define these properties in `metadata/properties.yaml` instead. [More info](https://github.com/operator-framework/api/pull/217). ([#5552](https://github.com/operator-framework/operator-sdk/pull/5552))
7+
- Add support to check for the manifests using the APIs which will be removed in [1.25](https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-25) and [1.26](https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-26) Kubernetes versions in the bundle manifests via the commands `operator-sdk bundle validate ./bundle --select-optional name=alpha-deprecated-apis` and consequently to `operator-sdk bundle validate ./bundle --select-optional suite=operatorframework`. Note that is unlike these APIs be present on the bundle. [More info](https://github.com/operator-framework/api/pull/208). ([#5552](https://github.com/operator-framework/operator-sdk/pull/5552))
8+
- Adds support to bundle operators using image digests instead of tags. ([#5567](https://github.com/operator-framework/operator-sdk/pull/5567))
9+
10+
### Changes
11+
12+
- (java/v1alpha) bumping the java-operator-plugins dependency to v0.2.0. This release includes the following items.
13+
### Additions - chore: bump go 1.17, k8s 1.23, and kubebuilder 3.3 (#69) - chore(deps): update to Quarkus SDK extension 3.0.2 and Quarkus 2.6.3 (#70) - chore(deps): update to use Quarkus JOSDK extension 3.0.1 (#67) - Remove useless file (#65) - chore: bump k8s 1.22.2 and kubebuilder 3.2 (#64) - exposed endpoints for micrometer metrics (#45) - modified the Quarkus operator SDK version and tutorial too (#40) - chore: bump fabric8 5.8.0 & quarkus 2.4.0 (#42) - modified the doc file and removed file after generation (#41) - release: fix release script to understand release branches (#38)
14+
### Bug Fixes - Fix for wrongly generated file name (#73). ([#5542](https://github.com/operator-framework/operator-sdk/pull/5542))
15+
16+
### Bug Fixes
17+
18+
- Fixed a bug in `generate kustomze manifest` that quotes from interactive input were not trimmed properly. ([#5545](https://github.com/operator-framework/operator-sdk/pull/5545))
19+
- Add requirement cloud.common for Ansible-based operators. ([#5505](https://github.com/operator-framework/operator-sdk/pull/5505))

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.17.0
1+
FROM quay.io/operator-framework/ansible-operator:v1.18.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
@@ -129,7 +129,7 @@ ifeq (,$(shell which ansible-operator 2>/dev/null))
129129
@{ \
130130
set -e ;\
131131
mkdir -p $(dir $(ANSIBLE_OPERATOR)) ;\
132-
curl -sSLo $(ANSIBLE_OPERATOR) https://github.com/operator-framework/operator-sdk/releases/download/v1.17.0/ansible-operator_$(OS)_$(ARCH) ;\
132+
curl -sSLo $(ANSIBLE_OPERATOR) https://github.com/operator-framework/operator-sdk/releases/download/v1.18.0/ansible-operator_$(OS)_$(ARCH) ;\
133133
chmod +x $(ANSIBLE_OPERATOR) ;\
134134
}
135135
else

testdata/ansible/memcached-operator/bundle/tests/scorecard/config.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ stages:
88
- entrypoint:
99
- scorecard-test
1010
- basic-check-spec
11-
image: quay.io/operator-framework/scorecard-test:v1.17.0
11+
image: quay.io/operator-framework/scorecard-test:v1.18.0
1212
labels:
1313
suite: basic
1414
test: basic-check-spec-test
@@ -18,7 +18,7 @@ stages:
1818
- entrypoint:
1919
- scorecard-test
2020
- olm-bundle-validation
21-
image: quay.io/operator-framework/scorecard-test:v1.17.0
21+
image: quay.io/operator-framework/scorecard-test:v1.18.0
2222
labels:
2323
suite: olm
2424
test: olm-bundle-validation-test
@@ -28,7 +28,7 @@ stages:
2828
- entrypoint:
2929
- scorecard-test
3030
- olm-crds-have-validation
31-
image: quay.io/operator-framework/scorecard-test:v1.17.0
31+
image: quay.io/operator-framework/scorecard-test:v1.18.0
3232
labels:
3333
suite: olm
3434
test: olm-crds-have-validation-test
@@ -38,7 +38,7 @@ stages:
3838
- entrypoint:
3939
- scorecard-test
4040
- olm-crds-have-resources
41-
image: quay.io/operator-framework/scorecard-test:v1.17.0
41+
image: quay.io/operator-framework/scorecard-test:v1.18.0
4242
labels:
4343
suite: olm
4444
test: olm-crds-have-resources-test
@@ -48,7 +48,7 @@ stages:
4848
- entrypoint:
4949
- scorecard-test
5050
- olm-spec-descriptors
51-
image: quay.io/operator-framework/scorecard-test:v1.17.0
51+
image: quay.io/operator-framework/scorecard-test:v1.18.0
5252
labels:
5353
suite: olm
5454
test: olm-spec-descriptors-test
@@ -58,7 +58,7 @@ stages:
5858
- entrypoint:
5959
- scorecard-test
6060
- olm-status-descriptors
61-
image: quay.io/operator-framework/scorecard-test:v1.17.0
61+
image: quay.io/operator-framework/scorecard-test:v1.18.0
6262
labels:
6363
suite: olm
6464
test: olm-status-descriptors-test

0 commit comments

Comments
 (0)