diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 8ddc11a2..68d08c34 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,6 +4,24 @@ Infoblox.Nios_Modules Release Notes .. contents:: Topics +v1.1.2 +====== +Release Summary +--------------- +- Issue fixes and standardization of inventory plugin and lookup modules as per Ansible guidelines +- Directory restructure and added integration & unit tests + +Minor Changes +------------- +- Changes in inventory and lookup plugins documentation `#85 `_ +- Directory restructure and added integration & unit tests `#87 `_ + +Bugfixes +------------- +- Handle NoneType parsing in nios_inventory.py `#81 `_ +- Check all dhcp options, not just first one `#83 `_ + + v1.1.1 ====== Release Summary diff --git a/README.md b/README.md index 5d9fe67b..aef478c5 100644 --- a/README.md +++ b/README.md @@ -102,38 +102,43 @@ branch. ### Installation from Ansible Galaxy - To directly install the `nios_modules` collection from [Ansible Galaxy](https://galaxy.ansible.com/infoblox/nios_modules), run the following command: - - ```shell + - ``` $ ansible-galaxy collection install infoblox.nios_modules ``` - The collection folder would be installed at - `~/.ansible/collections/ansible_collections/infoblox/nios_modules` + ``` + ~/.ansible/collections/ansible_collections/infoblox/nios_modules + ``` - For offline installation on the Ansible control machine, download the required tar archive version of the collection from [Infoblox Nios Modules collections](https://galaxy.ansible.com/infoblox/nios_modules) and run the command given below in `~/.ansible` directory: - - ```shell + - ``` $ ansible-galaxy collection install infoblox-nios_modules-.tar.gz -p ./collections ``` ### Installation from GitHub - Install the collection directly from the [GitHub](https://github.com/infobloxopen/infoblox-ansible/tree/master/ansible_collections/infoblox/nios_modules) repository using the latest commit on the master branch: - - ```shell - $ ansible-galaxy collection install git+https://github.com/infobloxopen/infoblox-ansible.git#ansible_collections/infoblox/nios_modules + - ``` + $ ansible-galaxy collection install git+https://github.com/infobloxopen/infoblox-ansible.git,master ``` - For offline installation on the Ansible control machine, to git clone and install from this repo, follow these steps: - **Clone the repo:** - ```shell + + ``` $ git clone https://github.com/infobloxopen/infoblox-ansible.git ``` - - **Build the collection:**\ + - **Build the collection:** + To build a collection, run the following command from inside the root directory of the collection: - ```shell + ``` $ ansible-galaxy collection build ``` This creates a tarball of the built collection in the current directory. - **Install the collection:** - ```shell + + ``` $ ansible-galaxy collection install infoblox-nios_modules-.tar.gz -p ./collections ``` @@ -157,7 +162,7 @@ Dates TBD Current release --------------- -1.1.1 on 7 September 2021 +1.1.2 on 12 October 2021 Versioning ========= diff --git a/changelogs/.plugin-cache.yaml b/changelogs/.plugin-cache.yaml index 3abc9c9a..82804f60 100644 --- a/changelogs/.plugin-cache.yaml +++ b/changelogs/.plugin-cache.yaml @@ -128,4 +128,4 @@ plugins: shell: {} strategy: {} vars: {} -version: 1.1.1 +version: 1.1.2 diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 8173e2a5..eece763d 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -119,3 +119,15 @@ releases: - Modules made compatible to work with ansible-core 2.11 - Issue fixes and standardization of modules as per Ansible guidelines release_date: '2021-09-07' + 1.1.2: + changes: + bugfixes: + - Handle NoneType parsing in nios_inventory.py `#81 `_ + - Check all dhcp options, not just first one `#83 `_ + minor_changes: + - Changes in inventory and lookup plugins documentation `#85 `_ + - Directory restructure and added integration & unit tests `#87 `_ + release_summary: + - Issue fixes and standardization of inventory plugin and lookup modules as per Ansible guidelines + - Directory restructure and added integration & unit tests + release_date: '2021-10-12' diff --git a/galaxy.yml b/galaxy.yml index 473cd869..2e84dd37 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -9,7 +9,7 @@ namespace: infoblox name: nios_modules # The version of the collection. Must be compatible with semantic versioning -version: 1.1.1 +version: 1.1.2 # The path to the Markdown (.md) readme file. This path is relative to the root of the collection readme: README.md