mirror of
https://github.com/ansible-collections/hetzner.hcloud.git
synced 2026-02-04 16:11:49 +00:00
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [antsibull-docs](https://redirect.github.com/ansible-community/antsibull-docs) ([changelog](https://redirect.github.com/ansible-community/antsibull-docs/tree/main/CHANGELOG.md)) | `>=2.17,<2.18` -> `>=2.18,<2.19` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>ansible-community/antsibull-docs (antsibull-docs)</summary> ### [`v2.18.0`](https://redirect.github.com/ansible-community/antsibull-docs/releases/tag/2.18.0) [Compare Source](https://redirect.github.com/ansible-community/antsibull-docs/compare/2.17.1...2.18.0) ##### Release Summary Feature and bugfix release. ##### Minor Changes - Add <code>:anscollection:</code> role to allow referencing collections. The syntax is <code>:anscollection:\`namespace.name\`</code>, or <code>:anscollection:\`namespace.name#what\`</code> for more specific parts of the index page ([#​393](https://redirect.github.com/ansible-community/antsibull-docs/pull/393)). - Extend <code>:ansplugin:</code> role to allow referencing role entrypoints. The syntax is <code>:ansplugin:\`namespace.name.role\_name#entrypoint\`</code> ([#​393](https://redirect.github.com/ansible-community/antsibull-docs/pull/393)). - The <code>lint-collection-docs</code> subcommand has a new option <code>--check-extra-docs-refs</code> that checks references to collections in extra documentation files (<code>docs/docsite/rst</code>) ([#​392](https://redirect.github.com/ansible-community/antsibull-docs/pull/392)). - The <code>lint-collection-docs</code>'s option <code>--plugin-docs</code> now also checks role entrypoints for existence ([#​392](https://redirect.github.com/ansible-community/antsibull-docs/pull/392)). ##### Deprecated Features - The following default values for options to <code>antsibull-docs lint-collection-docs</code> are deprecated and will change in antsibull-docs 3.0.0: - <code>--plugin-docs</code> will be enabled by default; right now the default is <code>--no-plugin-docs</code>; - <code>--skip-rstcheck</code> will be enabled by default; right now the default is <code>--no-skip-rstcheck</code> (note that this applies to <code>--plugin-docs</code>, not to checking extra documentation); - <code>--check-extra-docs-refs</code> will be enabled by default; right now the default is <code>--no-check-extra-docs-refs</code>. We suggested to already now explicitly state the default value if you do not want the extra checks to be run ([#​394](https://redirect.github.com/ansible-community/antsibull-docs/pull/394)). ##### Bugfixes - Ansible-core 2.19 now lists standard Jinja2 tests and filters as members of <code>ansible.builtin</code> with minimal documentation, but without a <code>name</code> field in <code>doc</code> ([#​393](https://redirect.github.com/ansible-community/antsibull-docs/pull/393)). </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/ansible-collections/hetzner.hcloud). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MC42Mi4xIiwidXBkYXRlZEluVmVyIjoiNDAuNjIuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: jo <ljonas@riseup.net>
45 lines
911 B
Makefile
45 lines
911 B
Makefile
SHELL := bash
|
|
.PHONY: vendor clean dev
|
|
|
|
dev:
|
|
cat tests/integration/cloud-config-hcloud.ini.in | envsubst > tests/integration/cloud-config-hcloud.ini
|
|
|
|
vendor:
|
|
python3 scripts/vendor.py
|
|
|
|
vendor-check:
|
|
python3 scripts/vendor.py --check
|
|
|
|
venv:
|
|
python3 -m venv venv
|
|
venv/bin/pip install -r requirements.txt -r requirements-dev.txt
|
|
|
|
lint: venv
|
|
venv/bin/pylint plugins
|
|
|
|
lint-docs: venv
|
|
venv/bin/antsibull-docs lint-collection-docs \
|
|
--plugin-docs \
|
|
--validate-collection-refs self \
|
|
--check-extra-docs-refs \
|
|
.
|
|
|
|
clean:
|
|
git clean -xdf
|
|
|
|
sanity:
|
|
ansible-test sanity --color --truncate 0 -v \
|
|
--exclude plugins/module_utils/vendor/ \
|
|
--exclude scripts/ \
|
|
--exclude tests/utils/ \
|
|
--docker default \
|
|
--allow-disabled
|
|
|
|
units:
|
|
ansible-test units --color --truncate 0 -v \
|
|
--docker default
|
|
|
|
integration:
|
|
ansible-test integration --color --truncate 0 -v \
|
|
--docker default \
|
|
--allow-disabled
|