re-add gcp_compute as a valid plugin name

commit ccbde5f93e introduced
a backwards-incompatible change which made ansible-inventory
no longer recognize `gcp_compute` as a valid package name.

This would break users who are use `gcp_compute` (instead of the
new `google.cloud.gcp_compute`). Accepting both until at least
a major version change.

fixes #536.
This commit is contained in:
Yusuke Tsutsumi 2022-12-21 17:11:22 +00:00 committed by Yusuke Tsutsumi
parent 509e0207ff
commit 0ed49af7df
5 changed files with 18 additions and 3 deletions

View file

@ -5,6 +5,14 @@ Google.Cloud Release Notes
.. contents:: Topics .. contents:: Topics
v1.1.2
======
Bugfixes
--------
- fix `gcp_compute` no longer being a valid name of the inventory plugin
v1.1.1 v1.1.1
====== ======

View file

@ -870,4 +870,4 @@ plugins:
strategy: {} strategy: {}
test: {} test: {}
vars: {} vars: {}
version: 1.1.1 version: 1.1.2

View file

@ -31,3 +31,10 @@ releases:
fragments: fragments:
- fix-2.7.yml - fix-2.7.yml
release_date: '2022-12-16' release_date: '2022-12-16'
1.1.2:
changes:
bugfixes:
- fix `gcp_compute` no longer being a valid name of the inventory plugin
fragments:
- fix-inventory-plugin.yml
release_date: '2022-12-21'

View file

@ -9,7 +9,7 @@ namespace: google
name: cloud name: cloud
# The version of the collection. Must be compatible with semantic versioning # The version of the collection. Must be compatible with semantic versioning
version: "1.1.1" version: "1.1.2"
# The path to the Markdown (.md) readme file. This path is relative to the root of the collection # The path to the Markdown (.md) readme file. This path is relative to the root of the collection
readme: README.md readme: README.md

View file

@ -22,7 +22,7 @@ DOCUMENTATION = """
plugin: plugin:
description: token that ensures this is a source file for the 'gcp_compute' plugin. description: token that ensures this is a source file for the 'gcp_compute' plugin.
required: True required: True
choices: ['google.cloud.gcp_compute'] choices: ['google.cloud.gcp_compute', 'gcp_compute']
zones: zones:
description: A list of regions in which to describe GCE instances. description: A list of regions in which to describe GCE instances.
If none provided, it defaults to all zones available to a given project. If none provided, it defaults to all zones available to a given project.