Skip to content

Releases: radeklat/delfino-core

8.1.1

23 Sep 13:29
b431fbc
Compare
Choose a tag to compare

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog
and this project adheres to Semantic Versioning.
Types of changes are:

  • Breaking changes for breaking changes.
  • Features for new features or changes in existing functionality.
  • Fixes for any bug fixes.
  • Deprecated for soon-to-be removed features.

[Unreleased]

[8.1.1] - 2024-09-23

Fixes

  • Don't lowercase branch prefix if coming from configuration or issue tracker.

[8.1.0] - 2024-09-15

Features

  • Command dependencies-update will display link to a change log next to each dependency base on the changelog_urls.yaml file distributed with the plugin.

[8.0.0] - 2024-09-15

Breaking changes

  • Configuration option tool.delfino.plugins.delfino-core.branch_prefix has been moved to tool.delfino.plugins.delfino-core.vcs.branch_prefix.
  • Configuration option tool.delfino.plugins.delfino-core.typecheck has been moved to tool.delfino.plugins.delfino-core.mypy.

Features

Integration with Jira issue tracker

In the vcs/gh/glab pr/mr start commands, the integration attempts to fetch issue title. The resulting branch name will be set to <ISSUE_PREFIX>-<ISSUE_NUMBER>/<ISSUE_TITLE> and the first commit message will be set to <ISSUE_TITLE>. Use the issue number in place of the title to trigger it. For example delfino mr start 123.

New configuration options under tool.delfino.plugins.delfino-core.issue_tracking
  • issue_prefix - The issue prefix (including a trailing dash).
  • tracker_url - The issue tracker URL. If not set, the integration will be disabled.
  • username_env_var - The environment variable containing the username for the issue tracker. Defaults to DELFINO_CORE_ISSUE_TRACKING_USERNAME.
  • api_key_env_var - The environment variable containing the API key for the issue tracker. Defaults to DELFINO_CORE_ISSUE_TRACKING_API_KEY.
New optional install dependencies
  • vcs - Installs httpx used for fetching issue title.

[7.5.0] - 2024-08-02

Features

  • Improve branch name character sanitization in vcs/gh/glab commands. Now not only trailing special characters are removed but also leading ones and ones around slashes. Example: !breaking: feature / branch. becomes breaking_feature/branch.

[7.4.6] - 2024-07-17

Fixes

  • Use @me instead of me as assignee when creating a Gitlab MR using vcs/glab pr/mr create/start commands.

[7.4.5] - 2024-07-17

Fixes

  • Finish Merge requests on web when creating a Gitlab MR using vcs/glab pr/mr create/start commands.

[7.4.4] - 2024-07-16

Fixes

  • Dependencies update.
  • ruff in version 0.5.0 has removed support for ruff <path> syntax and requires ruff check <path> instead. The ruff command has been updated to reflect this change, however it will allow this to be overridden by supplying a different action as the extra argument after --.

[7.4.3] - 2024-07-16

Fixes

  • Skip all prompts when creating a Gitlab MR using vcs/glab pr/mr create/start commands.

[7.4.2] - 2024-06-21

Fixes

  • Fix trunk branch hardcoded to main in vcs/gh/glab pr/mr start command.

[7.4.1] - 2024-06-21

Fixes

  • Allow / in branch name for vcs/gh/glab commands.

[7.4.0] - 2024-06-21

Features

  • New config option to allow specifying the branch name prefix for vcs commands. By default, it is set to the git username:
    [tool.delfino.plugins.delfino-core]
    branch_prefix = "your_prefix/"

[7.3.0] - 2024-06-20

Features

  • New command glab that wraps the glab CLI tool. Similar to the existing gh command, it has the following subcommands:
    • glab mr create
    • glab mr start
    • glab mr view
  • New command vcs that auto-selects the correct VCS CLI tool in the current directory based on git remote. Currently, gh and glab are supported. It has the following subcommands:
    • vcs pr/mr create
    • vcs pr/mr start
    • vcs pr/mr view

[7.2.4] - 2024-01-23

Fixes

  • Do not require PyYAML when the pre-commit command is not used.

[7.2.3] - 2024-01-23

Fixes

  • Missing ruff as an optional dependency in the verify group.

[7.2.2] - 2023-10-31

Fixes

  • A crash in dependencies-update introduced by update of delfino.

[7.2.1] - 2023-10-31

Fixes

  • dependencies-update strips final underscore from the branch name.

[7.2.0] - 2023-10-24

Features

  • Replace heading and wait messages in output of the verify and dependencies-update commands with spinners.

[7.1.0] - 2023-10-14

Features

  • New command ruff. It has been also added to the lint command group.
  • New command gh with additional functionality on top of the gh CLI tool:
    • gh pr create adds sensible defaults for a single developer per branch to ask for almost no input. It also accepts a title of the PR as free text after the commands, as long as it doesn't start with a -.
    • gh pr start is a new command, which is like gh pr create, but also creates a new branch with a name matching the PR title, prefixed with current user's username. This branch is based off latest main and pushed to remote with an empty commit.
    • gh pr view default to opening the PR in a web browser.

Fixes

  • Asking questions in dependencies-updates now correctly defaults to "Yes" if no answer provided.

[7.0.0] - 2023-10-14

This version renames several commands and command groups to be more consistent and predictable. The intention is to name commands using the same name as the underlying tool. Several commands were also turned into command groups of individual commands, to allow more flexibility in configuration.

Breaking changes

Renamed commands

Old name New name
lint-pylint pylint
lint-pydocstyle pydocstyle
lint-pycodestyle pycodestyle
typecheck mypy
test pytest
test-unit pytest-unit
test-integration pytest-integration

Renamed command groups

  • The verify-all command group is now called verify, to match the existing format and lint command groups. However, the configration option to override the verify command group is still tool.delfino.plugins.delfino-core.verify_commands as it already matched the new name.

Renamed installation extras

Affects optional dependencies installed with delfino-core. Update your pyproject.toml file accordingly.

Old name New name
typecheck mypy
verify_all verify

Renamed group commands options

Affects list of commands visible in given command groups. Update tool.delfino.plugins.delfino-core.<COMMAND_GROUP_NAME>_commans in your pyproject.toml file accordingly.

Old name New name
typecheck mypy
verify_all_commands verify_commands

Renamed command functions

This is an implementation detail that should not be relied on, but it's listed here for completeness. Command and command group names were changed to match a pattern run_<COMMAND_NAME> and run_group_<COMMAND_GROUP_NAME>. This is to prevent clashes with the names of the underlying tools and easier discoverability.

Old name New name
coverage_open run_coverage_open
coverage_report run_coverage_report
dependencies_update run_dependencies_update
lint run_group_lint
lint_pycodestyle run_pycodestyle
lint_pydocstyle run_pydocstyle
lint_pylint run_pylint
pre_commit run_pre_commit
run_format run_group_format
switch_python_version run_switch_python_version
test run_group_test
test_all run_pytest
test_integration run_pytest_integration
test_unit run_pytest_unit
typecheck run_mypy
verify_all run_group_verify

Features

  • Help text for all command groups is now generated, preventing typos and stale information about commands.

New commands

  • ensure-pre-commit
  • pyupgrade
  • isort
  • black

New command groups

  • The format command has been turned into a command group of individual.
    • Contains the following commands: ensure-pre-commit, pyupgrade, isort and black.
    • Can be overriden with tool.delfino.plugins.delfino-core.format_commands option in the pyproject.toml file.
  • test has been formally changed to a command group (functionally, it was already a group).
    • Contains the following commands: pytest and coverage-report.
    • Can be overriden with tool.delfino.plugins.delfino-core.test_commands option in the pyproject.toml file.

[6.1.0] - 2023-10-13

Features

  • New pre-commit command to run all stages of pre-commit or a single hook with the correct stage.

[6.0.0] - 2023-10-12

Breaking changes

  • Upgrade to delfino version 3.x, which requires pydantic>=2.0.

[5.2.2] - 2023-10-12

Fixes

  • pyupgrade incorrectly handling minor version number in tool.poetry.dependencies.python of pyproject.toml file...
Read more

8.1.0

15 Sep 18:05
c32cdb9
Compare
Choose a tag to compare

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog
and this project adheres to Semantic Versioning.
Types of changes are:

  • Breaking changes for breaking changes.
  • Features for new features or changes in existing functionality.
  • Fixes for any bug fixes.
  • Deprecated for soon-to-be removed features.

[Unreleased]

[8.1.0] - 2024-09-15

Features

  • Command dependencies-update will display link to a change log next to each dependency base on the changelog_urls.yaml file distributed with the plugin.

[8.0.0] - 2024-09-15

Breaking changes

  • Configuration option tool.delfino.plugins.delfino-core.branch_prefix has been moved to tool.delfino.plugins.delfino-core.vcs.branch_prefix.
  • Configuration option tool.delfino.plugins.delfino-core.typecheck has been moved to tool.delfino.plugins.delfino-core.mypy.

Features

Integration with Jira issue tracker

In the vcs/gh/glab pr/mr start commands, the integration attempts to fetch issue title. The resulting branch name will be set to <ISSUE_PREFIX>-<ISSUE_NUMBER>/<ISSUE_TITLE> and the first commit message will be set to <ISSUE_TITLE>. Use the issue number in place of the title to trigger it. For example delfino mr start 123.

New configuration options under tool.delfino.plugins.delfino-core.issue_tracking
  • issue_prefix - The issue prefix (including a trailing dash).
  • tracker_url - The issue tracker URL. If not set, the integration will be disabled.
  • username_env_var - The environment variable containing the username for the issue tracker. Defaults to DELFINO_CORE_ISSUE_TRACKING_USERNAME.
  • api_key_env_var - The environment variable containing the API key for the issue tracker. Defaults to DELFINO_CORE_ISSUE_TRACKING_API_KEY.
New optional install dependencies
  • vcs - Installs httpx used for fetching issue title.

[7.5.0] - 2024-08-02

Features

  • Improve branch name character sanitization in vcs/gh/glab commands. Now not only trailing special characters are removed but also leading ones and ones around slashes. Example: !breaking: feature / branch. becomes breaking_feature/branch.

[7.4.6] - 2024-07-17

Fixes

  • Use @me instead of me as assignee when creating a Gitlab MR using vcs/glab pr/mr create/start commands.

[7.4.5] - 2024-07-17

Fixes

  • Finish Merge requests on web when creating a Gitlab MR using vcs/glab pr/mr create/start commands.

[7.4.4] - 2024-07-16

Fixes

  • Dependencies update.
  • ruff in version 0.5.0 has removed support for ruff <path> syntax and requires ruff check <path> instead. The ruff command has been updated to reflect this change, however it will allow this to be overridden by supplying a different action as the extra argument after --.

[7.4.3] - 2024-07-16

Fixes

  • Skip all prompts when creating a Gitlab MR using vcs/glab pr/mr create/start commands.

[7.4.2] - 2024-06-21

Fixes

  • Fix trunk branch hardcoded to main in vcs/gh/glab pr/mr start command.

[7.4.1] - 2024-06-21

Fixes

  • Allow / in branch name for vcs/gh/glab commands.

[7.4.0] - 2024-06-21

Features

  • New config option to allow specifying the branch name prefix for vcs commands. By default, it is set to the git username:
    [tool.delfino.plugins.delfino-core]
    branch_prefix = "your_prefix/"

[7.3.0] - 2024-06-20

Features

  • New command glab that wraps the glab CLI tool. Similar to the existing gh command, it has the following subcommands:
    • glab mr create
    • glab mr start
    • glab mr view
  • New command vcs that auto-selects the correct VCS CLI tool in the current directory based on git remote. Currently, gh and glab are supported. It has the following subcommands:
    • vcs pr/mr create
    • vcs pr/mr start
    • vcs pr/mr view

[7.2.4] - 2024-01-23

Fixes

  • Do not require PyYAML when the pre-commit command is not used.

[7.2.3] - 2024-01-23

Fixes

  • Missing ruff as an optional dependency in the verify group.

[7.2.2] - 2023-10-31

Fixes

  • A crash in dependencies-update introduced by update of delfino.

[7.2.1] - 2023-10-31

Fixes

  • dependencies-update strips final underscore from the branch name.

[7.2.0] - 2023-10-24

Features

  • Replace heading and wait messages in output of the verify and dependencies-update commands with spinners.

[7.1.0] - 2023-10-14

Features

  • New command ruff. It has been also added to the lint command group.
  • New command gh with additional functionality on top of the gh CLI tool:
    • gh pr create adds sensible defaults for a single developer per branch to ask for almost no input. It also accepts a title of the PR as free text after the commands, as long as it doesn't start with a -.
    • gh pr start is a new command, which is like gh pr create, but also creates a new branch with a name matching the PR title, prefixed with current user's username. This branch is based off latest main and pushed to remote with an empty commit.
    • gh pr view default to opening the PR in a web browser.

Fixes

  • Asking questions in dependencies-updates now correctly defaults to "Yes" if no answer provided.

[7.0.0] - 2023-10-14

This version renames several commands and command groups to be more consistent and predictable. The intention is to name commands using the same name as the underlying tool. Several commands were also turned into command groups of individual commands, to allow more flexibility in configuration.

Breaking changes

Renamed commands

Old name New name
lint-pylint pylint
lint-pydocstyle pydocstyle
lint-pycodestyle pycodestyle
typecheck mypy
test pytest
test-unit pytest-unit
test-integration pytest-integration

Renamed command groups

  • The verify-all command group is now called verify, to match the existing format and lint command groups. However, the configration option to override the verify command group is still tool.delfino.plugins.delfino-core.verify_commands as it already matched the new name.

Renamed installation extras

Affects optional dependencies installed with delfino-core. Update your pyproject.toml file accordingly.

Old name New name
typecheck mypy
verify_all verify

Renamed group commands options

Affects list of commands visible in given command groups. Update tool.delfino.plugins.delfino-core.<COMMAND_GROUP_NAME>_commans in your pyproject.toml file accordingly.

Old name New name
typecheck mypy
verify_all_commands verify_commands

Renamed command functions

This is an implementation detail that should not be relied on, but it's listed here for completeness. Command and command group names were changed to match a pattern run_<COMMAND_NAME> and run_group_<COMMAND_GROUP_NAME>. This is to prevent clashes with the names of the underlying tools and easier discoverability.

Old name New name
coverage_open run_coverage_open
coverage_report run_coverage_report
dependencies_update run_dependencies_update
lint run_group_lint
lint_pycodestyle run_pycodestyle
lint_pydocstyle run_pydocstyle
lint_pylint run_pylint
pre_commit run_pre_commit
run_format run_group_format
switch_python_version run_switch_python_version
test run_group_test
test_all run_pytest
test_integration run_pytest_integration
test_unit run_pytest_unit
typecheck run_mypy
verify_all run_group_verify

Features

  • Help text for all command groups is now generated, preventing typos and stale information about commands.

New commands

  • ensure-pre-commit
  • pyupgrade
  • isort
  • black

New command groups

  • The format command has been turned into a command group of individual.
    • Contains the following commands: ensure-pre-commit, pyupgrade, isort and black.
    • Can be overriden with tool.delfino.plugins.delfino-core.format_commands option in the pyproject.toml file.
  • test has been formally changed to a command group (functionally, it was already a group).
    • Contains the following commands: pytest and coverage-report.
    • Can be overriden with tool.delfino.plugins.delfino-core.test_commands option in the pyproject.toml file.

[6.1.0] - 2023-10-13

Features

  • New pre-commit command to run all stages of pre-commit or a single hook with the correct stage.

[6.0.0] - 2023-10-12

Breaking changes

  • Upgrade to delfino version 3.x, which requires pydantic>=2.0.

[5.2.2] - 2023-10-12

Fixes

  • pyupgrade incorrectly handling minor version number in tool.poetry.dependencies.python of pyproject.toml file.
  • dependencies update.

[5.2.1] - 2023-09-15

Fixes

  • Dependencies update
  • Don't ask to git push if not...
Read more

8.0.0

15 Sep 15:43
da592c1
Compare
Choose a tag to compare

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog
and this project adheres to Semantic Versioning.
Types of changes are:

  • Breaking changes for breaking changes.
  • Features for new features or changes in existing functionality.
  • Fixes for any bug fixes.
  • Deprecated for soon-to-be removed features.

[Unreleased]

[8.0.0] - 2024-09-15

Breaking changes

  • Configuration option tool.delfino.plugins.delfino-core.branch_prefix has been moved to tool.delfino.plugins.delfino-core.vcs.branch_prefix.
  • Configuration option tool.delfino.plugins.delfino-core.typecheck has been moved to tool.delfino.plugins.delfino-core.mypy.

Features

Integration with Jira issue tracker

In the vcs/gh/glab pr/mr start commands, the integration attempts to fetch issue title. The resulting branch name will be set to <ISSUE_PREFIX>-<ISSUE_NUMBER>/<ISSUE_TITLE> and the first commit message will be set to <ISSUE_TITLE>. Use the issue number in place of the title to trigger it. For example delfino mr start 123.

New configuration options under tool.delfino.plugins.delfino-core.issue_tracking
  • issue_prefix - The issue prefix (including a trailing dash).
  • tracker_url - The issue tracker URL. If not set, the integration will be disabled.
  • username_env_var - The environment variable containing the username for the issue tracker. Defaults to DELFINO_CORE_ISSUE_TRACKING_USERNAME.
  • api_key_env_var - The environment variable containing the API key for the issue tracker. Defaults to DELFINO_CORE_ISSUE_TRACKING_API_KEY.
New optional install dependencies
  • vcs - Installs httpx used for fetching issue title.

[7.5.0] - 2024-08-02

Features

  • Improve branch name character sanitization in vcs/gh/glab commands. Now not only trailing special characters are removed but also leading ones and ones around slashes. Example: !breaking: feature / branch. becomes breaking_feature/branch.

[7.4.6] - 2024-07-17

Fixes

  • Use @me instead of me as assignee when creating a Gitlab MR using vcs/glab pr/mr create/start commands.

[7.4.5] - 2024-07-17

Fixes

  • Finish Merge requests on web when creating a Gitlab MR using vcs/glab pr/mr create/start commands.

[7.4.4] - 2024-07-16

Fixes

  • Dependencies update.
  • ruff in version 0.5.0 has removed support for ruff <path> syntax and requires ruff check <path> instead. The ruff command has been updated to reflect this change, however it will allow this to be overridden by supplying a different action as the extra argument after --.

[7.4.3] - 2024-07-16

Fixes

  • Skip all prompts when creating a Gitlab MR using vcs/glab pr/mr create/start commands.

[7.4.2] - 2024-06-21

Fixes

  • Fix trunk branch hardcoded to main in vcs/gh/glab pr/mr start command.

[7.4.1] - 2024-06-21

Fixes

  • Allow / in branch name for vcs/gh/glab commands.

[7.4.0] - 2024-06-21

Features

  • New config option to allow specifying the branch name prefix for vcs commands. By default, it is set to the git username:
    [tool.delfino.plugins.delfino-core]
    branch_prefix = "your_prefix/"

[7.3.0] - 2024-06-20

Features

  • New command glab that wraps the glab CLI tool. Similar to the existing gh command, it has the following subcommands:
    • glab mr create
    • glab mr start
    • glab mr view
  • New command vcs that auto-selects the correct VCS CLI tool in the current directory based on git remote. Currently, gh and glab are supported. It has the following subcommands:
    • vcs pr/mr create
    • vcs pr/mr start
    • vcs pr/mr view

[7.2.4] - 2024-01-23

Fixes

  • Do not require PyYAML when the pre-commit command is not used.

[7.2.3] - 2024-01-23

Fixes

  • Missing ruff as an optional dependency in the verify group.

[7.2.2] - 2023-10-31

Fixes

  • A crash in dependencies-update introduced by update of delfino.

