-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
68 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
# 0.20.0 - 2024-12-16 | ||
|
||
## 🚨 Breaking Changes | ||
* **Matrices in CI/CD workflows will be generated automatically now** | ||
|
||
Make sure you have installed all the latest workflow files, especially the newly added ones: | ||
|
||
- `matrix-all.yml` | ||
- `matrix-python.yml` | ||
- `matrix-exasol.yml` | ||
|
||
|
||
## ✨ Added | ||
* Added support for dynamically generated workflow matrices. | ||
|
||
This feature allows you to easily change the test matrices in one place: `noxconfig.py`. | ||
|
||
Note: As usual, there are different ways a user can adjust or change the behavior. In the case of the build matrices, there are three obvious ways: | ||
|
||
- Set the appropriate fields in the `noxconfig.py` project configuration (`PROJECT_CONFIG`): | ||
* `python_versions = [ ... ]` | ||
* `exasol_versions = [ ... ]` | ||
- Overwrite the nox tasks: | ||
* `matrix:all` | ||
* `matrix:python` | ||
* `matrix:exasol` | ||
- Overwrite/replace the matrix generation workflows: | ||
* `matrix-all.yml` | ||
* `matrix-python.yml` | ||
* `matrix-exasol.yml` | ||
|
||
Among all of the above, the safest way is to set the matrix-related fields in your project config object in `noxconfig.py`. | ||
|
||
* Added a nox task to validate the build/test artifacts and use it in the github workflow report | ||
|
||
|
||
## 📚 Documentation | ||
|
||
* Added new entries to the frequently asked questions regarding `multiversion documentation` | ||
|
||
|
||
## 🐞 Fixed | ||
|
||
* Fixed `index.rst` documentation template to provide the correct underlining length of the main heading | ||
* Added multi-version extension to Sphinx configuration of the project template | ||
* fixed bug in tbx worflow install error if directory exists [#298](https://github.com/exasol/python-toolbox/issues/298) also [#297](https://github.com/exasol/python-toolbox/issues/297) | ||
|
||
## 🔩 Internal | ||
* Relocked dependencies |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,49 +1 @@ | ||
# Unreleased | ||
|
||
## 🚨 Breaking Changes | ||
* **Matrices in CI/CD workflows will be generated automatically now** | ||
|
||
Make sure you have installed all the latest workflow files, especially the newly added ones: | ||
|
||
- `matrix-all.yml` | ||
- `matrix-python.yml` | ||
- `matrix-exasol.yml` | ||
|
||
|
||
## ✨ Added | ||
* Added support for dynamically generated workflow matrices. | ||
|
||
This feature allows you to easily change the test matrices in one place: `noxconfig.py`. | ||
|
||
Note: As usual, there are different ways a user can adjust or change the behavior. In the case of the build matrices, there are three obvious ways: | ||
|
||
- Set the appropriate fields in the `noxconfig.py` project configuration (`PROJECT_CONFIG`): | ||
* `python_versions = [ ... ]` | ||
* `exasol_versions = [ ... ]` | ||
- Overwrite the nox tasks: | ||
* `matrix:all` | ||
* `matrix:python` | ||
* `matrix:exasol` | ||
- Overwrite/replace the matrix generation workflows: | ||
* `matrix-all.yml` | ||
* `matrix-python.yml` | ||
* `matrix-exasol.yml` | ||
|
||
Among all of the above, the safest way is to set the matrix-related fields in your project config object in `noxconfig.py`. | ||
|
||
* Added a nox task to validate the build/test artifacts and use it in the github workflow report | ||
|
||
|
||
## 📚 Documentation | ||
|
||
* Added new entries to the frequently asked questions regarding `multiversion documentation` | ||
|
||
|
||
## 🐞 Fixed | ||
|
||
* Fixed `index.rst` documentation template to provide the correct underlining length of the main heading | ||
* Added multi-version extension to Sphinx configuration of the project template | ||
* fixed bug in tbx worflow install error if directory exists [#298](https://github.com/exasol/python-toolbox/issues/298) also [#297](https://github.com/exasol/python-toolbox/issues/297) | ||
|
||
## 🔩 Internal | ||
* Relocked dependencies |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,7 +20,7 @@ jobs: | |
fetch-depth: 0 | ||
|
||
- name: Setup Python & Poetry Environment | ||
uses: exasol/python-toolbox/.github/actions/python-environment@0.19.0 | ||
uses: exasol/python-toolbox/.github/actions/python-environment@0.20.0 | ||
|
||
- name: Download Artifacts | ||
uses: actions/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ name = "exasol-toolbox" | |
packages = [ | ||
{ include = "exasol" }, | ||
] | ||
version = "0.19.0" | ||
version = "0.20.0" | ||
description = "Your one-stop solution for managing all standard tasks and core workflows of your Python project." | ||
authors = [ | ||
"Nicola Coretti <[email protected]>" | ||
|