Skip to content

Commit d035cda

Browse files
Update changelog and versions to 0.2.0 to get ready for v0.2.0 release (#185)
1 parent 8200f13 commit d035cda

File tree

3 files changed

+46
-2
lines changed

3 files changed

+46
-2
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ env:
1010
global:
1111
- COLLECTION_NAMESPACE: netbox
1212
- COLLECTION_NAME: netbox
13-
- COLLECTION_VERSION: 0.1.10
13+
- COLLECTION_VERSION: 0.2.0
1414
- secure: "tE6GtwrRU+Kjobx/94xqR2MqM20pHCnrLcHgPzIHA3npdwuA+GjCBiBLTkEEQM4fUWIfzUTyjSr9bZErm1PTI1GcIRdniTgJ3ZzSSkE7tgeYALB/7xsusB57SlmbBQm2SGwU558uWZ3NHEsi0WTgD8GKZo77OpGX72FZKsVXOz6k2wve51sOtoSVjgCsvWTmZHx4ynGdiA5wFkZfaEcjXECahKtunW+MlB5kpJzkVeLRUEXFMhWlsIYiA5nj8OI/X3Nk9ugh1ribENX9LrjpgrqQ9YariZ8G6py1ONuKZIn2g7xs5kNQ3qL6HL6N7SoUxiwH16CfSyugFaYiMfaxQ4NUVGGRHS4vSGbNIf+gLHcYvP40miI1f/+pntCzqygZMhW73FX2o+KH2OGv09khOl8k1nDg2/XvW0kCc/FU6l+Jp5wCC8H9X2uiULtQpRqts5TzIonlPEzGIpfGFgJ5m54Emhv9gjG1Z5OOyL/qae1Wr+L/uhiFafcglZYh8NHEMWCUCkeqFqR2kDmUMtdgYLD7Q7NdwlL/PSVVs1l7UPiQHlnecQKEHN7CvR3eKByTEmkCKafRYh/JQ9rBt9sZc7aAPVu+w3wWUwbHS4o4vVnmyXvJb1PeJSiuynF7CBo4Qd6qj4YwX8gLK6PylGyaMOp169u6xw1mo5/CX0pJ3x4="
1515

1616
jobs:

CHANGELOG.md

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,49 @@
11
# Changelog
22

3+
## v0.2.0
4+
5+
### Breaking Changes
6+
7+
- [#139](https://github.com/netbox-community/ansible_modules/issues/139) - Change `ip-addresses` key in netbox inventory plugin to `ip_addresses`.
8+
9+
### Bug Fixes
10+
- [#45](https://github.com/netbox-community/ansible_modules/issues/45) - Allow integers to be passed in via Jinja string to properly convert back to integer
11+
- [#158](https://github.com/netbox-community/ansible_modules/issues/158) - Removed choices within argument_spec for `mode` in `netbox_device_interface` and `netbox_vm_interface`. This allows the API to return any error if an invalid choice is selected for `mode`.
12+
- [#151](https://github.com/netbox-community/ansible_modules/issues/151) - Fixed dict iteration error for Python3.8
13+
- [#167](https://github.com/netbox-community/ansible_modules/issues/167) - Updated rack width choices for latest NetBox version
14+
- [#166](https://github.com/netbox-community/ansible_modules/issues/166) - Properly find LAG if defined just as a string rather than dictionary with the relevant data
15+
- [#174](https://github.com/netbox-community/ansible_modules/issues/174) - Allow services to be created with a different protocol
16+
17+
### Enhancements
18+
19+
- [#136](https://github.com/netbox-community/ansible_modules/pull/136) - Added `raw_output` option to netbox lookup plugin to return the exact output from the API with no doctoring
20+
- [#105](https://github.com/netbox-community/ansible_modules/issues/105) - Added `update_vc_child` option to netbox_device_interface to allow child interfaces to be updated if device specified is the master device within the virtual chassis
21+
- [#143](https://github.com/netbox-community/ansible_modules/pull/143) - Added `services` option to the netbox inventory to allow users to toggle whether services are included or not
22+
- [#138](https://github.com/netbox-community/ansible_modules/issues/138) - Added `group_names_raw` option to the netbox inventory to allow users have the group names be the slug rather than prepending the group name with the type
23+
- [#170](https://github.com/netbox-community/ansible_modules/issues/170) - Add `custom_fields` to `netbox_virtual_machine`
24+
- [#140](https://github.com/netbox-community/ansible_modules/issues/140) - Add `device_query_filters` and `vm_query_filters` to allow users to specify query filters for the specific type
25+
- [#183](https://github.com/netbox-community/ansible_modules/issues/183) - Remove token from being required for nb_lookup as some NetBox setups don't require authorization for GET functions
26+
- [#177](https://github.com/netbox-community/ansible_modules/issues/177) - Remove token from being required for nb_inventory as some NetBox setups don't require authorization for GET functions
27+
28+
### Ansible Core Related Changes
29+
30+
- [#124](https://github.com/netbox-community/ansible_modules/issues/124) - Added netbox_interface from Ansible core, but the module is deprecated in favor of netbox_device_interface and netbox_vm_interface
31+
32+
### Thanks for the following contributors!
33+
34+
- @DouglasHeriot
35+
- @toerb
36+
- @malbertus
37+
- @ThomasADavis
38+
- @Duck-dave
39+
- @Jamboon-beurre
40+
- @smolz
41+
- @Yannis100
42+
- @jqueuniet
43+
- @ignatenkobrain
44+
- @pugnacity
45+
- @martink2
46+
347
## v0.1.10
448

549
### Bug Fixes

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: 0.1.10
12+
version: 0.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

0 commit comments

Comments
 (0)