[7.2.1] - 2023-10-31

Fixes

  • dependencies-update strips final underscore from the branch name.

[7.2.0] - 2023-10-24

Features

  • Replace heading and wait messages in output of the verify and dependencies-update commands with spinners.

[7.1.0] - 2023-10-14

Features

  • New command ruff. It has been also added to the lint command group.
  • New command gh with additional functionality on top of the gh CLI tool:
    • gh pr create adds sensible defaults for a single developer per branch to ask for almost no input. It also accepts a title of the PR as free text after the commands, as long as it doesn't start with a -.
    • gh pr start is a new command, which is like gh pr create, but also creates a new branch with a name matching the PR title, prefixed with current user's username. This branch is based off latest main and pushed to remote with an empty commit.
    • gh pr view default to opening the PR in a web browser.

Fixes

  • Asking questions in dependencies-updates now correctly defaults to "Yes" if no answer provided.

[7.0.0] - 2023-10-14

This version renames several commands and command groups to be more consistent and predictable. The intention is to name commands using the same name as the underlying tool. Several commands were also turned into command groups of individual commands, to allow more flexibility in configuration.

Breaking changes

Renamed commands

Old name New name
lint-pylint pylint
lint-pydocstyle pydocstyle
lint-pycodestyle pycodestyle
typecheck mypy
test pytest
test-unit pytest-unit
test-integration pytest-integration

Renamed command groups

  • The verify-all command group is now called verify, to match the existing format and lint command groups. However, the configration option to override the verify command group is still tool.delfino.plugins.delfino-core.verify_commands as it already matched the new name.

Renamed installation extras

Affects optional dependencies installed with delfino-core. Update your pyproject.toml file accordingly.

Old name New name
typecheck mypy
verify_all verify

Renamed group commands options

Affects list of commands visible in given command groups. Update tool.delfino.plugins.delfino-core.<COMMAND_GROUP_NAME>_commans in your pyproject.toml file accordingly.

Old name New name
typecheck mypy
verify_all_commands verify_commands

Renamed command functions

This is an implementation detail that should not be relied on, but it's listed here for completeness. Command and command group names were changed to match a pattern run_<COMMAND_NAME> and run_group_<COMMAND_GROUP_NAME>. This is to prevent clashes with the names of the underlying tools and easier discoverability.

Old name New name
coverage_open run_coverage_open
coverage_report run_coverage_report
dependencies_update run_dependencies_update
lint run_group_lint
lint_pycodestyle run_pycodestyle
lint_pydocstyle run_pydocstyle
lint_pylint run_pylint
pre_commit run_pre_commit
run_format run_group_format
switch_python_version run_switch_python_version
test run_group_test
test_all run_pytest
test_integration run_pytest_integration
test_unit run_pytest_unit
typecheck run_mypy
verify_all run_group_verify

Features

  • Help text for all command groups is now generated, preventing typos and stale information about commands.

New commands

  • ensure-pre-commit
  • pyupgrade
  • isort
  • black

New command groups

  • The format command has been turned into a command group of individual.
    • Contains the following commands: ensure-pre-commit, pyupgrade, isort and black.
    • Can be overriden with tool.delfino.plugins.delfino-core.format_commands option in the pyproject.toml file.
  • test has been formally changed to a command group (functionally, it was already a group).
    • Contains the following commands: pytest and coverage-report.
    • Can be overriden with tool.delfino.plugins.delfino-core.test_commands option in the pyproject.toml file.

[6.1.0] - 2023-10-13

Features

  • New pre-commit command to run all stages of pre-commit or a single hook with the correct stage.

[6.0.0] - 2023-10-12

Breaking changes

  • Upgrade to delfino version 3.x, which requires pydantic>=2.0.

[5.2.2] - 2023-10-12

Fixes

  • pyupgrade incorrectly handling minor version number in tool.poetry.dependencies.python of pyproject.toml file.
  • dependencies update.

[5.2.1] - 2023-09-15

Fixes

  • Dependencies update
  • Don't ask to git push if nothing was committed during dependencies-update.

[5.2.0] - 2023-07-03

Features

  • Add --stash (default) / --no-stash option to dependencies-update command to control whether to stash changes before updating dependencies.
    ...
Read more

7.5.0

02 Aug 10:37
683efbd
Compare
Choose a tag to compare

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog
and this project adheres to Semantic Versioning.
Types of changes are:

  • Breaking changes for breaking changes.
  • Features for new features or changes in existing functionality.
  • Fixes for any bug fixes.
  • Deprecated for soon-to-be removed features.

[Unreleased]

[7.5.0] - 2024-08-02

Features

  • Improve branch name character sanitization in vcs/gh/glab commands. Now not only trailing special characters are removed but also leading ones and ones around slashes. Example: !breaking: feature / branch. becomes breaking_feature/branch.

[7.4.6] - 2024-07-17

Fixes

  • Use @me instead of me as assignee when creating a Gitlab MR using vcs/glab pr/mr create/start commands.

[7.4.5] - 2024-07-17

Fixes

  • Finish Merge requests on web when creating a Gitlab MR using vcs/glab pr/mr create/start commands.

[7.4.4] - 2024-07-16

Fixes

  • Dependencies update.
  • ruff in version 0.5.0 has removed support for ruff <path> syntax and requires ruff check <path> instead. The ruff command has been updated to reflect this change, however it will allow this to be overridden by supplying a different action as the extra argument after --.

[7.4.3] - 2024-07-16

Fixes

  • Skip all prompts when creating a Gitlab MR using vcs/glab pr/mr create/start commands.

[7.4.2] - 2024-06-21

Fixes

  • Fix trunk branch hardcoded to main in vcs/gh/glab pr/mr start command.

[7.4.1] - 2024-06-21

Fixes

  • Allow / in branch name for vcs/gh/glab commands.

[7.4.0] - 2024-06-21

Features

  • New config option to allow specifying the branch name prefix for vcs commands. By default, it is set to the git username:
    [tool.delfino.plugins.delfino-core]
    branch_prefix = "your_prefix/"

[7.3.0] - 2024-06-20

Features

  • New command glab that wraps the glab CLI tool. Similar to the existing gh command, it has the following subcommands:
    • glab mr create
    • glab mr start
    • glab mr view
  • New command vcs that auto-selects the correct VCS CLI tool in the current directory based on git remote. Currently, gh and glab are supported. It has the following subcommands:
    • vcs pr/mr create
    • vcs pr/mr start
    • vcs pr/mr view

[7.2.4] - 2024-01-23

Fixes

  • Do not require PyYAML when the pre-commit command is not used.

[7.2.3] - 2024-01-23

Fixes

  • Missing ruff as an optional dependency in the verify group.

[7.2.2] - 2023-10-31

Fixes

  • A crash in dependencies-update introduced by update of delfino.

[7.2.1] - 2023-10-31

Fixes

  • dependencies-update strips final underscore from the branch name.

[7.2.0] - 2023-10-24

Features

  • Replace heading and wait messages in output of the verify and dependencies-update commands with spinners.

[7.1.0] - 2023-10-14

Features

  • New command ruff. It has been also added to the lint command group.
  • New command gh with additional functionality on top of the gh CLI tool:
    • gh pr create adds sensible defaults for a single developer per branch to ask for almost no input. It also accepts a title of the PR as free text after the commands, as long as it doesn't start with a -.
    • gh pr start is a new command, which is like gh pr create, but also creates a new branch with a name matching the PR title, prefixed with current user's username. This branch is based off latest main and pushed to remote with an empty commit.
    • gh pr view default to opening the PR in a web browser.

Fixes

  • Asking questions in dependencies-updates now correctly defaults to "Yes" if no answer provided.

[7.0.0] - 2023-10-14

This version renames several commands and command groups to be more consistent and predictable. The intention is to name commands using the same name as the underlying tool. Several commands were also turned into command groups of individual commands, to allow more flexibility in configuration.

Breaking changes

Renamed commands

Old name New name
lint-pylint pylint
lint-pydocstyle pydocstyle
lint-pycodestyle pycodestyle
typecheck mypy
test pytest
test-unit pytest-unit
test-integration pytest-integration

Renamed command groups

  • The verify-all command group is now called verify, to match the existing format and lint command groups. However, the configration option to override the verify command group is still tool.delfino.plugins.delfino-core.verify_commands as it already matched the new name.

Renamed installation extras

Affects optional dependencies installed with delfino-core. Update your pyproject.toml file accordingly.

Old name New name
typecheck mypy
verify_all verify

Renamed group commands options

Affects list of commands visible in given command groups. Update tool.delfino.plugins.delfino-core.<COMMAND_GROUP_NAME>_commans in your pyproject.toml file accordingly.

Old name New name
typecheck mypy
verify_all_commands verify_commands

Renamed command functions

This is an implementation detail that should not be relied on, but it's listed here for completeness. Command and command group names were changed to match a pattern run_<COMMAND_NAME> and run_group_<COMMAND_GROUP_NAME>. This is to prevent clashes with the names of the underlying tools and easier discoverability.

Old name New name
coverage_open run_coverage_open
coverage_report run_coverage_report
dependencies_update run_dependencies_update
lint run_group_lint
lint_pycodestyle run_pycodestyle
lint_pydocstyle run_pydocstyle
lint_pylint run_pylint
pre_commit run_pre_commit
run_format run_group_format
switch_python_version run_switch_python_version
test run_group_test
test_all run_pytest
test_integration run_pytest_integration
test_unit run_pytest_unit
typecheck run_mypy
verify_all run_group_verify

Features

  • Help text for all command groups is now generated, preventing typos and stale information about commands.

New commands

  • ensure-pre-commit
  • pyupgrade
  • isort
  • black

New command groups

  • The format command has been turned into a command group of individual.
    • Contains the following commands: ensure-pre-commit, pyupgrade, isort and black.
    • Can be overriden with tool.delfino.plugins.delfino-core.format_commands option in the pyproject.toml file.
  • test has been formally changed to a command group (functionally, it was already a group).
    • Contains the following commands: pytest and coverage-report.
    • Can be overriden with tool.delfino.plugins.delfino-core.test_commands option in the pyproject.toml file.

