antsibull-nox 0.2.0__tar.gz → 0.4.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 (89) hide show
  1. {antsibull_nox-0.2.0 → antsibull_nox-0.4.0}/.flake8 +5 -1
  2. {antsibull_nox-0.2.0 → antsibull_nox-0.4.0}/.github/workflows/nox.yml +1 -1
  3. {antsibull_nox-0.2.0 → antsibull_nox-0.4.0}/.github/workflows/reusable-nox-matrix.yml +6 -6
  4. {antsibull_nox-0.2.0 → antsibull_nox-0.4.0}/.pylintrc.automated +1 -0
  5. antsibull_nox-0.2.0/docs/changelog.md → antsibull_nox-0.4.0/CHANGELOG.md +97 -7
  6. {antsibull_nox-0.2.0 → antsibull_nox-0.4.0}/CHANGELOG.rst +65 -0
  7. {antsibull_nox-0.2.0 → antsibull_nox-0.4.0}/PKG-INFO +2 -2
  8. {antsibull_nox-0.2.0 → antsibull_nox-0.4.0}/action.yml +2 -2
  9. {antsibull_nox-0.2.0 → antsibull_nox-0.4.0}/changelogs/changelog.yaml +85 -0
  10. antsibull_nox-0.2.0/CHANGELOG.md → antsibull_nox-0.4.0/docs/changelog.md +71 -21
  11. {antsibull_nox-0.2.0 → antsibull_nox-0.4.0}/docs/config-file.md +78 -3
  12. {antsibull_nox-0.2.0 → antsibull_nox-0.4.0}/docs/getting-started.md +4 -2
  13. {antsibull_nox-0.2.0 → antsibull_nox-0.4.0}/docs/nox-in-ci.md +0 -2
  14. antsibull_nox-0.4.0/docs/reference.md +290 -0
  15. {antsibull_nox-0.2.0 → antsibull_nox-0.4.0}/pyproject.toml +6 -2
  16. antsibull_nox-0.4.0/src/antsibull_nox/__init__.py +36 -0
  17. antsibull_nox-0.4.0/src/antsibull_nox/_pydantic.py +98 -0
  18. {antsibull_nox-0.2.0 → antsibull_nox-0.4.0}/src/antsibull_nox/ansible.py +15 -0
  19. antsibull_nox-0.4.0/src/antsibull_nox/cli.py +132 -0
  20. {antsibull_nox-0.2.0 → antsibull_nox-0.4.0}/src/antsibull_nox/collection/__init__.py +2 -2
  21. {antsibull_nox-0.2.0 → antsibull_nox-0.4.0}/src/antsibull_nox/collection/data.py +12 -0
  22. {antsibull_nox-0.2.0 → antsibull_nox-0.4.0}/src/antsibull_nox/collection/install.py +194 -79
  23. {antsibull_nox-0.2.0 → antsibull_nox-0.4.0}/src/antsibull_nox/collection/search.py +136 -34
  24. {antsibull_nox-0.2.0 → antsibull_nox-0.4.0}/src/antsibull_nox/config.py +51 -2
  25. {antsibull_nox-0.2.0 → antsibull_nox-0.4.0}/src/antsibull_nox/data/action-groups.py +2 -2
  26. antsibull_nox-0.4.0/src/antsibull_nox/data/antsibull-nox-lint-config.py +29 -0
  27. antsibull_nox-0.4.0/src/antsibull_nox/data/file-yamllint.py +138 -0
  28. {antsibull_nox-0.2.0 → antsibull_nox-0.4.0}/src/antsibull_nox/data/license-check.py +5 -1
  29. {antsibull_nox-0.2.0 → antsibull_nox-0.4.0}/src/antsibull_nox/data/plugin-yamllint.py +54 -24
  30. antsibull_nox-0.4.0/src/antsibull_nox/init.py +83 -0
  31. {antsibull_nox-0.2.0 → antsibull_nox-0.4.0}/src/antsibull_nox/interpret_config.py +29 -8
  32. antsibull_nox-0.4.0/src/antsibull_nox/lint_config.py +113 -0
  33. antsibull_nox-0.4.0/src/antsibull_nox/sessions/__init__.py +70 -0
  34. antsibull_nox-0.4.0/src/antsibull_nox/sessions/ansible_lint.py +60 -0
  35. antsibull_nox-0.4.0/src/antsibull_nox/sessions/ansible_test.py +559 -0
  36. antsibull_nox-0.4.0/src/antsibull_nox/sessions/build_import_check.py +147 -0
  37. antsibull_nox-0.4.0/src/antsibull_nox/sessions/collections.py +145 -0
  38. antsibull_nox-0.4.0/src/antsibull_nox/sessions/docs_check.py +78 -0
  39. antsibull_nox-0.4.0/src/antsibull_nox/sessions/extra_checks.py +127 -0
  40. antsibull_nox-0.4.0/src/antsibull_nox/sessions/license_check.py +73 -0
  41. antsibull_nox-0.4.0/src/antsibull_nox/sessions/lint.py +694 -0
  42. antsibull_nox-0.4.0/src/antsibull_nox/sessions/utils.py +206 -0
  43. antsibull_nox-0.4.0/tests/test-collection/antsibull-nox.toml +8 -0
  44. {antsibull_nox-0.2.0 → antsibull_nox-0.4.0}/tests/test-collection/galaxy.yml +2 -1
  45. {antsibull_nox-0.2.0 → antsibull_nox-0.4.0}/tests/test-collection/noxfile.py +1 -8
  46. {antsibull_nox-0.2.0 → antsibull_nox-0.4.0}/tests/test-collection/plugins/modules/test.py +1 -0
  47. {antsibull_nox-0.2.0 → antsibull_nox-0.4.0}/tests/unit/test_collection.py +9 -3
  48. antsibull_nox-0.2.0/docs/reference.md +0 -1049
  49. antsibull_nox-0.2.0/src/antsibull_nox/__init__.py +0 -80
  50. antsibull_nox-0.2.0/src/antsibull_nox/sessions.py +0 -1712
  51. {antsibull_nox-0.2.0 → antsibull_nox-0.4.0}/.github/dependabot.yml +0 -0
  52. {antsibull_nox-0.2.0 → antsibull_nox-0.4.0}/.github/patchback.yml +0 -0
  53. {antsibull_nox-0.2.0 → antsibull_nox-0.4.0}/.github/workflows/test-gh-action.yml +0 -0
  54. {antsibull_nox-0.2.0 → antsibull_nox-0.4.0}/.gitignore +0 -0
  55. {antsibull_nox-0.2.0 → antsibull_nox-0.4.0}/.readthedocs.yml +0 -0
  56. {antsibull_nox-0.2.0 → antsibull_nox-0.4.0}/CHANGELOG.md.license +0 -0
  57. {antsibull_nox-0.2.0 → antsibull_nox-0.4.0}/CHANGELOG.rst.license +0 -0
  58. {antsibull_nox-0.2.0 → antsibull_nox-0.4.0}/LICENSE +0 -0
  59. {antsibull_nox-0.2.0 → antsibull_nox-0.4.0}/LICENSES/GPL-3.0-or-later.txt +0 -0
  60. {antsibull_nox-0.2.0 → antsibull_nox-0.4.0}/README.md +0 -0
  61. {antsibull_nox-0.2.0 → antsibull_nox-0.4.0}/REUSE.toml +0 -0
  62. {antsibull_nox-0.2.0 → antsibull_nox-0.4.0}/changelogs/changelog.yaml.license +0 -0
  63. {antsibull_nox-0.2.0 → antsibull_nox-0.4.0}/changelogs/config.yaml +0 -0
  64. {antsibull_nox-0.2.0 → antsibull_nox-0.4.0}/changelogs/fragments/.keep +0 -0
  65. {antsibull_nox-0.2.0 → antsibull_nox-0.4.0}/codecov.yml +0 -0
  66. {antsibull_nox-0.2.0 → antsibull_nox-0.4.0}/docs/changelog.md.license +0 -0
  67. {antsibull_nox-0.2.0 → antsibull_nox-0.4.0}/docs/community.md +0 -0
  68. {antsibull_nox-0.2.0 → antsibull_nox-0.4.0}/docs/index.md +0 -0
  69. {antsibull_nox-0.2.0 → antsibull_nox-0.4.0}/docs/introduction.md +0 -0
  70. {antsibull_nox-0.2.0 → antsibull_nox-0.4.0}/docs/troubleshooting.md +0 -0
  71. {antsibull_nox-0.2.0 → antsibull_nox-0.4.0}/docs-requirements.txt +0 -0
  72. {antsibull_nox-0.2.0 → antsibull_nox-0.4.0}/mkdocs.yml +0 -0
  73. {antsibull_nox-0.2.0 → antsibull_nox-0.4.0}/noxfile.py +0 -0
  74. {antsibull_nox-0.2.0 → antsibull_nox-0.4.0}/src/antsibull_nox/collection/extract.py +0 -0
  75. {antsibull_nox-0.2.0 → antsibull_nox-0.4.0}/src/antsibull_nox/data/antsibull_nox_data_util.py +0 -0
  76. {antsibull_nox-0.2.0 → antsibull_nox-0.4.0}/src/antsibull_nox/data/license-check.py.license +0 -0
  77. {antsibull_nox-0.2.0 → antsibull_nox-0.4.0}/src/antsibull_nox/data/no-unwanted-files.py +0 -0
  78. {antsibull_nox-0.2.0 → antsibull_nox-0.4.0}/src/antsibull_nox/data_util.py +0 -0
  79. {antsibull_nox-0.2.0 → antsibull_nox-0.4.0}/src/antsibull_nox/paths.py +0 -0
  80. {antsibull_nox-0.2.0 → antsibull_nox-0.4.0}/src/antsibull_nox/py.typed +0 -0
  81. {antsibull_nox-0.2.0 → antsibull_nox-0.4.0}/src/antsibull_nox/python.py +0 -0
  82. {antsibull_nox-0.2.0 → antsibull_nox-0.4.0}/src/antsibull_nox/utils.py +0 -0
  83. {antsibull_nox-0.2.0 → antsibull_nox-0.4.0}/tests/.keep +0 -0
  84. {antsibull_nox-0.2.0 → antsibull_nox-0.4.0}/tests/needs-network/test_ansible_core.py +0 -0
  85. {antsibull_nox-0.2.0 → antsibull_nox-0.4.0}/tests/unit/__init__.py +0 -0
  86. {antsibull_nox-0.2.0 → antsibull_nox-0.4.0}/tests/unit/test_ansible.py +0 -0
  87. {antsibull_nox-0.2.0 → antsibull_nox-0.4.0}/tests/unit/test_python.py +0 -0
  88. {antsibull_nox-0.2.0 → antsibull_nox-0.4.0}/tests/unit/test_utils.py +0 -0
  89. {antsibull_nox-0.2.0 → antsibull_nox-0.4.0}/tests/unit/utils.py +0 -0
@@ -10,4 +10,8 @@ max-complexity = 20
10
10
  max-line-length = 100
11
11
  statistics = True
12
12
  # These rules conflict with black
13
- ignore = E203, W503
13
+ ignore = E203, E704, W503
14
+
15
+ # Line in multi-line string is too long:
16
+ per-file-ignores =
17
+ src/antsibull_nox/init.py:E501
@@ -60,7 +60,7 @@ jobs:
60
60
  run: |
61
61
  sudo apt-get install -y ${{ matrix.packages }}
62
62
  - name: Setup nox
63
- uses: wntrblm/nox@2025.02.09
63
+ uses: wntrblm/nox@2025.05.01
64
64
  with:
65
65
  python-versions: "${{ matrix.python-versions }}"
66
66
  - name: Run nox
@@ -46,7 +46,7 @@ jobs:
46
46
  matrix:
47
47
  include: >-
48
48
  ${{ fromJson(needs.create-matrixes.outputs.sanity-matrix || '[{"skip": true}]') }}
49
- runs-on: ubuntu-latest
49
+ runs-on: ${{ matrix.gha-container || 'ubuntu-latest' }}
50
50
  steps:
51
51
  - name: Check out collection
52
52
  if: >-
@@ -71,14 +71,14 @@ jobs:
71
71
  path: tests/output/reports/coverage=sanity=*.xml
72
72
 
73
73
  units:
74
- name: ${{ matrix.skip && 'Skipping ' || '' }}Units (Ⓐ${{ matrix.ansible-core }})
74
+ name: ${{ matrix.skip && 'Skipping ' || '' }}Units (${{ matrix.display-name }})
75
75
  needs:
76
76
  - create-matrixes
77
77
  strategy:
78
78
  matrix:
79
79
  include: >-
80
80
  ${{ fromJson(needs.create-matrixes.outputs.units-matrix || '[{"skip": true}]') }}
81
- runs-on: ubuntu-latest
81
+ runs-on: ${{ matrix.gha-container || 'ubuntu-latest' }}
82
82
  steps:
83
83
  - name: Check out collection
84
84
  if: >-
@@ -103,7 +103,7 @@ jobs:
103
103
  path: tests/output/reports/coverage=units=*.xml
104
104
 
105
105
  integration:
106
- name: ${{ matrix.skip && 'Skipping ' || '' }}I (Ⓐ${{ matrix.ansible-core }}+py${{ matrix.test-python }}+${{ matrix.test-container }})
106
+ name: ${{ matrix.skip && 'Skipping ' || '' }}I (${{ matrix.display-name }})
107
107
  needs:
108
108
  - create-matrixes
109
109
  strategy:
@@ -111,7 +111,7 @@ jobs:
111
111
  matrix:
112
112
  include: >-
113
113
  ${{ fromJson(needs.create-matrixes.outputs.integration-matrix || '[{"skip": true}]') }}
114
- runs-on: ubuntu-latest
114
+ runs-on: ${{ matrix.gha-container || 'ubuntu-latest' }}
115
115
  steps:
116
116
  - name: Check out collection
117
117
  if: >-
@@ -129,7 +129,7 @@ jobs:
129
129
  sessions: ${{ matrix.name }}
130
130
  - name: Upload coverage for final step
131
131
  if: >-
132
- !matrix.skip && inputs.upload-codecov
132
+ !matrix.skip && inputs.upload-codecov && (matrix.has-coverage != 'false')
133
133
  uses: actions/upload-artifact@v4
134
134
  with:
135
135
  name: code-coverage-integration-${{ matrix.name }}
@@ -71,6 +71,7 @@ disable=
71
71
  too-many-lines,
72
72
  too-many-locals,
73
73
  too-many-positional-arguments,
74
+ too-many-statements,
74
75
 
75
76
  # Enable the message, report, category or checker with the given id(s). You can
76
77
  # either give multiple identifier separated by comma (,) or put this option
@@ -1,19 +1,109 @@
1
1
  # Antsibull Nox Helper Release Notes
2
2
 
3
+ **Topics**
4
+
5
+ - <a href="#v0-4-0">v0\.4\.0</a>
6
+ - <a href="#release-summary">Release Summary</a>
7
+ - <a href="#major-changes">Major Changes</a>
8
+ - <a href="#minor-changes">Minor Changes</a>
9
+ - <a href="#bugfixes">Bugfixes</a>
10
+ - <a href="#v0-3-0">v0\.3\.0</a>
11
+ - <a href="#release-summary-1">Release Summary</a>
12
+ - <a href="#minor-changes-1">Minor Changes</a>
13
+ - <a href="#removed-features-previously-deprecated">Removed Features \(previously deprecated\)</a>
14
+ - <a href="#bugfixes-1">Bugfixes</a>
15
+ - <a href="#v0-2-0">v0\.2\.0</a>
16
+ - <a href="#release-summary-2">Release Summary</a>
17
+ - <a href="#major-changes-1">Major Changes</a>
18
+ - <a href="#minor-changes-2">Minor Changes</a>
19
+ - <a href="#deprecated-features">Deprecated Features</a>
20
+ - <a href="#v0-1-0">v0\.1\.0</a>
21
+ - <a href="#release-summary-3">Release Summary</a>
22
+ - <a href="#minor-changes-3">Minor Changes</a>
23
+ - <a href="#breaking-changes--porting-guide">Breaking Changes / Porting Guide</a>
24
+ - <a href="#bugfixes-2">Bugfixes</a>
25
+ - <a href="#v0-0-1">v0\.0\.1</a>
26
+ - <a href="#release-summary-4">Release Summary</a>
27
+
28
+ <a id="v0-4-0"></a>
29
+ ## v0\.4\.0
30
+
31
+ <a id="release-summary"></a>
32
+ ### Release Summary
33
+
34
+ Feature and bugfix release\.
35
+
36
+ <a id="major-changes"></a>
37
+ ### Major Changes
38
+
39
+ * 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)\)\.
40
+
41
+ <a id="minor-changes"></a>
42
+ ### Minor Changes
43
+
44
+ * 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)\)\.
45
+ * Make yamllint plugin check also check doc fragments \([https\://github\.com/ansible\-community/antsibull\-nox/pull/73](https\://github\.com/ansible\-community/antsibull\-nox/pull/73)\)\.
46
+ * Positional arguments passed to nox are now forwarded to <code>ansible\-lint</code> \([https\://github\.com/ansible\-community/antsibull\-nox/pull/74](https\://github\.com/ansible\-community/antsibull\-nox/pull/74)\)\.
47
+ * 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)\)\.
48
+ * 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)\)\.
49
+
50
+ <a id="bugfixes"></a>
51
+ ### Bugfixes
52
+
53
+ * 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)\)\.
54
+
55
+ <a id="v0-3-0"></a>
56
+ ## v0\.3\.0
57
+
58
+ <a id="release-summary-1"></a>
59
+ ### Release Summary
60
+
61
+ Feature release that is stabilizing the API\.
62
+
63
+ All noxfiles and configs using this version should still work with antsibull\-nox 1\.0\.0\,
64
+ unless a critical problem is found that cannot be solved in any other way\.
65
+
66
+ <a id="minor-changes-1"></a>
67
+ ### Minor Changes
68
+
69
+ * 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)\)\.
70
+ * Add <code>callback\_before</code> and <code>callback\_after</code> parameters to <code>antsibull\_nox\.add\_ansible\_test\_session\(\)</code> \([https\://github\.com/ansible\-community/antsibull\-nox/pull/63](https\://github\.com/ansible\-community/antsibull\-nox/pull/63)\)\.
71
+ * Add a <code>antsibull\-nox</code> CLI tool with a subcommand <code>lint\-config</code> that lints <code>noxfile\.py</code> and the <code>antsibull\-nox\.toml</code> config file \([https\://github\.com/ansible\-community/antsibull\-nox/pull/56](https\://github\.com/ansible\-community/antsibull\-nox/pull/56)\)\.
72
+ * Add a session for linting the antsibull\-nox configuration to <code>lint</code> \([https\://github\.com/ansible\-community/antsibull\-nox/pull/56](https\://github\.com/ansible\-community/antsibull\-nox/pull/56)\)\.
73
+ * Add new options <code>skip\_tests</code>\, <code>allow\_disabled</code>\, and <code>enable\_optional\_errors</code> for ansible\-test sanity sessions \([https\://github\.com/ansible\-community/antsibull\-nox/pull/61](https\://github\.com/ansible\-community/antsibull\-nox/pull/61)\)\.
74
+ * Allow to disable coverage upload for specific integration test jobs in shared workflow with <code>has\-coverage\=false</code> in extra data \([https\://github\.com/ansible\-community/antsibull\-nox/pull/64](https\://github\.com/ansible\-community/antsibull\-nox/pull/64)\)\.
75
+ * Ensure that Galaxy importer\'s output is actually collapsed on GHA \([https\://github\.com/ansible\-community/antsibull\-nox/pull/67](https\://github\.com/ansible\-community/antsibull\-nox/pull/67)\)\.
76
+ * Never show Galaxy importer output unless it can be collapsed\, verbosity is enabled\, or a new config option <code>galaxy\_importer\_always\_show\_logs</code> is set to <code>true</code> \([https\://github\.com/ansible\-community/antsibull\-nox/pull/67](https\://github\.com/ansible\-community/antsibull\-nox/pull/67)\)\.
77
+ * Skip symlinks that do not point to files in <code>license\-check</code> and <code>yamllint</code> sessions \([https\://github\.com/ansible\-community/antsibull\-nox/pull/61](https\://github\.com/ansible\-community/antsibull\-nox/pull/61)\)\.
78
+ * Update shared workflow to use a <code>display\-name</code> and <code>gha\-container</code> extra data \([https\://github\.com/ansible\-community/antsibull\-nox/pull/63](https\://github\.com/ansible\-community/antsibull\-nox/pull/63)\)\.
79
+
80
+ <a id="removed-features-previously-deprecated"></a>
81
+ ### Removed Features \(previously deprecated\)
82
+
83
+ * 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)\)\.
84
+
85
+ <a id="bugfixes-1"></a>
86
+ ### Bugfixes
87
+
88
+ * 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)\)\.
89
+ * Do not fail when trying to install an empty list of packages when <code>run\_reuse\=false</code> \([https\://github\.com/ansible\-community/antsibull\-nox/pull/65](https\://github\.com/ansible\-community/antsibull\-nox/pull/65)\)\.
90
+ * Make sure that <code>extra\_code\_files</code> is considered for <code>black</code> when <code>run\_black\_modules\=false</code> \([https\://github\.com/ansible\-community/antsibull\-nox/pull/59](https\://github\.com/ansible\-community/antsibull\-nox/pull/59)\)\.
91
+ * Make sure to flush stdout after calling <code>print\(\)</code> \([https\://github\.com/ansible\-community/antsibull\-nox/pull/67](https\://github\.com/ansible\-community/antsibull\-nox/pull/67)\)\.
92
+
3
93
  <a id="v0-2-0"></a>
4
94
  ## v0\.2\.0
5
95
 
6
- <a id="release-summary"></a>
96
+ <a id="release-summary-2"></a>
7
97
  ### Release Summary
8
98
 
9
99
  Major extension and overhaul with many breaking changes\. The next minor release is expected to bring more stabilization\.
10
100
 
11
- <a id="major-changes"></a>
101
+ <a id="major-changes-1"></a>
12
102
  ### Major Changes
13
103
 
14
104
  * 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)\)\.
15
105
 
16
- <a id="minor-changes"></a>
106
+ <a id="minor-changes-2"></a>
17
107
  ### Minor Changes
18
108
 
19
109
  * 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)\)\.
@@ -39,12 +129,12 @@ Major extension and overhaul with many breaking changes\. The next minor release
39
129
  <a id="v0-1-0"></a>
40
130
  ## v0\.1\.0
41
131
 
42
- <a id="release-summary-1"></a>
132
+ <a id="release-summary-3"></a>
43
133
  ### Release Summary
44
134
 
45
135
  Feature release\.
46
136
 
47
- <a id="minor-changes-1"></a>
137
+ <a id="minor-changes-3"></a>
48
138
  ### Minor Changes
49
139
 
50
140
  * 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)\)\.
@@ -63,7 +153,7 @@ Feature release\.
63
153
 
64
154
  * 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)\)\.
65
155
 
66
- <a id="bugfixes"></a>
156
+ <a id="bugfixes-2"></a>
67
157
  ### Bugfixes
68
158
 
69
159
  * 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)\)\.
@@ -71,7 +161,7 @@ Feature release\.
71
161
  <a id="v0-0-1"></a>
72
162
  ## v0\.0\.1
73
163
 
74
- <a id="release-summary-2"></a>
164
+ <a id="release-summary-4"></a>
75
165
  ### Release Summary
76
166
 
77
167
  Initial alpha release\.
@@ -4,6 +4,71 @@ Antsibull Nox Helper Release Notes
4
4
 
5
5
  .. contents:: Topics
6
6
 
7
+ v0.4.0
8
+ ======
9
+
10
+ Release Summary
11
+ ---------------
12
+
13
+ Feature and bugfix release.
14
+
15
+ Major Changes
16
+ -------------
17
+
18
+ - 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).
19
+
20
+ Minor Changes
21
+ -------------
22
+
23
+ - Capture mypy and pylint errors to report paths of files relative to collection's root, instead of relative to the virtual ``ansible_collections`` directory (https://github.com/ansible-community/antsibull-nox/pull/75).
24
+ - Make yamllint plugin check also check doc fragments (https://github.com/ansible-community/antsibull-nox/pull/73).
25
+ - Positional arguments passed to nox are now forwarded to ``ansible-lint`` (https://github.com/ansible-community/antsibull-nox/pull/74).
26
+ - The yamllint session now ignores ``RETURN`` documentation with values ``#`` and `` # `` (https://github.com/ansible-community/antsibull-nox/pull/71).
27
+ - The yamllint test no longer shows all filenames in the command line (https://github.com/ansible-community/antsibull-nox/pull/72).
28
+
29
+ Bugfixes
30
+ --------
31
+
32
+ - 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).
33
+
34
+ v0.3.0
35
+ ======
36
+
37
+ Release Summary
38
+ ---------------
39
+
40
+ Feature release that is stabilizing the API.
41
+
42
+ All noxfiles and configs using this version should still work with antsibull-nox 1.0.0,
43
+ unless a critical problem is found that cannot be solved in any other way.
44
+
45
+ Minor Changes
46
+ -------------
47
+
48
+ - Add ``antsibull-nox init`` command that creates a ``noxfile.py`` and ``antsibull-nox.tomll`` to get started (https://github.com/ansible-community/antsibull-nox/pull/58).
49
+ - Add ``callback_before`` and ``callback_after`` parameters to ``antsibull_nox.add_ansible_test_session()`` (https://github.com/ansible-community/antsibull-nox/pull/63).
50
+ - Add a ``antsibull-nox`` CLI tool with a subcommand ``lint-config`` that lints ``noxfile.py`` and the ``antsibull-nox.toml`` config file (https://github.com/ansible-community/antsibull-nox/pull/56).
51
+ - Add a session for linting the antsibull-nox configuration to ``lint`` (https://github.com/ansible-community/antsibull-nox/pull/56).
52
+ - Add new options ``skip_tests``, ``allow_disabled``, and ``enable_optional_errors`` for ansible-test sanity sessions (https://github.com/ansible-community/antsibull-nox/pull/61).
53
+ - Allow to disable coverage upload for specific integration test jobs in shared workflow with ``has-coverage=false`` in extra data (https://github.com/ansible-community/antsibull-nox/pull/64).
54
+ - Ensure that Galaxy importer's output is actually collapsed on GHA (https://github.com/ansible-community/antsibull-nox/pull/67).
55
+ - Never show Galaxy importer output unless it can be collapsed, verbosity is enabled, or a new config option ``galaxy_importer_always_show_logs`` is set to ``true`` (https://github.com/ansible-community/antsibull-nox/pull/67).
56
+ - Skip symlinks that do not point to files in ``license-check`` and ``yamllint`` sessions (https://github.com/ansible-community/antsibull-nox/pull/61).
57
+ - Update shared workflow to use a ``display-name`` and ``gha-container`` extra data (https://github.com/ansible-community/antsibull-nox/pull/63).
58
+
59
+ Removed Features (previously deprecated)
60
+ ----------------------------------------
61
+
62
+ - Removed all deprecated functions from ``antsibull_nox.**`` that generate sessions. The only functions left that are public API are ``antsibull_nox.load_antsibull_nox_toml()``, ``antsibull_nox.add_ansible_test_session()``, and ``antsibull_nox.sessions.prepare_collections()`` (https://github.com/ansible-community/antsibull-nox/pull/54).
63
+
64
+ Bugfixes
65
+ --------
66
+
67
+ - Action groups extra test no longer fails if ``action_groups`` does not exist in ``meta/runtime.yml``. It can now be used to ensure that there is no action group present in ``meta/runtime.yml`` (https://github.com/ansible-community/antsibull-nox/pull/60).
68
+ - Do not fail when trying to install an empty list of packages when ``run_reuse=false`` (https://github.com/ansible-community/antsibull-nox/pull/65).
69
+ - Make sure that ``extra_code_files`` is considered for ``black`` when ``run_black_modules=false`` (https://github.com/ansible-community/antsibull-nox/pull/59).
70
+ - Make sure to flush stdout after calling ``print()`` (https://github.com/ansible-community/antsibull-nox/pull/67).
71
+
7
72
  v0.2.0
8
73
  ======
9
74
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: antsibull-nox
3
- Version: 0.2.0
3
+ Version: 0.4.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/
@@ -11,7 +11,7 @@ Author-email: Felix Fontein <felix@fontein.de>, Toshio Kuratomi <a.badger@gmail.
11
11
  Maintainer-email: Felix Fontein <felix@fontein.de>, Maxwell G <maxwell@gtmx.me>
12
12
  License-Expression: GPL-3.0-or-later
13
13
  License-File: LICENSES/GPL-3.0-or-later.txt
14
- Classifier: Development Status :: 3 - Alpha
14
+ Classifier: Development Status :: 4 - Beta
15
15
  Classifier: Framework :: Ansible
16
16
  Classifier: Intended Audience :: Developers
17
17
  Classifier: Programming Language :: Python :: 3
@@ -62,7 +62,7 @@ runs:
62
62
  - name: "Set up nox environments"
63
63
  run: |
64
64
  echo "::group::Set up nox environments"
65
- nox --verbose --install-only${{ inputs.sessions && ' --sessions ' || '' }}${{ inputs.sessions }}
65
+ nox --verbose --install-only${{ inputs.sessions && ' --sessions ' || '' }}${{ inputs.sessions }} 2>&1
66
66
  echo "::endgroup::"
67
67
  env:
68
68
  FORCE_COLOR: "1"
@@ -72,7 +72,7 @@ runs:
72
72
  - name: "Run nox"
73
73
  id: run-nox
74
74
  run: |
75
- nox --verbose --reuse-existing-virtualenvs --no-install${{ inputs.sessions && ' --sessions ' || '' }}${{ inputs.sessions }}${{ inputs.extra-args && ' -- ' || '' }}${{ inputs.extra-args }}
75
+ nox --verbose --reuse-existing-virtualenvs --no-install${{ inputs.sessions && ' --sessions ' || '' }}${{ inputs.sessions }}${{ inputs.extra-args && ' -- ' || '' }}${{ inputs.extra-args }} 2>&1
76
76
  env:
77
77
  FORCE_COLOR: "1"
78
78
  ANTSIBULL_NOX_IGNORE_INSTALLED_COLLECTIONS: "true"
@@ -119,3 +119,88 @@ releases:
119
119
  - 50-config.yml
120
120
  - 51-use-installed.yml
121
121
  release_date: '2025-04-18'
122
+ 0.3.0:
123
+ changes:
124
+ bugfixes:
125
+ - Action groups extra test no longer fails if ``action_groups`` does not exist
126
+ in ``meta/runtime.yml``. It can now be used to ensure that there is no action
127
+ group present in ``meta/runtime.yml`` (https://github.com/ansible-community/antsibull-nox/pull/60).
128
+ - Do not fail when trying to install an empty list of packages when ``run_reuse=false``
129
+ (https://github.com/ansible-community/antsibull-nox/pull/65).
130
+ - Make sure that ``extra_code_files`` is considered for ``black`` when ``run_black_modules=false``
131
+ (https://github.com/ansible-community/antsibull-nox/pull/59).
132
+ - Make sure to flush stdout after calling ``print()`` (https://github.com/ansible-community/antsibull-nox/pull/67).
133
+ minor_changes:
134
+ - Add ``antsibull-nox init`` command that creates a ``noxfile.py`` and ``antsibull-nox.tomll``
135
+ to get started (https://github.com/ansible-community/antsibull-nox/pull/58).
136
+ - Add ``callback_before`` and ``callback_after`` parameters to ``antsibull_nox.add_ansible_test_session()``
137
+ (https://github.com/ansible-community/antsibull-nox/pull/63).
138
+ - Add a ``antsibull-nox`` CLI tool with a subcommand ``lint-config`` that
139
+ lints ``noxfile.py`` and the ``antsibull-nox.toml`` config file (https://github.com/ansible-community/antsibull-nox/pull/56).
140
+ - Add a session for linting the antsibull-nox configuration to ``lint`` (https://github.com/ansible-community/antsibull-nox/pull/56).
141
+ - Add new options ``skip_tests``, ``allow_disabled``, and ``enable_optional_errors``
142
+ for ansible-test sanity sessions (https://github.com/ansible-community/antsibull-nox/pull/61).
143
+ - Allow to disable coverage upload for specific integration test jobs in shared
144
+ workflow with ``has-coverage=false`` in extra data (https://github.com/ansible-community/antsibull-nox/pull/64).
145
+ - Ensure that Galaxy importer's output is actually collapsed on GHA (https://github.com/ansible-community/antsibull-nox/pull/67).
146
+ - Never show Galaxy importer output unless it can be collapsed, verbosity
147
+ is enabled, or a new config option ``galaxy_importer_always_show_logs``
148
+ is set to ``true`` (https://github.com/ansible-community/antsibull-nox/pull/67).
149
+ - Skip symlinks that do not point to files in ``license-check`` and ``yamllint``
150
+ sessions (https://github.com/ansible-community/antsibull-nox/pull/61).
151
+ - Update shared workflow to use a ``display-name`` and ``gha-container`` extra
152
+ data (https://github.com/ansible-community/antsibull-nox/pull/63).
153
+ release_summary: 'Feature release that is stabilizing the API.
154
+
155
+
156
+ All noxfiles and configs using this version should still work with antsibull-nox
157
+ 1.0.0,
158
+
159
+ unless a critical problem is found that cannot be solved in any other way.'
160
+ removed_features:
161
+ - Removed all deprecated functions from ``antsibull_nox.**`` that generate
162
+ sessions. The only functions left that are public API are ``antsibull_nox.load_antsibull_nox_toml()``,
163
+ ``antsibull_nox.add_ansible_test_session()``, and ``antsibull_nox.sessions.prepare_collections()``
164
+ (https://github.com/ansible-community/antsibull-nox/pull/54).
165
+ fragments:
166
+ - 0.3.0.yml
167
+ - 54-remove-explicit.yml
168
+ - 56-config-lint.yml
169
+ - 58-init.yml
170
+ - 59-extra-code-black.yml
171
+ - 60-fixes.yml
172
+ - 61-sanity.yml
173
+ - 62-symlinks.yml
174
+ - 63-workflow.yml
175
+ - 64-workflow.yml
176
+ - 65-fix.yml
177
+ - 67-galaxy-importer.yml
178
+ release_date: '2025-04-21'
179
+ 0.4.0:
180
+ changes:
181
+ bugfixes:
182
+ - Adjust yamllint test to no longer use the user's global config, but only
183
+ the project's config (https://github.com/ansible-community/antsibull-nox/pull/72).
184
+ major_changes:
185
+ - Required collections can now be installed from different sources per depending
186
+ on the ansible-core version (https://github.com/ansible-community/antsibull-nox/pull/76).
187
+ minor_changes:
188
+ - Capture mypy and pylint errors to report paths of files relative to collection's
189
+ root, instead of relative to the virtual ``ansible_collections`` directory
190
+ (https://github.com/ansible-community/antsibull-nox/pull/75).
191
+ - Make yamllint plugin check also check doc fragments (https://github.com/ansible-community/antsibull-nox/pull/73).
192
+ - Positional arguments passed to nox are now forwarded to ``ansible-lint``
193
+ (https://github.com/ansible-community/antsibull-nox/pull/74).
194
+ - 'The yamllint session now ignores ``RETURN`` documentation with values ``#``
195
+ and `` # `` (https://github.com/ansible-community/antsibull-nox/pull/71).'
196
+ - The yamllint test no longer shows all filenames in the command line (https://github.com/ansible-community/antsibull-nox/pull/72).
197
+ release_summary: Feature and bugfix release.
198
+ fragments:
199
+ - 0.4.0.yml
200
+ - 71-yamllint-return.yml
201
+ - 72-yamllint-config.yml
202
+ - 73-yamllint-doc-fragments.yml
203
+ - 74-ansible-lint-args.yml
204
+ - 75-mypy-pylint-errors.yml
205
+ - 76-collection-per-ansible-core-version.yml
206
+ release_date: '2025-05-06'
@@ -1,34 +1,84 @@
1
1
  # Antsibull Nox Helper Release Notes
2
2
 
3
- **Topics**
4
-
5
- - <a href="#v0-2-0">v0\.2\.0</a>
6
- - <a href="#release-summary">Release Summary</a>
7
- - <a href="#major-changes">Major Changes</a>
8
- - <a href="#minor-changes">Minor Changes</a>
9
- - <a href="#deprecated-features">Deprecated Features</a>
10
- - <a href="#v0-1-0">v0\.1\.0</a>
11
- - <a href="#release-summary-1">Release Summary</a>
12
- - <a href="#minor-changes-1">Minor Changes</a>
13
- - <a href="#breaking-changes--porting-guide">Breaking Changes / Porting Guide</a>
14
- - <a href="#bugfixes">Bugfixes</a>
15
- - <a href="#v0-0-1">v0\.0\.1</a>
16
- - <a href="#release-summary-2">Release Summary</a>
3
+ <a id="v0-4-0"></a>
4
+ ## v0\.4\.0
5
+
6
+ <a id="release-summary"></a>
7
+ ### Release Summary
8
+
9
+ Feature and bugfix release\.
10
+
11
+ <a id="major-changes"></a>
12
+ ### Major Changes
13
+
14
+ * 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)\)\.
15
+
16
+ <a id="minor-changes"></a>
17
+ ### Minor Changes
18
+
19
+ * 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)\)\.
20
+ * Make yamllint plugin check also check doc fragments \([https\://github\.com/ansible\-community/antsibull\-nox/pull/73](https\://github\.com/ansible\-community/antsibull\-nox/pull/73)\)\.
21
+ * Positional arguments passed to nox are now forwarded to <code>ansible\-lint</code> \([https\://github\.com/ansible\-community/antsibull\-nox/pull/74](https\://github\.com/ansible\-community/antsibull\-nox/pull/74)\)\.
22
+ * 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)\)\.
23
+ * 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)\)\.
24
+
25
+ <a id="bugfixes"></a>
26
+ ### Bugfixes
27
+
28
+ * 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)\)\.
29
+
30
+ <a id="v0-3-0"></a>
31
+ ## v0\.3\.0
32
+
33
+ <a id="release-summary-1"></a>
34
+ ### Release Summary
35
+
36
+ Feature release that is stabilizing the API\.
37
+
38
+ All noxfiles and configs using this version should still work with antsibull\-nox 1\.0\.0\,
39
+ unless a critical problem is found that cannot be solved in any other way\.
40
+
41
+ <a id="minor-changes-1"></a>
42
+ ### Minor Changes
43
+
44
+ * 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)\)\.
45
+ * Add <code>callback\_before</code> and <code>callback\_after</code> parameters to <code>antsibull\_nox\.add\_ansible\_test\_session\(\)</code> \([https\://github\.com/ansible\-community/antsibull\-nox/pull/63](https\://github\.com/ansible\-community/antsibull\-nox/pull/63)\)\.
46
+ * Add a <code>antsibull\-nox</code> CLI tool with a subcommand <code>lint\-config</code> that lints <code>noxfile\.py</code> and the <code>antsibull\-nox\.toml</code> config file \([https\://github\.com/ansible\-community/antsibull\-nox/pull/56](https\://github\.com/ansible\-community/antsibull\-nox/pull/56)\)\.
47
+ * Add a session for linting the antsibull\-nox configuration to <code>lint</code> \([https\://github\.com/ansible\-community/antsibull\-nox/pull/56](https\://github\.com/ansible\-community/antsibull\-nox/pull/56)\)\.
48
+ * Add new options <code>skip\_tests</code>\, <code>allow\_disabled</code>\, and <code>enable\_optional\_errors</code> for ansible\-test sanity sessions \([https\://github\.com/ansible\-community/antsibull\-nox/pull/61](https\://github\.com/ansible\-community/antsibull\-nox/pull/61)\)\.
49
+ * Allow to disable coverage upload for specific integration test jobs in shared workflow with <code>has\-coverage\=false</code> in extra data \([https\://github\.com/ansible\-community/antsibull\-nox/pull/64](https\://github\.com/ansible\-community/antsibull\-nox/pull/64)\)\.
50
+ * Ensure that Galaxy importer\'s output is actually collapsed on GHA \([https\://github\.com/ansible\-community/antsibull\-nox/pull/67](https\://github\.com/ansible\-community/antsibull\-nox/pull/67)\)\.
51
+ * Never show Galaxy importer output unless it can be collapsed\, verbosity is enabled\, or a new config option <code>galaxy\_importer\_always\_show\_logs</code> is set to <code>true</code> \([https\://github\.com/ansible\-community/antsibull\-nox/pull/67](https\://github\.com/ansible\-community/antsibull\-nox/pull/67)\)\.
52
+ * Skip symlinks that do not point to files in <code>license\-check</code> and <code>yamllint</code> sessions \([https\://github\.com/ansible\-community/antsibull\-nox/pull/61](https\://github\.com/ansible\-community/antsibull\-nox/pull/61)\)\.
53
+ * Update shared workflow to use a <code>display\-name</code> and <code>gha\-container</code> extra data \([https\://github\.com/ansible\-community/antsibull\-nox/pull/63](https\://github\.com/ansible\-community/antsibull\-nox/pull/63)\)\.
54
+
55
+ <a id="removed-features-previously-deprecated"></a>
56
+ ### Removed Features \(previously deprecated\)
57
+
58
+ * 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)\)\.
59
+
60
+ <a id="bugfixes-1"></a>
61
+ ### Bugfixes
62
+
63
+ * 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)\)\.
64
+ * Do not fail when trying to install an empty list of packages when <code>run\_reuse\=false</code> \([https\://github\.com/ansible\-community/antsibull\-nox/pull/65](https\://github\.com/ansible\-community/antsibull\-nox/pull/65)\)\.
65
+ * Make sure that <code>extra\_code\_files</code> is considered for <code>black</code> when <code>run\_black\_modules\=false</code> \([https\://github\.com/ansible\-community/antsibull\-nox/pull/59](https\://github\.com/ansible\-community/antsibull\-nox/pull/59)\)\.
66
+ * Make sure to flush stdout after calling <code>print\(\)</code> \([https\://github\.com/ansible\-community/antsibull\-nox/pull/67](https\://github\.com/ansible\-community/antsibull\-nox/pull/67)\)\.
17
67
 
18
68
  <a id="v0-2-0"></a>
19
69
  ## v0\.2\.0
20
70
 
21
- <a id="release-summary"></a>
71
+ <a id="release-summary-2"></a>
22
72
  ### Release Summary
23
73
 
24
74
  Major extension and overhaul with many breaking changes\. The next minor release is expected to bring more stabilization\.
25
75
 
26
- <a id="major-changes"></a>
76
+ <a id="major-changes-1"></a>
27
77
  ### Major Changes
28
78
 
29
79
  * 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)\)\.
30
80
 
31
- <a id="minor-changes"></a>
81
+ <a id="minor-changes-2"></a>
32
82
  ### Minor Changes
33
83
 
34
84
  * 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)\)\.
@@ -54,12 +104,12 @@ Major extension and overhaul with many breaking changes\. The next minor release
54
104
  <a id="v0-1-0"></a>
55
105
  ## v0\.1\.0
56
106
 
57
- <a id="release-summary-1"></a>
107
+ <a id="release-summary-3"></a>
58
108
  ### Release Summary
59
109
 
60
110
  Feature release\.
61
111
 
62
- <a id="minor-changes-1"></a>
112
+ <a id="minor-changes-3"></a>
63
113
  ### Minor Changes
64
114
 
65
115
  * 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)\)\.
@@ -78,7 +128,7 @@ Feature release\.
78
128
 
79
129
  * 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)\)\.
80
130
 
81
- <a id="bugfixes"></a>
131
+ <a id="bugfixes-2"></a>
82
132
  ### Bugfixes
83
133
 
84
134
  * 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)\)\.
@@ -86,7 +136,7 @@ Feature release\.
86
136
  <a id="v0-0-1"></a>
87
137
  ## v0\.0\.1
88
138
 
89
- <a id="release-summary-2"></a>
139
+ <a id="release-summary-4"></a>
90
140
  ### Release Summary
91
141
 
92
142
  Initial alpha release\.