Skip to content

Releases: SINTEF/ci-cd

v2.7.4

29 Feb 13:50
Compare
Choose a tag to compare

Update the setver task

Fully support PEP 440 Python versions when running the setver task.
Add a test suite for the setver task.

Changelog

v2.7.4 (2024-02-29)

Full Changelog

Implemented enhancements:

  • Use Python versioning regex in setver #243

Merged pull requests:

* This Changelog was automatically generated by github_changelog_generator

v2.7.3

14 Feb 12:20
Compare
Choose a tag to compare

Fix committing newly created files

This patch update fixes the issue of creating a first release without a committed CHANGELOG.md file.

Changelog

v2.7.3 (2024-02-14)

Full Changelog

Fixed bugs:

  • Use git add -- . instead of git commit -a #236

Merged pull requests:

* This Changelog was automatically generated by github_changelog_generator

v2.7.2

13 Jan 22:39
Compare
Choose a tag to compare

Support first time releases

Patch update to fix a bug, where a first time release was not performed due to an expectation in the callable workflow for a a previous version to be present.

This update also introduces a DX lift due to the shift to ruff over pylint and isort.

Changelog

v2.7.2 (2024-01-13)

Full Changelog

Fixed bugs:

  • Support first release #232

Closed issues:

  • Use ruff instead of pylint (and isort) in code base #191

Merged pull requests:

* This Changelog was automatically generated by github_changelog_generator

v2.7.1

07 Dec 17:54
Compare
Choose a tag to compare

Patch release to remove unwanted code

Remove unwanted print-statements.

Changelog

v2.7.1 (2023-12-07)

Full Changelog

* This Changelog was automatically generated by github_changelog_generator

v2.7.0

07 Dec 17:34
Compare
Choose a tag to compare

Explicit Python support and more packaging usage

Check and verify the Python version in callable workflows that use the ci-cd package, allowing Python 3.7-13.
Implement usage of packaging.version.Version to support Pythonic versioning schemes, such as epoch.

Furthermore, this minor release introduces new input parameters for doing away with the setup of having a dedicated "permanent" dependencies branch (it is still an option to have this, of course) and allowing un-normalized Python package names in the dependencies. The latter for example adds support for cookiecutter Jinja-like variables to be present in place of a "real" Python package name in pyproject.toml

Changelog

v2.7.0 (2023-12-07)

Full Changelog

Implemented enhancements:

  • Toggle allowing invalid package name chars #208
  • Support all newer Python versions #207
  • Support not using a permanent dependencies branch #183

Fixed bugs:

  • Support epoch and post version segments #221
  • Utilize packaging.version.Version #220 (@CasperWA)

Closed issues:

  • Update to non-deprecated inputs in Actions #216

Merged pull requests:

* This Changelog was automatically generated by github_changelog_generator

v2.6.0

17 Nov 16:11
Compare
Choose a tag to compare

Properly handle version specifiers

This version greatly improves on the version specifier handling when updating the pyproject.toml file using either the callable workflow CI - Check pyproject.toml dependencies or the pre-commit hook Update dependencies in pyproject.toml.

It now utilizes the same logic as is implemented in the pip package, namely the packaging Python library to handle the dependencies and requirements listed in the pyproject.toml file.

To an extent, there is also support for version markers, specifically, specifying a dependency's validity according to a Python language version, e.g., my_package~=1.3; python_version < '3.8'. However, this support is limited in its scope, and does not support the full reasoning logic otherwise provided by the marker handling in packaging, meaning for example if you specify different Python language version requirements based on the OS, this may not be respected as intended by the user.

Changelog

v2.6.0 (2023-11-17)

Full Changelog

Implemented enhancements:

  • Modularize update_deps.py further #148

Fixed bugs:

  • Ensure version dependency ranges are respected when updating #141

Merged pull requests:

  • [Auto-generated] Update dependencies #214 (@TEAM4-0)
  • [Auto-generated] Check & update dependencies (pyproject.toml) #213 (@TEAM4-0)
  • [Auto-generated] Check & update dependencies (pyproject.toml) #206 (@TEAM4-0)
  • [Auto-generated] Update dependencies #204 (@TEAM4-0)
  • Handle version specifiers #190 (@CasperWA)

* This Changelog was automatically generated by github_changelog_generator

v2.5.3

25 Oct 14:51
Compare
Choose a tag to compare

Several fixes

Several fixes for the CI - Check dependencies callable workflow and its underlying task update_deps() have been implemented.
This fixes issues with spacing immediately prior to version specifiers, multiple parallel jobs each creating PRs with clashing branch names, and suppressing unnecessary warnings.

Changelog

v2.5.3 (2023-10-25)

Full Changelog

Implemented enhancements:

  • Avoid warning for inter-relative extra dependencies #198
  • Allow branch name customization #196

Fixed bugs:

  • A PR is not opened for CI - Check dependencies #195
  • Ignore options not parseable #194

Merged pull requests:

* This Changelog was automatically generated by github_changelog_generator

v2.5.2

04 Oct 08:05
Compare
Choose a tag to compare

Include extra toggle for releasing latest MkDocs version

It is now possible to not release a latest MkDocs documentation version. This is a feature specific to releasing documentation in the MkDocs framework and is backwards compatible, as the default value is true, i.e., keeping with the current behavior if no action is taken by users.

Furthermore, some GH Actions were updated.

Changelog

v2.5.2 (2023-10-04)

Full Changelog

Implemented enhancements:

  • Toggle latest alias MkDocs release #187

Merged pull requests:

* This Changelog was automatically generated by github_changelog_generator

v2.5.1

30 Aug 09:00
Compare
Choose a tag to compare

Patch release for regression fix

This release fixes a regression for the --full-docs-dir input to the docs-api-reference pre-commit hook, which happened after implementing Windows support.

Furthermore, the CD - Release callable workflow has been made less strict concerning release tag naming. Semantic versioning is still required.

Changelog

v2.5.1 (2023-08-30)

Full Changelog

Fixed bugs:

  • Regression in --full-docs-dir input #174
  • Too strict release tag name requirements #172

Merged pull requests:

* This Changelog was automatically generated by github_changelog_generator

v2.5.0

29 Aug 12:41
Compare
Choose a tag to compare

Support for Windows

Support and tests for Windows has been added for the pre-commit hooks.

The documentation has been updated as well with an improved distinction between single and multi-line inputs.

Changelog

v2.5.0 (2023-08-29)

Full Changelog

Fixed bugs:

  • pylint_options not working as intended #169
  • Pre-commit for documentation not working on windows #160

Merged pull requests:

* This Changelog was automatically generated by github_changelog_generator