Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps-dev): Bump the development-dependencies group across 1 directory with 4 updates #561

Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 6, 2025

Bumps the development-dependencies group with 4 updates in the / directory: faker, hypothesis, mypy and ruff.

Updates faker from 33.1.0 to 33.3.0

Release notes

Sourced from faker's releases.

Release v33.3.0

See CHANGELOG.md.

Release v33.2.0

See CHANGELOG.md.

Release v33.1.3

See CHANGELOG.md.

Release v33.1.2

See CHANGELOG.md.

Release v33.1.1

See CHANGELOG.md.

Changelog

Sourced from faker's changelog.

v33.3.0 - 2025-01-03

  • Add support for Zulu (zu_ZA) address provider and corresponding tests. Thanks @​AliYmn.

v33.2.0 - 2025-01-03

v33.1.3 - 2025-01-03

  • Fix type annotation on Python 3.8.

v33.1.2 - 2025-01-03

v33.1.1 - 2025-01-03

  • Fix address number output issue in ko_KR address provider. Thanks @​semi-yu.
Commits
  • a210844 Bump version: 33.2.0 → 33.3.0
  • 8ec1609 📝 Update CHANGELOG.md
  • 4e2839e fix administrative units un zu_ZA address provider
  • d9d70c4 Add support for Zulu (zu_ZA) address provider and corresponding tests (#2143)
  • 858e31f Bump version: 33.1.3 → 33.2.0
  • 27a7005 📝 Update CHANGELOG.md
  • d72db54 feat: add currency provider for uk_UA (#2141)
  • 4268cea remove deprecated test
  • fd6c087 Bump version: 33.1.2 → 33.1.3
  • 0c37fb2 Fix type annotation on Python 3.8.
  • Additional commits viewable in compare view

Updates hypothesis from 6.123.0 to 6.123.4

Release notes

Sourced from hypothesis's releases.

Hypothesis for Python - version 6.123.4

This patch improves shrinking involving long strings or byte sequences whose value is not relevant to the failure.

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

Hypothesis for Python - version 6.123.3

This release further improves shrinking of strategies using "one_of()", allowing the shrinker to more reliably move between branches of the strategy.

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

Hypothesis for Python - version 6.123.2

The shrinker now uses the typed choice sequence (issue #3921) when ordering failing examples. As a result, Hypothesis may now report a different minimal failing example for some tests. We expect most cases to remain unchanged.

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

Hypothesis for Python - version 6.123.1

Our pytest plugin now emits a warning if you set Pytest's "norecursedirs" config option in such a way that the ".hypothesis" directory would be searched for tests. This reliably indicates that you've made a mistake which slows down test collection, usually assuming that your configuration extends the set of ignored patterns when it actually replaces them. (issue #4200)

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

Commits
  • 87aca3b Bump hypothesis-python version to 6.123.4 and update changelog
  • 2852bc2 Merge pull request #4217 from tybug/short-collection
  • 4b20720 Merge branch 'master' into short-collection
  • 0e905dc Bump hypothesis-python version to 6.123.3 and update changelog
  • b344dd2 Merge pull request #4191 from HypothesisWorks/create-pull-request/patch
  • b804408 make CI pass
  • 9a5e06a Update pinned dependencies
  • 4582957 Merge pull request #4216 from HypothesisWorks/DRMacIver/more-shrinking-of-alt...
  • 5565708 Merge pull request #4218 from HypothesisWorks/DRMacIver/codeowner
  • c1e2d9a Add DRMacIver as code owner
  • Additional commits viewable in compare view

Updates mypy from 1.14.0 to 1.14.1

Commits

Updates ruff from 0.8.4 to 0.8.6

Release notes

Sourced from ruff's releases.

0.8.6

Release Notes

Preview features

  • [format]: Preserve multiline implicit concatenated strings in docstring positions (#15126)
  • [ruff] Add rule to detect empty literal in deque call (RUF025) (#15104)
  • [ruff] Avoid reporting when ndigits is possibly negative (RUF057) (#15234)

Rule changes

  • [flake8-todos] remove issue code length restriction (TD003) (#15175)
  • [pyflakes] Ignore errors in @no_type_check string annotations (F722, F821) (#15215)

CLI

  • Show errors for attempted fixes only when passed --verbose (#15237)

Bug fixes

  • [ruff] Avoid syntax error when removing int over multiple lines (RUF046) (#15230)
  • [pyupgrade] Revert "Add all PEP-585 names to UP006 rule" (#15250)

Contributors

Install ruff 0.8.6

Install prebuilt binaries via shell script

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/astral-sh/ruff/releases/download/0.8.6/ruff-installer.sh | sh

Install prebuilt binaries via powershell script

powershell -ExecutionPolicy ByPass -c "irm https://github.com/astral-sh/ruff/releases/download/0.8.6/ruff-installer.ps1 | iex"

... (truncated)

Changelog

Sourced from ruff's changelog.

0.8.6

Preview features

  • [format]: Preserve multiline implicit concatenated strings in docstring positions (#15126)
  • [ruff] Add rule to detect empty literal in deque call (RUF025) (#15104)
  • [ruff] Avoid reporting when ndigits is possibly negative (RUF057) (#15234)

Rule changes

  • [flake8-todos] remove issue code length restriction (TD003) (#15175)
  • [pyflakes] Ignore errors in @no_type_check string annotations (F722, F821) (#15215)

CLI

  • Show errors for attempted fixes only when passed --verbose (#15237)

Bug fixes

  • [ruff] Avoid syntax error when removing int over multiple lines (RUF046) (#15230)
  • [pyupgrade] Revert "Add all PEP-585 names to UP006 rule" (#15250)

0.8.5

Preview features

  • [airflow] Extend names moved from core to provider (AIR303) (#15145, #15159, #15196, #15216)
  • [airflow] Extend rule to check class attributes, methods, arguments (AIR302) (#15054, #15083)
  • [fastapi] Update FAST002 to check keyword-only arguments (#15119)
  • [flake8-type-checking] Disable TC006 and TC007 in stub files (#15179)
  • [pylint] Detect nested methods correctly (PLW1641) (#15032)
  • [ruff] Detect more strict-integer expressions (RUF046) (#14833)
  • [ruff] Implement falsy-dict-get-fallback (RUF056) (#15160)
  • [ruff] Implement unnecessary-round (RUF057) (#14828)

Rule changes

  • Visit PEP 764 inline TypedDict keys as non-type-expressions (#15073)
  • [flake8-comprehensions] Skip C416 if comprehension contains unpacking (#14909)
  • [flake8-pie] Allow cast(SomeType, ...) (PIE796) (#15141)
  • [flake8-simplify] More precise inference for dictionaries (SIM300) (#15164)
  • [flake8-use-pathlib] Catch redundant joins in PTH201 and avoid syntax errors (#15177)
  • [pycodestyle] Preserve original value format (E731) (#15097)
  • [pydocstyle] Split on first whitespace character (D403) (#15082)
  • [pyupgrade] Add all PEP-585 names to UP006 rule (#5454)

Configuration

  • [flake8-type-checking] Improve flexibility of runtime-evaluated-decorators (#15204)
  • [pydocstyle] Add setting to ignore missing documentation for *args and **kwargs parameters (D417) (#15210)

... (truncated)

Commits

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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @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 4 updates

Bumps the development-dependencies group with 4 updates in the / directory: [faker](https://github.com/joke2k/faker), [hypothesis](https://github.com/HypothesisWorks/hypothesis), [mypy](https://github.com/python/mypy) and [ruff](https://github.com/astral-sh/ruff).


Updates `faker` from 33.1.0 to 33.3.0
- [Release notes](https://github.com/joke2k/faker/releases)
- [Changelog](https://github.com/joke2k/faker/blob/master/CHANGELOG.md)
- [Commits](joke2k/faker@v33.1.0...v33.3.0)

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

Updates `mypy` from 1.14.0 to 1.14.1
- [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md)
- [Commits](python/mypy@v1.14.0...v1.14.1)

Updates `ruff` from 0.8.4 to 0.8.6
- [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.8.4...0.8.6)

---
updated-dependencies:
- dependency-name: faker
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: hypothesis
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: mypy
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: ruff
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Jan 6, 2025
@edgarrmondragon edgarrmondragon added this pull request to the merge queue Jan 6, 2025
Merged via the queue into main with commit df16a00 Jan 6, 2025
12 checks passed
@edgarrmondragon edgarrmondragon deleted the dependabot/pip/development-dependencies-fb57e5c92b branch January 6, 2025 12:46
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file python Pull requests that update Python code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant