Skip to content

Commit 41ff5d0

Browse files
authored
Merge branch 'ansible-collections:main' into vmware_datastore_cluster
2 parents a3fba07 + aacf239 commit 41ff5d0

File tree

390 files changed

+2907
-76711
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

390 files changed

+2907
-76711
lines changed

.github/workflows/ansible-test.yml

+13-6
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ on:
2020
branches:
2121
- main
2222
- stable-2.x
23+
- stable-3.x
2324
pull_request:
2425
# Run CI once per day (at 07:12 UTC)
2526
# This ensures that even if there haven't been commits that we are still
@@ -61,9 +62,10 @@ jobs:
6162
# - stable-2.10 # Only if your collection supports ansible-base 2.10
6263
# - stable-2.11 # Only if your collection supports ansible-core 2.11
6364
# - stable-2.12
64-
- stable-2.13
65-
- stable-2.14
65+
# - stable-2.13
66+
# - stable-2.14
6667
- stable-2.15
68+
- stable-2.16
6769
# - devel
6870
- milestone
6971
# Ansible-test on various stable branches does not yet work well with cgroups v2.
@@ -94,7 +96,9 @@ jobs:
9496
# OPTIONAL If set to true, will test only against changed files,
9597
# which should improve CI performance. See limitations on
9698
# https://github.com/ansible-community/ansible-test-gh-action#pull-request-change-detection
97-
pull-request-change-detection: true
99+
pull-request-change-detection: false
100+
# Disable Codecov
101+
coverage: never
98102

99103
###
100104
# Unit tests (OPTIONAL)
@@ -123,9 +127,10 @@ jobs:
123127
# - stable-2.10 # Only if your collection supports ansible-base 2.10
124128
# - stable-2.11 # Only if your collection supports ansible-core 2.11
125129
# - stable-2.12
126-
- stable-2.13
127-
- stable-2.14
130+
# - stable-2.13
131+
# - stable-2.14
128132
- stable-2.15
133+
- stable-2.16
129134
# - devel
130135
- milestone
131136

@@ -147,7 +152,9 @@ jobs:
147152
# OPTIONAL If set to true, will test only against changed files,
148153
# which should improve CI performance. See limitations on
149154
# https://github.com/ansible-community/ansible-test-gh-action#pull-request-change-detection
150-
pull-request-change-detection: true
155+
pull-request-change-detection: false
156+
# Disable Codecov
157+
coverage: never
151158
152159
check: # This job does nothing and is only used for the branch protection
153160
# or multi-stage CI jobs, like making sure that all tests pass before

.github/workflows/extra-docs-linting.yml

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
branches:
66
- main
77
- stable-2.x
8+
- stable-3.x
89
pull_request:
910
# Run CI once per day (at 07:12 UTC)
1011
# This ensures that even if there haven't been commits that we are still testing against latest version of ansible-test for each ansible-base version

.github/workflows/import-galaxy.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
# Copyright (c) Ansible Project
3+
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
4+
# SPDX-License-Identifier: GPL-3.0-or-later
5+
6+
name: import-galaxy
7+
'on':
8+
# Run CI against all pushes (direct commits, also merged PRs) to main, and all Pull Requests
9+
push:
10+
branches:
11+
- main
12+
- stable-*
13+
pull_request:
14+
15+
jobs:
16+
import-galaxy:
17+
permissions:
18+
contents: read
19+
name: Test to import built collection artifact with Galaxy importer
20+
uses: ansible-community/github-action-test-galaxy-import/.github/workflows/test-galaxy-import.yml@main

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -389,3 +389,6 @@ changelogs/.plugin-cache.yaml
389389

390390
# End of https://www.gitignore.io/api/git,linux,pydev,python,windows,pycharm+all,jupyternotebook,vim,webstorm,emacs,dotenv
391391
tests/integration/cloud-config-vcenter.ini
392+
393+
# Visual Studio Code
394+
.vscode

CHANGELOG.rst

+20-1,080
Large diffs are not rendered by default.

README.md

+10-213
Large diffs are not rendered by default.

changelogs/changelog.yaml

+56-1,614
Large diffs are not rendered by default.

changelogs/config.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ changelog_filename_template: ../CHANGELOG.rst
22
changelog_filename_version_depth: 0
33
changes_file: changelog.yaml
44
changes_format: combined
5-
keep_fragments: true
5+
keep_fragments: false
66
mention_ancestor: true
77
new_plugins_after_name: removed_features
88
notesdir: fragments
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
minor_changes:
2+
- vmware_guest_tools_upgrade - Add parameter `installer_options` to pass command line options to the installer to modify the installation procedure for tools
3+
(https://github.com/ansible-collections/community.vmware/pull/1059).
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
minor_changes:
2+
- vmware_guest - Add IPv6 support for VM network interfaces (https://github.com/ansible-collections/community.vmware/pull/1937).
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
minor_changes:
2+
- vmware_guest_sendkey - Add Windows key (https://github.com/ansible-collections/community.vmware/issues/1959).
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
bugfixes:
2+
- Fix InsecureRequestWarning for modules based on the VmwareRestClient module util when setting ``validate_certs`` to ``False``
3+
(https://github.com/ansible-collections/community.vmware/pull/1969).

0 commit comments

Comments
 (0)