Skip to content

Commit fb85769

Browse files
Merge branch 'main' into dependabot/github_actions/ossf/scorecard-action-2.4.0
2 parents 362e401 + ec41eba commit fb85769

2,410 files changed

Lines changed: 81169 additions & 32852 deletions

File tree

Some content is hidden

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

.github/workflows/ah_token_refresh.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
workflow_dispatch:
88
jobs:
99
refresh:
10-
uses: ansible/team-devtools/.github/workflows/ah_token_refresh.yml@main
10+
uses: ansible/ansible-content-actions/.github/workflows/refresh_ah_token.yaml@main
1111
with:
1212
environment: release
1313
secrets:

.github/workflows/test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ jobs:
6161
ansible:
6262
- stable-2.15
6363
- stable-2.16
64+
- stable-2.17
6465
python-version:
6566
- "3.11"
6667
steps:

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [2.9.2] - 2025-06-25
11+
12+
### Fixed
13+
14+
- Refactored logic to handle systemfile updation
15+
16+
## [2.9.1] - 2025-05-26
17+
18+
### Fixed
19+
20+
- Supported enable and disable states to service group member bindings
21+
- Corrected datatype issues to resolve idempotency errors
22+
- Refactored README to align to Red Hat guidelines
23+
24+
## [2.9.0] - 2025-05-13
25+
26+
### Added
27+
28+
- Supported operation `apply`
29+
- Supported operation `rename`
30+
- Supported operation `install`([#487])
31+
32+
### Fixed
33+
34+
- Allowing system file to update contents([#496])
35+
36+
## [2.8.0] - 2025-02-18
37+
38+
### Added
39+
40+
- Supported enable/disable for GSLB service operations([#452])
41+
42+
### Fixed
43+
44+
- server module idempotency issue in 2.7.0([#485])
45+
- Handling non-updatable attributes while updating a resource([#486])
46+
47+
## [2.7.0] - 2025-01-02
48+
49+
### Added
50+
51+
- Supported more modules
52+
- Added more examples
53+
54+
## [2.6.2] - 2024-10-18
55+
56+
### Fixed
57+
58+
- Ensure to_be_added_bindprimary_keys targets only the correct binding members ([#462])
59+
1060
## [2.6.1] - 2024-04-29
1161

1262
### Fixed
@@ -127,8 +177,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
127177
### Added
128178

129179
- Initial Release
130-
131-
[unreleased]: https://github.com/netscaler/ansible-collection-netscaleradc/compare/2.6.1...HEAD
180+
[unreleased]: https://github.com/netscaler/ansible-collection-netscaleradc/compare/2.9.2...HEAD
181+
[2.9.2]: https://github.com/netscaler/ansible-collection-netscaleradc/compare/2.9.1...2.9.2
182+
[2.9.1]: https://github.com/netscaler/ansible-collection-netscaleradc/compare/2.9.0...2.9.1
183+
[2.9.0]: https://github.com/netscaler/ansible-collection-netscaleradc/compare/2.8.0...2.9.0
184+
[2.8.0]: https://github.com/netscaler/ansible-collection-netscaleradc/compare/2.7.0...2.8.0
185+
[2.7.0]: https://github.com/netscaler/ansible-collection-netscaleradc/compare/2.6.2...2.7.0
186+
[2.6.2]: https://github.com/netscaler/ansible-collection-netscaleradc/compare/2.6.1...2.6.2
132187
[2.6.1]: https://github.com/netscaler/ansible-collection-netscaleradc/compare/2.6.0...2.6.1
133188
[2.6.0]: https://github.com/netscaler/ansible-collection-netscaleradc/compare/2.5.2...2.6.0
134189
[2.5.2]: https://github.com/netscaler/ansible-collection-netscaleradc/compare/2.5.1...2.5.2
@@ -169,3 +224,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
169224
[#367]: https://github.com/netscaler/ansible-collection-netscaleradc/issues/367
170225
[#377]: https://github.com/netscaler/ansible-collection-netscaleradc/issues/377
171226
[#400]: https://github.com/netscaler/ansible-collection-netscaleradc/issues/400
227+
[#462]: https://github.com/netscaler/ansible-collection-netscaleradc/issues/462

LICENSE

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
Copyright (c) 2020 Citrix Systems, Inc.
1+
MIT License
2+
3+
Copyright (c) 2025 Cloud Software Group, Inc.
24

35
Permission is hereby granted, free of charge, to any person obtaining a
46
copy of this software and associated documentation files (the "Software"),

Makefile

Lines changed: 1 addition & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,18 @@
11
fmt:
22
autoflake plugins/modules/*.py
33
autoflake plugins/module_utils/*.py
4-
autoflake tools/module_generator.py
54
autoflake --recursive tests/
65

76
black plugins/modules/*.py
87
black plugins/module_utils/*.py
9-
black tools/module_generator.py
108
black tests/
119

1210
isort plugins/modules/*.py
1311
isort plugins/module_utils/*.py
14-
isort tools/module_generator.py
1512
isort tests/
1613

1714
yamlfmt .
1815

19-
fmt_tools:
20-
# ignore if file not found
21-
-autoflake tools/generated_modules/*.py
22-
-autoflake tools/module_generator.py
23-
-autoflake tools/nitro_resource_map.py
24-
25-
-black tools/generated_modules/*.py
26-
-black tools/module_generator.py
27-
-black tools/nitro_resource_map.py
28-
29-
-isort tools/generated_modules/*.py
30-
-isort tools/module_generator.py
31-
-isort tools/nitro_resource_map.py
32-
33-
generate_modules:
34-
python3 tools/module_generator.py
35-
3616
install:
3717
ansible-galaxy collection install . --force
3818

@@ -59,7 +39,7 @@ build:
5939
ansible-galaxy collection build --force
6040

6141
galaxy_importer: build
62-
python3 -m galaxy_importer.main netscaler-adc-2.2.0.tar.gz
42+
python3 -m galaxy_importer.main netscaler-adc-2.9.1.tar.gz
6343

6444
# build_docs:
6545
# rm -rf _built_docs

0 commit comments

Comments
 (0)