Skip to content

Commit 7dde288

Browse files
authored
Prep for 3.3.0 (#625)
* Generated documentation for 3.3.0 release
1 parent 86f6b3d commit 7dde288

File tree

70 files changed

+1462
-70
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+1462
-70
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ __pycache__/
44
tests/output/*
55
venv/
66
.vscode/
7+
.idea/
78
changelogs/.plugin-cache.yaml
89
docs/_build/*
910
.python-version

CHANGELOG.rst

+18
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,24 @@ Netbox.Netbox Release Notes
55
.. contents:: Topics
66

77

8+
v3.3.0
9+
======
10+
11+
Minor Changes
12+
-------------
13+
14+
- Improve speed of netbox_cable module on NetBox version 3.0.6 or later [#624](https://github.com/netbox-community/ansible_modules/pull/624)
15+
- netbox_config_context - add module for handling Config Context [#610](https://github.com/netbox-community/ansible_modules/pull/610)
16+
- netbox_location - add module for handling Location [#543](https://github.com/netbox-community/ansible_modules/pull/543)
17+
- netbox_site_group - add module for handling Site Group [#547](https://github.com/netbox-community/ansible_modules/pull/547)
18+
19+
New Modules
20+
-----------
21+
22+
- netbox.netbox.netbox_config_context - Create, update or delete Config Context in NetBox
23+
- netbox.netbox.netbox_location - Create, update or delete Location in NetBox
24+
- netbox.netbox.netbox_site_group - Create, update or delete Site Group in NetBox
25+
826
v3.2.0
927
======
1028

changelogs/changelog.yaml

+18
Original file line numberDiff line numberDiff line change
@@ -565,3 +565,21 @@ releases:
565565
- Make attached_ips subscriptable. [#609](https://github.com/netbox-community/ansible_modules/pull/609)
566566
- Copy interfaces before processing [#556](https://github.com/netbox-community/ansible_modules/pull/556)
567567
release_date: '2021-10-18'
568+
3.3.0:
569+
changes:
570+
minor_changes:
571+
- Improve speed of netbox_cable module on NetBox version 3.0.6 or later [#624](https://github.com/netbox-community/ansible_modules/pull/624)
572+
- netbox_location - add module for handling Location [#543](https://github.com/netbox-community/ansible_modules/pull/543)
573+
- netbox_site_group - add module for handling Site Group [#547](https://github.com/netbox-community/ansible_modules/pull/547)
574+
- netbox_config_context - add module for handling Config Context [#610](https://github.com/netbox-community/ansible_modules/pull/610)
575+
modules:
576+
- description: Create, update or delete Location in NetBox
577+
name: netbox_location
578+
namespace: ''
579+
- description: Create, update or delete Site Group in NetBox
580+
name: netbox_site_group
581+
namespace: ''
582+
- description: Create, update or delete Config Context in NetBox
583+
name: netbox_config_context
584+
namespace: ''
585+
release_date: '2021-10-25'

docs/plugins/index.rst

+4-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Netbox.Netbox
66
=============
77

8-
Collection version 3.2.0
8+
Collection version 3.3.0
99

1010
.. toctree::
1111
:maxdepth: 1
@@ -37,6 +37,7 @@ Modules
3737
* :ref:`netbox_cluster <ansible_collections.netbox.netbox.netbox_cluster_module>` -- Create, update or delete clusters within Netbox
3838
* :ref:`netbox_cluster_group <ansible_collections.netbox.netbox.netbox_cluster_group_module>` -- Create, update or delete cluster groups within Netbox
3939
* :ref:`netbox_cluster_type <ansible_collections.netbox.netbox.netbox_cluster_type_module>` -- Create, update or delete cluster types within Netbox
40+
* :ref:`netbox_config_context <ansible_collections.netbox.netbox.netbox_config_context_module>` -- Creates, updates or deletes configuration contexts within Netbox
4041
* :ref:`netbox_console_port <ansible_collections.netbox.netbox.netbox_console_port_module>` -- Create, update or delete console ports within Netbox
4142
* :ref:`netbox_console_port_template <ansible_collections.netbox.netbox.netbox_console_port_template_module>` -- Create, update or delete console port templates within Netbox
4243
* :ref:`netbox_console_server_port <ansible_collections.netbox.netbox.netbox_console_server_port_module>` -- Create, update or delete console server ports within Netbox
@@ -53,6 +54,7 @@ Modules
5354
* :ref:`netbox_inventory_item <ansible_collections.netbox.netbox.netbox_inventory_item_module>` -- Creates or removes inventory items from Netbox
5455
* :ref:`netbox_ip_address <ansible_collections.netbox.netbox.netbox_ip_address_module>` -- Creates or removes IP addresses from Netbox
5556
* :ref:`netbox_ipam_role <ansible_collections.netbox.netbox.netbox_ipam_role_module>` -- Creates or removes ipam roles from Netbox
57+
* :ref:`netbox_location <ansible_collections.netbox.netbox.netbox_location_module>` -- Create, update or delete locations within NetBox
5658
* :ref:`netbox_manufacturer <ansible_collections.netbox.netbox.netbox_manufacturer_module>` -- Create or delete manufacturers within Netbox
5759
* :ref:`netbox_platform <ansible_collections.netbox.netbox.netbox_platform_module>` -- Create or delete platforms within Netbox
5860
* :ref:`netbox_power_feed <ansible_collections.netbox.netbox.netbox_power_feed_module>` -- Create, update or delete power feeds within Netbox
@@ -73,6 +75,7 @@ Modules
7375
* :ref:`netbox_route_target <ansible_collections.netbox.netbox.netbox_route_target_module>` -- Creates or removes route targets from Netbox
7476
* :ref:`netbox_service <ansible_collections.netbox.netbox.netbox_service_module>` -- Creates or removes service from Netbox
7577
* :ref:`netbox_site <ansible_collections.netbox.netbox.netbox_site_module>` -- Creates or removes sites from Netbox
78+
* :ref:`netbox_site_group <ansible_collections.netbox.netbox.netbox_site_group_module>` -- Create, update, or delete site groups within NetBox
7679
* :ref:`netbox_tag <ansible_collections.netbox.netbox.netbox_tag_module>` -- Creates or removes tags from Netbox
7780
* :ref:`netbox_tenant <ansible_collections.netbox.netbox.netbox_tenant_module>` -- Creates or removes tenants from Netbox
7881
* :ref:`netbox_tenant_group <ansible_collections.netbox.netbox.netbox_tenant_group_module>` -- Creates or removes tenant groups from Netbox

docs/plugins/nb_inventory_inventory.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ netbox.netbox.nb_inventory -- NetBox inventory source
2020
.. Collection note
2121
2222
.. note::
23-
This plugin is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.2.0).
23+
This plugin is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.3.0).
2424

2525
To install it use: :code:`ansible-galaxy collection install netbox.netbox`.
2626

docs/plugins/nb_lookup_lookup.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ netbox.netbox.nb_lookup -- Queries and returns elements from Netbox
2020
.. Collection note
2121
2222
.. note::
23-
This plugin is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.2.0).
23+
This plugin is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.3.0).
2424

2525
To install it use: :code:`ansible-galaxy collection install netbox.netbox`.
2626

docs/plugins/netbox_aggregate_module.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ netbox.netbox.netbox_aggregate -- Creates or removes aggregates from Netbox
2020
.. Collection note
2121
2222
.. note::
23-
This plugin is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.2.0).
23+
This plugin is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.3.0).
2424

2525
To install it use: :code:`ansible-galaxy collection install netbox.netbox`.
2626

docs/plugins/netbox_cable_module.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ netbox.netbox.netbox_cable -- Create, update or delete cables within Netbox
2020
.. Collection note
2121
2222
.. note::
23-
This plugin is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.2.0).
23+
This plugin is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.3.0).
2424

2525
To install it use: :code:`ansible-galaxy collection install netbox.netbox`.
2626

docs/plugins/netbox_circuit_module.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ netbox.netbox.netbox_circuit -- Create, update or delete circuits within Netbox
2020
.. Collection note
2121
2222
.. note::
23-
This plugin is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.2.0).
23+
This plugin is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.3.0).
2424

2525
To install it use: :code:`ansible-galaxy collection install netbox.netbox`.
2626

docs/plugins/netbox_circuit_termination_module.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ netbox.netbox.netbox_circuit_termination -- Create, update or delete circuit ter
2020
.. Collection note
2121
2222
.. note::
23-
This plugin is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.2.0).
23+
This plugin is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.3.0).
2424

2525
To install it use: :code:`ansible-galaxy collection install netbox.netbox`.
2626

docs/plugins/netbox_circuit_type_module.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ netbox.netbox.netbox_circuit_type -- Create, update or delete circuit types with
2020
.. Collection note
2121
2222
.. note::
23-
This plugin is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.2.0).
23+
This plugin is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.3.0).
2424

2525
To install it use: :code:`ansible-galaxy collection install netbox.netbox`.
2626

docs/plugins/netbox_cluster_group_module.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ netbox.netbox.netbox_cluster_group -- Create, update or delete cluster groups wi
2020
.. Collection note
2121
2222
.. note::
23-
This plugin is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.2.0).
23+
This plugin is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.3.0).
2424

2525
To install it use: :code:`ansible-galaxy collection install netbox.netbox`.
2626

docs/plugins/netbox_cluster_module.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ netbox.netbox.netbox_cluster -- Create, update or delete clusters within Netbox
2020
.. Collection note
2121
2222
.. note::
23-
This plugin is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.2.0).
23+
This plugin is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.3.0).
2424

2525
To install it use: :code:`ansible-galaxy collection install netbox.netbox`.
2626

docs/plugins/netbox_cluster_type_module.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ netbox.netbox.netbox_cluster_type -- Create, update or delete cluster types with
2020
.. Collection note
2121
2222
.. note::
23-
This plugin is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.2.0).
23+
This plugin is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.3.0).
2424

2525
To install it use: :code:`ansible-galaxy collection install netbox.netbox`.
2626

0 commit comments

Comments
 (0)