File tree Expand file tree Collapse file tree 5 files changed +26
-4
lines changed
internal/plugins/manifests/v2
monitoring/memcached-operator Expand file tree Collapse file tree 5 files changed +26
-4
lines changed Original file line number Diff line number Diff line change
1
+ # entries is a list of entries to include in
2
+ # release notes and/or the migration guide
3
+ entries :
4
+ - description : >
5
+ For All-based Operators, upgrade OPM to version from `v1.23.0` to `v1.55.0`, which includes several bug fixes and
6
+ improvements. For further information, see: https://github.com/operator-framework/operator-registry/releases
7
+ kind: "change"
8
+ breaking: false
9
+ migration:
10
+ header: Upgrade OPM version to v1.55.0 in the Makefile
11
+ body: |
12
+ Update the OPM version in your Makefile to `v1.55.0`:
13
+
14
+ ```makefile
15
+ -const opmVersion = "v1.23.0"
16
+ +const opmVersion = "v1.55.0"
17
+ ```
18
+
19
+ ```makefile
20
+ - curl -sSLo $(OPM) https://github.com/operator-framework/operator-registry/releases/download/v1.23.0/$${OS}-$${ARCH}-opm ;\
21
+ + curl -sSLo $(OPM) https://github.com/operator-framework/operator-registry/releases/download/v1.55.0/$${OS}-$${ARCH}-opm ;\
22
+ ```
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ import (
35
35
36
36
// Version of `opm` to download and use for building index images.
37
37
// This version's release artifacts *must* contain a binary for multiple arches; certain releases do not.
38
- const opmVersion = "v1.23 .0"
38
+ const opmVersion = "v1.55 .0"
39
39
40
40
const filePath = "Makefile"
41
41
Original file line number Diff line number Diff line change @@ -308,7 +308,7 @@ ifeq (,$(shell which opm 2>/dev/null))
308
308
set -e ;\
309
309
mkdir -p $(dir $(OPM)) ;\
310
310
OS=$(shell go env GOOS) && ARCH=$(shell go env GOARCH) && \
311
- curl -sSLo $(OPM) https://github.com/operator-framework/operator-registry/releases/download/v1.23 .0/$${OS}-$${ARCH}-opm ;\
311
+ curl -sSLo $(OPM) https://github.com/operator-framework/operator-registry/releases/download/v1.55 .0/$${OS}-$${ARCH}-opm ;\
312
312
chmod +x $(OPM) ;\
313
313
}
314
314
else
Original file line number Diff line number Diff line change @@ -323,7 +323,7 @@ ifeq (,$(shell which opm 2>/dev/null))
323
323
set -e ;\
324
324
mkdir -p $(dir $(OPM)) ;\
325
325
OS=$(shell go env GOOS) && ARCH=$(shell go env GOARCH) && \
326
- curl -sSLo $(OPM) https://github.com/operator-framework/operator-registry/releases/download/v1.23 .0/$${OS}-$${ARCH}-opm ;\
326
+ curl -sSLo $(OPM) https://github.com/operator-framework/operator-registry/releases/download/v1.55 .0/$${OS}-$${ARCH}-opm ;\
327
327
chmod +x $(OPM) ;\
328
328
}
329
329
else
Original file line number Diff line number Diff line change @@ -198,7 +198,7 @@ ifeq (,$(shell which opm 2>/dev/null))
198
198
@{ \
199
199
set -e ;\
200
200
mkdir -p $(dir $(OPM)) ;\
201
- curl -sSLo $(OPM) https://github.com/operator-framework/operator-registry/releases/download/v1.23 .0/$(OS)-$(ARCH)-opm ;\
201
+ curl -sSLo $(OPM) https://github.com/operator-framework/operator-registry/releases/download/v1.55 .0/$(OS)-$(ARCH)-opm ;\
202
202
chmod +x $(OPM) ;\
203
203
}
204
204
else
You can’t perform that action at this time.
0 commit comments