antsibull-nox 0.5.0__tar.gz → 0.7.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (92) hide show
  1. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/.github/workflows/nox.yml +6 -0
  2. antsibull_nox-0.5.0/docs/changelog.md → antsibull_nox-0.7.0/CHANGELOG.md +91 -15
  3. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/CHANGELOG.rst +40 -0
  4. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/PKG-INFO +9 -7
  5. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/README.md +5 -5
  6. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/changelogs/changelog.yaml +49 -0
  7. antsibull_nox-0.5.0/CHANGELOG.md → antsibull_nox-0.7.0/docs/changelog.md +54 -43
  8. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/docs/config-file.md +178 -40
  9. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/noxfile.py +8 -1
  10. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/pyproject.toml +2 -1
  11. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/src/antsibull_nox/__init__.py +1 -1
  12. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/src/antsibull_nox/ansible.py +6 -6
  13. antsibull_nox-0.7.0/src/antsibull_nox/collection/__init__.py +36 -0
  14. antsibull_nox-0.7.0/src/antsibull_nox/collection/build.py +69 -0
  15. antsibull_nox-0.5.0/src/antsibull_nox/collection/__init__.py → antsibull_nox-0.7.0/src/antsibull_nox/collection/utils.py +3 -18
  16. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/src/antsibull_nox/config.py +33 -2
  17. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/src/antsibull_nox/data/action-groups.py +9 -1
  18. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/src/antsibull_nox/data/antsibull_nox_data_util.py +25 -2
  19. antsibull_nox-0.7.0/src/antsibull_nox/data/get-package-versions.py +36 -0
  20. antsibull_nox-0.7.0/src/antsibull_nox/data/no-trailing-whitespace.py +59 -0
  21. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/src/antsibull_nox/data/no-unwanted-files.py +1 -1
  22. antsibull_nox-0.7.0/src/antsibull_nox/data/rst-extra.py +167 -0
  23. antsibull_nox-0.7.0/src/antsibull_nox/data/rst-yamllint.py +192 -0
  24. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/src/antsibull_nox/interpret_config.py +32 -0
  25. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/src/antsibull_nox/paths.py +2 -3
  26. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/src/antsibull_nox/sessions/build_import_check.py +5 -35
  27. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/src/antsibull_nox/sessions/docs_check.py +63 -1
  28. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/src/antsibull_nox/sessions/extra_checks.py +19 -0
  29. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/src/antsibull_nox/sessions/lint.py +257 -56
  30. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/src/antsibull_nox/sessions/utils.py +86 -0
  31. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/tests/unit/test_ansible.py +1 -0
  32. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/.flake8 +0 -0
  33. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/.github/dependabot.yml +0 -0
  34. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/.github/patchback.yml +0 -0
  35. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/.github/workflows/reusable-nox-matrix.yml +0 -0
  36. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/.github/workflows/test-gh-action.yml +0 -0
  37. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/.gitignore +0 -0
  38. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/.pylintrc.automated +0 -0
  39. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/.readthedocs.yml +0 -0
  40. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/CHANGELOG.md.license +0 -0
  41. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/CHANGELOG.rst.license +0 -0
  42. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/LICENSE +0 -0
  43. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/LICENSES/GPL-3.0-or-later.txt +0 -0
  44. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/REUSE.toml +0 -0
  45. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/action.yml +0 -0
  46. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/changelogs/changelog.yaml.license +0 -0
  47. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/changelogs/config.yaml +0 -0
  48. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/changelogs/fragments/.keep +0 -0
  49. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/codecov.yml +0 -0
  50. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/docs/changelog.md.license +0 -0
  51. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/docs/community.md +0 -0
  52. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/docs/getting-started.md +0 -0
  53. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/docs/index.md +0 -0
  54. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/docs/introduction.md +0 -0
  55. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/docs/nox-in-ci.md +0 -0
  56. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/docs/reference.md +0 -0
  57. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/docs/troubleshooting.md +0 -0
  58. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/docs-requirements.txt +0 -0
  59. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/mkdocs.yml +0 -0
  60. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/src/antsibull_nox/_pydantic.py +0 -0
  61. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/src/antsibull_nox/cli.py +0 -0
  62. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/src/antsibull_nox/collection/data.py +0 -0
  63. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/src/antsibull_nox/collection/extract.py +0 -0
  64. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/src/antsibull_nox/collection/install.py +0 -0
  65. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/src/antsibull_nox/collection/search.py +0 -0
  66. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/src/antsibull_nox/data/antsibull-nox-lint-config.py +0 -0
  67. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/src/antsibull_nox/data/file-yamllint.py +0 -0
  68. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/src/antsibull_nox/data/license-check.py +0 -0
  69. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/src/antsibull_nox/data/license-check.py.license +0 -0
  70. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/src/antsibull_nox/data/plugin-yamllint.py +0 -0
  71. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/src/antsibull_nox/data_util.py +0 -0
  72. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/src/antsibull_nox/init.py +0 -0
  73. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/src/antsibull_nox/lint_config.py +0 -0
  74. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/src/antsibull_nox/py.typed +0 -0
  75. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/src/antsibull_nox/python.py +0 -0
  76. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/src/antsibull_nox/sessions/__init__.py +0 -0
  77. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/src/antsibull_nox/sessions/ansible_lint.py +0 -0
  78. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/src/antsibull_nox/sessions/ansible_test.py +0 -0
  79. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/src/antsibull_nox/sessions/collections.py +0 -0
  80. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/src/antsibull_nox/sessions/license_check.py +0 -0
  81. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/src/antsibull_nox/utils.py +0 -0
  82. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/tests/.keep +0 -0
  83. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/tests/needs-network/test_ansible_core.py +0 -0
  84. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/tests/test-collection/antsibull-nox.toml +0 -0
  85. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/tests/test-collection/galaxy.yml +0 -0
  86. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/tests/test-collection/noxfile.py +0 -0
  87. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/tests/test-collection/plugins/modules/test.py +0 -0
  88. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/tests/unit/__init__.py +0 -0
  89. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/tests/unit/test_collection.py +0 -0
  90. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/tests/unit/test_python.py +0 -0
  91. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/tests/unit/test_utils.py +0 -0
  92. {antsibull_nox-0.5.0 → antsibull_nox-0.7.0}/tests/unit/utils.py +0 -0
@@ -49,6 +49,12 @@ jobs:
49
49
  with:
50
50
  path: antsibull-nox
51
51
  persist-credentials: false
