From fe240432cc795b4291dee3259ad27ad838dacc0a Mon Sep 17 00:00:00 2001 From: Aleix Penella Date: Tue, 24 Sep 2024 12:44:50 +0200 Subject: [PATCH] update release notes --- CHANGELOG.md | 8 ++++++++ RELEASE_NOTES.md | 8 ++++++++ 2 files changed, 16 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index a8b43d8..fe16026 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## [unreleased] +### Fixed + +- In the example _ansibleplaybook-embed-python_ upgrade the Ansible version to 2.17.4, which fixes an Ansible vulnerability. (https://github.com/apenella/go-ansible/security/dependabot/7) + +### Added + +- New example _ansibleplaybook-ssh-become-root-with-password/_, showcasing how to execute a playbook that requires to become root user and set the user password through the variable _ansible_sudo_pass_ + ### Changed - The internal package `internal/executable/os/exec` has been moved to `pkg/execute/exec`, making it public. Along with this change, the `Exec` struct has been renamed to `OsExec`. diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 7a327d1..d2c80c2 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -2,6 +2,14 @@ ## [unreleased] +### Fixed + +- In the example _ansibleplaybook-embed-python_ upgrade the Ansible version to 2.17.4, which fixes an Ansible vulnerability. (https://github.com/apenella/go-ansible/security/dependabot/7) + +### Added + +- New example _ansibleplaybook-ssh-become-root-with-password/_, showcasing how to execute a playbook that requires to become root user and set the user password through the variable _ansible_sudo_pass_ + ### Changed - The internal package `internal/executable/os/exec` has been moved to `pkg/execute/exec`, making it public. Along with this change, the `Exec` struct has been renamed to `OsExec`.