File tree Expand file tree Collapse file tree 3 files changed +44
-2
lines changed
internal/plugins/ansible/v1/scaffolds/internal/templates
testdata/ansible/memcached-operator Expand file tree Collapse file tree 3 files changed +44
-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 operators: fix a JSON parsing bug by updating the kubernetes.core collection to v2.4.0
6
+
7
+ # kind is one of:
8
+ # - addition
9
+ # - change
10
+ # - deprecation
11
+ # - removal
12
+ # - bugfix
13
+ kind: "bugfix"
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: (ansible) - Upgrade kubernetes.core collection to v2.4.0
32
+ body: |
33
+ In the requirements.yaml file replace:
34
+ ```yaml
35
+ - name: kubernetes.core
36
+ version: "2.3.1"
37
+ ```
38
+ with:
39
+ ```yaml
40
+ - name: kubernetes.core
41
+ version: "2.4.0"
42
+ ```
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ collections:
40
40
- name: operator_sdk.util
41
41
version: "0.4.0"
42
42
- name: kubernetes.core
43
- version: "2.3.1 "
43
+ version: "2.4.0 "
44
44
- name: cloud.common
45
45
version: "2.1.1"
46
46
- name: community.docker
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ collections:
5
5
- name : operator_sdk.util
6
6
version : " 0.4.0"
7
7
- name : kubernetes.core
8
- version : " 2.3.1 "
8
+ version : " 2.4.0 "
9
9
- name : cloud.common
10
10
version : " 2.1.1"
11
11
- name : community.docker
You can’t perform that action at this time.
0 commit comments