Skip to content

Commit 386f29e

Browse files
Merge branch 'devel' into breaking/rename-auth-options
2 parents 2ada561 + 980818b commit 386f29e

File tree

80 files changed

+616
-417
lines changed

Some content is hidden

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

80 files changed

+616
-417
lines changed

.github/labels-issues.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,12 @@ lookup:host:
8080
lookup:hosts:
8181
- 'Component Name: lookup_hosts'
8282

83+
lookup:ldap_connection:
84+
- 'Component Name: lookup_ldap_connection'
85+
86+
lookup:ldap_connections:
87+
- 'Component Name: lookup_ldap_connections'
88+
8389
lookup:rule:
8490
- 'Component Name: lookup_rule'
8591

.github/labels-prs.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,16 @@ lookup:hosts:
129129
- changed-files:
130130
- any-glob-to-any-file: 'plugins/modules/lookup/hosts.py'
131131

132+
lookup:ldap_connection:
133+
- any:
134+
- changed-files:
135+
- any-glob-to-any-file: 'plugins/modules/lookup/ldap_connection.py'
136+
137+
lookup:ldap_connections:
138+
- any:
139+
- changed-files:
140+
- any-glob-to-any-file: 'plugins/modules/lookup/ldap_connections.py'
141+
132142
lookup:rule:
133143
- any:
134144
- changed-files:

.github/workflows/codeql.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
matrix:
20-
language: [ 'python' ]
20+
language: [ 'python', 'actions' ]
2121
# Learn more about CodeQL language support at https://git.io/codeql-language-support
2222

2323
steps:

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ build/
88
tests/output
99
playbooks/vars/config.yml
1010
playbooks/test*.yml
11-
*venv/
11+
*venv*/
1212
.direnv/
1313
.vscode/
1414
uv.lock

CHANGELOG.rst

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,21 @@ checkmk.general Release Notes
44

55
.. contents:: Topics
66

7+
v6.6.1
8+
======
9+
10+
Release Summary
11+
---------------
12+
13+
New years cleaning.
14+
15+
Minor Changes
16+
-------------
17+
18+
- Bump some build-related dependencies and improve testing logic.
19+
- Clean up some module meta data, playbooks and inventory.
20+
- Server role - Minor change to the compatibility message, in case an OS is not supported.
21+
722
v6.6.0
823
======
924

SUPPORT.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,3 +82,4 @@ Collection Version | Checkmk Versions | Ansible Versions | Remarks
8282
6.4.1 | 2.2.0p47, 2.3.0p41, 2.4.0p16 | 2.17, 2.18, 2.19 | None
8383
6.5.0 | 2.2.0p47, 2.3.0p41, 2.4.0p17 | 2.18, 2.19, 2.20 | None
8484
6.6.0 | 2.2.0p47, 2.3.0p41, 2.4.0p18 | 2.18, 2.19, 2.20 | None
85+
6.6.1 | 2.2.0p47, 2.3.0p41, 2.4.0p18 | 2.18, 2.19, 2.20 | None

ansible.cfg

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
library = ./plugins/modules/
1616
module_utils = ./plugins/module_utils/
1717

18-
inventory = ./inventory/hosts.ini
18+
inventory = ./playbooks/inventory/hosts.ini
1919
#inventory = /etc/ansible/hosts
2020
#library = /usr/share/my_modules/
2121
#module_utils = /usr/share/my_module_utils/
@@ -72,7 +72,6 @@ gathering = smart
7272

7373
# additional paths to search for roles in, colon separated
7474
#roles_path = /etc/ansible/roles
75-
roles_path = ./roles
7675

7776
# uncomment this to disable SSH key host checking
7877
#host_key_checking = False

changelogs/.plugin-cache.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,11 @@ plugins:
4545
ldap_connection:
4646
description: Show the configuration of an ldap connection
4747
name: ldap_connection
48-
version_added: 5.3.0
48+
version_added: 6.6.0
4949
ldap_connections:
5050
description: Get a list of all ldap_connections
5151
name: ldap_connections
52-
version_added: 5.3.0
52+
version_added: 6.6.0
5353
rule:
5454
description: Show a rule
5555
name: rule
@@ -133,7 +133,7 @@ plugins:
133133
description: Manage LDAP connectors.
134134
name: ldap
135135
namespace: ''
136-
version_added: 6.1.0
136+
version_added: 6.6.0
137137
password:
138138
description: Manage passwords in Checkmk.
139139
name: password
@@ -174,4 +174,4 @@ plugins:
174174
strategy: {}
175175
test: {}
176176
vars: {}
177-
version: 6.6.0
177+
version: 6.6.1
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
minor_changes:
2+
- Server role - Minor change to the compatibility message, in case an OS is not supported.
3+
- Clean up some module meta data, playbooks and inventory.
4+
- Bump some build-related dependencies and improve testing logic.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
release_summary: "New years cleaning."

0 commit comments

Comments
 (0)