From 7c91bc3da54984a1c33f96973c7c56a00e33d4aa Mon Sep 17 00:00:00 2001 From: Marco Wester <42421851+mwester117@users.noreply.github.com> Date: Thu, 21 Nov 2024 16:24:22 +0100 Subject: [PATCH 1/2] Release v2.0.3 --- CHANGELOG.rst | 13 +++++++++++++ README.md | 2 ++ changelogs/.plugin-cache.yaml | 2 +- changelogs/changelog.yaml | 8 ++++++++ galaxy.yml | 2 +- roles/install_agent/vars/main.yml | 2 +- 6 files changed, 26 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index fb9c6d7..d214744 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,6 +4,19 @@ Sva.Sentinelone Release Notes .. contents:: Topics +v2.0.3 +====== + +Release Summary +--------------- + +This is a bgfix release + +Bugfixes +-------- + +- install_agent role: Fixed a bug which broke OpenSUSE compatibility + v2.0.2 ====== diff --git a/README.md b/README.md index c9e6f11..bad22ba 100644 --- a/README.md +++ b/README.md @@ -83,6 +83,8 @@ The module documentation can be found [here](https://svalabs.github.io/sva.senti The role documentation can be found [here](https://svalabs.github.io/sva.sentinelone/branch/main/collections/index_role.html). ## Changelog +**v2.0.3**: Bugfix release. Fixed OpenSUSE compatibility + **v2.0.2**: Bugfix release. Fixed idempotency bug in install_agent role and reverted changes from v2.0.1 **v2.0.1**: Bugfix release. Fixed a bug where the install_agent role fails on local tasks if "ansible_connection" var is set in playbook. diff --git a/changelogs/.plugin-cache.yaml b/changelogs/.plugin-cache.yaml index 816c902..68e48b0 100644 --- a/changelogs/.plugin-cache.yaml +++ b/changelogs/.plugin-cache.yaml @@ -69,4 +69,4 @@ plugins: strategy: {} test: {} vars: {} -version: 2.0.2 +version: 2.0.3 diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 9e21a42..e28bddc 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -138,3 +138,11 @@ releases: fragments: - v2.0.2.yml release_date: '2024-11-04' + 2.0.3: + changes: + bugfixes: + - 'install_agent role: Fixed a bug which broke OpenSUSE compatibility' + release_summary: This is a bgfix release + fragments: + - v2.0.4.yml + release_date: '2024-11-21' diff --git a/galaxy.yml b/galaxy.yml index 558a76a..c33406c 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -9,7 +9,7 @@ namespace: "sva" name: "sentinelone" # The version of the collection. Must be compatible with semantic versioning -version: "2.0.2" +version: "2.0.3" # The path to the Markdown (.md) readme file. This path is relative to the root of the collection readme: "README.md" diff --git a/roles/install_agent/vars/main.yml b/roles/install_agent/vars/main.yml index b3e6cbb..b73ff5c 100644 --- a/roles/install_agent/vars/main.yml +++ b/roles/install_agent/vars/main.yml @@ -1,7 +1,7 @@ --- # vars file for install_agent pkg_format: "{% if ansible_facts.pkg_mgr in ['yum', 'dnf', 'zypper'] %}rpm{% - elif ansible_facts.pkg_mgr == 'apt' %}deb{% + elif ansible_facts.pkg_mgr == 'apt' %}deb{% elif ansible_facts.os_family == 'Windows' and not win_use_exe %}msi{% elif ansible_facts.os_family == 'Windows' and win_use_exe %}exe{% else %}unknown{% endif %}" From 2675930ded143649859181e78d4b73cd98b07675 Mon Sep 17 00:00:00 2001 From: Marco Wester <42421851+mwester117@users.noreply.github.com> Date: Thu, 21 Nov 2024 16:25:38 +0100 Subject: [PATCH 2/2] Fixed fragment --- changelogs/changelog.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index e28bddc..0d1f232 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -144,5 +144,5 @@ releases: - 'install_agent role: Fixed a bug which broke OpenSUSE compatibility' release_summary: This is a bgfix release fragments: - - v2.0.4.yml + - v2.0.3.yml release_date: '2024-11-21'