[6.1.0] - 2023-10-13

Features

  • New pre-commit command to run all stages of pre-commit or a single hook with the correct stage.

[6.0.0] - 2023-10-12

Breaking changes

  • Upgrade to delfino version 3.x, which requires pydantic>=2.0.

[5.2.2] - 2023-10-12

Fixes

  • pyupgrade incorrectly handling minor version number in tool.poetry.dependencies.python of pyproject.toml file.
  • dependencies update.

[5.2.1] - 2023-09-15

Fixes

  • Dependencies update
  • Don't ask to git push if nothing was committed during dependencies-update.

[5.2.0] - 2023-07-03

Features

  • Add --stash (default) / --no-stash option to dependencies-update command to control whether to stash changes before updating dependencies.

[5.1.1] - 2023-06-25

Fixes

  • Updates deprecated local_commands_directory from delfino.
  • Add walrus operator supported since Python 3.8.

[5.1.0] - 2023-06-25

Features

  • Adds pyupgrade into the format command

[5.0.0] - 2023-06-25

Breaking changes

  • Drops Python 3.7 support.

[4.0.1] - 2022-12-29

Features

  • Removed optional dependencies twine and packaging.

[4.0.0] - 2022-12-29

Breaking changes

  • Removed the upload-to-pypi command. No longer needed with Poetry and Packagecloud uses a different upload mechanism.
  • Moved the build-docker command into a new plugin delfino-docker as docker-build.

Migration guide

Have a look in the pyproject.toml file. If upload-to-pypi or build-docker are listed under tool.delfino.plugins.delfino-core.disable_plugins, remove them. You don't need to do anything else.

If tool.delfino.plugins.delfino-core.dockerhub exists in the pyproject.toml:

  • Install delfino-docker.
  • In pyproject.toml, create a key tool.delfino.plugins.delfino-docker.docker_build.
  • Move tool.delfino.plugins.delfino-core.dockerhub under this new key.
  • Rename username to dockerhub_username.

Features

  • Removed upload_to_pypi and build_docker extra dependency groups. Missing gr...
Read more

7.4.6

17 Jul 17:43
2df2371
Compare
Choose a tag to compare

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog
and this project adheres to Semantic Versioning.
Types of changes are:

  • Breaking changes for breaking changes.
  • Features for new features or changes in existing functionality.
  • Fixes for any bug fixes.
  • Deprecated for soon-to-be removed features.

[Unreleased]

[7.4.6] - 2024-07-17

Fixes

  • Use @me instead of me as assignee when creating a Gitlab MR using vcs/glab pr/mr create/start commands.

[7.4.5] - 2024-07-17

Fixes

  • Finish Merge requests on web when creating a Gitlab MR using vcs/glab pr/mr create/start commands.

[7.4.4] - 2024-07-16

Fixes

  • Dependencies update.
  • ruff in version 0.5.0 has removed support for ruff <path> syntax and requires ruff check <path> instead. The ruff command has been updated to reflect this change, however it will allow this to be overridden by supplying a different action as the extra argument after --.

[7.4.3] - 2024-07-16

Fixes

  • Skip all prompts when creating a Gitlab MR using vcs/glab pr/mr create/start commands.

[7.4.2] - 2024-06-21

Fixes

  • Fix trunk branch hardcoded to main in vcs/gh/glab pr/mr start command.

[7.4.1] - 2024-06-21

Fixes

  • Allow / in branch name for vcs/gh/glab commands.

[7.4.0] - 2024-06-21

Features

  • New config option to allow specifying the branch name prefix for vcs commands. By default, it is set to the git username:
    [tool.delfino.plugins.delfino-core]
    branch_prefix = "your_prefix/"

[7.3.0] - 2024-06-20

Features

  • New command glab that wraps the glab CLI tool. Similar to the existing gh command, it has the following subcommands:
    • glab mr create
    • glab mr start
    • glab mr view
  • New command vcs that auto-selects the correct VCS CLI tool in the current directory based on git remote. Currently, gh and glab are supported. It has the following subcommands:
    • vcs pr/mr create
    • vcs pr/mr start
    • vcs pr/mr view

[7.2.4] - 2024-01-23

Fixes

  • Do not require PyYAML when the pre-commit command is not used.

[7.2.3] - 2024-01-23

Fixes

  • Missing ruff as an optional dependency in the verify group.

[7.2.2] - 2023-10-31

Fixes

  • A crash in dependencies-update introduced by update of delfino.

[7.2.1] - 2023-10-31

Fixes

  • dependencies-update strips final underscore from the branch name.

[7.2.0] - 2023-10-24

Features

  • Replace heading and wait messages in output of the verify and dependencies-update commands with spinners.

[7.1.0] - 2023-10-14

Features

  • New command ruff. It has been also added to the lint command group.
  • New command gh with additional functionality on top of the gh CLI tool:
    • gh pr create adds sensible defaults for a single developer per branch to ask for almost no input. It also accepts a title of the PR as free text after the commands, as long as it doesn't start with a -.
    • gh pr start is a new command, which is like gh pr create, but also creates a new branch with a name matching the PR title, prefixed with current user's username. This branch is based off latest main and pushed to remote with an empty commit.
    • gh pr view default to opening the PR in a web browser.

Fixes

  • Asking questions in dependencies-updates now correctly defaults to "Yes" if no answer provided.

[7.0.0] - 2023-10-14

This version renames several commands and command groups to be more consistent and predictable. The intention is to name commands using the same name as the underlying tool. Several commands were also turned into command groups of individual commands, to allow more flexibility in configuration.

Breaking changes

Renamed commands

Old name New name
lint-pylint pylint
lint-pydocstyle pydocstyle
lint-pycodestyle pycodestyle
typecheck mypy
test pytest
test-unit pytest-unit
test-integration pytest-integration

Renamed command groups

  • The verify-all command group is now called verify, to match the existing format and lint command groups. However, the configration option to override the verify command group is still tool.delfino.plugins.delfino-core.verify_commands as it already matched the new name.

Renamed installation extras

Affects optional dependencies installed with delfino-core. Update your pyproject.toml file accordingly.

Old name New name
typecheck mypy
verify_all verify

Renamed group commands options

Affects list of commands visible in given command groups. Update tool.delfino.plugins.delfino-core.<COMMAND_GROUP_NAME>_commans in your pyproject.toml file accordingly.

Old name New name
typecheck mypy
verify_all_commands verify_commands

Renamed command functions

This is an implementation detail that should not be relied on, but it's listed here for completeness. Command and command group names were changed to match a pattern run_<COMMAND_NAME> and run_group_<COMMAND_GROUP_NAME>. This is to prevent clashes with the names of the underlying tools and easier discoverability.

Old name New name
coverage_open run_coverage_open
coverage_report run_coverage_report
dependencies_update run_dependencies_update
lint run_group_lint
lint_pycodestyle run_pycodestyle
lint_pydocstyle run_pydocstyle
lint_pylint run_pylint
pre_commit run_pre_commit
run_format run_group_format
switch_python_version run_switch_python_version
test run_group_test
test_all run_pytest
test_integration run_pytest_integration
test_unit run_pytest_unit
typecheck run_mypy
verify_all run_group_verify

Features

  • Help text for all command groups is now generated, preventing typos and stale information about commands.

New commands

  • ensure-pre-commit
  • pyupgrade
  • isort
  • black

New command groups

  • The format command has been turned into a command group of individual.
    • Contains the following commands: ensure-pre-commit, pyupgrade, isort and black.
    • Can be overriden with tool.delfino.plugins.delfino-core.format_commands option in the pyproject.toml file.
  • test has been formally changed to a command group (functionally, it was already a group).
    • Contains the following commands: pytest and coverage-report.
    • Can be overriden with tool.delfino.plugins.delfino-core.test_commands option in the pyproject.toml file.

[6.1.0] - 2023-10-13

Features

  • New pre-commit command to run all stages of pre-commit or a single hook with the correct stage.

[6.0.0] - 2023-10-12

Breaking changes

  • Upgrade to delfino version 3.x, which requires pydantic>=2.0.

[5.2.2] - 2023-10-12

Fixes

  • pyupgrade incorrectly handling minor version number in tool.poetry.dependencies.python of pyproject.toml file.
  • dependencies update.

[5.2.1] - 2023-09-15

Fixes

  • Dependencies update
  • Don't ask to git push if nothing was committed during dependencies-update.

[5.2.0] - 2023-07-03

Features

  • Add --stash (default) / --no-stash option to dependencies-update command to control whether to stash changes before updating dependencies.

[5.1.1] - 2023-06-25

Fixes

  • Updates deprecated local_commands_directory from delfino.
  • Add walrus operator supported since Python 3.8.

[5.1.0] - 2023-06-25

Features

  • Adds pyupgrade into the format command

[5.0.0] - 2023-06-25

Breaking changes

  • Drops Python 3.7 support.

[4.0.1] - 2022-12-29

Features

  • Removed optional dependencies twine and packaging.

[4.0.0] - 2022-12-29

Breaking changes

  • Removed the upload-to-pypi command. No longer needed with Poetry and Packagecloud uses a different upload mechanism.
  • Moved the build-docker command into a new plugin delfino-docker as docker-build.

Migration guide

Have a look in the pyproject.toml file. If upload-to-pypi or build-docker are listed under tool.delfino.plugins.delfino-core.disable_plugins, remove them. You don't need to do anything else.

If tool.delfino.plugins.delfino-core.dockerhub exists in the pyproject.toml:

  • Install delfino-docker.
  • In pyproject.toml, create a key tool.delfino.plugins.delfino-docker.docker_build.
  • Move tool.delfino.plugins.delfino-core.dockerhub under this new key.
  • Rename username to dockerhub_username.

Features

  • Removed upload_to_pypi and build_docker extra dependency groups. Missing groups will be simply ignored during installation, so this is not a breaking change.
  • Removed optional dependencies on twine and packaging in the all group.

