From 80e118304d917d25232983ea1c722bdf941bee18 Mon Sep 17 00:00:00 2001 From: Camila Macedo <camilamacedo86@gmail.com> Date: Thu, 24 Oct 2019 19:08:43 +0100 Subject: [PATCH 1/2] fix ansible minimal version in the roles --- internal/scaffold/ansible/roles_meta_main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/scaffold/ansible/roles_meta_main.go b/internal/scaffold/ansible/roles_meta_main.go index febcb8eb7a9..ffdc6e87274 100644 --- a/internal/scaffold/ansible/roles_meta_main.go +++ b/internal/scaffold/ansible/roles_meta_main.go @@ -56,7 +56,7 @@ const rolesMetaMainAnsibleTmpl = `galaxy_info: # - CC-BY license: license (GPLv2, CC-BY, etc) - min_ansible_version: 2.4 + min_ansible_version: 2.6 # If this a Container Enabled role, provide the minimum Ansible Container version. # min_ansible_container_version: From 10dc977664d1366e579c310e349e2f2493b22ef1 Mon Sep 17 00:00:00 2001 From: Camila Macedo <camilamacedo86@gmail.com> Date: Thu, 24 Oct 2019 19:16:22 +0100 Subject: [PATCH 2/2] changelog --- CHANGELOG.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3330fcb80c4..f2aa1a7944a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,8 @@ ### Changed - **Breaking change:** Changed required Go version from `1.12` to `1.13`. This change applies to the SDK project itself and Go projects scaffolded by the SDK. Projects that import this version of the SDK require Go 1.13 to compile. ([#1949](https://github.com/operator-framework/operator-sdk/pull/1949)) - +- Upgrade minimal Ansible version in the init projects from `2.4` to `2.6`. ([#2107](https://github.com/operator-framework/operator-sdk/pull/2107)) + ### Deprecated ### Removed