Skip to content

Commit

Permalink
Release Notes for v1.7.1 (#275)
Browse files Browse the repository at this point in the history
  • Loading branch information
JkhatriInfobox authored Nov 18, 2024
1 parent 6531777 commit 930f895
Show file tree
Hide file tree
Showing 5 changed files with 38 additions and 2 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,19 @@ Infoblox.Nios_Modules Release Notes

.. contents:: Topics

v1.7.1
======

Release Summary
---------------
This update focuses on specific improvements and bug fixes for Host records to enhance system functionality and performance.

Bugfixes
--------
- Refined Host record return fields to ensure use_nextserver and nextserver are only included for IPv4, as these fields are not applicable to IPv6. `#274 <https://github.com/infobloxopen/infoblox-ansible/pull/274>`_
- For Host IPv6, the mac parameter has been renamed to duid. `#274 <https://github.com/infobloxopen/infoblox-ansible/pull/274>`_


v1.7.0
======

Expand Down
2 changes: 1 addition & 1 deletion changelogs/.plugin-cache.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -194,4 +194,4 @@ plugins:
shell: {}
strategy: {}
vars: {}
version: 1.7.0
version: 1.7.1
7 changes: 7 additions & 0 deletions changelogs/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -287,3 +287,10 @@ releases:
name: nios_nsgroup_stubmember
namespace: ""
release_date: "2024-10-04"
1.7.1:
changes:
bugfixes:
- Refined Host record return fields to ensure use_nextserver and nextserver are only included for IPv4, as these fields are not applicable to IPv6.
- For Host IPv6, the mac parameter has been renamed to duid.
release_summary: "This update focuses on specific improvements and bug fixes for Host records to enhance system functionality and performance."
release_date: "2024-11-18"
2 changes: 1 addition & 1 deletion galaxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ namespace: infoblox
name: nios_modules

# The version of the collection. Must be compatible with semantic versioning
version: 1.7.0
version: 1.7.1

# The path to the Markdown (.md) readme file. This path is relative to the root of the collection
readme: README.md
Expand Down
16 changes: 16 additions & 0 deletions plugins/modules/nios_host_record.py
Original file line number Diff line number Diff line change
Expand Up @@ -364,6 +364,22 @@
username: admin
password: admin
connection: local
- name: Create host record with IPv4 and IPv6 addresses
infoblox.nios_modules.nios_host_record:
name: hostrec.ansible.com
ipv4:
- address: 192.168.10.7
mac: 12:80:C8:E3:4C:AB
ipv6:
- address: fe80::10
duid: 12:80:C8:E3:4C:B4
state: present
provider:
host: "{{ inventory_hostname_short }}"
username: admin
password: admin
connection: local
'''

RETURN = ''' # '''
Expand Down

0 comments on commit 930f895

Please sign in to comment.