52
+ - name: Check out dependent project antsibull-docutils
53
+ uses: actions/checkout@v4
54
+ with:
55
+ repository: ansible-community/antsibull-docutils
56
+ path: antsibull-docutils
57
+ persist-credentials: false
52
58
  - name: Check out dependent project antsibull-fileutils
53
59
  uses: actions/checkout@v4
54
60
  with:
@@ -1,19 +1,95 @@
1
1
  # Antsibull Nox Helper Release Notes
2
2
 
3
+ **Topics**
4
+
5
+ - <a href="#v0-7-0">v0\.7\.0</a>
6
+ - <a href="#release-summary">Release Summary</a>
7
+ - <a href="#minor-changes">Minor Changes</a>
8
+ - <a href="#v0-6-0">v0\.6\.0</a>
9
+ - <a href="#release-summary-1">Release Summary</a>
10
+ - <a href="#minor-changes-1">Minor Changes</a>
11
+ - <a href="#bugfixes">Bugfixes</a>
12
+ - <a href="#v0-5-0">v0\.5\.0</a>
13
+ - <a href="#release-summary-2">Release Summary</a>
14
+ - <a href="#minor-changes-2">Minor Changes</a>
15
+ - <a href="#bugfixes-1">Bugfixes</a>
16
+ - <a href="#v0-4-0">v0\.4\.0</a>
17
+ - <a href="#release-summary-3">Release Summary</a>
18
+ - <a href="#major-changes">Major Changes</a>
19
+ - <a href="#minor-changes-3">Minor Changes</a>
20
+ - <a href="#bugfixes-2">Bugfixes</a>
21
+ - <a href="#v0-3-0">v0\.3\.0</a>
22
+ - <a href="#release-summary-4">Release Summary</a>
23
+ - <a href="#minor-changes-4">Minor Changes</a>
24
+ - <a href="#removed-features-previously-deprecated">Removed Features \(previously deprecated\)</a>
25
+ - <a href="#bugfixes-3">Bugfixes</a>
26
+ - <a href="#v0-2-0">v0\.2\.0</a>
27
+ - <a href="#release-summary-5">Release Summary</a>
28
+ - <a href="#major-changes-1">Major Changes</a>
29
+ - <a href="#minor-changes-5">Minor Changes</a>
30
+ - <a href="#deprecated-features">Deprecated Features</a>
31
+ - <a href="#v0-1-0">v0\.1\.0</a>
32
+ - <a href="#release-summary-6">Release Summary</a>
33
+ - <a href="#minor-changes-6">Minor Changes</a>
34
+ - <a href="#breaking-changes--porting-guide">Breaking Changes / Porting Guide</a>
35
+ - <a href="#bugfixes-4">Bugfixes</a>
36
+ - <a href="#v0-0-1">v0\.0\.1</a>
37
+ - <a href="#release-summary-7">Release Summary</a>
38
+
39
+ <a id="v0-7-0"></a>
40
+ ## v0\.7\.0
41
+
42
+ <a id="release-summary"></a>
43
+ ### Release Summary
44
+
45
+ Feature release\.
46
+
47
+ <a id="minor-changes"></a>
48
+ ### Minor Changes
49
+
50
+ * Antsibull\-nox\'s ansible\-core <code>devel</code> and <code>milestone</code> branch versions have been updated to 2\.20\. This means that <code>stable\-2\.19</code> will now be added to CI matrices if <code>max\_version</code> has not been explicitly specified \([https\://github\.com/ansible\-community/antsibull\-nox/pull/91](https\://github\.com/ansible\-community/antsibull\-nox/pull/91)\)\.
51
+ * The <code>docs\-check</code> session now also passes the new <code>\-\-check\-extra\-docs\-refs</code> parameter to <code>antsibull\-docs lint\-collection\-docs</code> for antsibull\-docs \>\= 2\.18\.0 \([https\://github\.com/ansible\-community/antsibull\-nox/pull/90](https\://github\.com/ansible\-community/antsibull\-nox/pull/90)\)\.
52
+
53
+ <a id="v0-6-0"></a>
54
+ ## v0\.6\.0
55
+
56
+ <a id="release-summary-1"></a>
57
+ ### Release Summary
58
+
59
+ Bugfix and feature release\.
60
+
61
+ <a id="minor-changes-1"></a>
62
+ ### Minor Changes
63
+
64
+ * Add new extra check <code>no\-trailing\-whitespace</code> \([https\://github\.com/ansible\-community/antsibull\-nox/pull/85](https\://github\.com/ansible\-community/antsibull\-nox/pull/85)\)\.
65
+ * Add new options to <code>docs\-check</code> that allow to validate code blocks in collection extra docs \([https\://github\.com/ansible\-community/antsibull\-nox/pull/88](https\://github\.com/ansible\-community/antsibull\-nox/pull/88)\)\.
66
+ * Support running <code>ruff check \-\-fix \-\-select \.\.\.</code> in the <code>formatters</code> session by setting <code>run\_ruff\_autofix\=true</code> in the config \([https\://github\.com/ansible\-community/antsibull\-nox/issues/70](https\://github\.com/ansible\-community/antsibull\-nox/issues/70)\, [https\://github\.com/ansible\-community/antsibull\-nox/pull/82](https\://github\.com/ansible\-community/antsibull\-nox/pull/82)\)\.
67
+ * Support running <code>ruff check</code> in the <code>codeqa</code> session by setting <code>run\_ruff\_check\=true</code> in the config \([https\://github\.com/ansible\-community/antsibull\-nox/issues/70](https\://github\.com/ansible\-community/antsibull\-nox/issues/70)\, [https\://github\.com/ansible\-community/antsibull\-nox/pull/82](https\://github\.com/ansible\-community/antsibull\-nox/pull/82)\)\.
68
+ * Support running <code>ruff format</code> in the <code>formatters</code> session by setting <code>run\_ruff\_format\=true</code> in the config \([https\://github\.com/ansible\-community/antsibull\-nox/issues/70](https\://github\.com/ansible\-community/antsibull\-nox/issues/70)\, [https\://github\.com/ansible\-community/antsibull\-nox/pull/82](https\://github\.com/ansible\-community/antsibull\-nox/pull/82)\)\.
69
+ * The <code>yamllint</code> test now also checks YAML and YAML\+Jinja code blocks in extra documentation \(<code>\.rst</code> files in <code>docs/docsite/rst/</code>\) \([https\://github\.com/ansible\-community/antsibull\-nox/pull/87](https\://github\.com/ansible\-community/antsibull\-nox/pull/87)\)\.
70
+
71
+ <a id="bugfixes"></a>
72
+ ### Bugfixes
73
+
74
+ * Do not fail if an unexpected action group is found that only contains a metadata entry \([https\://github\.com/ansible\-community/antsibull\-nox/pull/81](https\://github\.com/ansible\-community/antsibull\-nox/pull/81)\)\.
75
+ * Fix config file types for <code>no\_unwanted\_files\_skip\_directories</code> and <code>no\_unwanted\_files\_yaml\_directories</code> to what is documented\; that is\, do not allow <code>None</code> \([https\://github\.com/ansible\-community/antsibull\-nox/pull/85](https\://github\.com/ansible\-community/antsibull\-nox/pull/85)\)\.
76
+ * Ignore metadata entries in action groups \([https\://github\.com/ansible\-community/antsibull\-nox/pull/81](https\://github\.com/ansible\-community/antsibull\-nox/pull/81)\)\.
77
+ * The <code>no\_unwanted\_files\_skip\_directories</code> option for the <code>no\-unwanted\-files</code> was not used \([https\://github\.com/ansible\-community/antsibull\-nox/pull/85](https\://github\.com/ansible\-community/antsibull\-nox/pull/85)\)\.
78
+
3
79
  <a id="v0-5-0"></a>
4
80
  ## v0\.5\.0
5
81
 
6
- <a id="release-summary"></a>
82
+ <a id="release-summary-2"></a>
7
83
  ### Release Summary
8
84
 
9
85
  Feature and bugfix release\.
10
86
 
11
- <a id="minor-changes"></a>
87
+ <a id="minor-changes-2"></a>
12
88
  ### Minor Changes
13
89
 
14
90
  * Allow to pass environment variables as Ansible variables for integration tests with the new <code>ansible\_vars\_from\_env\_vars</code> option for <code>sessions\.ansible\_test\_integration\_w\_default\_container</code> \([https\://github\.com/ansible\-community/antsibull\-nox/pull/78](https\://github\.com/ansible\-community/antsibull\-nox/pull/78)\)\.
15
91
 
16
- <a id="bugfixes"></a>
92
+ <a id="bugfixes-1"></a>
17
93
  ### Bugfixes
18
94
 
19
95
  * Fix action group test\. No errors were reported due to a bug in the test \([https\://github\.com/ansible\-community/antsibull\-nox/pull/80](https\://github\.com/ansible\-community/antsibull\-nox/pull/80)\)\.
@@ -21,7 +97,7 @@ Feature and bugfix release\.
21
97
  <a id="v0-4-0"></a>
22
98
  ## v0\.4\.0
23
99
 
24
- <a id="release-summary-1"></a>
100
+ <a id="release-summary-3"></a>
25
101
  ### Release Summary
26
102
 
27
103
  Feature and bugfix release\.
@@ -31,7 +107,7 @@ Feature and bugfix release\.
31
107
 
32
108
  * Required collections can now be installed from different sources per depending on the ansible\-core version \([https\://github\.com/ansible\-community/antsibull\-nox/pull/76](https\://github\.com/ansible\-community/antsibull\-nox/pull/76)\)\.
33
109
 
34
- <a id="minor-changes-1"></a>
110
+ <a id="minor-changes-3"></a>
35
111
  ### Minor Changes
36
112
 
37
113
  * Capture mypy and pylint errors to report paths of files relative to collection\'s root\, instead of relative to the virtual <code>ansible\_collections</code> directory \([https\://github\.com/ansible\-community/antsibull\-nox/pull/75](https\://github\.com/ansible\-community/antsibull\-nox/pull/75)\)\.
@@ -40,7 +116,7 @@ Feature and bugfix release\.
40
116
  * The yamllint session now ignores <code>RETURN</code> documentation with values <code>\#</code> and \`\` \# \`\` \([https\://github\.com/ansible\-community/antsibull\-nox/pull/71](https\://github\.com/ansible\-community/antsibull\-nox/pull/71)\)\.
41
117
  * The yamllint test no longer shows all filenames in the command line \([https\://github\.com/ansible\-community/antsibull\-nox/pull/72](https\://github\.com/ansible\-community/antsibull\-nox/pull/72)\)\.
42
118
 
43
- <a id="bugfixes-1"></a>
119
+ <a id="bugfixes-2"></a>
44
120
  ### Bugfixes
45
121
 
46
122
  * Adjust yamllint test to no longer use the user\'s global config\, but only the project\'s config \([https\://github\.com/ansible\-community/antsibull\-nox/pull/72](https\://github\.com/ansible\-community/antsibull\-nox/pull/72)\)\.
@@ -48,7 +124,7 @@ Feature and bugfix release\.
48
124
  <a id="v0-3-0"></a>
49
125
  ## v0\.3\.0
50
126
 
51
- <a id="release-summary-2"></a>
127
+ <a id="release-summary-4"></a>
52
128
  ### Release Summary
53
129
 
54
130
  Feature release that is stabilizing the API\.
@@ -56,7 +132,7 @@ Feature release that is stabilizing the API\.
56
132
  All noxfiles and configs using this version should still work with antsibull\-nox 1\.0\.0\,
57
133
  unless a critical problem is found that cannot be solved in any other way\.
58
134
 
59
- <a id="minor-changes-2"></a>
135
+ <a id="minor-changes-4"></a>
60
136
  ### Minor Changes
61
137
 
62
138
  * Add <code>antsibull\-nox init</code> command that creates a <code>noxfile\.py</code> and <code>antsibull\-nox\.tomll</code> to get started \([https\://github\.com/ansible\-community/antsibull\-nox/pull/58](https\://github\.com/ansible\-community/antsibull\-nox/pull/58)\)\.
@@ -75,7 +151,7 @@ unless a critical problem is found that cannot be solved in any other way\.
75
151
 
76
152
  * Removed all deprecated functions from <code>antsibull\_nox\.\*\*</code> that generate sessions\. The only functions left that are public API are <code>antsibull\_nox\.load\_antsibull\_nox\_toml\(\)</code>\, <code>antsibull\_nox\.add\_ansible\_test\_session\(\)</code>\, and <code>antsibull\_nox\.sessions\.prepare\_collections\(\)</code> \([https\://github\.com/ansible\-community/antsibull\-nox/pull/54](https\://github\.com/ansible\-community/antsibull\-nox/pull/54)\)\.
77
153
 
78
- <a id="bugfixes-2"></a>
154
+ <a id="bugfixes-3"></a>
79
155
  ### Bugfixes
80
156
 
81
157
  * Action groups extra test no longer fails if <code>action\_groups</code> does not exist in <code>meta/runtime\.yml</code>\. It can now be used to ensure that there is no action group present in <code>meta/runtime\.yml</code> \([https\://github\.com/ansible\-community/antsibull\-nox/pull/60](https\://github\.com/ansible\-community/antsibull\-nox/pull/60)\)\.
@@ -86,7 +162,7 @@ unless a critical problem is found that cannot be solved in any other way\.
86
162
  <a id="v0-2-0"></a>
87
163
  ## v0\.2\.0
88
164
 
89
- <a id="release-summary-3"></a>
165
+ <a id="release-summary-5"></a>
90
166
  ### Release Summary
91
167
 
92
168
  Major extension and overhaul with many breaking changes\. The next minor release is expected to bring more stabilization\.
@@ -96,7 +172,7 @@ Major extension and overhaul with many breaking changes\. The next minor release
96
172
 
97
173
  * There is now a new function <code>antsibull\_nox\.load\_antsibull\_nox\_toml\(\)</code> which loads <code>antsibull\-nox\.toml</code> and creates configuration and sessions from it\. Calling other functionality from <code>antsibull\_nox</code> in <code>noxfile\.py</code> is only necessary for creating own specialized sessions\, or ansible\-test sessions that cannot be created with the <code>antsibull\_nox\.add\_all\_ansible\_test\_\*\_test\_sessions\*\(\)</code> type functions \([https\://github\.com/ansible\-community/antsibull\-nox/pull/50](https\://github\.com/ansible\-community/antsibull\-nox/pull/50)\, [https\://github\.com/ansible\-community/antsibull\-nox/issues/34](https\://github\.com/ansible\-community/antsibull\-nox/issues/34)\)\.
98
174
 
99
- <a id="minor-changes-3"></a>
175
+ <a id="minor-changes-5"></a>
100
176
  ### Minor Changes
101
177
 
102
178
  * Add descriptions to generated sessions that are shown when running <code>nox \-\-list</code> \([https\://github\.com/ansible\-community/antsibull\-nox/pull/31](https\://github\.com/ansible\-community/antsibull\-nox/pull/31)\)\.
@@ -122,12 +198,12 @@ Major extension and overhaul with many breaking changes\. The next minor release
122
198
  <a id="v0-1-0"></a>
123
199
  ## v0\.1\.0
124
200
 
125
- <a id="release-summary-4"></a>
201
+ <a id="release-summary-6"></a>
126
202
  ### Release Summary
127
203
 
128
204
  Feature release\.
129
205
 
130
- <a id="minor-changes-4"></a>
206
+ <a id="minor-changes-6"></a>
131
207
  ### Minor Changes
132
208
 
133
209
  * A <code>build\-import\-check</code> session that builds and tries to import the collection with Galaxy Importer can be added with <code>add\_build\_import\_check\(\)</code> \([https\://github\.com/ansible\-community/antsibull\-nox/issues/15](https\://github\.com/ansible\-community/antsibull\-nox/issues/15)\, [https\://github\.com/ansible\-community/antsibull\-nox/pull/17](https\://github\.com/ansible\-community/antsibull\-nox/pull/17)\)\.
@@ -146,7 +222,7 @@ Feature release\.
146
222
 
147
223
  * The nox workflow now by default runs all sessions\, unless restricted with the <code>sessions</code> parameter \([https\://github\.com/ansible\-community/antsibull\-nox/pull/14](https\://github\.com/ansible\-community/antsibull\-nox/pull/14)\)\.
148
224
 
149
- <a id="bugfixes-3"></a>
225
+ <a id="bugfixes-4"></a>
150
226
  ### Bugfixes
151
227
 
152
228
  * Make sure that black in CI checks formatting instead of just reformatting \([https\://github\.com/ansible\-community/antsibull\-nox/pull/14](https\://github\.com/ansible\-community/antsibull\-nox/pull/14)\)\.
@@ -154,7 +230,7 @@ Feature release\.
154
230
  <a id="v0-0-1"></a>
155
231
  ## v0\.0\.1
156
232
 
157
- <a id="release-summary-5"></a>
233
+ <a id="release-summary-7"></a>
158
234
  ### Release Summary
159
235
 
160
236
  Initial alpha release\.
@@ -4,6 +4,46 @@ Antsibull Nox Helper Release Notes
4
4
 
5
5
  .. contents:: Topics
6
6
 
7
+ v0.7.0
8
+ ======
9
+
10
+ Release Summary
11
+ ---------------
12
+
13
+ Feature release.
14
+
15
+ Minor Changes
16
+ -------------
17
+
18
+ - Antsibull-nox's ansible-core ``devel`` and ``milestone`` branch versions have been updated to 2.20. This means that ``stable-2.19`` will now be added to CI matrices if ``max_version`` has not been explicitly specified (https://github.com/ansible-community/antsibull-nox/pull/91).
19
+ - The ``docs-check`` session now also passes the new ``--check-extra-docs-refs`` parameter to ``antsibull-docs lint-collection-docs`` for antsibull-docs >= 2.18.0 (https://github.com/ansible-community/antsibull-nox/pull/90).
20
+
21
+ v0.6.0
22
+ ======
23
+
24
+ Release Summary
25
+ ---------------
26
+
27
+ Bugfix and feature release.
28
+
29
+ Minor Changes
30
+ -------------
31
+
32
+ - Add new extra check ``no-trailing-whitespace`` (https://github.com/ansible-community/antsibull-nox/pull/85).
33
+ - Add new options to ``docs-check`` that allow to validate code blocks in collection extra docs (https://github.com/ansible-community/antsibull-nox/pull/88).
34
+ - Support running ``ruff check --fix --select ...`` in the ``formatters`` session by setting ``run_ruff_autofix=true`` in the config (https://github.com/ansible-community/antsibull-nox/issues/70, https://github.com/ansible-community/antsibull-nox/pull/82).
35
+ - Support running ``ruff check`` in the ``codeqa`` session by setting ``run_ruff_check=true`` in the config (https://github.com/ansible-community/antsibull-nox/issues/70, https://github.com/ansible-community/antsibull-nox/pull/82).
36
+ - Support running ``ruff format`` in the ``formatters`` session by setting ``run_ruff_format=true`` in the config (https://github.com/ansible-community/antsibull-nox/issues/70, https://github.com/ansible-community/antsibull-nox/pull/82).
37
+ - The ``yamllint`` test now also checks YAML and YAML+Jinja code blocks in extra documentation (``.rst`` files in ``docs/docsite/rst/``) (https://github.com/ansible-community/antsibull-nox/pull/87).
38
+
39
+ Bugfixes
40
+ --------
41
+
42
+ - Do not fail if an unexpected action group is found that only contains a metadata entry (https://github.com/ansible-community/antsibull-nox/pull/81).
43
+ - Fix config file types for ``no_unwanted_files_skip_directories`` and ``no_unwanted_files_yaml_directories`` to what is documented; that is, do not allow ``None`` (https://github.com/ansible-community/antsibull-nox/pull/85).
44
+ - Ignore metadata entries in action groups (https://github.com/ansible-community/antsibull-nox/pull/81).
45
+ - The ``no_unwanted_files_skip_directories`` option for the ``no-unwanted-files`` was not used (https://github.com/ansible-community/antsibull-nox/pull/85).
46
+
7
47
  v0.5.0
8
48
  ======
9
49
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: antsibull-nox
3
- Version: 0.5.0
3
+ Version: 0.7.0
4
4
  Summary: Changelog tool for Ansible-core and Ansible collections
5
5
  Project-URL: Documentation, https://ansible.readthedocs.io/projects/antsibull-nox/
6
6
  Project-URL: Source code, https://github.com/ansible-community/antsibull-nox/
@@ -22,7 +22,7 @@ Classifier: Programming Language :: Python :: 3.12
22
22
  Classifier: Programming Language :: Python :: 3.13
23
23
  Classifier: Typing :: Typed
24
24
  Requires-Python: >=3.9.0
25
- Requires-Dist: antsibull-fileutils<2.0.0,>=1.2.0
25
+ Requires-Dist: antsibull-fileutils<2.0.0,>=1.3.0
26
26
  Requires-Dist: nox>=2025.2.9
27
27
  Requires-Dist: packaging
28
28
  Requires-Dist: pydantic~=2.0
@@ -38,6 +38,7 @@ Provides-Extra: coverage
38
38
  Requires-Dist: coverage[toml]; extra == 'coverage'
39
39
  Provides-Extra: dev
40
40
  Requires-Dist: antsibull-changelog; extra == 'dev'
41
+ Requires-Dist: antsibull-docutils>=1.2.0; extra == 'dev'
41
42
  Requires-Dist: black>=24; extra == 'dev'
42
43
  Requires-Dist: coverage[toml]; extra == 'dev'
43
44
  Requires-Dist: flake8>=3.8.0; extra == 'dev'
@@ -58,6 +59,7 @@ Requires-Dist: pytest; extra == 'test'
58
59
  Requires-Dist: pytest-cov; extra == 'test'
59
60
  Requires-Dist: pytest-error-for-skips; extra == 'test'
60
61
  Provides-Extra: typing
62
+ Requires-Dist: antsibull-docutils>=1.2.0; extra == 'typing'
61
63
  Requires-Dist: mypy; extra == 'typing'
62
64
  Requires-Dist: types-pyyaml; extra == 'typing'
63
65
  Description-Content-Type: text/markdown
@@ -104,15 +106,15 @@ and install the requirements needed to run the tests there.
104
106
 
105
107
  ---
106
108
 
107
- antsibull-nox depends on the sister antsibull-fileutils project.
108
- By default, `nox` will install a development version of this project from Github.
109
- If you're hacking on antsibull-fileutils alongside antsibull-nox,
110
- nox will automatically install this project from `../antsibull-fileutils`
109
+ antsibull-nox depends on the sister antsibull-docutils and antsibull-fileutils projects.
110
+ By default, `nox` will install development versions of this projects from Github.
111
+ If you're hacking on antsibull-docutils and/or antsibull-fileutils alongside antsibull-nox,
112
+ nox will automatically install these projects from `../antsibull-docutils` and `../antsibull-fileutils`
111
113
  when running tests if those paths exist.
112
114
  You can change this behavior through the `OTHER_ANTSIBULL_MODE` env var:
113
115
 
114
116
  - `OTHER_ANTSIBULL_MODE=auto` — the default behavior described above
115
- - `OTHER_ANTSIBULL_MODE=local` — install the project from `../antsibull-fileutils`.
117
+ - `OTHER_ANTSIBULL_MODE=local` — install the projects from `../antsibull-docutils` and `../antsibull-fileutils`.
116
118
  Fail if that path doesn't exist.
117
119
  - `OTHER_ANTSIBULL_MODE=git` — install the projects from the Github main branch
118
120
  - `OTHER_ANTSIBULL_MODE=pypi` — install the latest versions from PyPI
@@ -40,15 +40,15 @@ and install the requirements needed to run the tests there.
40
40
 
41
41
  ---
42
42
 
43
- antsibull-nox depends on the sister antsibull-fileutils project.
44
- By default, `nox` will install a development version of this project from Github.
45
- If you're hacking on antsibull-fileutils alongside antsibull-nox,
46
- nox will automatically install this project from `../antsibull-fileutils`
43
+ antsibull-nox depends on the sister antsibull-docutils and antsibull-fileutils projects.
44
+ By default, `nox` will install development versions of this projects from Github.
45
+ If you're hacking on antsibull-docutils and/or antsibull-fileutils alongside antsibull-nox,
46
+ nox will automatically install these projects from `../antsibull-docutils` and `../antsibull-fileutils`
47
47
  when running tests if those paths exist.
48
48
  You can change this behavior through the `OTHER_ANTSIBULL_MODE` env var:
49
49
 
50
50
  - `OTHER_ANTSIBULL_MODE=auto` — the default behavior described above
51
- - `OTHER_ANTSIBULL_MODE=local` — install the project from `../antsibull-fileutils`.
51
+ - `OTHER_ANTSIBULL_MODE=local` — install the projects from `../antsibull-docutils` and `../antsibull-fileutils`.
52
52
  Fail if that path doesn't exist.
53
53
  - `OTHER_ANTSIBULL_MODE=git` — install the projects from the Github main branch
54
54
  - `OTHER_ANTSIBULL_MODE=pypi` — install the latest versions from PyPI
@@ -219,3 +219,52 @@ releases:
219
219
  - 78-env-vars-integration-tests.yml
220
220
  - 80-action-groups.yml
221
221
  release_date: '2025-05-18'
222
+ 0.6.0:
223
+ changes:
224
+ bugfixes:
225
+ - Do not fail if an unexpected action group is found that only contains a
226
+ metadata entry (https://github.com/ansible-community/antsibull-nox/pull/81).
227
+ - Fix config file types for ``no_unwanted_files_skip_directories`` and ``no_unwanted_files_yaml_directories``
228
+ to what is documented; that is, do not allow ``None`` (https://github.com/ansible-community/antsibull-nox/pull/85).
229
+ - Ignore metadata entries in action groups (https://github.com/ansible-community/antsibull-nox/pull/81).
230
+ - The ``no_unwanted_files_skip_directories`` option for the ``no-unwanted-files``
231
+ was not used (https://github.com/ansible-community/antsibull-nox/pull/85).
232
+ minor_changes:
233
+ - Add new extra check ``no-trailing-whitespace`` (https://github.com/ansible-community/antsibull-nox/pull/85).
234
+ - Add new options to ``docs-check`` that allow to validate code blocks in
235
+ collection extra docs (https://github.com/ansible-community/antsibull-nox/pull/88).
236
+ - Support running ``ruff check --fix --select ...`` in the ``formatters``
237
+ session by setting ``run_ruff_autofix=true`` in the config (https://github.com/ansible-community/antsibull-nox/issues/70,
238
+ https://github.com/ansible-community/antsibull-nox/pull/82).
239
+ - Support running ``ruff check`` in the ``codeqa`` session by setting ``run_ruff_check=true``
240
+ in the config (https://github.com/ansible-community/antsibull-nox/issues/70,
241
+ https://github.com/ansible-community/antsibull-nox/pull/82).
242
+ - Support running ``ruff format`` in the ``formatters`` session by setting
243
+ ``run_ruff_format=true`` in the config (https://github.com/ansible-community/antsibull-nox/issues/70,
244
+ https://github.com/ansible-community/antsibull-nox/pull/82).
245
+ - The ``yamllint`` test now also checks YAML and YAML+Jinja code blocks in
246
+ extra documentation (``.rst`` files in ``docs/docsite/rst/``) (https://github.com/ansible-community/antsibull-nox/pull/87).
247
+ release_summary: Bugfix and feature release.
248
+ fragments:
249
+ - 0.6.0.yml
250
+ - 81-action-group.yml
251
+ - 82-ruff.yml
252
+ - 85-no-trailing-whitespace.yml
253
+ - 87-yamllint-rst.yml
254
+ - 88-docs-check.yml
255
+ release_date: '2025-06-18'
256
+ 0.7.0:
257
+ changes:
258
+ minor_changes:
259
+ - Antsibull-nox's ansible-core ``devel`` and ``milestone`` branch versions
260
+ have been updated to 2.20. This means that ``stable-2.19`` will now be added
261
+ to CI matrices if ``max_version`` has not been explicitly specified (https://github.com/ansible-community/antsibull-nox/pull/91).
262
+ - The ``docs-check`` session now also passes the new ``--check-extra-docs-refs``
263
+ parameter to ``antsibull-docs lint-collection-docs`` for antsibull-docs
264
+ >= 2.18.0 (https://github.com/ansible-community/antsibull-nox/pull/90).
265
+ release_summary: Feature release.
266
+ fragments:
267
+ - 0.7.0.yml
268
+ - 90-antsibull-docs-lint.yml
269
+ - 91-ansible-core-2.19.yml
270
+ release_date: '2025-07-01'
@@ -1,48 +1,59 @@
1
1
  # Antsibull Nox Helper Release Notes
2
2
 
3
- **Topics**
4
-
5
- - <a href="#v0-5-0">v0\.5\.0</a>
6
- - <a href="#release-summary">Release Summary</a>
7
- - <a href="#minor-changes">Minor Changes</a>
8
- - <a href="#bugfixes">Bugfixes</a>
9
- - <a href="#v0-4-0">v0\.4\.0</a>
10
- - <a href="#release-summary-1">Release Summary</a>
11
- - <a href="#major-changes">Major Changes</a>
12
- - <a href="#minor-changes-1">Minor Changes</a>
13
- - <a href="#bugfixes-1">Bugfixes</a>
14
- - <a href="#v0-3-0">v0\.3\.0</a>
15
- - <a href="#release-summary-2">Release Summary</a>
16
- - <a href="#minor-changes-2">Minor Changes</a>
17
- - <a href="#removed-features-previously-deprecated">Removed Features \(previously deprecated\)</a>
18
- - <a href="#bugfixes-2">Bugfixes</a>
19
- - <a href="#v0-2-0">v0\.2\.0</a>
20
- - <a href="#release-summary-3">Release Summary</a>
21
- - <a href="#major-changes-1">Major Changes</a>
22
- - <a href="#minor-changes-3">Minor Changes</a>
23
- - <a href="#deprecated-features">Deprecated Features</a>
24
- - <a href="#v0-1-0">v0\.1\.0</a>
25
- - <a href="#release-summary-4">Release Summary</a>
26
- - <a href="#minor-changes-4">Minor Changes</a>
27
- - <a href="#breaking-changes--porting-guide">Breaking Changes / Porting Guide</a>
28
- - <a href="#bugfixes-3">Bugfixes</a>
29
- - <a href="#v0-0-1">v0\.0\.1</a>
30
- - <a href="#release-summary-5">Release Summary</a>
3
+ <a id="v0-7-0"></a>
4
+ ## v0\.7\.0
5
+
6
+ <a id="release-summary"></a>
7
+ ### Release Summary
8
+
9
+ Feature release\.
10
+
11
+ <a id="minor-changes"></a>
12
+ ### Minor Changes
13
+
14
+ * Antsibull\-nox\'s ansible\-core <code>devel</code> and <code>milestone</code> branch versions have been updated to 2\.20\. This means that <code>stable\-2\.19</code> will now be added to CI matrices if <code>max\_version</code> has not been explicitly specified \([https\://github\.com/ansible\-community/antsibull\-nox/pull/91](https\://github\.com/ansible\-community/antsibull\-nox/pull/91)\)\.
15
+ * The <code>docs\-check</code> session now also passes the new <code>\-\-check\-extra\-docs\-refs</code> parameter to <code>antsibull\-docs lint\-collection\-docs</code> for antsibull\-docs \>\= 2\.18\.0 \([https\://github\.com/ansible\-community/antsibull\-nox/pull/90](https\://github\.com/ansible\-community/antsibull\-nox/pull/90)\)\.
16
+
17
+ <a id="v0-6-0"></a>
18
+ ## v0\.6\.0
19
+
20
+ <a id="release-summary-1"></a>
21
+ ### Release Summary
22
+
23
+ Bugfix and feature release\.
24
+
25
+ <a id="minor-changes-1"></a>
26
+ ### Minor Changes
27
+
28
+ * Add new extra check <code>no\-trailing\-whitespace</code> \([https\://github\.com/ansible\-community/antsibull\-nox/pull/85](https\://github\.com/ansible\-community/antsibull\-nox/pull/85)\)\.
29
+ * Add new options to <code>docs\-check</code> that allow to validate code blocks in collection extra docs \([https\://github\.com/ansible\-community/antsibull\-nox/pull/88](https\://github\.com/ansible\-community/antsibull\-nox/pull/88)\)\.
30
+ * Support running <code>ruff check \-\-fix \-\-select \.\.\.</code> in the <code>formatters</code> session by setting <code>run\_ruff\_autofix\=true</code> in the config \([https\://github\.com/ansible\-community/antsibull\-nox/issues/70](https\://github\.com/ansible\-community/antsibull\-nox/issues/70)\, [https\://github\.com/ansible\-community/antsibull\-nox/pull/82](https\://github\.com/ansible\-community/antsibull\-nox/pull/82)\)\.
31
+ * Support running <code>ruff check</code> in the <code>codeqa</code> session by setting <code>run\_ruff\_check\=true</code> in the config \([https\://github\.com/ansible\-community/antsibull\-nox/issues/70](https\://github\.com/ansible\-community/antsibull\-nox/issues/70)\, [https\://github\.com/ansible\-community/antsibull\-nox/pull/82](https\://github\.com/ansible\-community/antsibull\-nox/pull/82)\)\.
32
+ * Support running <code>ruff format</code> in the <code>formatters</code> session by setting <code>run\_ruff\_format\=true</code> in the config \([https\://github\.com/ansible\-community/antsibull\-nox/issues/70](https\://github\.com/ansible\-community/antsibull\-nox/issues/70)\, [https\://github\.com/ansible\-community/antsibull\-nox/pull/82](https\://github\.com/ansible\-community/antsibull\-nox/pull/82)\)\.
33
+ * The <code>yamllint</code> test now also checks YAML and YAML\+Jinja code blocks in extra documentation \(<code>\.rst</code> files in <code>docs/docsite/rst/</code>\) \([https\://github\.com/ansible\-community/antsibull\-nox/pull/87](https\://github\.com/ansible\-community/antsibull\-nox/pull/87)\)\.
34
+
35
+ <a id="bugfixes"></a>
36
+ ### Bugfixes
37
+
38
+ * Do not fail if an unexpected action group is found that only contains a metadata entry \([https\://github\.com/ansible\-community/antsibull\-nox/pull/81](https\://github\.com/ansible\-community/antsibull\-nox/pull/81)\)\.
39
+ * Fix config file types for <code>no\_unwanted\_files\_skip\_directories</code> and <code>no\_unwanted\_files\_yaml\_directories</code> to what is documented\; that is\, do not allow <code>None</code> \([https\://github\.com/ansible\-community/antsibull\-nox/pull/85](https\://github\.com/ansible\-community/antsibull\-nox/pull/85)\)\.
40
+ * Ignore metadata entries in action groups \([https\://github\.com/ansible\-community/antsibull\-nox/pull/81](https\://github\.com/ansible\-community/antsibull\-nox/pull/81)\)\.
41
+ * The <code>no\_unwanted\_files\_skip\_directories</code> option for the <code>no\-unwanted\-files</code> was not used \([https\://github\.com/ansible\-community/antsibull\-nox/pull/85](https\://github\.com/ansible\-community/antsibull\-nox/pull/85)\)\.
31
42
 
32
43
  <a id="v0-5-0"></a>
33
44
  ## v0\.5\.0
34
45
 
35
- <a id="release-summary"></a>
46
+ <a id="release-summary-2"></a>
36
47
  ### Release Summary
37
48
 
38
49
  Feature and bugfix release\.
39
50
 
40
- <a id="minor-changes"></a>
51
+ <a id="minor-changes-2"></a>
41
52
  ### Minor Changes
42
53
 
43
54
  * Allow to pass environment variables as Ansible variables for integration tests with the new <code>ansible\_vars\_from\_env\_vars</code> option for <code>sessions\.ansible\_test\_integration\_w\_default\_container</code> \([https\://github\.com/ansible\-community/antsibull\-nox/pull/78](https\://github\.com/ansible\-community/antsibull\-nox/pull/78)\)\.
44
55
 
45
- <a id="bugfixes"></a>
56
+ <a id="bugfixes-1"></a>
46
57
  ### Bugfixes
47
58
 
48
59
  * Fix action group test\. No errors were reported due to a bug in the test \([https\://github\.com/ansible\-community/antsibull\-nox/pull/80](https\://github\.com/ansible\-community/antsibull\-nox/pull/80)\)\.
@@ -50,7 +61,7 @@ Feature and bugfix release\.
50
61
  <a id="v0-4-0"></a>
51
62
  ## v0\.4\.0
52
63
 
53
- <a id="release-summary-1"></a>
64
+ <a id="release-summary-3"></a>
54
65
  ### Release Summary
55
66
 
56
67
  Feature and bugfix release\.
@@ -60,7 +71,7 @@ Feature and bugfix release\.
60
71
 
61
72
  * Required collections can now be installed from different sources per depending on the ansible\-core version \([https\://github\.com/ansible\-community/antsibull\-nox/pull/76](https\://github\.com/ansible\-community/antsibull\-nox/pull/76)\)\.
62
73
 
63
- <a id="minor-changes-1"></a>
74
+ <a id="minor-changes-3"></a>
64
75
  ### Minor Changes
65
76
 
66
77
  * Capture mypy and pylint errors to report paths of files relative to collection\'s root\, instead of relative to the virtual <code>ansible\_collections</code> directory \([https\://github\.com/ansible\-community/antsibull\-nox/pull/75](https\://github\.com/ansible\-community/antsibull\-nox/pull/75)\)\.
@@ -69,7 +80,7 @@ Feature and bugfix release\.
69
80
  * The yamllint session now ignores <code>RETURN</code> documentation with values <code>\#</code> and \`\` \# \`\` \([https\://github\.com/ansible\-community/antsibull\-nox/pull/71](https\://github\.com/ansible\-community/antsibull\-nox/pull/71)\)\.
70
81
  * The yamllint test no longer shows all filenames in the command line \([https\://github\.com/ansible\-community/antsibull\-nox/pull/72](https\://github\.com/ansible\-community/antsibull\-nox/pull/72)\)\.
71
82
 
72
- <a id="bugfixes-1"></a>
83
+ <a id="bugfixes-2"></a>
73
84
  ### Bugfixes
74
85
 
75
86
  * Adjust yamllint test to no longer use the user\'s global config\, but only the project\'s config \([https\://github\.com/ansible\-community/antsibull\-nox/pull/72](https\://github\.com/ansible\-community/antsibull\-nox/pull/72)\)\.
@@ -77,7 +88,7 @@ Feature and bugfix release\.
77
88
  <a id="v0-3-0"></a>
78
89
  ## v0\.3\.0
79
90
 
80
- <a id="release-summary-2"></a>
91
+ <a id="release-summary-4"></a>
81
92
  ### Release Summary
82
93
 
83
94
  Feature release that is stabilizing the API\.
@@ -85,7 +96,7 @@ Feature release that is stabilizing the API\.
85
96
  All noxfiles and configs using this version should still work with antsibull\-nox 1\.0\.0\,
86
97
  unless a critical problem is found that cannot be solved in any other way\.
87
98
 
88
- <a id="minor-changes-2"></a>
99
+ <a id="minor-changes-4"></a>
89
100
  ### Minor Changes
90
101
 
91
102
  * Add <code>antsibull\-nox init</code> command that creates a <code>noxfile\.py</code> and <code>antsibull\-nox\.tomll</code> to get started \([https\://github\.com/ansible\-community/antsibull\-nox/pull/58](https\://github\.com/ansible\-community/antsibull\-nox/pull/58)\)\.
@@ -104,7 +115,7 @@ unless a critical problem is found that cannot be solved in any other way\.
104
115
 
105
116
  * Removed all deprecated functions from <code>antsibull\_nox\.\*\*</code> that generate sessions\. The only functions left that are public API are <code>antsibull\_nox\.load\_antsibull\_nox\_toml\(\)</code>\, <code>antsibull\_nox\.add\_ansible\_test\_session\(\)</code>\, and <code>antsibull\_nox\.sessions\.prepare\_collections\(\)</code> \([https\://github\.com/ansible\-community/antsibull\-nox/pull/54](https\://github\.com/ansible\-community/antsibull\-nox/pull/54)\)\.
106
117
 
107
- <a id="bugfixes-2"></a>
118
+ <a id="bugfixes-3"></a>
108
119
  ### Bugfixes
109
120
 
110
121
  * Action groups extra test no longer fails if <code>action\_groups</code> does not exist in <code>meta/runtime\.yml</code>\. It can now be used to ensure that there is no action group present in <code>meta/runtime\.yml</code> \([https\://github\.com/ansible\-community/antsibull\-nox/pull/60](https\://github\.com/ansible\-community/antsibull\-nox/pull/60)\)\.
@@ -115,7 +126,7 @@ unless a critical problem is found that cannot be solved in any other way\.
115
126
  <a id="v0-2-0"></a>
116
127
  ## v0\.2\.0
117
128
 
118
- <a id="release-summary-3"></a>
129
+ <a id="release-summary-5"></a>
119
130
  ### Release Summary
120
131
 
121
132
  Major extension and overhaul with many breaking changes\. The next minor release is expected to bring more stabilization\.
@@ -125,7 +136,7 @@ Major extension and overhaul with many breaking changes\. The next minor release
125
136
 
126
137
  * There is now a new function <code>antsibull\_nox\.load\_antsibull\_nox\_toml\(\)</code> which loads <code>antsibull\-nox\.toml</code> and creates configuration and sessions from it\. Calling other functionality from <code>antsibull\_nox</code> in <code>noxfile\.py</code> is only necessary for creating own specialized sessions\, or ansible\-test sessions that cannot be created with the <code>antsibull\_nox\.add\_all\_ansible\_test\_\*\_test\_sessions\*\(\)</code> type functions \([https\://github\.com/ansible\-community/antsibull\-nox/pull/50](https\://github\.com/ansible\-community/antsibull\-nox/pull/50)\, [https\://github\.com/ansible\-community/antsibull\-nox/issues/34](https\://github\.com/ansible\-community/antsibull\-nox/issues/34)\)\.
127
138
 
128
- <a id="minor-changes-3"></a>
139
+ <a id="minor-changes-5"></a>
129
140
  ### Minor Changes
130
141
 
131
142
  * Add descriptions to generated sessions that are shown when running <code>nox \-\-list</code> \([https\://github\.com/ansible\-community/antsibull\-nox/pull/31](https\://github\.com/ansible\-community/antsibull\-nox/pull/31)\)\.
@@ -151,12 +162,12 @@ Major extension and overhaul with many breaking changes\. The next minor release
151
162
  <a id="v0-1-0"></a>
152
163
  ## v0\.1\.0
153
164
 
154
- <a id="release-summary-4"></a>
165
+ <a id="release-summary-6"></a>
155
166
  ### Release Summary
156
167
 
157
168
  Feature release\.
158
169
 
159
- <a id="minor-changes-4"></a>
170
+ <a id="minor-changes-6"></a>
160
171
  ### Minor Changes
161
172
 
162
173
  * A <code>build\-import\-check</code> session that builds and tries to import the collection with Galaxy Importer can be added with <code>add\_build\_import\_check\(\)</code> \([https\://github\.com/ansible\-community/antsibull\-nox/issues/15](https\://github\.com/ansible\-community/antsibull\-nox/issues/15)\, [https\://github\.com/ansible\-community/antsibull\-nox/pull/17](https\://github\.com/ansible\-community/antsibull\-nox/pull/17)\)\.
@@ -175,7 +186,7 @@ Feature release\.
175
186
 
176
187
  * The nox workflow now by default runs all sessions\, unless restricted with the <code>sessions</code> parameter \([https\://github\.com/ansible\-community/antsibull\-nox/pull/14](https\://github\.com/ansible\-community/antsibull\-nox/pull/14)\)\.
177
188
 
178
- <a id="bugfixes-3"></a>
189
+ <a id="bugfixes-4"></a>
179
190
  ### Bugfixes
180
191
 
181
192
  * Make sure that black in CI checks formatting instead of just reformatting \([https\://github\.com/ansible\-community/antsibull\-nox/pull/14](https\://github\.com/ansible\-community/antsibull\-nox/pull/14)\)\.
@@ -183,7 +194,7 @@ Feature release\.
183
194
  <a id="v0-0-1"></a>
184
195
  ## v0\.0\.1
185
196
 
186
- <a id="release-summary-5"></a>
197
+ <a id="release-summary-7"></a>
187
198
  ### Release Summary
188
199
 
189
200
  Initial alpha release\.