|
| 1 | +# https://docs.ansible.com/ansible/latest/community/development_process.html#changelogs-how-to |
| 2 | + |
| 3 | +bugfixes: |
| 4 | + - Fix usage of 'checkmk_agent_host_name'variable. Some tasks had 'inventory_hostname' hardcoded, which is not the desired behavior. This is fixed now. |
| 5 | + |
| 6 | +# known_issues: |
| 7 | +# - This release is still in development and a heavy work in progress. |
| 8 | +# - Discovery module is not feature complete yet. |
| 9 | +# - Downtime module is not fully idempotent yet. This affects service downtimes and deletions. |
| 10 | + |
| 11 | +## Line Format |
| 12 | +# When writing a changelog entry, use the following format: |
| 13 | + |
| 14 | +# - scope - description starting with a lowercase letter and ending with a period at the very end. Multiple sentences are allowed (https://github.com/reference/to/an/issue or, if there is no issue, reference to a pull request itself). |
| 15 | + |
| 16 | +# The scope is usually a module or plugin name or group of modules or plugins, for example, lookup plugins. While module names can (and should) be mentioned directly (foo_module), plugin names should always be followed by the type (foo inventory plugin). |
| 17 | + |
| 18 | +# For changes that are not really scoped (for example, which affect a whole collection), use the following format: |
| 19 | + |
| 20 | +# - Description starting with an uppercase letter and ending with a dot at the very end. Multiple sentences are allowed (https://github.com/reference/to/an/issue or, if there is no issue, reference to a pull request itself). |
| 21 | + |
| 22 | + |
| 23 | +## Possible keys: |
| 24 | + |
| 25 | +# breaking_changes |
| 26 | + |
| 27 | +# Changes that break existing playbooks or roles. This includes any change to existing behavior that forces users to update tasks. Displayed in both the changelogs and the Porting Guides. |
| 28 | +# major_changes |
| 29 | + |
| 30 | +# Major changes to Ansible itself. Generally does not include module or plugin changes. Displayed in both the changelogs and the Porting Guides. |
| 31 | +# minor_changes |
| 32 | + |
| 33 | +# Minor changes to Ansible, modules, or plugins. This includes new features, new parameters added to modules, or behavior changes to existing parameters. |
| 34 | +# deprecated_features |
| 35 | + |
| 36 | +# Features that have been deprecated and are scheduled for removal in a future release. Displayed in both the changelogs and the Porting Guides. |
| 37 | +# removed_features |
| 38 | + |
| 39 | +# Features that were previously deprecated and are now removed. Displayed in both the changelogs and the Porting Guides. |
| 40 | +# security_fixes |
| 41 | + |
| 42 | +# Fixes that address CVEs or resolve security concerns. Include links to CVE information. |
| 43 | +# bugfixes |
| 44 | + |
| 45 | +# Fixes that resolve issues. |
| 46 | +# known_issues |
| 47 | + |
| 48 | +# Known issues that are currently not fixed or will not be fixed. |
0 commit comments