[3.10.0] - 2022-12-29

Features

  • dependencies-update command:
    • Logs git operations when the automatically created b...
Read more

7.4.5

17 Jul 17:37
5732df6
Compare
Choose a tag to compare

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog
and this project adheres to Semantic Versioning.
Types of changes are:

  • Breaking changes for breaking changes.
  • Features for new features or changes in existing functionality.
  • Fixes for any bug fixes.
  • Deprecated for soon-to-be removed features.

[Unreleased]

[7.4.5] - 2024-07-17

Fixes

  • Finish Merge requests on web when creating a Gitlab MR using vcs/glab pr/mr create/start commands.

[7.4.4] - 2024-07-16

Fixes

  • Dependencies update.
  • ruff in version 0.5.0 has removed support for ruff <path> syntax and requires ruff check <path> instead. The ruff command has been updated to reflect this change, however it will allow this to be overridden by supplying a different action as the extra argument after --.

[7.4.3] - 2024-07-16

Fixes

  • Skip all prompts when creating a Gitlab MR using vcs/glab pr/mr create/start commands.

[7.4.2] - 2024-06-21

Fixes

  • Fix trunk branch hardcoded to main in vcs/gh/glab pr/mr start command.

[7.4.1] - 2024-06-21

Fixes

  • Allow / in branch name for vcs/gh/glab commands.

[7.4.0] - 2024-06-21

Features

  • New config option to allow specifying the branch name prefix for vcs commands. By default, it is set to the git username:
    [tool.delfino.plugins.delfino-core]
    branch_prefix = "your_prefix/"

[7.3.0] - 2024-06-20

Features

  • New command glab that wraps the glab CLI tool. Similar to the existing gh command, it has the following subcommands:
    • glab mr create
    • glab mr start
    • glab mr view
  • New command vcs that auto-selects the correct VCS CLI tool in the current directory based on git remote. Currently, gh and glab are supported. It has the following subcommands:
    • vcs pr/mr create
    • vcs pr/mr start
    • vcs pr/mr view

[7.2.4] - 2024-01-23

Fixes

  • Do not require PyYAML when the pre-commit command is not used.

[7.2.3] - 2024-01-23

Fixes

  • Missing ruff as an optional dependency in the verify group.

[7.2.2] - 2023-10-31

Fixes

  • A crash in dependencies-update introduced by update of delfino.

[7.2.1] - 2023-10-31

Fixes

  • dependencies-update strips final underscore from the branch name.

[7.2.0] - 2023-10-24

Features

  • Replace heading and wait messages in output of the verify and dependencies-update commands with spinners.

[7.1.0] - 2023-10-14

Features

  • New command ruff. It has been also added to the lint command group.
  • New command gh with additional functionality on top of the gh CLI tool:
    • gh pr create adds sensible defaults for a single developer per branch to ask for almost no input. It also accepts a title of the PR as free text after the commands, as long as it doesn't start with a -.
    • gh pr start is a new command, which is like gh pr create, but also creates a new branch with a name matching the PR title, prefixed with current user's username. This branch is based off latest main and pushed to remote with an empty commit.
    • gh pr view default to opening the PR in a web browser.

Fixes

  • Asking questions in dependencies-updates now correctly defaults to "Yes" if no answer provided.

[7.0.0] - 2023-10-14

This version renames several commands and command groups to be more consistent and predictable. The intention is to name commands using the same name as the underlying tool. Several commands were also turned into command groups of individual commands, to allow more flexibility in configuration.

Breaking changes

Renamed commands

Old name New name
lint-pylint pylint
lint-pydocstyle pydocstyle
lint-pycodestyle pycodestyle
typecheck mypy
test pytest
test-unit pytest-unit
test-integration pytest-integration

Renamed command groups

  • The verify-all command group is now called verify, to match the existing format and lint command groups. However, the configration option to override the verify command group is still tool.delfino.plugins.delfino-core.verify_commands as it already matched the new name.

Renamed installation extras

Affects optional dependencies installed with delfino-core. Update your pyproject.toml file accordingly.

Old name New name
typecheck mypy
verify_all verify

Renamed group commands options

Affects list of commands visible in given command groups. Update tool.delfino.plugins.delfino-core.<COMMAND_GROUP_NAME>_commans in your pyproject.toml file accordingly.

Old name New name
typecheck mypy
verify_all_commands verify_commands

Renamed command functions

This is an implementation detail that should not be relied on, but it's listed here for completeness. Command and command group names were changed to match a pattern run_<COMMAND_NAME> and run_group_<COMMAND_GROUP_NAME>. This is to prevent clashes with the names of the underlying tools and easier discoverability.

Old name New name
coverage_open run_coverage_open
coverage_report run_coverage_report
dependencies_update run_dependencies_update
lint run_group_lint
lint_pycodestyle run_pycodestyle
lint_pydocstyle run_pydocstyle
lint_pylint run_pylint
pre_commit run_pre_commit
run_format run_group_format
switch_python_version run_switch_python_version
test run_group_test
test_all run_pytest
test_integration run_pytest_integration
test_unit run_pytest_unit
typecheck run_mypy
verify_all run_group_verify

Features

  • Help text for all command groups is now generated, preventing typos and stale information about commands.

New commands

  • ensure-pre-commit
  • pyupgrade
  • isort
  • black

New command groups

  • The format command has been turned into a command group of individual.
    • Contains the following commands: ensure-pre-commit, pyupgrade, isort and black.
    • Can be overriden with tool.delfino.plugins.delfino-core.format_commands option in the pyproject.toml file.
  • test has been formally changed to a command group (functionally, it was already a group).
    • Contains the following commands: pytest and coverage-report.
    • Can be overriden with tool.delfino.plugins.delfino-core.test_commands option in the pyproject.toml file.

[6.1.0] - 2023-10-13

Features

  • New pre-commit command to run all stages of pre-commit or a single hook with the correct stage.

[6.0.0] - 2023-10-12

Breaking changes

  • Upgrade to delfino version 3.x, which requires pydantic>=2.0.

[5.2.2] - 2023-10-12

Fixes

  • pyupgrade incorrectly handling minor version number in tool.poetry.dependencies.python of pyproject.toml file.
  • dependencies update.

[5.2.1] - 2023-09-15

Fixes

  • Dependencies update
  • Don't ask to git push if nothing was committed during dependencies-update.

[5.2.0] - 2023-07-03

Features

  • Add --stash (default) / --no-stash option to dependencies-update command to control whether to stash changes before updating dependencies.

[5.1.1] - 2023-06-25

Fixes

  • Updates deprecated local_commands_directory from delfino.
  • Add walrus operator supported since Python 3.8.

[5.1.0] - 2023-06-25

Features

  • Adds pyupgrade into the format command

[5.0.0] - 2023-06-25

Breaking changes

  • Drops Python 3.7 support.

[4.0.1] - 2022-12-29

Features

  • Removed optional dependencies twine and packaging.

[4.0.0] - 2022-12-29

Breaking changes

  • Removed the upload-to-pypi command. No longer needed with Poetry and Packagecloud uses a different upload mechanism.
  • Moved the build-docker command into a new plugin delfino-docker as docker-build.

Migration guide

Have a look in the pyproject.toml file. If upload-to-pypi or build-docker are listed under tool.delfino.plugins.delfino-core.disable_plugins, remove them. You don't need to do anything else.

If tool.delfino.plugins.delfino-core.dockerhub exists in the pyproject.toml:

  • Install delfino-docker.
  • In pyproject.toml, create a key tool.delfino.plugins.delfino-docker.docker_build.
  • Move tool.delfino.plugins.delfino-core.dockerhub under this new key.
  • Rename username to dockerhub_username.

Features

  • Removed upload_to_pypi and build_docker extra dependency groups. Missing groups will be simply ignored during installation, so this is not a breaking change.
  • Removed optional dependencies on twine and packaging in the all group.

[3.10.0] - 2022-12-29

Features

  • dependencies-update command:
    • Logs git operations when the automatically created branch doesn't exist.
    • Opens pull request link in a browser if chosen by the user.

Fixes

  • Dependencies update

[3.9.0] - 2022-12-16

Features

...

Read more

7.4.4

17 Jul 17:37
5732df6
Compare
Choose a tag to compare

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog
and this project adheres to Semantic Versioning.
Types of changes are:

  • Breaking changes for breaking changes.
  • Features for new features or changes in existing functionality.
  • Fixes for any bug fixes.
  • Deprecated for soon-to-be removed features.

[Unreleased]

[7.4.4] - 2024-07-16

Fixes

  • Dependencies update.
  • ruff in version 0.5.0 has removed support for ruff <path> syntax and requires ruff check <path> instead. The ruff command has been updated to reflect this change, however it will allow this to be overridden by supplying a different action as the extra argument after --.

[7.4.3] - 2024-07-16

Fixes

  • Skip all prompts when creating a Gitlab MR using vcs/glab pr/mr create/start commands.

[7.4.2] - 2024-06-21

Fixes

  • Fix trunk branch hardcoded to main in vcs/gh/glab pr/mr start command.

[7.4.1] - 2024-06-21

Fixes

  • Allow / in branch name for vcs/gh/glab commands.

[7.4.0] - 2024-06-21

Features

  • New config option to allow specifying the branch name prefix for vcs commands. By default, it is set to the git username:
    [tool.delfino.plugins.delfino-core]
    branch_prefix = "your_prefix/"

[7.3.0] - 2024-06-20

Features

  • New command glab that wraps the glab CLI tool. Similar to the existing gh command, it has the following subcommands:
    • glab mr create
    • glab mr start
    • glab mr view
  • New command vcs that auto-selects the correct VCS CLI tool in the current directory based on git remote. Currently, gh and glab are supported. It has the following subcommands:
    • vcs pr/mr create
    • vcs pr/mr start
    • vcs pr/mr view

[7.2.4] - 2024-01-23

Fixes

  • Do not require PyYAML when the pre-commit command is not used.

[7.2.3] - 2024-01-23

