mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-04-06 10:50:28 -07:00
Merge pull request #665 from ansible-collections/release-1.5.0
Bump version to 1.5.0
This commit is contained in:
commit
0ef324e88e
98 changed files with 272 additions and 240 deletions
|
@ -1,10 +1,5 @@
|
||||||
---
|
---
|
||||||
profile: production
|
profile: production
|
||||||
parseable: true
|
parseable: true
|
||||||
skip_list:
|
|
||||||
- ANSIBLE0010
|
|
||||||
use_default_rules: true
|
use_default_rules: true
|
||||||
verbosity: 1
|
verbosity: 1
|
||||||
exclude_paths:
|
|
||||||
# Ignore submodule https://github.com/GoogleCloudPlatform/google-cloud-ops-agents-ansible
|
|
||||||
- roles/google_cloud_ops_agents/
|
|
||||||
|
|
7
.github/workflows/ansible-test.yml
vendored
7
.github/workflows/ansible-test.yml
vendored
|
@ -31,12 +31,11 @@ jobs:
|
||||||
- name: Install ansible-base (${{ matrix.ansible_version }})
|
- name: Install ansible-base (${{ matrix.ansible_version }})
|
||||||
run: pip install https://github.com/ansible/ansible/archive/${{ matrix.ansible_version }}.tar.gz --disable-pip-version-check
|
run: pip install https://github.com/ansible/ansible/archive/${{ matrix.ansible_version }}.tar.gz --disable-pip-version-check
|
||||||
- name: Run ansible-test sanity
|
- name: Run ansible-test sanity
|
||||||
# validate-modules cannot be turned on until #498 is resolved.
|
run: ansible-test sanity -v --color
|
||||||
run: ansible-test sanity -v --color --skip validate-modules
|
|
||||||
- name: Install ansible-lint
|
- name: Install ansible-lint
|
||||||
run: pip install ansible-lint==24.7.0
|
run: pip install ansible-lint
|
||||||
- name: Run ansible-lint
|
- name: Run ansible-lint
|
||||||
run: ansible-lint --exclude roles/google_cloud_ops_agents/
|
run: ansible-lint
|
||||||
unit:
|
unit:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
defaults:
|
defaults:
|
||||||
|
|
3
.gitmodules
vendored
3
.gitmodules
vendored
|
@ -1,3 +0,0 @@
|
||||||
[submodule "roles/google_cloud_ops_agents"]
|
|
||||||
path = roles/google_cloud_ops_agents
|
|
||||||
url = https://github.com/GoogleCloudPlatform/google-cloud-ops-agents-ansible.git
|
|
|
@ -15,7 +15,8 @@ rules:
|
||||||
commas:
|
commas:
|
||||||
max-spaces-after: -1
|
max-spaces-after: -1
|
||||||
level: error
|
level: error
|
||||||
comments: disable
|
comments:
|
||||||
|
min-spaces-from-content: 1
|
||||||
comments-indentation: disable
|
comments-indentation: disable
|
||||||
document-start: disable
|
document-start: disable
|
||||||
empty-lines:
|
empty-lines:
|
||||||
|
@ -29,5 +30,8 @@ rules:
|
||||||
new-line-at-end-of-file: disable
|
new-line-at-end-of-file: disable
|
||||||
new-lines:
|
new-lines:
|
||||||
type: unix
|
type: unix
|
||||||
|
octal-values:
|
||||||
|
forbid-implicit-octal: true
|
||||||
|
forbid-explicit-octal: true
|
||||||
trailing-spaces: disable
|
trailing-spaces: disable
|
||||||
truthy: disable
|
truthy: disable
|
||||||
|
|
|
@ -4,6 +4,29 @@ Google.Cloud Release Notes
|
||||||
|
|
||||||
.. contents:: Topics
|
.. contents:: Topics
|
||||||
|
|
||||||
|
v1.5.0
|
||||||
|
======
|
||||||
|
|
||||||
|
Major Changes
|
||||||
|
-------------
|
||||||
|
|
||||||
|
- google_cloud_ops_agents - role submodule removed because it prevents the collection from passing sanity and lint tests
|
||||||
|
|
||||||
|
Minor Changes
|
||||||
|
-------------
|
||||||
|
|
||||||
|
- gcp_pubsub_subscription - allows to create GCS subscription
|
||||||
|
|
||||||
|
Bugfixes
|
||||||
|
--------
|
||||||
|
|
||||||
|
- ansible - 2.17 is now the minimum version supported
|
||||||
|
- ansible - 3.11 is now the minimum Python version
|
||||||
|
- ansible-test - fixed sanity tests
|
||||||
|
- ansible-test - integration tests are now run against 2.17 and 2.18
|
||||||
|
- gcp_bigquery_table - properly handle BigQuery table clustering fields
|
||||||
|
- gcp_pubsub_subscription - fixed improper subscription uprade PATCH request
|
||||||
|
|
||||||
v1.4.1
|
v1.4.1
|
||||||
======
|
======
|
||||||
|
|
||||||
|
|
|
@ -100,3 +100,24 @@ releases:
|
||||||
fragments:
|
fragments:
|
||||||
- release-1-4-1.yml
|
- release-1-4-1.yml
|
||||||
release_date: '2024-08-22'
|
release_date: '2024-08-22'
|
||||||
|
1.5.0:
|
||||||
|
changes:
|
||||||
|
bugfixes:
|
||||||
|
- ansible - 2.17 is now the minimum version supported
|
||||||
|
- ansible - 3.11 is now the minimum Python version
|
||||||
|
- ansible-test - fixed sanity tests
|
||||||
|
- ansible-test - integration tests are now run against 2.17 and 2.18
|
||||||
|
- gcp_bigquery_table - properly handle BigQuery table clustering fields
|
||||||
|
- gcp_pubsub_subscription - fixed improper subscription uprade PATCH request
|
||||||
|
major_changes:
|
||||||
|
- google_cloud_ops_agents - role submodule removed because it prevents the collection
|
||||||
|
from passing sanity and lint tests
|
||||||
|
minor_changes:
|
||||||
|
- gcp_pubsub_subscription - allows to create GCS subscription
|
||||||
|
fragments:
|
||||||
|
- fix-bigquery-table-create-clustering.yml
|
||||||
|
- gcp_pubsub_subscription_bugfix.yaml
|
||||||
|
- gcp_pubsub_subscription_gcs_feature.yaml
|
||||||
|
- remove-google_cloud_ops_agents-role.yml
|
||||||
|
- upgrade_anisble.yml
|
||||||
|
release_date: '2025-01-14'
|
||||||
|
|
|
@ -1,2 +0,0 @@
|
||||||
bugfixes:
|
|
||||||
- gcp_bigquery_table - properly handle BigQuery table clustering fields
|
|
|
@ -1,2 +0,0 @@
|
||||||
bugfixes:
|
|
||||||
- gcp_pubsub_subscription - improper subscription uprade PATCH request
|
|
|
@ -1,2 +0,0 @@
|
||||||
features:
|
|
||||||
- gcp_pubsub_subscription - allows to create GCS subscription
|
|
|
@ -10,7 +10,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.4.1
|
version: 1.5.0
|
||||||
|
|
||||||
# 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
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
Subproject commit 99adb1edafb02c3573eaf680266205295ba7f159
|
|
|
@ -12,7 +12,7 @@
|
||||||
ansible.builtin.copy:
|
ansible.builtin.copy:
|
||||||
content: Ansible GCS test file
|
content: Ansible GCS test file
|
||||||
dest: "{{ upload_temp.path }}"
|
dest: "{{ upload_temp.path }}"
|
||||||
mode: 0644
|
mode: "0644"
|
||||||
- name: Create a bucket
|
- name: Create a bucket
|
||||||
google.cloud.gcp_storage_bucket:
|
google.cloud.gcp_storage_bucket:
|
||||||
name: "{{ resource_name }}"
|
name: "{{ resource_name }}"
|
||||||
|
|
Loading…
Add table
Reference in a new issue