Skip to content

chore(deps-dev): bump the development-dependencies group across 1 directory with 3 updates#35

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/pip/development-dependencies-857c1dc2e8
Open

chore(deps-dev): bump the development-dependencies group across 1 directory with 3 updates#35
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/pip/development-dependencies-857c1dc2e8

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 4, 2026

Bumps the development-dependencies group with 3 updates in the / directory: hypothesis, ruff and commitizen.

Updates hypothesis from 6.151.4 to 6.151.5

Release notes

Sourced from hypothesis's releases.

Hypothesis for Python - version 6.151.5

This patch teaches our pytest plugin to :ref: find interesting constants <v6.131.1> when pytest is collecting tests, to avoid arbitrarily attributing the latency to whichever test function happened to be executed first (issue #4627).

The canonical version of these notes (with links) is on readthedocs.

Commits
  • a2c1b52 Bump hypothesis-python version to 6.151.5 and update changelog
  • d090275 Merge pull request #4653 from Zac-HD/better-timings
  • be8183c better cost attribution
  • See full diff in compare view

Updates ruff from 0.14.14 to 0.15.0

Release notes

Sourced from ruff's releases.

0.15.0

Release Notes

Released on 2026-02-03.

Check out the blog post for a migration guide and overview of the changes!

Breaking changes

  • Ruff now formats your code according to the 2026 style guide. See the formatter section below or in the blog post for a detailed list of changes.

  • The linter now supports block suppression comments. For example, to suppress N803 for all parameters in this function:

    # ruff: disable[N803]
    def foo(
        legacyArg1,
        legacyArg2,
        legacyArg3,
        legacyArg4,
    ): ...
    # ruff: enable[N803]

    See the documentation for more details.

  • The ruff:alpine Docker image is now based on Alpine 3.23 (up from 3.21).

  • The ruff:debian and ruff:debian-slim Docker images are now based on Debian 13 "Trixie" instead of Debian 12 "Bookworm."

  • Binaries for the ppc64 (64-bit big-endian PowerPC) architecture are no longer included in our releases. It should still be possible to build Ruff manually for this platform, if needed.

  • Ruff now resolves all extended configuration files before falling back on a default Python version.

Stabilization

The following rules have been stabilized and are no longer in preview:

... (truncated)

Changelog

Sourced from ruff's changelog.

0.15.0

Released on 2026-02-03.

Check out the blog post for a migration guide and overview of the changes!

Breaking changes

  • Ruff now formats your code according to the 2026 style guide. See the formatter section below or in the blog post for a detailed list of changes.

  • The linter now supports block suppression comments. For example, to suppress N803 for all parameters in this function:

    # ruff: disable[N803]
    def foo(
        legacyArg1,
        legacyArg2,
        legacyArg3,
        legacyArg4,
    ): ...
    # ruff: enable[N803]

    See the documentation for more details.

  • The ruff:alpine Docker image is now based on Alpine 3.23 (up from 3.21).

  • The ruff:debian and ruff:debian-slim Docker images are now based on Debian 13 "Trixie" instead of Debian 12 "Bookworm."

  • Binaries for the ppc64 (64-bit big-endian PowerPC) architecture are no longer included in our releases. It should still be possible to build Ruff manually for this platform, if needed.

  • Ruff now resolves all extended configuration files before falling back on a default Python version.

Stabilization

The following rules have been stabilized and are no longer in preview:

... (truncated)

Commits

Updates commitizen from 4.12.1 to 4.13.2

Release notes

Sourced from commitizen's releases.

v4.13.2 (2026-02-03)

Refactor

  • simplify code with pathlib Path object (#1840)
  • tags: extract version resolution method (#1839)

[master 1230c7ac] bump: version 4.13.1 → 4.13.2 5 files changed, 11 insertions(+), 4 deletions(-)

v4.13.1 (2026-02-03)

Refactor

  • config: replace is_empty_config with contains_commitizen_section, improve multi config resolution algorithm (#1842)

[master 36c196db] bump: version 4.13.0 → 4.13.1 5 files changed, 10 insertions(+), 4 deletions(-)

v4.13.0 (2026-02-01)

Feat

  • bump: add --version-files-only and deprecate --files-only (#1802)
  • version: add --tag tag to version command (#1819)
  • cli: add description when choosing a commit rule (#1825)
  • tags: enable version schemes with less than 3 components (#1705)

Fix

  • config: include pyproject.toml in multi config file warning (#1803)
  • add pytest ruff rule PT and fix missing deprecation warning (#1826)
  • message_length_limit: align the behavior of message_length_limit (#1813)
  • cli: capitalize the first characters of help texts and fix minor grammar errors

Refactor

  • replace hard-coded string "cz_conventional_commits" with DEFAULT_SETTINGS (#1830)
  • bump: fix unbounded variable type issue

[master e6b6976e] bump: version 4.12.1 → 4.13.0 5 files changed, 25 insertions(+), 4 deletions(-)

Changelog

Sourced from commitizen's changelog.

v4.13.2 (2026-02-03)

Refactor

  • simplify code with pathlib Path object (#1840)
  • tags: extract version resolution method (#1839)

v4.13.1 (2026-02-03)

Refactor

  • config: replace is_empty_config with contains_commitizen_section, improve multi config resolution algorithm (#1842)

v4.13.0 (2026-02-01)

Feat

  • bump: add --version-files-only and deprecate --files-only (#1802)
  • version: add --tag tag to version command (#1819)
  • cli: add description when choosing a commit rule (#1825)
  • tags: enable version schemes with less than 3 components (#1705)

Fix

  • config: include pyproject.toml in multi config file warning (#1803)
  • add pytest ruff rule PT and fix missing deprecation warning (#1826)
  • message_length_limit: align the behavior of message_length_limit (#1813)
  • cli: capitalize the first characters of help texts and fix minor grammar errors

Refactor

  • replace hard-coded string "cz_conventional_commits" with DEFAULT_SETTINGS (#1830)
  • bump: fix unbounded variable type issue
Commits
  • 1230c7a bump: version 4.13.1 → 4.13.2
  • 8d05b9e refactor: simplify code with pathlib Path object (#1840)
  • 0731f76 bump: version 4.13.0 → 4.13.1
  • 36b2882 refactor(tags): extract version resolution method (#1839)
  • 9783d97 refactor(config): replace is_empty_config with contains_commitizen_section, i...
  • 26e5d80 test(changelog): add forgotten f in f-strings (#1834)
  • 78d2c2d test: replace os.path with pathlib Path (#1835)
  • bc1542c bump: version 4.12.1 → 4.13.0
  • 12bde08 docs(cli/screenshots): update CLI screenshots
  • d214704 Revert "fix(pre-commit-hooks): remove magic constants on pre-push hook (#1815)"
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

…ectory with 3 updates

Bumps the development-dependencies group with 3 updates in the / directory: [hypothesis](https://github.com/HypothesisWorks/hypothesis), [ruff](https://github.com/astral-sh/ruff) and [commitizen](https://github.com/commitizen-tools/commitizen).


Updates `hypothesis` from 6.151.4 to 6.151.5
- [Release notes](https://github.com/HypothesisWorks/hypothesis/releases)
- [Commits](HypothesisWorks/hypothesis@hypothesis-python-6.151.4...hypothesis-python-6.151.5)

Updates `ruff` from 0.14.14 to 0.15.0
- [Release notes](https://github.com/astral-sh/ruff/releases)
- [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md)
- [Commits](astral-sh/ruff@0.14.14...0.15.0)

Updates `commitizen` from 4.12.1 to 4.13.2
- [Release notes](https://github.com/commitizen-tools/commitizen/releases)
- [Changelog](https://github.com/commitizen-tools/commitizen/blob/master/CHANGELOG.md)
- [Commits](commitizen-tools/commitizen@v4.12.1...v4.13.2)

---
updated-dependencies:
- dependency-name: hypothesis
  dependency-version: 6.151.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: ruff
  dependency-version: 0.15.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: commitizen
  dependency-version: 4.13.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the python label Feb 4, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants