diff --git a/.github/workflows/reuse.yml b/.github/workflows/reuse.yml index b552396..f6d5215 100644 --- a/.github/workflows/reuse.yml +++ b/.github/workflows/reuse.yml @@ -28,4 +28,4 @@ jobs: - uses: actions/checkout@v4 - name: REUSE Compliance Check - uses: fsfe/reuse-action@v4 + uses: fsfe/reuse-action@v5 diff --git a/changelogs/fragments/327-add-missing-ip-pool-fields.yml b/changelogs/fragments/327-add-missing-ip-pool-fields.yml new file mode 100644 index 0000000..54ee54d --- /dev/null +++ b/changelogs/fragments/327-add-missing-ip-pool-fields.yml @@ -0,0 +1,3 @@ +--- +bugfixes: + - api_info, api_modify - add missing fields ``comment``, ``next-pool`` to ``ip pool`` path (https://github.com/ansible-collections/community.routeros/pull/327). diff --git a/plugins/module_utils/_api_data.py b/plugins/module_utils/_api_data.py index a026d66..bf0d335 100644 --- a/plugins/module_utils/_api_data.py +++ b/plugins/module_utils/_api_data.py @@ -708,7 +708,9 @@ PATHS = { fully_understood=True, primary_keys=('name', ), fields={ + 'comment': KeyInfo(), 'name': KeyInfo(), + 'next-pool': KeyInfo(), 'ranges': KeyInfo(), }, ),