Skip to content

Commit 65aa364

Browse files
committed
bump: bump operator-sdk.util to 0.3.1
Signed-off-by: jesus m. rodriguez <[email protected]>
1 parent 1d009d6 commit 65aa364

File tree

3 files changed

+35
-2
lines changed

3 files changed

+35
-2
lines changed
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
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

internal/plugins/ansible/v1/scaffolds/internal/templates/requirements.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
`

testdata/ansible/memcached-operator/requirements.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ collections:
33
- name: community.kubernetes
44
version: "1.2.1"
55
- name: operator_sdk.util
6-
version: "0.2.0"
6+
version: "0.3.1"
77
- name: kubernetes.core
88
version: "2.2.0"

0 commit comments

Comments
 (0)