mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-07-29 08:01:31 -07:00
fix: upgrade ansible version, address test and lint errors
This commit is contained in:
parent
c15b47250d
commit
08ada5354d
216 changed files with 4394 additions and 4262 deletions
File diff suppressed because it is too large
Load diff
|
@ -1,57 +1,52 @@
|
|||
ancestor: null
|
||||
---
|
||||
ancestor:
|
||||
releases:
|
||||
1.1.0:
|
||||
changes:
|
||||
bugfixes:
|
||||
- Disk has been fixed to send the sourceSnapshot parameter.
|
||||
- gcp_cloudtasks_queue - was not functional before, and is now functional.
|
||||
- gcp_compute_* - these resources use the correct selflink (www.googleapis.com)
|
||||
as the domain, no longer erroneously reporting changes after an execution.
|
||||
- gcp_compute_backend_service - no longer erroneously reports changes after
|
||||
an execution for ``capacity_scaler``.
|
||||
- gcp_container_cluster - support GKE clusters greater than 1.19+, which cannot
|
||||
use basic-auth.
|
||||
- gcp_crypto_key - skip_initial_version_creation defaults to the correct value.
|
||||
- gcp_iam_role - now properly undeletes and recognizes soft deleted roles as
|
||||
absent.
|
||||
- gcp_iam_role - update of a role is functional (GitHub
|
||||
- gcp_spanner_database - recognize a non-existent resource as absent.
|
||||
- gcp_storage_object - fix for correct version of dependency requirement.
|
||||
- Disk has been fixed to send the sourceSnapshot parameter.
|
||||
- gcp_cloudtasks_queue - was not functional before, and is now functional.
|
||||
- gcp_compute_* - these resources use the correct selflink (www.googleapis.com) as the domain, no longer erroneously reporting changes after an execution.
|
||||
- gcp_compute_backend_service - no longer erroneously reports changes after an execution for ``capacity_scaler``.
|
||||
- gcp_container_cluster - support GKE clusters greater than 1.19+, which cannot use basic-auth.
|
||||
- gcp_crypto_key - skip_initial_version_creation defaults to the correct value.
|
||||
- gcp_iam_role - now properly undeletes and recognizes soft deleted roles as absent.
|
||||
- gcp_iam_role - update of a role is functional (GitHub
|
||||
- gcp_spanner_database - recognize a non-existent resource as absent.
|
||||
- gcp_storage_object - fix for correct version of dependency requirement.
|
||||
minor_changes:
|
||||
- GCE inventory plugin - a new option ``name_suffix``, to add a suffix to the
|
||||
name parameter.
|
||||
- GCE inventory plugin - a new option ``name_suffix``, to add a suffix to the name parameter.
|
||||
fragments:
|
||||
- 0001_disk.yml
|
||||
- bugfixes.yaml
|
||||
release_date: '2022-12-16'
|
||||
- "0001_disk.yml"
|
||||
- bugfixes.yaml
|
||||
release_date: "2022-12-16"
|
||||
1.1.1:
|
||||
changes:
|
||||
bugfixes:
|
||||
- fix collection to work with Python 2.7
|
||||
- fix collection to work with Python 2.7
|
||||
fragments:
|
||||
- fix-2.7.yml
|
||||
release_date: '2022-12-16'
|
||||
- fix-2.7.yml
|
||||
release_date: "2022-12-16"
|
||||
1.1.2:
|
||||
changes:
|
||||
bugfixes:
|
||||
- fix `gcp_compute` no longer being a valid name of the inventory plugin
|
||||
- fix `gcp_compute` no longer being a valid name of the inventory plugin
|
||||
fragments:
|
||||
- fix-inventory-plugin.yml
|
||||
release_date: '2022-12-21'
|
||||
- fix-inventory-plugin.yml
|
||||
release_date: "2022-12-21"
|
||||
1.1.3:
|
||||
changes:
|
||||
bugfixes:
|
||||
- 'gcp_compute_instance_info: fix incorrect documentation for filter which incorrectly
|
||||
pointed to the gcloud filter logic rather than the API (fixes #549)'
|
||||
- "gcp_compute_instance_info: fix incorrect documentation for filter which incorrectly pointed to the gcloud filter logic rather than the API (fixes #549)"
|
||||
fragments:
|
||||
- gce-changelog.yaml
|
||||
release_date: '2023-03-04'
|
||||
- gce-changelog.yaml
|
||||
release_date: "2023-03-04"
|
||||
1.2.0:
|
||||
changes:
|
||||
bugfixes:
|
||||
- Use default service account if `service_account_email` is unset.
|
||||
- Use default service account if `service_account_email` is unset.
|
||||
minor_changes:
|
||||
- Add DataPlane V2 Support.
|
||||
- Add auth support for GCP access tokens (#574).
|
||||
- Add support for ip_allocation_policy->stack_type.
|
||||
release_date: '2023-07-07'
|
||||
- Add DataPlane V2 Support.
|
||||
- Add auth support for GCP access tokens (#574).
|
||||
- Add support for ip_allocation_policy->stack_type.
|
||||
release_date: "2023-07-07"
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
---
|
||||
changelog_filename_template: ../CHANGELOG.rst
|
||||
changelog_filename_version_depth: 0
|
||||
changes_file: changelog.yaml
|
||||
|
@ -11,22 +12,22 @@ prelude_section_name: release_summary
|
|||
prelude_section_title: Release Summary
|
||||
sanitize_changelog: true
|
||||
sections:
|
||||
- - major_changes
|
||||
- Major Changes
|
||||
- - minor_changes
|
||||
- Minor Changes
|
||||
- - breaking_changes
|
||||
- Breaking Changes / Porting Guide
|
||||
- - deprecated_features
|
||||
- Deprecated Features
|
||||
- - removed_features
|
||||
- Removed Features (previously deprecated)
|
||||
- - security_fixes
|
||||
- Security Fixes
|
||||
- - bugfixes
|
||||
- Bugfixes
|
||||
- - known_issues
|
||||
- Known Issues
|
||||
- - major_changes
|
||||
- Major Changes
|
||||
- - minor_changes
|
||||
- Minor Changes
|
||||
- - breaking_changes
|
||||
- Breaking Changes / Porting Guide
|
||||
- - deprecated_features
|
||||
- Deprecated Features
|
||||
- - removed_features
|
||||
- Removed Features (previously deprecated)
|
||||
- - security_fixes
|
||||
- Security Fixes
|
||||
- - bugfixes
|
||||
- Bugfixes
|
||||
- - known_issues
|
||||
- Known Issues
|
||||
title: Google.Cloud
|
||||
trivial_section_name: trivial
|
||||
use_fqcn: true
|
||||
|
|
|
@ -1,2 +1,3 @@
|
|||
---
|
||||
minor_changes:
|
||||
- ansible-test - add support for GCP application default credentials (https://github.com/ansible-collections/google.cloud/issues/359).
|
||||
- ansible-test - add support for GCP application default credentials (https://github.com/ansible-collections/google.cloud/issues/359).
|
||||
|
|
4
changelogs/fragments/gcp_serviceusage_service.yml
Normal file
4
changelogs/fragments/gcp_serviceusage_service.yml
Normal file
|
@ -0,0 +1,4 @@
|
|||
---
|
||||
minor_changes:
|
||||
- gcp_serviceusage_service - added backoff when checking for operation completion.
|
||||
- gcp_serviceusage_service - use alloyb API for the integration test as spanner conflicts with other tests
|
3
changelogs/fragments/gcp_sql_ssl_cert.yml
Normal file
3
changelogs/fragments/gcp_sql_ssl_cert.yml
Normal file
|
@ -0,0 +1,3 @@
|
|||
---
|
||||
minor_changes:
|
||||
- gcp_sql_ssl_cert - made sha1_fingerprint optional, which enables resource creation
|
3
changelogs/fragments/gcp_storage_default_object_acl.yml
Normal file
3
changelogs/fragments/gcp_storage_default_object_acl.yml
Normal file
|
@ -0,0 +1,3 @@
|
|||
---
|
||||
minor_changes:
|
||||
- gcp_storage_default_object_acl - removed non-existent fields; the resource is not usable.
|
6
changelogs/fragments/upgrade-versions.yml
Normal file
6
changelogs/fragments/upgrade-versions.yml
Normal file
|
@ -0,0 +1,6 @@
|
|||
---
|
||||
minor_changes:
|
||||
- ansible - 2.14.0 is now the minimum version supported
|
||||
- anisble-test - integration tests are now run against 2.14.0 and 2.15.0
|
||||
- ansible-lint - upgraded to 6.22
|
||||
- ansible-lint - fixed over a thousand reported errors
|
Loading…
Add table
Add a link
Reference in a new issue