From de3d0cb378591351b3537124364e68b2f4c3551f Mon Sep 17 00:00:00 2001 From: ISIB-Group <67364259+ISIB-Group@users.noreply.github.com> Date: Thu, 22 Apr 2021 11:19:48 +0800 Subject: [PATCH] Ralese1.1.3 (#41) * ralese 1.1.3 * ralese 1.1.3 * ralese 1.1.3 --- CHANGELOG.rst | 9 +++++++++ bindep.txt | 5 +++++ changelogs/.plugin-cache.yaml | 2 +- changelogs/changelog.yaml | 9 +++++++++ docs/add_user_module.rst | 3 ++- docs/edit_pass_user_module.rst | 3 ++- docs/edit_smtp_module.rst | 3 ++- docs/edit_snmp_module.rst | 1 + docs/edit_snmp_trap_module.rst | 1 + docs/edit_virtual_media_module.rst | 1 + docs/user_module.rst | 1 + galaxy.yml | 2 +- 12 files changed, 35 insertions(+), 5 deletions(-) create mode 100644 bindep.txt diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 11639ff..8df7a5e 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,15 @@ Inspur.sm Release Notes .. contents:: Topics +v1.1.3 +====== + +Bugfixes +-------- + +- Add ansible 2.11 test. +- Add the no_log=true attribute to some modules. + v1.1.2 ====== diff --git a/bindep.txt b/bindep.txt new file mode 100644 index 0000000..2a884ae --- /dev/null +++ b/bindep.txt @@ -0,0 +1,5 @@ +# This is a cross-platform list tracking distribution packages needed by tests; +# see https://docs.openstack.org/infra/bindep/ for additional information. + +gcc-c++ [doc test platform:rpm] +ipmitool [test platform:rpm] diff --git a/changelogs/.plugin-cache.yaml b/changelogs/.plugin-cache.yaml index 11a6fbd..b8fd1cd 100644 --- a/changelogs/.plugin-cache.yaml +++ b/changelogs/.plugin-cache.yaml @@ -677,4 +677,4 @@ plugins: shell: {} strategy: {} vars: {} -version: 1.1.2 +version: 1.1.3 diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 50de1bc..d185514 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -75,3 +75,12 @@ releases: fragments: - fix-module_info-parameter.yaml release_date: '2021-01-29' + 1.1.3: + changes: + bugfixes: + - Add ansible 2.11 test. + - Add the no_log=true attribute to some modules. + fragments: + - add_ansible2.11_test.yml + - add_no_log.yml + release_date: '2021-04-22' diff --git a/docs/add_user_module.rst b/docs/add_user_module.rst index 4828e3f..53b2fa5 100644 --- a/docs/add_user_module.rst +++ b/docs/add_user_module.rst @@ -258,6 +258,7 @@ Examples - name: Add user test hosts: ism + no_log: true connection: local gather_facts: no vars: @@ -271,7 +272,7 @@ Examples - name: "Add user" inspur.sm.add_user: uname: "wbs" - upass: "admin" + upass: my_password role_id: "Administrator" priv: "kvm,sol" provider: "{{ ism }}" diff --git a/docs/edit_pass_user_module.rst b/docs/edit_pass_user_module.rst index 1b619e6..a7e745c 100644 --- a/docs/edit_pass_user_module.rst +++ b/docs/edit_pass_user_module.rst @@ -221,6 +221,7 @@ Examples - name: Edit user password test hosts: ism + no_log: true connection: local gather_facts: no vars: @@ -234,7 +235,7 @@ Examples - name: "Change user password" inspur.sm.edit_pass_user: uname: "wbs" - upass: "admin1" + upass: my_password provider: "{{ ism }}" diff --git a/docs/edit_smtp_module.rst b/docs/edit_smtp_module.rst index 2c279ca..f0af50e 100644 --- a/docs/edit_smtp_module.rst +++ b/docs/edit_smtp_module.rst @@ -456,6 +456,7 @@ Examples - name: Smtp test hosts: ism + no_log: true connection: local gather_facts: no vars: @@ -485,7 +486,7 @@ Examples primary_name: "inspur" primary_auth: "enable" primary_username: "test" - primary_password: "123456" + primary_password: my_password provider: "{{ ism }}" diff --git a/docs/edit_snmp_module.rst b/docs/edit_snmp_module.rst index 2e163b8..9a076a2 100644 --- a/docs/edit_snmp_module.rst +++ b/docs/edit_snmp_module.rst @@ -333,6 +333,7 @@ Examples - name: Snmp test hosts: ism + no_log: true connection: local gather_facts: no vars: diff --git a/docs/edit_snmp_trap_module.rst b/docs/edit_snmp_trap_module.rst index 7155602..a574b21 100644 --- a/docs/edit_snmp_trap_module.rst +++ b/docs/edit_snmp_trap_module.rst @@ -438,6 +438,7 @@ Examples - name: Trap test hosts: ism + no_log: true connection: local gather_facts: no vars: diff --git a/docs/edit_virtual_media_module.rst b/docs/edit_virtual_media_module.rst index 460cf57..ee06014 100644 --- a/docs/edit_virtual_media_module.rst +++ b/docs/edit_virtual_media_module.rst @@ -384,6 +384,7 @@ Examples - name: Media test hosts: ism + no_log: true connection: local gather_facts: no vars: diff --git a/docs/user_module.rst b/docs/user_module.rst index dc3c6c7..28ff4b9 100644 --- a/docs/user_module.rst +++ b/docs/user_module.rst @@ -277,6 +277,7 @@ Examples - name: User test hosts: ism + no_log: true connection: local gather_facts: no vars: diff --git a/galaxy.yml b/galaxy.yml index b1ab1dc..e47a401 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -9,7 +9,7 @@ namespace: inspur name: sm # The version of the collection. Must be compatible with semantic versioning -version: 1.1.2 +version: 1.1.3 # The path to the Markdown (.md) readme file. This path is relative to the root of the collection readme: README.md