antsibull-nox 0.5.0__tar.gz → 0.6.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 (91) hide show
  1. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/.github/workflows/nox.yml +6 -0
  2. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/CHANGELOG.md +56 -26
  3. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/CHANGELOG.rst +26 -0
  4. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/PKG-INFO +9 -7
  5. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/README.md +5 -5
  6. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/changelogs/changelog.yaml +34 -0
  7. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/docs/changelog.md +41 -15
  8. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/docs/config-file.md +178 -40
  9. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/noxfile.py +8 -1
  10. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/pyproject.toml +2 -1
  11. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/src/antsibull_nox/__init__.py +1 -1
  12. antsibull_nox-0.6.0/src/antsibull_nox/collection/__init__.py +36 -0
  13. antsibull_nox-0.6.0/src/antsibull_nox/collection/build.py +69 -0
  14. antsibull_nox-0.5.0/src/antsibull_nox/collection/__init__.py → antsibull_nox-0.6.0/src/antsibull_nox/collection/utils.py +3 -18
  15. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/src/antsibull_nox/config.py +33 -2
  16. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/src/antsibull_nox/data/action-groups.py +9 -1
  17. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/src/antsibull_nox/data/antsibull_nox_data_util.py +25 -2
  18. antsibull_nox-0.6.0/src/antsibull_nox/data/no-trailing-whitespace.py +59 -0
  19. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/src/antsibull_nox/data/no-unwanted-files.py +1 -1
  20. antsibull_nox-0.6.0/src/antsibull_nox/data/rst-extra.py +167 -0
  21. antsibull_nox-0.6.0/src/antsibull_nox/data/rst-yamllint.py +192 -0
  22. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/src/antsibull_nox/interpret_config.py +32 -0
  23. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/src/antsibull_nox/paths.py +2 -3
  24. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/src/antsibull_nox/sessions/build_import_check.py +5 -35
  25. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/src/antsibull_nox/sessions/docs_check.py +56 -1
  26. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/src/antsibull_nox/sessions/extra_checks.py +19 -0
  27. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/src/antsibull_nox/sessions/lint.py +257 -56
  28. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/.flake8 +0 -0
  29. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/.github/dependabot.yml +0 -0
  30. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/.github/patchback.yml +0 -0
  31. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/.github/workflows/reusable-nox-matrix.yml +0 -0
  32. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/.github/workflows/test-gh-action.yml +0 -0
  33. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/.gitignore +0 -0
  34. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/.pylintrc.automated +0 -0
  35. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/.readthedocs.yml +0 -0
  36. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/CHANGELOG.md.license +0 -0
  37. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/CHANGELOG.rst.license +0 -0
  38. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/LICENSE +0 -0
  39. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/LICENSES/GPL-3.0-or-later.txt +0 -0
  40. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/REUSE.toml +0 -0
  41. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/action.yml +0 -0
  42. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/changelogs/changelog.yaml.license +0 -0
  43. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/changelogs/config.yaml +0 -0
  44. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/changelogs/fragments/.keep +0 -0
  45. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/codecov.yml +0 -0
  46. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/docs/changelog.md.license +0 -0
  47. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/docs/community.md +0 -0
  48. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/docs/getting-started.md +0 -0
  49. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/docs/index.md +0 -0
  50. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/docs/introduction.md +0 -0
  51. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/docs/nox-in-ci.md +0 -0
  52. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/docs/reference.md +0 -0
  53. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/docs/troubleshooting.md +0 -0
  54. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/docs-requirements.txt +0 -0
  55. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/mkdocs.yml +0 -0
  56. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/src/antsibull_nox/_pydantic.py +0 -0
  57. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/src/antsibull_nox/ansible.py +0 -0
  58. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/src/antsibull_nox/cli.py +0 -0
  59. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/src/antsibull_nox/collection/data.py +0 -0
  60. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/src/antsibull_nox/collection/extract.py +0 -0
  61. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/src/antsibull_nox/collection/install.py +0 -0
  62. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/src/antsibull_nox/collection/search.py +0 -0
  63. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/src/antsibull_nox/data/antsibull-nox-lint-config.py +0 -0
  64. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/src/antsibull_nox/data/file-yamllint.py +0 -0
  65. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/src/antsibull_nox/data/license-check.py +0 -0
  66. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/src/antsibull_nox/data/license-check.py.license +0 -0
  67. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/src/antsibull_nox/data/plugin-yamllint.py +0 -0
  68. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/src/antsibull_nox/data_util.py +0 -0
  69. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/src/antsibull_nox/init.py +0 -0
  70. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/src/antsibull_nox/lint_config.py +0 -0
  71. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/src/antsibull_nox/py.typed +0 -0
  72. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/src/antsibull_nox/python.py +0 -0
  73. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/src/antsibull_nox/sessions/__init__.py +0 -0
  74. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/src/antsibull_nox/sessions/ansible_lint.py +0 -0
  75. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/src/antsibull_nox/sessions/ansible_test.py +0 -0
  76. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/src/antsibull_nox/sessions/collections.py +0 -0
  77. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/src/antsibull_nox/sessions/license_check.py +0 -0
  78. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/src/antsibull_nox/sessions/utils.py +0 -0
  79. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/src/antsibull_nox/utils.py +0 -0
  80. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/tests/.keep +0 -0
  81. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/tests/needs-network/test_ansible_core.py +0 -0
  82. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/tests/test-collection/antsibull-nox.toml +0 -0
  83. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/tests/test-collection/galaxy.yml +0 -0
  84. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/tests/test-collection/noxfile.py +0 -0
  85. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/tests/test-collection/plugins/modules/test.py +0 -0
  86. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/tests/unit/__init__.py +0 -0
  87. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/tests/unit/test_ansible.py +0 -0
  88. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/tests/unit/test_collection.py +0 -0
  89. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/tests/unit/test_python.py +0 -0
  90. {antsibull_nox-0.5.0 → antsibull_nox-0.6.0}/tests/unit/test_utils.py +0 -0
  91. {antsibull_nox-0.5.0 → antsibull_nox-0.6.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:
@@ -2,47 +2,77 @@
2
2
 
3
3
  **Topics**
4
4
 
5
- - <a href="#v0-5-0">v0\.5\.0</a>
5
+ - <a href="#v0-6-0">v0\.6\.0</a>
6
6
  - <a href="#release-summary">Release Summary</a>
7
7
  - <a href="#minor-changes">Minor Changes</a>
8
8
  - <a href="#bugfixes">Bugfixes</a>
9
- - <a href="#v0-4-0">v0\.4\.0</a>
9
+ - <a href="#v0-5-0">v0\.5\.0</a>
10
10
  - <a href="#release-summary-1">Release Summary</a>
11
- - <a href="#major-changes">Major Changes</a>
12
11
  - <a href="#minor-changes-1">Minor Changes</a>
13
12
  - <a href="#bugfixes-1">Bugfixes</a>
14
- - <a href="#v0-3-0">v0\.3\.0</a>
13
+ - <a href="#v0-4-0">v0\.4\.0</a>
15
14
  - <a href="#release-summary-2">Release Summary</a>
15
+ - <a href="#major-changes">Major Changes</a>
16
16
  - <a href="#minor-changes-2">Minor Changes</a>
17
- - <a href="#removed-features-previously-deprecated">Removed Features \(previously deprecated\)</a>
18
17
  - <a href="#bugfixes-2">Bugfixes</a>
19
- - <a href="#v0-2-0">v0\.2\.0</a>
18
+ - <a href="#v0-3-0">v0\.3\.0</a>
20
19
  - <a href="#release-summary-3">Release Summary</a>
21
- - <a href="#major-changes-1">Major Changes</a>
22
20
  - <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>
21
+ - <a href="#removed-features-previously-deprecated">Removed Features \(previously deprecated\)</a>
22
+ - <a href="#bugfixes-3">Bugfixes</a>
23
+ - <a href="#v0-2-0">v0\.2\.0</a>
25
24
  - <a href="#release-summary-4">Release Summary</a>
25
+ - <a href="#major-changes-1">Major Changes</a>
26
26
  - <a href="#minor-changes-4">Minor Changes</a>
27
+ - <a href="#deprecated-features">Deprecated Features</a>
28
+ - <a href="#v0-1-0">v0\.1\.0</a>
29
+ - <a href="#release-summary-5">Release Summary</a>
30
+ - <a href="#minor-changes-5">Minor Changes</a>
27
31
  - <a href="#breaking-changes--porting-guide">Breaking Changes / Porting Guide</a>
28
- - <a href="#bugfixes-3">Bugfixes</a>
32
+ - <a href="#bugfixes-4">Bugfixes</a>
29
33
  - <a href="#v0-0-1">v0\.0\.1</a>
30
- - <a href="#release-summary-5">Release Summary</a>
34
+ - <a href="#release-summary-6">Release Summary</a>
35
+
36
+ <a id="v0-6-0"></a>
37
+ ## v0\.6\.0
38
+
39
+ <a id="release-summary"></a>
40
+ ### Release Summary
41
+
42
+ Bugfix and feature release\.
43
+
44
+ <a id="minor-changes"></a>
45
+ ### Minor Changes
46
+
47
+ * 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)\)\.
48
+ * 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)\)\.
49
+ * 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)\)\.
50
+ * 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)\)\.
51
+ * 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)\)\.
52
+ * 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)\)\.
53
+
54
+ <a id="bugfixes"></a>
55
+ ### Bugfixes
56
+
57
+ * 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)\)\.
58
+ * 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)\)\.
59
+ * Ignore metadata entries in action groups \([https\://github\.com/ansible\-community/antsibull\-nox/pull/81](https\://github\.com/ansible\-community/antsibull\-nox/pull/81)\)\.
60
+ * 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
61
 
32
62
  <a id="v0-5-0"></a>
33
63
  ## v0\.5\.0
34
64
 
35
- <a id="release-summary"></a>
65
+ <a id="release-summary-1"></a>
36
66
  ### Release Summary
37
67
 
38
68
  Feature and bugfix release\.
39
69
 
40
- <a id="minor-changes"></a>
70
+ <a id="minor-changes-1"></a>
41
71
  ### Minor Changes
42
72
 
43
73
  * 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
74
 
45
- <a id="bugfixes"></a>
75
+ <a id="bugfixes-1"></a>
46
76
  ### Bugfixes
47
77
 
48
78
  * 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 +80,7 @@ Feature and bugfix release\.
50
80
  <a id="v0-4-0"></a>
51
81
  ## v0\.4\.0
52
82
 
53
- <a id="release-summary-1"></a>
83
+ <a id="release-summary-2"></a>
54
84
  ### Release Summary
55
85
 
56
86
  Feature and bugfix release\.
@@ -60,7 +90,7 @@ Feature and bugfix release\.
60
90
 
61
91
  * 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
92
 
63
- <a id="minor-changes-1"></a>
93
+ <a id="minor-changes-2"></a>
64
94
  ### Minor Changes
65
95
 
66
96
  * 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 +99,7 @@ Feature and bugfix release\.
69
99
  * 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
100
  * 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
101
 
72
- <a id="bugfixes-1"></a>
102
+ <a id="bugfixes-2"></a>
73
103
  ### Bugfixes
74
104
 
75
105
  * 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 +107,7 @@ Feature and bugfix release\.
77
107
  <a id="v0-3-0"></a>
78
108
  ## v0\.3\.0
79
109
 
80
- <a id="release-summary-2"></a>
110
+ <a id="release-summary-3"></a>
81
111
  ### Release Summary
82
112
 
83
113
  Feature release that is stabilizing the API\.
@@ -85,7 +115,7 @@ Feature release that is stabilizing the API\.
85
115
  All noxfiles and configs using this version should still work with antsibull\-nox 1\.0\.0\,
86
116
  unless a critical problem is found that cannot be solved in any other way\.
87
117
 
88
- <a id="minor-changes-2"></a>
118
+ <a id="minor-changes-3"></a>
89
119
  ### Minor Changes
90
120
 
91
121
  * 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 +134,7 @@ unless a critical problem is found that cannot be solved in any other way\.
104
134
 
105
135
  * 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
136
 
107
- <a id="bugfixes-2"></a>
137
+ <a id="bugfixes-3"></a>
108
138
  ### Bugfixes
109
139
 
110
140
  * 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 +145,7 @@ unless a critical problem is found that cannot be solved in any other way\.
115
145
  <a id="v0-2-0"></a>
116
146
  ## v0\.2\.0
117
147
 
118
- <a id="release-summary-3"></a>
148
+ <a id="release-summary-4"></a>
119
149
  ### Release Summary
120
150
 
121
151
  Major extension and overhaul with many breaking changes\. The next minor release is expected to bring more stabilization\.
@@ -125,7 +155,7 @@ Major extension and overhaul with many breaking changes\. The next minor release
125
155
 
126
156
  * 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
157
 
128
- <a id="minor-changes-3"></a>
158
+ <a id="minor-changes-4"></a>
129
159
  ### Minor Changes
130
160
 
131
161
  * 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 +181,12 @@ Major extension and overhaul with many breaking changes\. The next minor release
151
181
  <a id="v0-1-0"></a>
152
182
  ## v0\.1\.0
153
183
 
154
- <a id="release-summary-4"></a>
184
+ <a id="release-summary-5"></a>
155
185
  ### Release Summary
156
186
 
157
187
  Feature release\.
158
188
 
159
- <a id="minor-changes-4"></a>
189
+ <a id="minor-changes-5"></a>
160
190
  ### Minor Changes
161
191
 
162
192
  * 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 +205,7 @@ Feature release\.
175
205
 
176
206
  * 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
207
 
178
- <a id="bugfixes-3"></a>
208
+ <a id="bugfixes-4"></a>
179
209
  ### Bugfixes
180
210
 
181
211
  * 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 +213,7 @@ Feature release\.
183
213
  <a id="v0-0-1"></a>
184
214
  ## v0\.0\.1
185
215
 
186
- <a id="release-summary-5"></a>
216
+ <a id="release-summary-6"></a>
187
217
  ### Release Summary
188
218
 
189
219
  Initial alpha release\.
@@ -4,6 +4,32 @@ Antsibull Nox Helper Release Notes
4
4
 
5
5
  .. contents:: Topics
6
6
 
7
+ v0.6.0
8
+ ======
9
+
10
+ Release Summary
11
+ ---------------
12
+
13
+ Bugfix and feature release.
14
+
15
+ Minor Changes
16
+ -------------
17
+
18
+ - Add new extra check ``no-trailing-whitespace`` (https://github.com/ansible-community/antsibull-nox/pull/85).
19
+ - 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).
20
+ - 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).
21
+ - 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).
22
+ - 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).
23
+ - 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).
24
+
25
+ Bugfixes
26
+ --------
27
+
28
+ - 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).
29
+ - 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).
30
+ - Ignore metadata entries in action groups (https://github.com/ansible-community/antsibull-nox/pull/81).
31
+ - The ``no_unwanted_files_skip_directories`` option for the ``no-unwanted-files`` was not used (https://github.com/ansible-community/antsibull-nox/pull/85).
32
+
7
33
  v0.5.0
8
34
  ======
9
35
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: antsibull-nox
3
- Version: 0.5.0
3
+ Version: 0.6.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,37 @@ 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'
@@ -1,19 +1,45 @@
1
1
  # Antsibull Nox Helper Release Notes
2
2
 
3
+ <a id="v0-6-0"></a>
4
+ ## v0\.6\.0
5
+
6
+ <a id="release-summary"></a>
7
+ ### Release Summary
8
+
9
+ Bugfix and feature release\.
10
+
11
+ <a id="minor-changes"></a>
12
+ ### Minor Changes
13
+
14
+ * 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)\)\.
15
+ * 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)\)\.
16
+ * 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)\)\.
17
+ * 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)\)\.
18
+ * 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)\)\.
19
+ * 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)\)\.
20
+
21
+ <a id="bugfixes"></a>
22
+ ### Bugfixes
23
+
24
+ * 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)\)\.
25
+ * 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)\)\.
26
+ * Ignore metadata entries in action groups \([https\://github\.com/ansible\-community/antsibull\-nox/pull/81](https\://github\.com/ansible\-community/antsibull\-nox/pull/81)\)\.
27
+ * 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)\)\.
28
+
3
29
  <a id="v0-5-0"></a>
4
30
  ## v0\.5\.0
5
31
 
6
- <a id="release-summary"></a>
32
+ <a id="release-summary-1"></a>
7
33
  ### Release Summary
8
34
 
9
35
  Feature and bugfix release\.
10
36
 
11
- <a id="minor-changes"></a>
37
+ <a id="minor-changes-1"></a>
12
38
  ### Minor Changes
13
39
 
14
40
  * 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
41
 
16
- <a id="bugfixes"></a>
42
+ <a id="bugfixes-1"></a>
17
43
  ### Bugfixes
18
44
 
19
45
  * 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 +47,7 @@ Feature and bugfix release\.
21
47
  <a id="v0-4-0"></a>
22
48
  ## v0\.4\.0
23
49
 
24
- <a id="release-summary-1"></a>
50
+ <a id="release-summary-2"></a>
25
51
  ### Release Summary
26
52
 
27
53
  Feature and bugfix release\.
@@ -31,7 +57,7 @@ Feature and bugfix release\.
31
57
 
32
58
  * 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
59
 
34
- <a id="minor-changes-1"></a>
60
+ <a id="minor-changes-2"></a>
35
61
  ### Minor Changes
36
62
 
37
63
  * 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 +66,7 @@ Feature and bugfix release\.
40
66
  * 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
67
  * 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
68
 
43
- <a id="bugfixes-1"></a>
69
+ <a id="bugfixes-2"></a>
44
70
  ### Bugfixes
45
71
 
46
72
  * 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 +74,7 @@ Feature and bugfix release\.
48
74
  <a id="v0-3-0"></a>
49
75
  ## v0\.3\.0
50
76
 
51
- <a id="release-summary-2"></a>
77
+ <a id="release-summary-3"></a>
52
78
  ### Release Summary
53
79
 
54
80
  Feature release that is stabilizing the API\.
@@ -56,7 +82,7 @@ Feature release that is stabilizing the API\.
56
82
  All noxfiles and configs using this version should still work with antsibull\-nox 1\.0\.0\,
57
83
  unless a critical problem is found that cannot be solved in any other way\.
58
84
 
59
- <a id="minor-changes-2"></a>
85
+ <a id="minor-changes-3"></a>
60
86
  ### Minor Changes
61
87
 
62
88
  * 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 +101,7 @@ unless a critical problem is found that cannot be solved in any other way\.
75
101
 
76
102
  * 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
103
 
78
- <a id="bugfixes-2"></a>
104
+ <a id="bugfixes-3"></a>
79
105
  ### Bugfixes
80
106
 
81
107
  * 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 +112,7 @@ unless a critical problem is found that cannot be solved in any other way\.
