Skip to content

Commit a7608ef

Browse files
authored
Release 3.15.0 (#1098)
* Update release version * Add version_added * Add changelog
1 parent 1529e6c commit a7608ef

File tree

6 files changed

+366
-503
lines changed

6 files changed

+366
-503
lines changed

changelogs/changelog.yaml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -818,3 +818,16 @@ releases:
818818
- netbox_power_port - Add missing power port option [#1049](https://github.com/netbox-community/ansible_modules/pull/1049)
819819
- netbox_inventory_item - Add role to module [#1050](https://github.com/netbox-community/ansible_modules/pull/1050)
820820
release_date: '2023-08-18'
821+
3.15.0:
822+
changes:
823+
bugfixes:
824+
- netbox_ device - Adjust device_role to role for NetBox 3.6 [#1066](https://github.com/netbox-community/ansible_modules/pull/1066)
825+
minor_changes:
826+
- netbox_device - Add oob_ip to device [#1085](https://github.com/netbox-community/ansible_modules/pull/1085)
827+
- netbox_device_type - Add default_platform [#1092](https://github.com/netbox-community/ansible_modules/pull/1092)
828+
- netbox_config_template - New module [#1090](https://github.com/netbox-community/ansible_modules/pull/1090)
829+
modules:
830+
- description: Creates, updates, or removed a config template from NetBox
831+
name: netbox_config_template
832+
namesapce: ''
833+
release_date: '2023-10-18'

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.14.0"
30+
release = "3.15.0"
3131

3232

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

galaxy.yml

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

1212
# The version of the collection. Must be compatible with semantic versioning
13-
version: 3.14.0
13+
version: 3.15.0
1414

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

plugins/modules/netbox_config_template.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
gather_facts: False
6565
tasks:
6666
- name: Create config template
67-
netbox.netbox.netbox_route_target:
67+
netbox.netbox.netbox_config_template:
6868
netbox_url: http://netbox.local
6969
netbox_token: thisIsMyToken
7070
data:
@@ -77,7 +77,7 @@
7777
- ansible
7878
7979
- name: Delete config template
80-
netbox.netbox.netbox_route_target:
80+
netbox.netbox.netbox_config_template:
8181
netbox_url: http://netbox.local
8282
netbox_token: thisIsMyToken
8383
data:

plugins/modules/netbox_inventory_item.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@
9595
- dcim.rearport
9696
required: false
9797
type: str
98+
version_added: "3.15.0"
9899
component:
99100
description:
100101
- The associated component
@@ -111,6 +112,7 @@
111112
- The device the component is attached to.
112113
type: str
113114
required: False
115+
version_added: "3.15.0"
114116
tags:
115117
description:
116118
- Any tags that the device may need to be associated with

0 commit comments

Comments
 (0)