File tree Expand file tree Collapse file tree 2 files changed +34
-1
lines changed
internal/plugins/ansible/v1/scaffolds/internal/templates Expand file tree Collapse file tree 2 files changed +34
-1
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:
3838 - name: community.kubernetes
3939 version: "1.2.1"
4040 - name: operator_sdk.util
41- version: "0.2.0 "
41+ version: "0.3.1 "
4242 - name: kubernetes.core
4343 version: "2.2.0"
4444`
You can’t perform that action at this time.
0 commit comments