diff --git a/CHANGELOG.rst b/CHANGELOG.rst index aef6fa1..57e2936 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,6 +4,20 @@ Community SAP Release Notes .. contents:: Topics +v1.6.0 +====== + +Release Summary +--------------- + +This release adds new module `sap_hostctrl_exec` that allows executing `SAPHostcontrol` functions. +New contributors readme is added to show our appreciation to contributors. + +Minor Changes +------------- +- sap_control_exec - Add local socket support (https://github.com/sap-linuxlab/community.sap_libs/pull/66) +- sap_hostctrl_exec - Add new module and tests (https://github.com/sap-linuxlab/community.sap_libs/pull/67) + v1.5.0 ====== diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md new file mode 100644 index 0000000..cde516f --- /dev/null +++ b/CONTRIBUTORS.md @@ -0,0 +1,93 @@ +# Contributors to community.sap_libs + +Thank you to all contributors who have helped make this project possible! + +We welcome contributions! Please see our [contributing guidelines](https://sap-linuxlab.github.io/initiative_contributions/) to get started. + +## Maintainers + +The following people are the maintainers of this collection: + +### SUSE + +- [Marcel Mamula](https://github.com/marcelmamula) + + +For specific role maintainers, see the `README.md` file in the corresponding role's directory. + +## All Contributors + +| Name | Commits | Lines Changed | Last Commit | +| ---- | ------- | ------------- | ----------- | +| [Rainer Leber](https://github.com/rainerleber) | 23 | 11921 | 2025-09-22 | +| ydouvry | 8 | 892 | 2025-12-09 | +| Nicolas Bettembourg | 7 | 265 | 2025-10-27 | +| [Marcel Mamula](https://github.com/marcelmamula) | 4 | 1404 | 2025-10-16 | +| stm85 | 1 | 4 | 2024-04-29 | +| [Sean Freeman](https://github.com/sean-freeman) | 1 | 3 | 2022-11-11 | + +## Contributions by Module + +### Module: sap_control_exec.py + +| Name | Commits | Lines Changed | Last Commit | +| ---- | ------- | ------------- | ----------- | +| Nicolas Bettembourg | 4 | 221 | 2025-10-27 | +| [Rainer Leber](https://github.com/rainerleber) | 4 | 555 | 2025-09-22 | + +### Module: sap_pyrfc.py + +| Name | Commits | Lines Changed | Last Commit | +| ---- | ------- | ------------- | ----------- | +| [Rainer Leber](https://github.com/rainerleber) | 4 | 191 | 2023-03-08 | + +### Module: sap_snote.py + +| Name | Commits | Lines Changed | Last Commit | +| ---- | ------- | ------------- | ----------- | +| [Rainer Leber](https://github.com/rainerleber) | 3 | 269 | 2022-12-05 | + +### Module: sap_system_facts.py + +| Name | Commits | Lines Changed | Last Commit | +| ---- | ------- | ------------- | ----------- | +| [Rainer Leber](https://github.com/rainerleber) | 2 | 215 | 2022-09-09 | + +### Module: sap_task_list_execute.py + +| Name | Commits | Lines Changed | Last Commit | +| ---- | ------- | ------------- | ----------- | +| [Rainer Leber](https://github.com/rainerleber) | 3 | 352 | 2022-12-05 | + +### Module: sap_hostctrl_exec.py + +| Name | Commits | Lines Changed | Last Commit | +| ---- | ------- | ------------- | ----------- | +| ydouvry | 8 | 506 | 2025-12-09 | + +### Module: sapcar_extract.py + +| Name | Commits | Lines Changed | Last Commit | +| ---- | ------- | ------------- | ----------- | +| [Rainer Leber](https://github.com/rainerleber) | 2 | 230 | 2022-09-09 | + +### Module: sap_hdbsql.py + +| Name | Commits | Lines Changed | Last Commit | +| ---- | ------- | ------------- | ----------- | +| [Marcel Mamula](https://github.com/marcelmamula) | 1 | 2 | 2025-09-25 | +| stm85 | 1 | 2 | 2024-04-29 | +| [Rainer Leber](https://github.com/rainerleber) | 1 | 246 | 2022-09-09 | + +### Module: sap_user.py + +| Name | Commits | Lines Changed | Last Commit | +| ---- | ------- | ------------- | ----------- | +| [Rainer Leber](https://github.com/rainerleber) | 3 | 510 | 2022-12-05 | + +### Module: sap_company.py + +| Name | Commits | Lines Changed | Last Commit | +| ---- | ------- | ------------- | ----------- | +| [Rainer Leber](https://github.com/rainerleber) | 3 | 337 | 2022-12-05 | + diff --git a/README.md b/README.md index f27bf15..30dd23f 100644 --- a/README.md +++ b/README.md @@ -92,7 +92,7 @@ modules where we are able to execute integration test we decided to disable thes You can find more information about maintainers of this Ansible Collection at [MAINTAINERS.md](https://github.com/sap-linuxlab/community.sap_libs/blob/main/MAINTAINERS.md). ## Contributing -You can find more information about ways you can contribute at [sap-linuxlab website](https://sap-linuxlab.github.io/initiative_contributions/). +We welcome contributions to this collection. For a list of all contributors and information on how you can get involved, please see our [CONTRIBUTORS document](./CONTRIBUTORS.md). ## Support You can report any issues using [Issues](https://github.com/sap-linuxlab/community.sap_libs/issues) section. diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 2b8a93a..0218f03 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -136,3 +136,11 @@ releases: release_summary: This release removes `Python 2` support and updates `ansible-test` workflow to validate latest versions. Documentation was updated to reflect supported and tested versions. release_date: '2025-09-25' + 1.6.0: + changes: + minor_changes: + - sap_control_exec - Add local socket support (https://github.com/sap-linuxlab/community.sap_libs/pull/66) + - sap_hostctrl_exec - Add new module and tests (https://github.com/sap-linuxlab/community.sap_libs/pull/67) + release_summary: This release adds new module `sap_hostctrl_exec` that allows executing `SAPHostcontrol` functions. + New contributors readme is added to show our appreciation to contributors. + release_date: '2025-12-10' diff --git a/changelogs/fragments/0066-sap_control_exec-local-socket.yaml b/changelogs/fragments/0066-sap_control_exec-local-socket.yaml deleted file mode 100644 index 0b0af18..0000000 --- a/changelogs/fragments/0066-sap_control_exec-local-socket.yaml +++ /dev/null @@ -1,3 +0,0 @@ -minor_changes: - - 'sap_control_exec - Added support for local socket connection when hostname is - localhost and sysnr is provided without username/password.' diff --git a/changelogs/fragments/0067-sap_hostctrl_exec-new-module.yml b/changelogs/fragments/0067-sap_hostctrl_exec-new-module.yml deleted file mode 100644 index 7074424..0000000 --- a/changelogs/fragments/0067-sap_hostctrl_exec-new-module.yml +++ /dev/null @@ -1,2 +0,0 @@ -major_changes: - - sap_hostctrl_exec - new module to execute SapHostControl operations diff --git a/galaxy.yml b/galaxy.yml index 0f8c129..39808e1 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -2,7 +2,7 @@ namespace: community name: sap_libs -version: 1.5.0 +version: 1.6.0 readme: README.md authors: - Rainer Leber (github.com/rainerleber)