Skip to content

Commit 5fb2768

Browse files
authored
Generate changelog and docs for 3.20 (#1318)
1 parent 030601b commit 5fb2768

File tree

108 files changed

+846
-1029
lines changed

Some content is hidden

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

108 files changed

+846
-1029
lines changed

CHANGELOG.rst

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,40 @@ NetBox.NetBox Release Notes
44

55
.. contents:: Topics
66

7+
v3.20.0
8+
=======
9+
10+
Minor Changes
11+
-------------
12+
13+
- Add ``facility`` to ``location`` (https://github.com/netbox-community/ansible_modules/issues/1280)
14+
- Add ``related_object_type`` to ``netbox_custom_filed`` (https://github.com/netbox-community/ansible_modules/issues/1268)
15+
- Add ``status`` to ``location`` (https://github.com/netbox-community/ansible_modules/issues/1279)
16+
- Add `description` to `netbox_cluster_group` module (https://github.com/netbox-community/ansible_modules/issues/1276)
17+
- Add `serial` to `netbox_virtual_machine` module (https://github.com/netbox-community/ansible_modules/issues/1309)
18+
- Add `status` to `netbox_cluster` (https://github.com/netbox-community/ansible_modules/issues/1275)
19+
- Add `vid_ranges` to `netbox_vlan_group` module (https://github.com/netbox-community/ansible_modules/issues/1307)
20+
- Add ability to rename variables set on the host by ``netbox.netbox.nb_inventory`` through configuration.
21+
- Added option `hostname_field` to ``nb_inventory`` to be able to set the inventory hostname from a field in custom_fields
22+
- Adjust tests for various modules
23+
- Fix the form_factor option on netbox_rack
24+
- Update CI for NetBox 4.1
25+
26+
Bugfixes
27+
--------
28+
29+
- If `fetch_all` is `false`, prefix lookup depends on site lookup, so move it to secondary lookup (https://github.com/netbox-community/ansible_modules/issues/733)
30+
31+
New Modules
32+
-----------
33+
34+
- netbox.netbox.netbox_permission - Creates or removes permissions from NetBox
35+
- netbox.netbox.netbox_token - Creates or removes tokens from NetBox
36+
- netbox.netbox.netbox_tunnel - Create, update or delete tunnels within NetBox
37+
- netbox.netbox.netbox_tunnel_group - Create, update or delete tunnel groups within NetBox
38+
- netbox.netbox.netbox_user - Creates or removes users from NetBox
39+
- netbox.netbox.netbox_user_group - Creates or removes user groups from NetBox
40+
741
v3.19.1
842
=======
943

changelogs/changelog.yaml

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -763,6 +763,58 @@ releases:
763763
- netbox_virtual_machine - Change vCPU to float from int (to reflect NetBox
764764
3.0) [#605](https://github.com/netbox-community/ansible_modules/pull/605)
765765
release_date: '2021-10-18'
766+
3.20.0:
767+
changes:
768+
bugfixes:
769+
- If `fetch_all` is `false`, prefix lookup depends on site lookup, so move it
770+
to secondary lookup (https://github.com/netbox-community/ansible_modules/issues/733)
771+
minor_changes:
772+
- Add ``facility`` to ``location`` (https://github.com/netbox-community/ansible_modules/issues/1280)
773+
- Add ``related_object_type`` to ``netbox_custom_filed`` (https://github.com/netbox-community/ansible_modules/issues/1268)
774+
- Add ``status`` to ``location`` (https://github.com/netbox-community/ansible_modules/issues/1279)
775+
- Add `description` to `netbox_cluster_group` module (https://github.com/netbox-community/ansible_modules/issues/1276)
776+
- Add `serial` to `netbox_virtual_machine` module (https://github.com/netbox-community/ansible_modules/issues/1309)
777+
- Add `status` to `netbox_cluster` (https://github.com/netbox-community/ansible_modules/issues/1275)
778+
- Add `vid_ranges` to `netbox_vlan_group` module (https://github.com/netbox-community/ansible_modules/issues/1307)
779+
- Add ability to rename variables set on the host by ``netbox.netbox.nb_inventory``
780+
through configuration.
781+
- Added option `hostname_field` to ``nb_inventory`` to be able to set the inventory
782+
hostname from a field in custom_fields
783+
- Adjust tests for various modules
784+
- Fix the form_factor option on netbox_rack
785+
- Update CI for NetBox 4.1
786+
fragments:
787+
- 1273-ability-to-rename-host-inventory-vars.yml
788+
- 1275-feature-netbox_cluster-adds-status-field.yml
789+
- 1276-feature-netbox_cluster_group-adds-description-field.yml
790+
- 1281_move_prefix_lookup_to_secondary.yml
791+
- 1307-feature-netbox_vlan_group-add-vid_ranges.yml
792+
- 1309-feature-add-serial-number-to-vm.yml
793+
- 1312-add-hostname_field-option.yml
794+
- 41_updates.yml
795+
- ci_netbox41.yml
796+
- fix_issue_1268.yml
797+
- fix_issues_1279_1280.yml
798+
modules:
799+
- description: Creates or removes permissions from NetBox
800+
name: netbox_permission
801+
namespace: ''
802+
- description: Creates or removes tokens from NetBox
803+
name: netbox_token
804+
namespace: ''
805+
- description: Create, update or delete tunnels within NetBox
806+
name: netbox_tunnel
807+
namespace: ''
808+
- description: Create, update or delete tunnel groups within NetBox
809+
name: netbox_tunnel_group
810+
namespace: ''
811+
- description: Creates or removes users from NetBox
812+
name: netbox_user
813+
namespace: ''
814+
- description: Creates or removes user groups from NetBox
815+
name: netbox_user_group
816+
namespace: ''
817+
release_date: '2024-09-12'
766818
3.3.0:
767819
changes:
768820
minor_changes:

changelogs/fragments/1273-ability-to-rename-host-inventory-vars.yml

Lines changed: 0 additions & 2 deletions
This file was deleted.

changelogs/fragments/1275-feature-netbox_cluster-adds-status-field.yml

Lines changed: 0 additions & 2 deletions
This file was deleted.

changelogs/fragments/1276-feature-netbox_cluster_group-adds-description-field.yml

Lines changed: 0 additions & 2 deletions
This file was deleted.

changelogs/fragments/1281_move_prefix_lookup_to_secondary.yml

Lines changed: 0 additions & 2 deletions
This file was deleted.

changelogs/fragments/1307-feature-netbox_vlan_group-add-vid_ranges.yml

Lines changed: 0 additions & 2 deletions
This file was deleted.

changelogs/fragments/1309-feature-add-serial-number-to-vm.yml

Lines changed: 0 additions & 2 deletions
This file was deleted.

changelogs/fragments/1312-add-hostname_field-option.yml

Lines changed: 0 additions & 2 deletions
This file was deleted.

changelogs/fragments/41_updates.yml

Lines changed: 0 additions & 3 deletions
This file was deleted.

changelogs/fragments/ci_netbox41.yml

Lines changed: 0 additions & 2 deletions
This file was deleted.

changelogs/fragments/fix_issue_1268.yml

Lines changed: 0 additions & 2 deletions
This file was deleted.

changelogs/fragments/fix_issues_1279_1280.yml

Lines changed: 0 additions & 3 deletions
This file was deleted.

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
author = "Mikhail Yohman <@FragmentedPacket>"
2828

2929
# The full version, including alpha/beta/rc tags
30-
release = "3.19.1"
30+
release = "3.20.0"
3131

3232

3333
# -- General configuration ---------------------------------------------------

docs/plugins/environment_variables.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
21
:orphan:
32

43
.. meta::
5-
:antsibull-docs: 2.11.0
4+
:antsibull-docs: 2.13.1
65

76
.. _list_of_collection_env_vars:
87

docs/plugins/index.rst

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
1-
2-
31
.. meta::
4-
:antsibull-docs: 2.11.0
2+
:antsibull-docs: 2.13.1
53

64

75
.. _plugins_in_netbox.netbox:
86

97
Netbox.Netbox
108
=============
119

12-
Collection version 3.19.1
10+
Collection version 3.20.0
1311

1412
.. contents::
1513
:local:
@@ -256,5 +254,3 @@ Lookup Plugins
256254
:hidden:
257255

258256
nb_lookup_lookup
259-
260-

0 commit comments

Comments
 (0)