Fixes

  • Missing ruff as an optional dependency in the verify group.

[7.2.2] - 2023-10-31

Fixes

  • A crash in dependencies-update introduced by update of delfino.

[7.2.1] - 2023-10-31

Fixes

  • dependencies-update strips final underscore from the branch name.

[7.2.0] - 2023-10-24

Features

  • Replace heading and wait messages in output of the verify and dependencies-update commands with spinners.

[7.1.0] - 2023-10-14

Features

  • New command ruff. It has been also added to the lint command group.
  • New command gh with additional functionality on top of the gh CLI tool:
    • gh pr create adds sensible defaults for a single developer per branch to ask for almost no input. It also accepts a title of the PR as free text after the commands, as long as it doesn't start with a -.
    • gh pr start is a new command, which is like gh pr create, but also creates a new branch with a name matching the PR title, prefixed with current user's username. This branch is based off latest main and pushed to remote with an empty commit.
    • gh pr view default to opening the PR in a web browser.

Fixes

  • Asking questions in dependencies-updates now correctly defaults to "Yes" if no answer provided.

[7.0.0] - 2023-10-14

This version renames several commands and command groups to be more consistent and predictable. The intention is to name commands using the same name as the underlying tool. Several commands were also turned into command groups of individual commands, to allow more flexibility in configuration.

Breaking changes

Renamed commands

Old name New name
lint-pylint pylint
lint-pydocstyle pydocstyle
lint-pycodestyle pycodestyle
typecheck mypy
test pytest
test-unit pytest-unit
test-integration pytest-integration

Renamed command groups

  • The verify-all command group is now called verify, to match the existing format and lint command groups. However, the configration option to override the verify command group is still tool.delfino.plugins.delfino-core.verify_commands as it already matched the new name.

Renamed installation extras

Affects optional dependencies installed with delfino-core. Update your pyproject.toml file accordingly.

Old name New name
typecheck mypy
verify_all verify

Renamed group commands options

Affects list of commands visible in given command groups. Update tool.delfino.plugins.delfino-core.<COMMAND_GROUP_NAME>_commans in your pyproject.toml file accordingly.

Old name New name
typecheck mypy
verify_all_commands verify_commands

Renamed command functions

This is an implementation detail that should not be relied on, but it's listed here for completeness. Command and command group names were changed to match a pattern run_<COMMAND_NAME> and run_group_<COMMAND_GROUP_NAME>. This is to prevent clashes with the names of the underlying tools and easier discoverability.

Old name New name
coverage_open run_coverage_open
coverage_report run_coverage_report
dependencies_update run_dependencies_update
lint run_group_lint
lint_pycodestyle run_pycodestyle
lint_pydocstyle run_pydocstyle
lint_pylint run_pylint
pre_commit run_pre_commit
run_format run_group_format
switch_python_version run_switch_python_version
test run_group_test
test_all run_pytest
test_integration run_pytest_integration
test_unit run_pytest_unit
typecheck run_mypy
verify_all run_group_verify

Features

  • Help text for all command groups is now generated, preventing typos and stale information about commands.

New commands

  • ensure-pre-commit
  • pyupgrade
  • isort
  • black

New command groups

  • The format command has been turned into a command group of individual.
    • Contains the following commands: ensure-pre-commit, pyupgrade, isort and black.
    • Can be overriden with tool.delfino.plugins.delfino-core.format_commands option in the pyproject.toml file.
  • test has been formally changed to a command group (functionally, it was already a group).
    • Contains the following commands: pytest and coverage-report.
    • Can be overriden with tool.delfino.plugins.delfino-core.test_commands option in the pyproject.toml file.

[6.1.0] - 2023-10-13

Features

  • New pre-commit command to run all stages of pre-commit or a single hook with the correct stage.

[6.0.0] - 2023-10-12

Breaking changes

  • Upgrade to delfino version 3.x, which requires pydantic>=2.0.

[5.2.2] - 2023-10-12

Fixes

  • pyupgrade incorrectly handling minor version number in tool.poetry.dependencies.python of pyproject.toml file.
  • dependencies update.

[5.2.1] - 2023-09-15

Fixes

  • Dependencies update
  • Don't ask to git push if nothing was committed during dependencies-update.

[5.2.0] - 2023-07-03

Features

  • Add --stash (default) / --no-stash option to dependencies-update command to control whether to stash changes before updating dependencies.

[5.1.1] - 2023-06-25

Fixes

  • Updates deprecated local_commands_directory from delfino.
  • Add walrus operator supported since Python 3.8.

[5.1.0] - 2023-06-25

Features

  • Adds pyupgrade into the format command

[5.0.0] - 2023-06-25

Breaking changes

  • Drops Python 3.7 support.

[4.0.1] - 2022-12-29

Features

  • Removed optional dependencies twine and packaging.

[4.0.0] - 2022-12-29

Breaking changes

  • Removed the upload-to-pypi command. No longer needed with Poetry and Packagecloud uses a different upload mechanism.
  • Moved the build-docker command into a new plugin delfino-docker as docker-build.

Migration guide

Have a look in the pyproject.toml file. If upload-to-pypi or build-docker are listed under tool.delfino.plugins.delfino-core.disable_plugins, remove them. You don't need to do anything else.

If tool.delfino.plugins.delfino-core.dockerhub exists in the pyproject.toml:

  • Install delfino-docker.
  • In pyproject.toml, create a key tool.delfino.plugins.delfino-docker.docker_build.
  • Move tool.delfino.plugins.delfino-core.dockerhub under this new key.
  • Rename username to dockerhub_username.

Features

  • Removed upload_to_pypi and build_docker extra dependency groups. Missing groups will be simply ignored during installation, so this is not a breaking change.
  • Removed optional dependencies on twine and packaging in the all group.

[3.10.0] - 2022-12-29

Features

  • dependencies-update command:
    • Logs git operations when the automatically created branch doesn't exist.
    • Opens pull request link in a browser if chosen by the user.

Fixes

  • Dependencies update

[3.9.0] - 2022-12-16

