Skip to content

Commit c2c1072

Browse files
Release v1.2.0 (#400)
1 parent 6a65920 commit c2c1072

File tree

4 files changed

+83
-2
lines changed

4 files changed

+83
-2
lines changed

CHANGELOG.rst

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,46 @@ Netbox.Netbox Release Notes
55
.. contents:: Topics
66

77

8+
v1.2.0
9+
======
10+
11+
Major Changes
12+
-------------
13+
14+
- nb_inventory - Add ``dns_name`` option that adds ``dns_name`` to the host when ``True`` and device has a primary IP address. (#394)
15+
- nb_inventory - Add ``status`` as a ``group_by`` option. (398)
16+
- nb_inventory - Move around ``extracted_primary_ip`` to allow for ``config_context`` or ``custom_field`` to overwite. (#377)
17+
- nb_inventory - Services are now a list of integers due to NetBox 2.10 changes. (#396)
18+
- nb_lookup - Allow ID to be passed in and use ``.get`` instead of ``.filter``. (#376)
19+
- nb_lookup - Allow ``api_endpoint`` and ``token`` to be found via env. (#391)
20+
21+
Minor Changes
22+
-------------
23+
24+
- nb_inventory - Added ``status`` as host_var. (359)
25+
- nb_inventory - Added documentation for using ``keyed_groups``. (#361)
26+
- nb_inventory - Allow to use virtual chassis name instead of device name. (#383)
27+
- nb_lookup - Allow lookup of plugin endpoints. (#360)
28+
- nb_lookup - Documentation update to show Fully Qualified Collection Name (FQCN). (#355)
29+
- netbox_service - Add ``ports`` option for NetBox 2.10+ and convert ``port`` to ``ports`` if NetBox 2.9 or lower. (#396)
30+
- netbox_virtual_machine - Added ``comments`` option. (#380)
31+
- netbox_virtual_machine - Added ``local_context_data`` option. (#357)
32+
33+
Bugfixes
34+
--------
35+
36+
- Version checks were failing due to converting "2.10" to a float made it an integer of 2.1 which broke version related logic. (#396)
37+
- netbox_device_interface - Fixed copy pasta in documentation. (#371)
38+
- netbox_ip_address - Updated documentation to show that ``family`` option has been deprecated. (#388)
39+
- netbox_utils - Fixed typo for ``circuits.circuittermination`` searches. (#367)
40+
- netbox_utils - Skip all modifications to ``query_params`` when ``user_query_params`` is defined. (#389)
41+
- netbox_vlan - Fixed uniqueness for vlan searches to add ``group``. (#386)
42+
43+
New Modules
44+
-----------
45+
46+
- netbox.netbox.netbox_tag - Creates or removes tags from Netbox
47+
848
v1.1.0
949
======
1050

changelogs/changelog.yaml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -406,3 +406,44 @@ releases:
406406
fragments:
407407
- release-1.1.0.yml
408408
release_date: '2020-10-06'
409+
1.2.0:
410+
changes:
411+
bugfixes:
412+
- Version checks were failing due to converting "2.10" to a float made it an
413+
integer of 2.1 which broke version related logic. (#396)
414+
- netbox_device_interface - Fixed copy pasta in documentation. (#371)
415+
- netbox_ip_address - Updated documentation to show that ``family`` option has
416+
been deprecated. (#388)
417+
- netbox_utils - Fixed typo for ``circuits.circuittermination`` searches. (#367)
418+
- netbox_utils - Skip all modifications to ``query_params`` when ``user_query_params``
419+
is defined. (#389)
420+
- netbox_vlan - Fixed uniqueness for vlan searches to add ``group``. (#386)
421+
major_changes:
422+
- nb_inventory - Add ``dns_name`` option that adds ``dns_name`` to the host
423+
when ``True`` and device has a primary IP address. (#394)
424+
- nb_inventory - Add ``status`` as a ``group_by`` option. (398)
425+
- nb_inventory - Move around ``extracted_primary_ip`` to allow for ``config_context``
426+
or ``custom_field`` to overwite. (#377)
427+
- nb_inventory - Services are now a list of integers due to NetBox 2.10 changes.
428+
(#396)
429+
- nb_lookup - Allow ID to be passed in and use ``.get`` instead of ``.filter``.
430+
(#376)
431+
- nb_lookup - Allow ``api_endpoint`` and ``token`` to be found via env. (#391)
432+
minor_changes:
433+
- nb_inventory - Added ``status`` as host_var. (359)
434+
- nb_inventory - Added documentation for using ``keyed_groups``. (#361)
435+
- nb_inventory - Allow to use virtual chassis name instead of device name. (#383)
436+
- nb_lookup - Allow lookup of plugin endpoints. (#360)
437+
- nb_lookup - Documentation update to show Fully Qualified Collection Name (FQCN).
438+
(#355)
439+
- netbox_service - Add ``ports`` option for NetBox 2.10+ and convert ``port``
440+
to ``ports`` if NetBox 2.9 or lower. (#396)
441+
- netbox_virtual_machine - Added ``comments`` option. (#380)
442+
- netbox_virtual_machine - Added ``local_context_data`` option. (#357)
443+
fragments:
444+
- release1.2.0.yml
445+
modules:
446+
- description: Creates or removes tags from Netbox
447+
name: netbox_tag
448+
namespace: ''
449+
release_date: '2020-12-27'

galaxy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ namespace: netbox
99
name: netbox
1010

1111
# The version of the collection. Must be compatible with semantic versioning
12-
version: 1.1.0
12+
version: 1.2.0
1313

1414
# The path to the Markdown (.md) readme file. This path is relative to the root of the collection
1515
readme: README.md

plugins/modules/netbox_tag.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
- Pavel Korovin (@pkorovin)
2727
requirements:
2828
- pynetbox
29-
version_added: "1.1.1"
29+
version_added: "1.2.0"
3030
options:
3131
netbox_url:
3232
description:

0 commit comments

Comments
 (0)