File tree Expand file tree Collapse file tree 3 files changed +35
-2
lines changed
internal/plugins/ansible/v1/scaffolds/internal/templates
testdata/ansible/memcached-operator Expand file tree Collapse file tree 3 files changed +35
-2
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 Ansible-based operators, bumped the `operator_sdk.util` ansible module to 0.3.1.
6
+
7
+ # kind is one of:
8
+ # - addition
9
+ # - change
10
+ # - deprecation
11
+ # - removal
12
+ # - bugfix
13
+ kind: "change"
14
+
15
+ # Is this a breaking change?
16
+ breaking: false
17
+
18
+ # NOTE: ONLY USE `pull_request_override` WHEN ADDING THIS
19
+ # FILE FOR A PREVIOUSLY MERGED PULL_REQUEST!
20
+ #
21
+ # The generator auto-detects the PR number from the commit
22
+ # message in which this file was originally added.
23
+ #
24
+ # What is the pull request number (without the "#")?
25
+ # pull_request_override: 0
26
+
27
+
28
+ # Migration can be defined to automatically add a section to
29
+ # the migration guide. This is required for breaking changes.
30
+ migration:
31
+ header: Bump operator_sdk.util in requirements.yml
32
+ body: >
33
+ Update `requirements.yml` to point to 0.3.1 of operator_sdk.util instead of 0.2.0
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ collections:
38
38
- name: community.kubernetes
39
39
version: "1.2.1"
40
40
- name: operator_sdk.util
41
- version: "0.2.0 "
41
+ version: "0.3.1 "
42
42
- name: kubernetes.core
43
43
version: "2.2.0"
44
44
`
Original file line number Diff line number Diff line change @@ -3,6 +3,6 @@ collections:
3
3
- name : community.kubernetes
4
4
version : " 1.2.1"
5
5
- name : operator_sdk.util
6
- version : " 0.2.0 "
6
+ version : " 0.3.1 "
7
7
- name : kubernetes.core
8
8
version : " 2.2.0"
You can’t perform that action at this time.
0 commit comments