86
112
  <a id="v0-2-0"></a>
87
113
  ## v0\.2\.0
88
114
 
89
- <a id="release-summary-3"></a>
115
+ <a id="release-summary-4"></a>
90
116
  ### Release Summary
91
117
 
92
118
  Major extension and overhaul with many breaking changes\. The next minor release is expected to bring more stabilization\.
@@ -96,7 +122,7 @@ Major extension and overhaul with many breaking changes\. The next minor release
96
122
 
97
123
  * 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
124
 
99
- <a id="minor-changes-3"></a>
125
+ <a id="minor-changes-4"></a>
100
126
  ### Minor Changes
101
127
 
102
128
  * 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 +148,12 @@ Major extension and overhaul with many breaking changes\. The next minor release
122
148
  <a id="v0-1-0"></a>
123
149
  ## v0\.1\.0
124
150
 
125
- <a id="release-summary-4"></a>
151
+ <a id="release-summary-5"></a>
126
152
  ### Release Summary
127
153
 
128
154
  Feature release\.
129
155
 
130
- <a id="minor-changes-4"></a>
156
+ <a id="minor-changes-5"></a>
131
157
  ### Minor Changes
132
158
 
133
159
  * 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 +172,7 @@ Feature release\.
146
172
 
147
173
  * 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
174
 
149
- <a id="bugfixes-3"></a>
175
+ <a id="bugfixes-4"></a>
150
176
  ### Bugfixes
151
177
 
152
178
  * 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 +180,7 @@ Feature release\.
154
180
  <a id="v0-0-1"></a>
155
181
  ## v0\.0\.1
156
182
 
157
- <a id="release-summary-5"></a>
183
+ <a id="release-summary-6"></a>
158
184
  ### Release Summary
159
185
 
160
186
  Initial alpha release\.