Features

  • dependencies-update no longer prints out executed commands since delfino>=0.29.0 logs all executed commands in debug level. Use `--log-level deb...
Read more

7.4.3

16 Jul 13:14
c008b4e
Compare
Choose a tag to compare

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog
and this project adheres to Semantic Versioning.
Types of changes are:

  • Breaking changes for breaking changes.
  • Features for new features or changes in existing functionality.
  • Fixes for any bug fixes.
  • Deprecated for soon-to-be removed features.

[Unreleased]

[7.4.3] - 2024-07-16

  • Skip all prompts when creating a Gitlab MR using vcs/glab pr/mr create/start commands.

[7.4.2] - 2024-06-21

Fixes

  • Fix trunk branch hardcoded to main in vcs/gh/glab pr/mr start command.

[7.4.1] - 2024-06-21

Fixes

  • Allow / in branch name for vcs/gh/glab commands.

[7.4.0] - 2024-06-21

Features

  • New config option to allow specifying the branch name prefix for vcs commands. By default, it is set to the git username:
    [tool.delfino.plugins.delfino-core]
    branch_prefix = "your_prefix/"

[7.3.0] - 2024-06-20

Features

  • New command glab that wraps the glab CLI tool. Similar to the existing gh command, it has the following subcommands:
    • glab mr create
    • glab mr start
    • glab mr view
  • New command vcs that auto-selects the correct VCS CLI tool in the current directory based on git remote. Currently, gh and glab are supported. It has the following subcommands:
    • vcs pr/mr create
    • vcs pr/mr start
    • vcs pr/mr view

[7.2.4] - 2024-01-23

Fixes

  • Do not require PyYAML when the pre-commit command is not used.

[7.2.3] - 2024-01-23

Fixes

  • Missing ruff as an optional dependency in the verify group.

[7.2.2] - 2023-10-31

Fixes

  • A crash in dependencies-update introduced by update of delfino.

[7.2.1] - 2023-10-31

Fixes

  • dependencies-update strips final underscore from the branch name.

[7.2.0] - 2023-10-24

Features

  • Replace heading and wait messages in output of the verify and dependencies-update commands with spinners.

[7.1.0] - 2023-10-14

Features

  • New command ruff. It has been also added to the lint command group.
  • New command gh with additional functionality on top of the gh CLI tool:
    • gh pr create adds sensible defaults for a single developer per branch to ask for almost no input. It also accepts a title of the PR as free text after the commands, as long as it doesn't start with a -.
    • gh pr start is a new command, which is like gh pr create, but also creates a new branch with a name matching the PR title, prefixed with current user's username. This branch is based off latest main and pushed to remote with an empty commit.
    • gh pr view default to opening the PR in a web browser.

Fixes

  • Asking questions in dependencies-updates now correctly defaults to "Yes" if no answer provided.

[7.0.0] - 2023-10-14

This version renames several commands and command groups to be more consistent and predictable. The intention is to name commands using the same name as the underlying tool. Several commands were also turned into command groups of individual commands, to allow more flexibility in configuration.

Breaking changes

Renamed commands

Old name New name
lint-pylint pylint
lint-pydocstyle pydocstyle
lint-pycodestyle pycodestyle
typecheck mypy
test pytest
test-unit pytest-unit
test-integration pytest-integration

Renamed command groups

  • The verify-all command group is now called verify, to match the existing format and lint command groups. However, the configration option to override the verify command group is still tool.delfino.plugins.delfino-core.verify_commands as it already matched the new name.

Renamed installation extras

Affects optional dependencies installed with delfino-core. Update your pyproject.toml file accordingly.

Old name New name
typecheck mypy
verify_all verify

Renamed group commands options

Affects list of commands visible in given command groups. Update tool.delfino.plugins.delfino-core.<COMMAND_GROUP_NAME>_commans in your pyproject.toml file accordingly.

Old name New name
typecheck mypy
verify_all_commands verify_commands

Renamed command functions

This is an implementation detail that should not be relied on, but it's listed here for completeness. Command and command group names were changed to match a pattern run_<COMMAND_NAME> and run_group_<COMMAND_GROUP_NAME>. This is to prevent clashes with the names of the underlying tools and easier discoverability.

Old name New name
coverage_open run_coverage_open
coverage_report run_coverage_report
dependencies_update run_dependencies_update
lint run_group_lint
lint_pycodestyle run_pycodestyle
lint_pydocstyle run_pydocstyle
lint_pylint run_pylint
pre_commit run_pre_commit
run_format run_group_format
switch_python_version run_switch_python_version
test run_group_test
test_all run_pytest
test_integration run_pytest_integration
test_unit run_pytest_unit
typecheck run_mypy
verify_all run_group_verify

Features

  • Help text for all command groups is now generated, preventing typos and stale information about commands.

New commands

  • ensure-pre-commit
  • pyupgrade
  • isort
  • black

New command groups

  • The format command has been turned into a command group of individual.
    • Contains the following commands: ensure-pre-commit, pyupgrade, isort and black.
    • Can be overriden with tool.delfino.plugins.delfino-core.format_commands option in the pyproject.toml file.
  • test has been formally changed to a command group (functionally, it was already a group).
    • Contains the following commands: pytest and coverage-report.
    • Can be overriden with tool.delfino.plugins.delfino-core.test_commands option in the pyproject.toml file.

[6.1.0] - 2023-10-13

Features

  • New pre-commit command to run all stages of pre-commit or a single hook with the correct stage.

[6.0.0] - 2023-10-12

Breaking changes

  • Upgrade to delfino version 3.x, which requires pydantic>=2.0.

[5.2.2] - 2023-10-12

Fixes

  • pyupgrade incorrectly handling minor version number in tool.poetry.dependencies.python of pyproject.toml file.
  • dependencies update.

[5.2.1] - 2023-09-15

Fixes

  • Dependencies update
  • Don't ask to git push if nothing was committed during dependencies-update.

[5.2.0] - 2023-07-03

Features

  • Add --stash (default) / --no-stash option to dependencies-update command to control whether to stash changes before updating dependencies.

[5.1.1] - 2023-06-25

Fixes

  • Updates deprecated local_commands_directory from delfino.
  • Add walrus operator supported since Python 3.8.

[5.1.0] - 2023-06-25

Features

  • Adds pyupgrade into the format command

[5.0.0] - 2023-06-25

Breaking changes

  • Drops Python 3.7 support.

[4.0.1] - 2022-12-29

Features

  • Removed optional dependencies twine and packaging.

[4.0.0] - 2022-12-29

Breaking changes

  • Removed the upload-to-pypi command. No longer needed with Poetry and Packagecloud uses a different upload mechanism.
  • Moved the build-docker command into a new plugin delfino-docker as docker-build.

Migration guide

Have a look in the pyproject.toml file. If upload-to-pypi or build-docker are listed under tool.delfino.plugins.delfino-core.disable_plugins, remove them. You don't need to do anything else.

If tool.delfino.plugins.delfino-core.dockerhub exists in the pyproject.toml:

  • Install delfino-docker.
  • In pyproject.toml, create a key tool.delfino.plugins.delfino-docker.docker_build.
  • Move tool.delfino.plugins.delfino-core.dockerhub under this new key.
  • Rename username to dockerhub_username.

Features

  • Removed upload_to_pypi and build_docker extra dependency groups. Missing groups will be simply ignored during installation, so this is not a breaking change.
  • Removed optional dependencies on twine and packaging in the all group.

[3.10.0] - 2022-12-29

Features

  • dependencies-update command:
    • Logs git operations when the automatically created branch doesn't exist.
    • Opens pull request link in a browser if chosen by the user.

Fixes

  • Dependencies update

[3.9.0] - 2022-12-16

Features

  • dependencies-update no longer prints out executed commands since delfino>=0.29.0 logs all executed commands in debug level. Use --log-level debug to see them.

Fixes

  • Config options incorrectly passed to all commands in a group instead of only those they belonged to.

[3.8.1] - 2022-12-16

Fixes

  • Dependencies update.

[3.8.0] - 2022-12-16

Features

  • format command takes a list of one or more files/folders to use with the -f/--file/--folder option.

[3.7.1] - ...

Read more

7.4.2

21 Jun 15:42
6ecef81
Compare
Choose a tag to compare

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog
and this project adheres to Semantic Versioning.
Types of changes are:

  • Breaking changes for breaking changes.
  • Features for new features or changes in existing functionality.
  • Fixes for any bug fixes.
  • Deprecated for soon-to-be removed features.

[Unreleased]

[7.4.2] - 2024-06-21

Fixes

  • Fix trunk branch hardcoded to main in vcs/gh/glab pr/mr start command.

[7.4.1] - 2024-06-21

Fixes

  • Allow / in branch name for vcs/gh/glab commands.

[7.4.0] - 2024-06-21

Features

  • New config option to allow specifying the branch name prefix for vcs commands. By default, it is set to the git username:
    [tool.delfino.plugins.delfino-core]
    branch_prefix = "your_prefix/"

[7.3.0] - 2024-06-20

Features

  • New command glab that wraps the glab CLI tool. Similar to the existing gh command, it has the following subcommands:
    • glab mr create
    • glab mr start
    • glab mr view
  • New command vcs that auto-selects the correct VCS CLI tool in the current directory based on git remote. Currently, gh and glab are supported. It has the following subcommands:
    • vcs pr/mr create
    • vcs pr/mr start
    • vcs pr/mr view

[7.2.4] - 2024-01-23

Fixes

  • Do not require PyYAML when the pre-commit command is not used.

[7.2.3] - 2024-01-23

Fixes

  • Missing ruff as an optional dependency in the verify group.

[7.2.2] - 2023-10-31

Fixes

  • A crash in dependencies-update introduced by update of delfino.

[7.2.1] - 2023-10-31

Fixes

  • dependencies-update strips final underscore from the branch name.

[7.2.0] - 2023-10-24

Features

  • Replace heading and wait messages in output of the verify and dependencies-update commands with spinners.

[7.1.0] - 2023-10-14

Features

  • New command ruff. It has been also added to the lint command group.
  • New command gh with additional functionality on top of the gh CLI tool:
    • gh pr create adds sensible defaults for a single developer per branch to ask for almost no input. It also accepts a title of the PR as free text after the commands, as long as it doesn't start with a -.
    • gh pr start is a new command, which is like gh pr create, but also creates a new branch with a name matching the PR title, prefixed with current user's username. This branch is based off latest main and pushed to remote with an empty commit.
    • gh pr view default to opening the PR in a web browser.

Fixes

  • Asking questions in dependencies-updates now correctly defaults to "Yes" if no answer provided.

[7.0.0] - 2023-10-14

This version renames several commands and command groups to be more consistent and predictable. The intention is to name commands using the same name as the underlying tool. Several commands were also turned into command groups of individual commands, to allow more flexibility in configuration.

Breaking changes

Renamed commands

Old name New name
lint-pylint pylint
lint-pydocstyle pydocstyle
lint-pycodestyle pycodestyle
typecheck mypy
test pytest
test-unit pytest-unit
test-integration pytest-integration

Renamed command groups

  • The verify-all command group is now called verify, to match the existing format and lint command groups. However, the configration option to override the verify command group is still tool.delfino.plugins.delfino-core.verify_commands as it already matched the new name.

Renamed installation extras

Affects optional dependencies installed with delfino-core. Update your pyproject.toml file accordingly.

Old name New name
typecheck mypy
verify_all verify

Renamed group commands options

Affects list of commands visible in given command groups. Update tool.delfino.plugins.delfino-core.<COMMAND_GROUP_NAME>_commans in your pyproject.toml file accordingly.

Old name New name
typecheck mypy
verify_all_commands verify_commands

Renamed command functions

This is an implementation detail that should not be relied on, but it's listed here for completeness. Command and command group names were changed to match a pattern run_<COMMAND_NAME> and run_group_<COMMAND_GROUP_NAME>. This is to prevent clashes with the names of the underlying tools and easier discoverability.

Old name New name
coverage_open run_coverage_open
coverage_report run_coverage_report
dependencies_update run_dependencies_update
lint run_group_lint
lint_pycodestyle run_pycodestyle
lint_pydocstyle run_pydocstyle
lint_pylint run_pylint
pre_commit run_pre_commit
run_format run_group_format
switch_python_version run_switch_python_version
test run_group_test
test_all run_pytest
test_integration run_pytest_integration
test_unit run_pytest_unit
typecheck run_mypy
verify_all run_group_verify

Features

  • Help text for all command groups is now generated, preventing typos and stale information about commands.

New commands

  • ensure-pre-commit
  • pyupgrade
  • isort
  • black

New command groups

  • The format command has been turned into a command group of individual.
    • Contains the following commands: ensure-pre-commit, pyupgrade, isort and black.
    • Can be overriden with tool.delfino.plugins.delfino-core.format_commands option in the pyproject.toml file.
  • test has been formally changed to a command group (functionally, it was already a group).
    • Contains the following commands: pytest and coverage-report.
    • Can be overriden with tool.delfino.plugins.delfino-core.test_commands option in the pyproject.toml file.

[6.1.0] - 2023-10-13

Features

  • New pre-commit command to run all stages of pre-commit or a single hook with the correct stage.

[6.0.0] - 2023-10-12

Breaking changes

  • Upgrade to delfino version 3.x, which requires pydantic>=2.0.

[5.2.2] - 2023-10-12

Fixes

  • pyupgrade incorrectly handling minor version number in tool.poetry.dependencies.python of pyproject.toml file.
  • dependencies update.

[5.2.1] - 2023-09-15

Fixes

  • Dependencies update
  • Don't ask to git push if nothing was committed during dependencies-update.

[5.2.0] - 2023-07-03

Features

  • Add --stash (default) / --no-stash option to dependencies-update command to control whether to stash changes before updating dependencies.

[5.1.1] - 2023-06-25

Fixes

  • Updates deprecated local_commands_directory from delfino.
  • Add walrus operator supported since Python 3.8.

[5.1.0] - 2023-06-25

Features

  • Adds pyupgrade into the format command

[5.0.0] - 2023-06-25

Breaking changes

  • Drops Python 3.7 support.

[4.0.1] - 2022-12-29

Features

  • Removed optional dependencies twine and packaging.

[4.0.0] - 2022-12-29

Breaking changes

  • Removed the upload-to-pypi command. No longer needed with Poetry and Packagecloud uses a different upload mechanism.
  • Moved the build-docker command into a new plugin delfino-docker as docker-build.

Migration guide

Have a look in the pyproject.toml file. If upload-to-pypi or build-docker are listed under tool.delfino.plugins.delfino-core.disable_plugins, remove them. You don't need to do anything else.

If tool.delfino.plugins.delfino-core.dockerhub exists in the pyproject.toml:

  • Install delfino-docker.
  • In pyproject.toml, create a key tool.delfino.plugins.delfino-docker.docker_build.
  • Move tool.delfino.plugins.delfino-core.dockerhub under this new key.
  • Rename username to dockerhub_username.

Features

  • Removed upload_to_pypi and build_docker extra dependency groups. Missing groups will be simply ignored during installation, so this is not a breaking change.
  • Removed optional dependencies on twine and packaging in the all group.

[3.10.0] - 2022-12-29

Features

  • dependencies-update command:
    • Logs git operations when the automatically created branch doesn't exist.
    • Opens pull request link in a browser if chosen by the user.

Fixes

  • Dependencies update

[3.9.0] - 2022-12-16

Features

  • dependencies-update no longer prints out executed commands since delfino>=0.29.0 logs all executed commands in debug level. Use --log-level debug to see them.

Fixes

  • Config options incorrectly passed to all commands in a group instead of only those they belonged to.

[3.8.1] - 2022-12-16

Fixes

  • Dependencies update.

[3.8.0] - 2022-12-16

Features

  • format command takes a list of one or more files/folders to use with the -f/--file/--folder option.

[3.7.1] - 2022-12-15

Fixes

  • Check if git-python is installed after it's use is attempted.

[3.7.0] - 2022-12-15

Features...

Read more

7.4.1

21 Jun 15:30
823e43b
Compare
Choose a tag to compare

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog
and this project adheres to Semantic Versioning.
Types of changes are:

  • Breaking changes for breaking changes.
  • Features for new features or changes in existing functionality.
  • Fixes for any bug fixes.
  • Deprecated for soon-to-be removed features.

[Unreleased]

[7.4.1] - 2024-06-21

Fixes

  • Allow / in branch name for vcs/gh/glab commands.

[7.4.0] - 2024-06-21

Features

  • New config option to allow specifying the branch name prefix for vcs commands. By default, it is set to the git username:
    [tool.delfino.plugins.delfino-core]
    branch_prefix = "your_prefix/"

[7.3.0] - 2024-06-20

Features

  • New command glab that wraps the glab CLI tool. Similar to the existing gh command, it has the following subcommands:
    • glab mr create
    • glab mr start
    • glab mr view
  • New command vcs that auto-selects the correct VCS CLI tool in the current directory based on git remote. Currently, gh and glab are supported. It has the following subcommands:
    • vcs pr/mr create
    • vcs pr/mr start
    • vcs pr/mr view

[7.2.4] - 2024-01-23

Fixes

  • Do not require PyYAML when the pre-commit command is not used.

[7.2.3] - 2024-01-23

Fixes

  • Missing ruff as an optional dependency in the verify group.

[7.2.2] - 2023-10-31

Fixes

  • A crash in dependencies-update introduced by update of delfino.

[7.2.1] - 2023-10-31

Fixes

  • dependencies-update strips final underscore from the branch name.

[7.2.0] - 2023-10-24

Features

  • Replace heading and wait messages in output of the verify and dependencies-update commands with spinners.

[7.1.0] - 2023-10-14

Features

  • New command ruff. It has been also added to the lint command group.
  • New command gh with additional functionality on top of the gh CLI tool:
    • gh pr create adds sensible defaults for a single developer per branch to ask for almost no input. It also accepts a title of the PR as free text after the commands, as long as it doesn't start with a -.
    • gh pr start is a new command, which is like gh pr create, but also creates a new branch with a name matching the PR title, prefixed with current user's username. This branch is based off latest main and pushed to remote with an empty commit.
    • gh pr view default to opening the PR in a web browser.

Fixes

  • Asking questions in dependencies-updates now correctly defaults to "Yes" if no answer provided.

[7.0.0] - 2023-10-14

This version renames several commands and command groups to be more consistent and predictable. The intention is to name commands using the same name as the underlying tool. Several commands were also turned into command groups of individual commands, to allow more flexibility in configuration.

Breaking changes

Renamed commands

Old name New name
lint-pylint pylint
lint-pydocstyle pydocstyle
lint-pycodestyle pycodestyle
typecheck mypy
test pytest
test-unit pytest-unit
test-integration pytest-integration

Renamed command groups

  • The verify-all command group is now called verify, to match the existing format and lint command groups. However, the configration option to override the verify command group is still tool.delfino.plugins.delfino-core.verify_commands as it already matched the new name.

Renamed installation extras

Affects optional dependencies installed with delfino-core. Update your pyproject.toml file accordingly.

Old name New name
typecheck mypy
verify_all verify

Renamed group commands options

Affects list of commands visible in given command groups. Update tool.delfino.plugins.delfino-core.<COMMAND_GROUP_NAME>_commans in your pyproject.toml file accordingly.

Old name New name
typecheck mypy
verify_all_commands verify_commands

Renamed command functions

This is an implementation detail that should not be relied on, but it's listed here for completeness. Command and command group names were changed to match a pattern run_<COMMAND_NAME> and run_group_<COMMAND_GROUP_NAME>. This is to prevent clashes with the names of the underlying tools and easier discoverability.

Old name New name
coverage_open run_coverage_open
coverage_report run_coverage_report
dependencies_update run_dependencies_update
lint run_group_lint
lint_pycodestyle run_pycodestyle
lint_pydocstyle run_pydocstyle
lint_pylint run_pylint
pre_commit run_pre_commit
run_format run_group_format
switch_python_version run_switch_python_version
test run_group_test
test_all run_pytest
test_integration run_pytest_integration
test_unit run_pytest_unit
typecheck run_mypy
verify_all run_group_verify

Features

  • Help text for all command groups is now generated, preventing typos and stale information about commands.

New commands

  • ensure-pre-commit
  • pyupgrade
  • isort
  • black

New command groups

  • The format command has been turned into a command group of individual.
    • Contains the following commands: ensure-pre-commit, pyupgrade, isort and black.
    • Can be overriden with tool.delfino.plugins.delfino-core.format_commands option in the pyproject.toml file.
  • test has been formally changed to a command group (functionally, it was already a group).
    • Contains the following commands: pytest and coverage-report.
    • Can be overriden with tool.delfino.plugins.delfino-core.test_commands option in the pyproject.toml file.

[6.1.0] - 2023-10-13

Features

  • New pre-commit command to run all stages of pre-commit or a single hook with the correct stage.

[6.0.0] - 2023-10-12

Breaking changes

  • Upgrade to delfino version 3.x, which requires pydantic>=2.0.

[5.2.2] - 2023-10-12

Fixes

  • pyupgrade incorrectly handling minor version number in tool.poetry.dependencies.python of pyproject.toml file.
  • dependencies update.

[5.2.1] - 2023-09-15

Fixes

  • Dependencies update
  • Don't ask to git push if nothing was committed during dependencies-update.

[5.2.0] - 2023-07-03

Features

  • Add --stash (default) / --no-stash option to dependencies-update command to control whether to stash changes before updating dependencies.

[5.1.1] - 2023-06-25

Fixes

  • Updates deprecated local_commands_directory from delfino.
  • Add walrus operator supported since Python 3.8.

[5.1.0] - 2023-06-25

Features

  • Adds pyupgrade into the format command

[5.0.0] - 2023-06-25

Breaking changes

  • Drops Python 3.7 support.

[4.0.1] - 2022-12-29

Features

  • Removed optional dependencies twine and packaging.

[4.0.0] - 2022-12-29

Breaking changes

  • Removed the upload-to-pypi command. No longer needed with Poetry and Packagecloud uses a different upload mechanism.
  • Moved the build-docker command into a new plugin delfino-docker as docker-build.

Migration guide

Have a look in the pyproject.toml file. If upload-to-pypi or build-docker are listed under tool.delfino.plugins.delfino-core.disable_plugins, remove them. You don't need to do anything else.

If tool.delfino.plugins.delfino-core.dockerhub exists in the pyproject.toml:

  • Install delfino-docker.
  • In pyproject.toml, create a key tool.delfino.plugins.delfino-docker.docker_build.
  • Move tool.delfino.plugins.delfino-core.dockerhub under this new key.
  • Rename username to dockerhub_username.

Features

  • Removed upload_to_pypi and build_docker extra dependency groups. Missing groups will be simply ignored during installation, so this is not a breaking change.
  • Removed optional dependencies on twine and packaging in the all group.

[3.10.0] - 2022-12-29

Features

  • dependencies-update command:
    • Logs git operations when the automatically created branch doesn't exist.
    • Opens pull request link in a browser if chosen by the user.

Fixes

  • Dependencies update

[3.9.0] - 2022-12-16

Features

  • dependencies-update no longer prints out executed commands since delfino>=0.29.0 logs all executed commands in debug level. Use --log-level debug to see them.

Fixes

  • Config options incorrectly passed to all commands in a group instead of only those they belonged to.

[3.8.1] - 2022-12-16

Fixes

  • Dependencies update.

[3.8.0] - 2022-12-16

Features

  • format command takes a list of one or more files/folders to use with the -f/--file/--folder option.

[3.7.1] - 2022-12-15

Fixes

  • Check if git-python is installed after it's use is attempted.

[3.7.0] - 2022-12-15

Features

  • Add support for poetry in the dependencies-update command.

Fixes

  • Point to correct file to edit in `dependenci...
Read more