Skip to content

Commit 47383cd

Browse files
Merge pull request #562 from netscaler/v2.11.0
new version 2.11.0
2 parents 1ca04de + fc3dbc2 commit 47383cd

File tree

4 files changed

+22
-4
lines changed

4 files changed

+22
-4
lines changed

.github/workflows/lint.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,14 @@ jobs:
2727
steps:
2828
# Important: This sets up your GITHUB_WORKSPACE environment variable
2929
- uses: actions/checkout@v4
30+
- name: Set up Python 3.11
31+
uses: actions/setup-python@v6
32+
with:
33+
python-version: 3.11
34+
- name: Install ansible-lint
35+
run: python -m pip install ansible-lint
3036
- name: Run ansible-lint
31-
uses: ansible/ansible-lint@main
37+
run: ansible-lint
3238
- name: Upload SARIF file
3339
uses: github/codeql-action/upload-sarif@v3
3440
with:

CHANGELOG.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [2.11.0] - 2025-10-31
11+
12+
# Added
13+
14+
- Supporting dynamicRouting Protocols in netscaler.adc collections
15+
16+
# Fixed
17+
18+
- corrected sslhsmkey behaviour in collection
19+
- correcting entries in runtime.yml to include new supported resources in module_defaults
20+
1021
# Fixed
1122

1223
- Resolved error with `ssh_netscaler_adc` connection plugin with newer versions of ansible
@@ -201,7 +212,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
201212

202213
- Initial Release
203214

204-
[unreleased]: https://github.com/netscaler/ansible-collection-netscaleradc/compare/2.10.1...HEAD
215+
[unreleased]: https://github.com/netscaler/ansible-collection-netscaleradc/compare/2.11.0...HEAD
216+
[2.11.0]: https://github.com/netscaler/ansible-collection-netscaleradc/compare/2.10.1...2.11.0
205217
[2.10.1]: https://github.com/netscaler/ansible-collection-netscaleradc/compare/2.10.0...2.10.1
206218
[2.10.0]: https://github.com/netscaler/ansible-collection-netscaleradc/compare/2.9.2...2.10.0
207219
[2.9.2]: https://github.com/netscaler/ansible-collection-netscaleradc/compare/2.9.1...2.9.2

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ build:
4242
ansible-galaxy collection build --force
4343

4444
galaxy_importer: build
45-
python3 -m galaxy_importer.main netscaler-adc-2.10.1.tar.gz
45+
python3 -m galaxy_importer.main netscaler-adc-2.11.0.tar.gz
4646

4747
# build_docs:
4848
# rm -rf _built_docs

galaxy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ namespace: netscaler
77
# The name of the collection. Has the same character restrictions as 'namespace'
88
name: adc
99
# The version of the collection. Must be compatible with semantic versioning
10-
version: 2.10.1
10+
version: 2.11.0
1111
# The path to the Markdown (.md) readme file. This path is relative to the root of the collection
1212
readme: README.md
1313
# A list of the collection's content authors. Can be just the name or in the format 'Full Name <email> (url)

0 commit comments

Comments
 (0)