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): bump the deps group with 7 updates #171

Merged
merged 1 commit into from
Oct 3, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 1, 2024

Bumps the deps group with 7 updates:

Package From To
pydantic-settings 2.4.0 2.5.2
pydantic 2.8.2 2.9.2
pylint 3.2.7 3.3.1
pytest 8.3.2 8.3.3
pysnooper 1.2.0 1.2.1
ruff 0.6.3 0.6.8
git-cliff 2.5.0 2.6.1

Updates pydantic-settings from 2.4.0 to 2.5.2

Release notes

Sourced from pydantic-settings's releases.

v2.5.2

What's Changed

Full Changelog: pydantic/pydantic-settings@v2.5.1...v2.5.2

v2.5.1

What's Changed

Full Changelog: pydantic/pydantic-settings@v2.5.0...v2.5.1

v2.5.0

What's Changed

New Contributors

Full Changelog: pydantic/pydantic-settings@v2.4.0...v2.5.0

Commits

Updates pydantic from 2.8.2 to 2.9.2

Release notes

Sourced from pydantic's releases.

v2.9.2 (2024-09-17)

What's Changed

Fixes

Full Changelog: pydantic/pydantic@v2.9.1...v2.9.2

v2.9.1 (2024-09-09)

What's Changed

Fixes

Full Changelog: pydantic/pydantic@v2.9.0...v2.9.1

v2.9.0 (2024-09-05)

The code released in v2.9.0 is practically identical to that of v2.9.0b2.

Check out our blog post to learn more about the release highlights!

What's Changed

Packaging

New Features

... (truncated)

Changelog

Sourced from pydantic's changelog.

v2.9.2 (2024-09-17)

GitHub release

What's Changed

Fixes

v2.9.1 (2024-09-09)

GitHub release

What's Changed

Fixes

v2.9.0 (2024-09-05)

GitHub release

The code released in v2.9.0 is practically identical to that of v2.9.0b2.

What's Changed

Packaging

New Features

... (truncated)

Commits
  • 7cedbfb history updates
  • 7eab2b8 v bump
  • c0a288f Fix ZoneInfo with various invalid types (#10408)
  • ea6115d Fix variance issue in _IncEx type alias, only allow True (#10414)
  • fbfe25a Fix serialization schema generation when using PlainValidator (#10427)
  • 26cff3c Adding notes on designing callable discriminators (#10400)
  • 8a0e7ad Do not error when trying to evaluate annotations of private attributes (#10358)
  • ecc5275 bump
  • 2c61bfd Fix evaluation of stringified annotations during namespace inspection (#10347)
  • 3d364cb Use correct types namespace when building namedtuple core schemas (#10337)
  • Additional commits viewable in compare view

Updates pylint from 3.2.7 to 3.3.1

Commits

Updates pytest from 8.3.2 to 8.3.3

Release notes

Sourced from pytest's releases.

8.3.3

pytest 8.3.3 (2024-09-09)

Bug fixes

  • #12446: Avoid calling @property (and other instance descriptors) during fixture discovery -- by asottile{.interpreted-text role="user"}

  • #12659: Fixed the issue of not displaying assertion failure differences when using the parameter --import-mode=importlib in pytest>=8.1.

  • #12667: Fixed a regression where type change in [ExceptionInfo.errisinstance]{.title-ref} caused [mypy]{.title-ref} to fail.

  • #12744: Fixed typing compatibility with Python 3.9 or less -- replaced [typing.Self]{.title-ref} with [typing_extensions.Self]{.title-ref} -- by Avasam{.interpreted-text role="user"}

  • #12745: Fixed an issue with backslashes being incorrectly converted in nodeid paths on Windows, ensuring consistent path handling across environments.

  • #6682: Fixed bug where the verbosity levels where not being respected when printing the "msg" part of failed assertion (as in assert condition, msg).

  • #9422: Fix bug where disabling the terminal plugin via -p no:terminal would cause crashes related to missing the verbose option.

    -- by GTowers1{.interpreted-text role="user"}

Improved documentation

  • #12663: Clarify that the [pytest_deselected]{.title-ref} hook should be called from [pytest_collection_modifyitems]{.title-ref} hook implementations when items are deselected.
  • #12678: Remove erroneous quotes from [tmp_path_retention_policy]{.title-ref} example in docs.

Miscellaneous internal changes

  • #12769: Fix typos discovered by codespell and add codespell to pre-commit hooks.
Commits

Updates pysnooper from 1.2.0 to 1.2.1

Commits

Updates ruff from 0.6.3 to 0.6.8

Release notes

Sourced from ruff's releases.

0.6.8

Release Notes

Preview features

  • Remove unnecessary parentheses around match case clauses (#13510)
  • Parenthesize overlong if guards in match..case clauses (#13513)
  • Detect basic wildcard imports in ruff analyze graph (#13486)
  • [pylint] Implement boolean-chained-comparison (R1716) (#13435)

Rule changes

  • [lake8-simplify] Detect SIM910 when using variadic keyword arguments, i.e., **kwargs (#13503)
  • [pyupgrade] Avoid false negatives with non-reference shadowed bindings of loop variables (UP028) (#13504)

Bug fixes

  • Detect tuples bound to variadic positional arguments i.e. *args (#13512)
  • Exit gracefully on broken pipe errors (#13485)
  • Avoid panic when analyze graph hits broken pipe (#13484)

Performance

  • Reuse BTreeSets in module resolver (#13440)
  • Skip traversal for non-compound statements (#13441)

Contributors

Install ruff 0.6.8

Install prebuilt binaries via shell script

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

Install prebuilt binaries via powershell script

... (truncated)

Changelog

Sourced from ruff's changelog.

0.6.8

Preview features

  • Remove unnecessary parentheses around match case clauses (#13510)
  • Parenthesize overlong if guards in match..case clauses (#13513)
  • Detect basic wildcard imports in ruff analyze graph (#13486)
  • [pylint] Implement boolean-chained-comparison (R1716) (#13435)

Rule changes

  • [lake8-simplify] Detect SIM910 when using variadic keyword arguments, i.e., **kwargs (#13503)
  • [pyupgrade] Avoid false negatives with non-reference shadowed bindings of loop variables (UP028) (#13504)

Bug fixes

  • Detect tuples bound to variadic positional arguments i.e. *args (#13512)
  • Exit gracefully on broken pipe errors (#13485)
  • Avoid panic when analyze graph hits broken pipe (#13484)

Performance

  • Reuse BTreeSets in module resolver (#13440)
  • Skip traversal for non-compound statements (#13441)

0.6.7

Preview features

  • Add Python version support to ruff analyze CLI (#13426)
  • Add exclude support to ruff analyze (#13425)
  • Fix parentheses around return type annotations (#13381)

Rule changes

  • [pycodestyle] Fix: Don't autofix if the first line ends in a question mark? (D400) (#13399)

Bug fixes

  • Respect lint.exclude in ruff check --add-noqa (#13427)

Performance

  • Avoid tracking module resolver files in Salsa (#13437)
  • Use forget for module resolver database (#13438)

0.6.6

Preview features

... (truncated)

Commits
  • ae39ce5 Bump version to 0.6.8 (#13522)
  • ff2d214 Don't skip over imports and other nodes containing nested statements in impor...
  • 9442cd8 Parenthesize match..case if guards (#13513)
  • 8012707 Align formatting of patterns in match-cases with expression formatting in cla...
  • d7ffe46 Disable the typeset plugin (#13517)
  • 7c83af4 red-knot: Implement the not operator for all Type variants (#13432)
  • bbb044e Detect tuples bound to variadic positional arguments i.e. *args (#13512)
  • 4810652 Avoid UP028 false negatives with non-reference shadowed bindings of loop vari...
  • 11f06e0 Detect SIM910 when using variadic keyword arguments, i.e., **kwargs (#13503)
  • f27a8b8 [internal] ComparableExpr (f)strings and bytes made invariant under concate...
  • Additional commits viewable in compare view

Updates git-cliff from 2.5.0 to 2.6.1

Release notes

Sourced from git-cliff's releases.

Release v2.6.1

animation

2.6.1 - 2024-09-27

🐛 Bug Fixes

  • (npm) Add missing --use-branch-tags flag to TS options (#874) - (e21fb1d)
  • (remote) Avoid setting multiple remotes (#885) - (a344c68)

📚 Documentation

  • (website) Add conversion to pdf to tips-and-tricks (#889) - (58dc108)
  • (website) Add get_env filter example for GitLab CI - (dfe4459)

⚙️ Miscellaneous Tasks

  • (ci) Update pedantic lint command (#890) - (8d10edb)
  • (docker) Disable building arm64 docker images temporarily (#879) - (cde2a8e)
  • (fixtures) Build binaries using dev profile (#886) - (a394f88)

New Contributors ❤️

Release v2.6.0

animation

2.6.0 - 2024-09-22

⛰️ Features

  • (changelog) Support generating changelog for different branches (#808) - (2a581a8)
  • (config) Add changelog.render_always option (#859) - (ad039d5)
  • (config) Allow configuring output file from config (#829) - (c2db791)
  • (core) Add remote to commit and deprecate fields (#822) - (87e2c1d)
  • (npm) Add missing options and document all options with tsdoc comments - (2eae2f1)
  • (npm) Add possibility for skipCommit to take an array of values - (a6e3b78)

🐛 Bug Fixes

  • (args) Support using use_branch_tags from both config and args (#848) - (35b7fd8)
  • (bump) Suppress template warning when --bumped-version is used (#855) - (8bebbf9)
  • (changelog) Do not change the tag date if tag already exists (#861) - (fbb643b)
  • (changelog) Correctly set the tag message for the latest release (#854) - (e41e8dd)
  • (changelog) Don't change the context when provided via --from-context (#820) - (ff72406)
  • (commit) Trim the trailing newline for git2 commits (#872) - (1cdbbf6)
  • (core) Avoid the unnecessary loop when no remote feature is activated - (1d8a2fe)

... (truncated)

Changelog

Sourced from git-cliff's changelog.

2.6.1 - 2024-09-27

🐛 Bug Fixes

  • (npm) Add missing --use-branch-tags flag to TS options (#874) - (e21fb1d)
  • (remote) Avoid setting multiple remotes (#885) - (a344c68)

📚 Documentation

  • (website) Add conversion to pdf to tips-and-tricks (#889) - (58dc108)
  • (website) Add get_env filter example for GitLab CI - (dfe4459)

⚙️ Miscellaneous Tasks

  • (ci) Update pedantic lint command (#890) - (8d10edb)
  • (docker) Disable building arm64 docker images temporarily (#879) - (cde2a8e)
  • (fixtures) Build binaries using dev profile (#886) - (a394f88)

New Contributors ❤️

2.6.0 - 2024-09-22

⛰️ Features

  • (changelog) Support generating changelog for different branches (#808) - (2a581a8)
  • (config) Add changelog.render_always option (#859) - (ad039d5)
  • (config) Allow configuring output file from config (#829) - (c2db791)
  • (core) Add remote to commit and deprecate fields (#822) - (87e2c1d)
  • (npm) Add missing options and document all options with tsdoc comments - (2eae2f1)
  • (npm) Add possibility for skipCommit to take an array of values - (a6e3b78)

🐛 Bug Fixes

  • (args) Support using use_branch_tags from both config and args (#848) - (35b7fd8)
  • (bump) Suppress template warning when --bumped-version is used (#855) - (8bebbf9)
  • (changelog) Do not change the tag date if tag already exists (#861) - (fbb643b)
  • (changelog) Correctly set the tag message for the latest release (#854) - (e41e8dd)
  • (changelog) Don't change the context when provided via --from-context (#820) - (ff72406)
  • (commit) Trim the trailing newline for git2 commits (#872) - (1cdbbf6)
  • (core) Avoid the unnecessary loop when no remote feature is activated - (1d8a2fe)
  • (template) Resolve parsing issues with raw/endraw in Jinja (#824) - (63bf5b7)

🚜 Refactor

  • (template) [breaking] Add name parameter to the constructor - (e577113)

📚 Documentation

... (truncated)

Commits
  • 076feb7 chore(release): prepare for v2.6.1
  • 8d10edb chore(ci): update pedantic lint command (#890)
  • 58dc108 docs(website): add conversion to pdf to tips-and-tricks (#889)
  • dfe4459 docs(website): add get_env filter example for GitLab CI
  • d7b2d03 refactor(clippy): apply doc_markdown and ignored_unit_patterns lint (#887)
  • a394f88 chore(fixtures): build binaries using dev profile (#886)
  • 8b7c200 refactor(clippy): apply if_not_else lint (#882)
  • a344c68 fix(remote): avoid setting multiple remotes (#885)
  • a5786be chore(deps): bump thiserror from 1.0.63 to 1.0.64 (#881)
  • e21fb1d fix(npm): add missing --use-branch-tags flag to TS options (#874)
  • 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 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

Bumps the deps group with 7 updates:

| Package | From | To |
| --- | --- | --- |
| [pydantic-settings](https://github.com/pydantic/pydantic-settings) | `2.4.0` | `2.5.2` |
| [pydantic](https://github.com/pydantic/pydantic) | `2.8.2` | `2.9.2` |
| [pylint](https://github.com/pylint-dev/pylint) | `3.2.7` | `3.3.1` |
| [pytest](https://github.com/pytest-dev/pytest) | `8.3.2` | `8.3.3` |
| [pysnooper](https://github.com/cool-RR/PySnooper) | `1.2.0` | `1.2.1` |
| [ruff](https://github.com/astral-sh/ruff) | `0.6.3` | `0.6.8` |
| [git-cliff](https://github.com/orhun/git-cliff) | `2.5.0` | `2.6.1` |


Updates `pydantic-settings` from 2.4.0 to 2.5.2
- [Release notes](https://github.com/pydantic/pydantic-settings/releases)
- [Commits](pydantic/pydantic-settings@v2.4.0...v2.5.2)

Updates `pydantic` from 2.8.2 to 2.9.2
- [Release notes](https://github.com/pydantic/pydantic/releases)
- [Changelog](https://github.com/pydantic/pydantic/blob/main/HISTORY.md)
- [Commits](pydantic/pydantic@v2.8.2...v2.9.2)

Updates `pylint` from 3.2.7 to 3.3.1
- [Release notes](https://github.com/pylint-dev/pylint/releases)
- [Commits](pylint-dev/pylint@v3.2.7...v3.3.1)

Updates `pytest` from 8.3.2 to 8.3.3
- [Release notes](https://github.com/pytest-dev/pytest/releases)
- [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst)
- [Commits](pytest-dev/pytest@8.3.2...8.3.3)

Updates `pysnooper` from 1.2.0 to 1.2.1
- [Release notes](https://github.com/cool-RR/PySnooper/releases)
- [Commits](https://github.com/cool-RR/PySnooper/commits)

Updates `ruff` from 0.6.3 to 0.6.8
- [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.6.3...0.6.8)

Updates `git-cliff` from 2.5.0 to 2.6.1
- [Release notes](https://github.com/orhun/git-cliff/releases)
- [Changelog](https://github.com/orhun/git-cliff/blob/main/CHANGELOG.md)
- [Commits](orhun/git-cliff@v2.5.0...v2.6.1)

---
updated-dependencies:
- dependency-name: pydantic-settings
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: pydantic
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: pylint
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: pytest
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: pysnooper
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: ruff
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: git-cliff
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: deps
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Oct 1, 2024
@benjamin-awd benjamin-awd merged commit 41afd2e into main Oct 3, 2024
2 checks passed
@benjamin-awd benjamin-awd deleted the dependabot/pip/deps-aaac064dc9 branch October 3, 2024 15:56
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