Skip to content

Commit

Permalink
Release 3.15.0 (#1098)
Browse files Browse the repository at this point in the history
* Update release version
* Add version_added
* Add changelog
  • Loading branch information
rodvand authored Oct 18, 2023
1 parent 1529e6c commit a7608ef
Show file tree
Hide file tree
Showing 6 changed files with 366 additions and 503 deletions.
13 changes: 13 additions & 0 deletions changelogs/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -818,3 +818,16 @@ releases:
- netbox_power_port - Add missing power port option [#1049](https://github.com/netbox-community/ansible_modules/pull/1049)
- netbox_inventory_item - Add role to module [#1050](https://github.com/netbox-community/ansible_modules/pull/1050)
release_date: '2023-08-18'
3.15.0:
changes:
bugfixes:
- netbox_ device - Adjust device_role to role for NetBox 3.6 [#1066](https://github.com/netbox-community/ansible_modules/pull/1066)
minor_changes:
- netbox_device - Add oob_ip to device [#1085](https://github.com/netbox-community/ansible_modules/pull/1085)
- netbox_device_type - Add default_platform [#1092](https://github.com/netbox-community/ansible_modules/pull/1092)
- netbox_config_template - New module [#1090](https://github.com/netbox-community/ansible_modules/pull/1090)
modules:
- description: Creates, updates, or removed a config template from NetBox
name: netbox_config_template
namesapce: ''
release_date: '2023-10-18'
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
author = "Mikhail Yohman <@FragmentedPacket>"

# The full version, including alpha/beta/rc tags
release = "3.14.0"
release = "3.15.0"


# -- General configuration ---------------------------------------------------
Expand Down
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: netbox
name: netbox

# The version of the collection. Must be compatible with semantic versioning
version: 3.14.0
version: 3.15.0

# The path to the Markdown (.md) readme file. This path is relative to the root of the collection
readme: README.md
Expand Down
4 changes: 2 additions & 2 deletions plugins/modules/netbox_config_template.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
gather_facts: False
tasks:
- name: Create config template
netbox.netbox.netbox_route_target:
netbox.netbox.netbox_config_template:
netbox_url: http://netbox.local
netbox_token: thisIsMyToken
data:
Expand All @@ -77,7 +77,7 @@
- ansible
- name: Delete config template
netbox.netbox.netbox_route_target:
netbox.netbox.netbox_config_template:
netbox_url: http://netbox.local
netbox_token: thisIsMyToken
data:
Expand Down
2 changes: 2 additions & 0 deletions plugins/modules/netbox_inventory_item.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@
- dcim.rearport
required: false
type: str
version_added: "3.15.0"
component:
description:
- The associated component
Expand All @@ -111,6 +112,7 @@
- The device the component is attached to.
type: str
required: False
version_added: "3.15.0"
tags:
description:
- Any tags that the device may need to be associated with
Expand Down
Loading

0 comments on commit a7608ef

Please sign in to comment.