Skip to content

Commit c859be0

Browse files
authored
prepare release 1.5.0 (#75)
1 parent 522b41e commit c859be0

20 files changed

+336
-21
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[bumpversion]
22
commit = False
33
tag = False
4-
current_version = 1.4.0
4+
current_version = 1.5.0
55

66
[bumpversion:file:galaxy.yml]

CHANGELOG.rst

+15
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,21 @@ codeaffen.phpipam Release Notes
55
.. contents:: Topics
66

77

8+
v1.5.0
9+
======
10+
11+
Bugfixes
12+
--------
13+
14+
- fix `ModuleNotFoundError` while using the collection with ansible >= version 5
15+
16+
Minor Changes
17+
-------------
18+
19+
- fix \#68 - add automatic testing facility for all modules
20+
- fix \#69 - add facility to setup local phpipam environment
21+
- fix \#70 - provide environment variable support for connection data
22+
823
v1.4.0
924
======
1025

changelogs/changelog.yaml

+16-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,9 @@ releases:
8585
bugfixes:
8686
- fix \#57 - tag lookups failed when specified in an `address` task
8787
- fix \#61 - Device type examples
88-
- with [AHH538](https://issues.redhat.com/browse/AAH-538) `requires_ansible` is mandatory in `meta/runtime.yml`. So we add the minimum version for our collection here.
88+
- with [AHH538](https://issues.redhat.com/browse/AAH-538) `requires_ansible`
89+
is mandatory in `meta/runtime.yml`. So we add the minimum version for our
90+
collection here.
8991
minor_changes:
9092
- Minor formatting and spelling fixes.
9193
- Switch sphinx from recommonmark to myst_parser.
@@ -105,3 +107,16 @@ releases:
105107
name: tag
106108
namespace: ''
107109
release_date: '2021-12-16'
110+
1.5.0:
111+
changes:
112+
bugfixes:
113+
- fix `ModuleNotFoundError` while using the collection with ansible >= version 5
114+
minor_changes:
115+
- fix \#68 - add automatic testing facility for all modules
116+
- fix \#69 - add facility to setup local phpipam environment
117+
- fix \#70 - provide environment variable support for connection data
118+
fragments:
119+
- add_automatic_testing_facility.yml
120+
- provide_local_phpiapm_environment.yml
121+
- support_command_line_parameters.yml
122+
release_date: '2022-03-07'

changelogs/fragments/add_automatic_testing_facility.yml

-2
This file was deleted.

changelogs/fragments/provide_local_phpiapm_environment.yml

-2
This file was deleted.

changelogs/fragments/support_command_line_parameters.yml

-2
This file was deleted.

docs/plugins/address_module.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ codeaffen.phpipam.address -- Manage addresses
3030
.. Collection note
3131
3232
.. note::
33-
This plugin is part of the `codeaffen.phpipam collection <https://galaxy.ansible.com/codeaffen/phpipam>`_ (version 1.4.0).
33+
This plugin is part of the `codeaffen.phpipam collection <https://galaxy.ansible.com/codeaffen/phpipam>`_ (version 1.5.0).
3434

3535
You might already have this collection installed if you are using the ``ansible`` package.
3636
It is not included in ``ansible-core``.

docs/plugins/device_module.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ codeaffen.phpipam.device -- Manage devices
3030
.. Collection note
3131
3232
.. note::
33-
This plugin is part of the `codeaffen.phpipam collection <https://galaxy.ansible.com/codeaffen/phpipam>`_ (version 1.4.0).
33+
This plugin is part of the `codeaffen.phpipam collection <https://galaxy.ansible.com/codeaffen/phpipam>`_ (version 1.5.0).
3434

3535
You might already have this collection installed if you are using the ``ansible`` package.
3636
It is not included in ``ansible-core``.

docs/plugins/device_type_module.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ codeaffen.phpipam.device_type -- Manage device types
3030
.. Collection note
3131
3232
.. note::
33-
This plugin is part of the `codeaffen.phpipam collection <https://galaxy.ansible.com/codeaffen/phpipam>`_ (version 1.4.0).
33+
This plugin is part of the `codeaffen.phpipam collection <https://galaxy.ansible.com/codeaffen/phpipam>`_ (version 1.5.0).
3434

3535
You might already have this collection installed if you are using the ``ansible`` package.
3636
It is not included in ``ansible-core``.

docs/plugins/domain_module.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ codeaffen.phpipam.domain -- Manage L2 routing domains
3030
.. Collection note
3131
3232
.. note::
33-
This plugin is part of the `codeaffen.phpipam collection <https://galaxy.ansible.com/codeaffen/phpipam>`_ (version 1.4.0).
33+
This plugin is part of the `codeaffen.phpipam collection <https://galaxy.ansible.com/codeaffen/phpipam>`_ (version 1.5.0).
3434

3535
You might already have this collection installed if you are using the ``ansible`` package.
3636
It is not included in ``ansible-core``.

docs/plugins/index.rst

+7-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Codeaffen.Phpipam
55
=================
66

7-
Collection version 1.4.0
7+
Collection version 1.5.0
88

99
.. toctree::
1010
:maxdepth: 1
@@ -16,6 +16,11 @@ Plugin Index
1616
These are the plugins in the codeaffen.phpipam collection
1717

1818

19+
Lookup Plugins
20+
~~~~~~~~~~~~~~
21+
22+
* :ref:`subnet <ansible_collections.codeaffen.phpipam.subnet_lookup>` -- lookup for subnet information
23+
1924
Modules
2025
~~~~~~~
2126

@@ -41,6 +46,7 @@ Modules
4146
:maxdepth: 1
4247
:hidden:
4348

49+
subnet_lookup
4450
address_module
4551
device_module
4652
device_type_module

docs/plugins/location_module.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ codeaffen.phpipam.location -- Manage locations
3030
.. Collection note
3131
3232
.. note::
33-
This plugin is part of the `codeaffen.phpipam collection <https://galaxy.ansible.com/codeaffen/phpipam>`_ (version 1.4.0).
33+
This plugin is part of the `codeaffen.phpipam collection <https://galaxy.ansible.com/codeaffen/phpipam>`_ (version 1.5.0).
3434

3535
You might already have this collection installed if you are using the ``ansible`` package.
3636
It is not included in ``ansible-core``.

docs/plugins/nameserver_module.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ codeaffen.phpipam.nameserver -- Manage nameservers
3030
.. Collection note
3131
3232
.. note::
33-
This plugin is part of the `codeaffen.phpipam collection <https://galaxy.ansible.com/codeaffen/phpipam>`_ (version 1.4.0).
33+
This plugin is part of the `codeaffen.phpipam collection <https://galaxy.ansible.com/codeaffen/phpipam>`_ (version 1.5.0).
3434

3535
You might already have this collection installed if you are using the ``ansible`` package.
3636
It is not included in ``ansible-core``.

docs/plugins/section_module.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ codeaffen.phpipam.section -- Manage sections
3030
.. Collection note
3131
3232
.. note::
33-
This plugin is part of the `codeaffen.phpipam collection <https://galaxy.ansible.com/codeaffen/phpipam>`_ (version 1.4.0).
33+
This plugin is part of the `codeaffen.phpipam collection <https://galaxy.ansible.com/codeaffen/phpipam>`_ (version 1.5.0).
3434

3535
You might already have this collection installed if you are using the ``ansible`` package.
3636
It is not included in ``ansible-core``.

0 commit comments

Comments
 (0)