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

Bump the poetry-dependencies group across 1 directory with 16 updates #435

Merged
merged 1 commit into from
Nov 11, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 11, 2024

Bumps the poetry-dependencies group with 14 updates in the / directory:

Package From To
ruff 0.7.2 0.7.3
deptry 0.20.0 0.21.0
types-setuptools 75.3.0.20241105 75.3.0.20241107
blinker 1.8.2 1.9.0
dapla-toolbelt 3.0.2 3.1.2
google-auth 2.35.0 2.36.0
identify 2.6.1 2.6.2
jedi 0.19.1 0.19.2
opentelemetry-api 1.28.0 1.28.1
packaging 24.1 24.2
rpds-py 0.20.1 0.21.0
webcolors 24.8.0 24.11.1
websockets 13.1 14.0
zipp 3.20.2 3.21.0

Updates ruff from 0.7.2 to 0.7.3

Release notes

Sourced from ruff's releases.

0.7.3

Release Notes

Preview features

  • Formatter: Disallow single-line implicit concatenated strings (#13928)
  • [flake8-pyi] Include all Python file types for PYI006 and PYI066 (#14059)
  • [flake8-simplify] Implement split-of-static-string (SIM905) (#14008)
  • [refurb] Implement subclass-builtin (FURB189) (#14105)
  • [ruff] Improve diagnostic messages and docs (RUF031, RUF032, RUF034) (#14068)

Rule changes

  • Detect items that hash to same value in duplicate sets (B033, PLC0208) (#14064)
  • [eradicate] Better detection of IntelliJ language injection comments (ERA001) (#14094)
  • [flake8-pyi] Add autofix for docstring-in-stub (PYI021) (#14150)
  • [flake8-pyi] Update duplicate-literal-member (PYI062) to alawys provide an autofix (#14188)
  • [pyflakes] Detect items that hash to same value in duplicate dictionaries (F601) (#14065)
  • [ruff] Fix false positive for decorators (RUF028) (#14061)

Bug fixes

  • Avoid parsing joint rule codes as distinct codes in # noqa (#12809)
  • [eradicate] ignore # language= in commented-out-code rule (ERA001) (#14069)
  • [flake8-bugbear] - do not run mutable-argument-default on stubs (B006) (#14058)
  • [flake8-builtins] Skip lambda expressions in builtin-argument-shadowing (A002) (#14144)
  • [flake8-comprehension] Also remove trailing comma while fixing C409 and C419 (#14097)
  • [flake8-simplify] Allow open without context manager in return statement (SIM115) (#14066)
  • [pylint] Respect hash-equivalent literals in iteration-over-set (PLC0208) (#14063)
  • [pylint] Update known dunder methods for Python 3.13 (PLW3201) (#14146)
  • [pyupgrade] - ignore kwarg unpacking for UP044 (#14053)
  • [refurb] Parse more exotic decimal strings in verbose-decimal-constructor (FURB157) (#14098)

Documentation

  • Add links to missing related options within rule documentations (#13971)
  • Add rule short code to mkdocs tags to allow searching via rule codes (#14040)

Install ruff 0.7.3

Install prebuilt binaries via shell script

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

Install prebuilt binaries via powershell script

powershell -ExecutionPolicy ByPass -c "irm https://github.com/astral-sh/ruff/releases/download/0.7.3/ruff-installer.ps1 | iex"
</tr></table> 

... (truncated)

Changelog

Sourced from ruff's changelog.

0.7.3

Preview features

  • Formatter: Disallow single-line implicit concatenated strings (#13928)
  • [flake8-pyi] Include all Python file types for PYI006 and PYI066 (#14059)
  • [flake8-simplify] Implement split-of-static-string (SIM905) (#14008)
  • [refurb] Implement subclass-builtin (FURB189) (#14105)
  • [ruff] Improve diagnostic messages and docs (RUF031, RUF032, RUF034) (#14068)

Rule changes

  • Detect items that hash to same value in duplicate sets (B033, PLC0208) (#14064)
  • [eradicate] Better detection of IntelliJ language injection comments (ERA001) (#14094)
  • [flake8-pyi] Add autofix for docstring-in-stub (PYI021) (#14150)
  • [flake8-pyi] Update duplicate-literal-member (PYI062) to alawys provide an autofix (#14188)
  • [pyflakes] Detect items that hash to same value in duplicate dictionaries (F601) (#14065)
  • [ruff] Fix false positive for decorators (RUF028) (#14061)

Bug fixes

  • Avoid parsing joint rule codes as distinct codes in # noqa (#12809)
  • [eradicate] ignore # language= in commented-out-code rule (ERA001) (#14069)
  • [flake8-bugbear] - do not run mutable-argument-default on stubs (B006) (#14058)
  • [flake8-builtins] Skip lambda expressions in builtin-argument-shadowing (A002) (#14144)
  • [flake8-comprehension] Also remove trailing comma while fixing C409 and C419 (#14097)
  • [flake8-simplify] Allow open without context manager in return statement (SIM115) (#14066)
  • [pylint] Respect hash-equivalent literals in iteration-over-set (PLC0208) (#14063)
  • [pylint] Update known dunder methods for Python 3.13 (PLW3201) (#14146)
  • [pyupgrade] - ignore kwarg unpacking for UP044 (#14053)
  • [refurb] Parse more exotic decimal strings in verbose-decimal-constructor (FURB157) (#14098)

Documentation

  • Add links to missing related options within rule documentations (#13971)
  • Add rule short code to mkdocs tags to allow searching via rule codes (#14040)
Commits
  • fbf140a Bump version to 0.7.3 (#14197)
  • 670f958 [red-knot] Fix intersection simplification for ~Any/~Unknown (#14195)
  • fed35a2 [red-knot] Fix is_assignable_to for unions (#14196)
  • d1ef418 Docs: tweak rules documentation (#14180)
  • 272d24b [flake8-pyi] Add a fix for duplicate-literal-member (#14188)
  • 2624249 [red-knot] Minor: fix Literal[True] <: int (#14177)
  • 4b08d17 [red-knot] Add a new Type::KnownInstanceType variant (#14155)
  • 5b6169b [red-knot] Minor fix in intersection type comment (#14176)
  • 2040e93 [flake8-logging-format] Fix invalid formatting value in docs of `logging-ex...
  • 794eb88 [flake8-bandit] Typo in docs suspicious-pickle-import (S403) (#14175)
  • Additional commits viewable in compare view

Updates deptry from 0.20.0 to 0.21.0

Release notes

Sourced from deptry's releases.

0.21.0

What's Changed

Breaking changes

Ignore files handling

Unless --exclude is used, deptry excludes files found in common ignore files (.gitignore, .ignore, $HOME/.config/git/ignore. ...), by using ignore Rust crate. The default behaviour has been changed, so that now:

  • git-related ignore rules (.gitignore, $HOME/.config/git/ignore, ...) are only used if deptry is run inside a git repository
  • .gitignore files that are in parent directories of the git repository from where deptry is run are not used (previously, deptry would traverse parent directories up to the root system)

If you were using .gitignore files for non-git repositories, you might want to switch to .ignore files, or use --extend-exclude.

Requirements files parsing

deptry now uses requirements-parser to parse dependencies from requirements files, meaning that it can now extract nested requirements files referenced in other requirements files without having to explicitly configure it in deptry.

For instance, if you have:

# requirements.txt
-r cli-requirements.txt
httpx==0.27.2
# cli-requirements.txt
click==8.1.7

With the default configuration, when parsing requirements.txt, both httpx and click will now be listed as dependencies by deptry, while previously, only httpx was, unless deptry was instructed about cli-requirements.txt by using --requirements-files. This new behaviour also impacts development requirements files, that can be overridden by using --requirements-files-dev.

Python 3.8 support dropped

Support for Python 3.8 has been dropped, as it has reached its end of life.

Features

  • deptry now detects development dependencies from [dependency-groups] section, introduced by PEP 735 (#892)
  • deptry now supports setuptools dynamic dependencies set in [tool.setuptools.dynamic] section, see https://deptry.com/supported-dependency-managers/#setuptools for more details (#894, #724)
  • Drop support for Python 3.8 (#874)
  • Improve ignore handling (#908)
  • Parse requirements files with requirements-parser, adding support for parsing nested requirements files referenced with -r <requirement_file> (#913)

Full Changelog: fpgmaas/deptry@0.20.0...0.21.0

Changelog

Sourced from deptry's changelog.

0.21.0 - 2024-11-08

Breaking changes

Ignore files handling

Unless --exclude is used, deptry excludes files found in common ignore files (.gitignore, .ignore, $HOME/.config/git/ignore. ...), by using ignore Rust crate. The default behaviour has been changed, so that now:

  • git-related ignore rules (.gitignore, $HOME/.config/git/ignore, ...) are only used if deptry is run inside a git repository
  • .gitignore files that are in parent directories of the git repository from where deptry is run are not used (previously, deptry would traverse parent directories up to the root system)

If you were using .gitignore files for non-git repositories, you might want to switch to .ignore files, or use --extend-exclude.

Requirements files parsing

deptry now uses requirements-parser to parse dependencies from requirements files, meaning that it can now extract nested requirements files referenced in other requirements files without having to explicitly configure it in deptry.

For instance, if you have:

# requirements.txt
-r cli-requirements.txt
httpx==0.27.2
# cli-requirements.txt
click==8.1.7

With the default configuration, when parsing requirements.txt, both httpx and click will now be listed as dependencies by deptry, while previously, only httpx was, unless deptry was instructed about cli-requirements.txt by using --requirements-files. This new behaviour also impacts development requirements files, that can be overridden by using --requirements-files-dev.

Python 3.8 support dropped

Support for Python 3.8 has been dropped, as it has reached its end of life.

Features

  • deptry now detects development dependencies from [dependency-groups] section, introduced

... (truncated)

Commits
  • 3557308 docs(changelog): add 0.21.0 release notes (#907)
  • 975ee16 feat(pep621): use packaging-based PEP 508 parser (#925)
  • 0781758 test(functional): remove dependency over mkdocs (#935)
  • 6a43663 test(cli): add tests for display_deptry_version (#933)
  • 18c3498 chore(deps): lock file maintenance
  • 28faa9a chore(deps): update dependency mkdocs-material to v9.5.43
  • ca33bb8 chore(deps): update pre-commit hook astral-sh/ruff-pre-commit to v0.7.2
  • 8ac81d2 chore(deps): update dependency pytest-cov to v6 (#929)
  • 262fe79 chore(deps): update dependency node to v22 (#928)
  • 9912f36 chore(renovate): update Ruff changelog URL (#927)
  • Additional commits viewable in compare view

Updates types-setuptools from 75.3.0.20241105 to 75.3.0.20241107

Commits

Updates blinker from 1.8.2 to 1.9.0

Release notes

Sourced from blinker's releases.

1.9.0

This is the Blinker 1.9.0 feature release. A feature release may include new features, remove previously deprecated code, add new deprecations, or introduce potentially breaking changes. We encourage everyone to upgrade, and to use a tool such as pip-tools to pin all dependencies and control upgrades. Test with warnings treated as errors to be able to adapt to deprecation warnings early.

PyPI: https://pypi.org/project/blinker/1.9.0/ Changes: https://blinker.readthedocs.io/en/stable/#version-1-9-0 Milestone: https://github.com/pallets-eco/blinker/milestone/1?closed=1

  • Drop support for Python 3.8. #175
  • Remove previously deprecated __version__, receiver_connected, Signal.temporarily_connected_to and WeakNamespace. #172
  • Skip weakref signal cleanup if the interpreter is shutting down. #173
Changelog

Sourced from blinker's changelog.

Version 1.9.0

Released 2024-11-08

  • Drop support for Python 3.8. :pr:175
  • Remove previously deprecated __version__, receiver_connected, Signal.temporarily_connected_to and WeakNamespace. :pr:172
  • Skip weakref signal cleanup if the interpreter is shutting down. :issue:173
Commits
  • 669f3a0 release version 1.9.0
  • cfe116f try disabling attestions on test pypi
  • 16e4bd7 Merge pull request #174 from projectgus/bugfix/weakref_disconnect_shutdown
  • 42561fd Fix "Exception ignored" in weakref callback during interpreter shutdown.
  • dcce3e9 Merge pull request #175 from pallets-eco/drop-python3.8
  • efa95ea drop support for python 3.8
  • 8230518 update dev dependencies
  • 94f1202 update dev dependencies
  • 8c983ec remove previously deprecated code (#172)
  • f5915f3 set up pre-commit lite workflow
  • Additional commits viewable in compare view

Updates dapla-toolbelt from 3.0.2 to 3.1.2

Commits

Updates google-auth from 2.35.0 to 2.36.0

Release notes

Sourced from google-auth's releases.

v2.36.0

2.36.0 (2024-10-30)

Features

  • IAM signblob retries (#1600) (484c8db)
  • Making iam endpoint universe-aware (#1604) (16c728d)
  • Support External Account Authorized User as a Source Credential for impersonated credentials in ADC (#1608) (875796c)

Bug Fixes

Changelog

Sourced from google-auth's changelog.

2.36.0 (2024-10-30)

Features

  • IAM signblob retries (#1600) (484c8db)
  • Making iam endpoint universe-aware (#1604) (16c728d)
  • Support External Account Authorized User as a Source Credential for impersonated credentials in ADC (#1608) (875796c)

Bug Fixes

Commits

Updates identify from 2.6.1 to 2.6.2

Commits
  • 6fd6f6b v2.6.2
  • 6607f84 Merge pull request #484 from zupo/patch-1
  • 4c4ccfa Merge pull request #485 from pre-commit/pre-commit-ci-update-config
  • b5176c7 [pre-commit.ci] pre-commit autoupdate
  • 7315612 Add support for Elm files
  • 4a96fe1 Merge pull request #483 from pre-commit/pre-commit-ci-update-config
  • 81e20b0 [pre-commit.ci] pre-commit autoupdate
  • 3fe9f0a Merge pull request #481 from pre-commit/all-repos_autofix_all-repos-manual
  • dd8ebb1 py39+
  • 54a4479 Merge pull request #480 from pre-commit/pre-commit-ci-update-config
  • Additional commits viewable in compare view

Updates jedi from 0.19.1 to 0.19.2

Changelog

Sourced from jedi's changelog.

0.19.2 (2024-11-10) +++++++++++++++++++

  • Python 3.13 support
Commits
  • 41e9e95 Increase Jedi version
  • b225678 Add a release for Python 3.13
  • 30adf43 Merge pull request #2027 from WutingjiaX/feat/filterImported
  • be6df62 filter imported names during completion
  • e53359a Fix a test that had issues with a minor upgrade of Python 3.12
  • 6e5d5b7 Enable workflow_dispatch in CI
  • 91ffdea Sort completions by input resemblance. (#2018)
  • 2859e4f Support inferring not expr to bool (#2016)
  • 8ee4c26 Merge pull request #2014 from WutingjiaX/feat/in_operator
  • 4d09ac0 When inferring comparison operators, return a definite type instead of NO_VAL...
  • Additional commits viewable in compare view

Updates opentelemetry-api from 1.28.0 to 1.28.1

Changelog

Sourced from opentelemetry-api's changelog.

Version 1.28.1/0.49b1 (2024-11-08)

  • Fix metrics export with exemplar and no context and filtering observable instruments (#4251)
  • Fix recursion error with sdk disabled and handler added to root logger (#4259)
Commits
  • 6f3008a [release/v1.28.x-0.49bx] Prepare release 1.28.1/0.49b1 (#4262)
  • 15289cb Update prepare-patch-release.yml
  • 42d7a65 opentelemetry-sdk: avoid recursion error with sdk disabled (#4259)
  • d3b5876 Fix: filter exemplar for observable instrument and export of exemplar without...
  • See full diff in compare view

Updates opentelemetry-sdk from 1.28.0 to 1.28.1

Changelog

Sourced from opentelemetry-sdk's changelog.

Version 1.28.1/0.49b1 (2024-11-08)

  • Fix metrics export with exemplar and no context and filtering observable instruments (#4251)
  • Fix recursion error with sdk disabled and handler added to root logger (#4259)
Commits
  • 6f3008a [release/v1.28.x-0.49bx] Prepare release 1.28.1/0.49b1 (#4262)
  • 15289cb Update prepare-patch-release.yml
  • 42d7a65 opentelemetry-sdk: avoid recursion error with sdk disabled (#4259)
  • d3b5876 Fix: filter exemplar for observable instrument and export of exemplar without...
  • See full diff in compare view

Updates opentelemetry-semantic-conventions from 0.49b0 to 0.49b1

Changelog

Sourced from opentelemetry-semantic-conventions's changelog.

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.

Unreleased

  • Fix metrics export with exemplar and no context and filtering observable instruments (#4251)
  • Fix recursion error with sdk disabled and handler added to root logger (#4259)
Commits

Updates packaging from 24.1 to 24.2

Release notes

Sourced from packaging's releases.

24.2

What's Changed

New Contributors

Full Changelog: pypa/packaging@24.1...24.2

Changelog

Sourced from packaging's changelog.

24.2 - 2024-11-08


* PEP 639: Implement License-Expression and License-File (:issue:`828`)
* Use ``!r`` formatter for error messages with filenames (:issue:`844`)
* Add support for PEP 730 iOS tags (:issue:`832`)
* Fix prerelease detection for ``>`` and ``<`` (:issue:`794`)
* Fix uninformative error message (:issue:`830`)
* Refactor ``canonicalize_version`` (:issue:`793`)
* Patch python_full_version unconditionally (:issue:`825`)
* Fix doc for ``canonicalize_version`` to mention ``strip_trailing_zero`` and a typo in a docstring (:issue:`801`)
* Fix typo in Version ``__str__`` (:issue:`817`)
* Support creating a ``SpecifierSet`` from an iterable of ``Specifier`` objects (:issue:`775`)
Commits
  • d8e3b31 Bump for release
  • 2de393d Update changelog for release
  • 9c66f5c Remove extraneous quotes in f-strings by using !r (#848)
  • 4dc334c Upgrade to latest mypy (#853)
  • d1a9f93 Bump the github-actions group with 4 updates (#852)
  • 029f415 PEP 639: Implement License-Expression and License-File (#828)
  • 6c338a8 Use !r formatter for error messages with filenames. (#844)
  • 28e7da7 Add a comment as to why Metadata.name isn't normalized (#842)
  • ce0d79c Mention updating changelog in release process (#841)
  • ac5bdf3 Update the changelog to reflect 24.1 changes (#840)
  • Additional commits viewable in compare view

Updates rpds-py from 0.20.1 to 0.21.0

Release notes

Sourced from rpds-py's releases.

v0.21.0

What's Changed

New Contributors

Full Changelog: crate-py/rpds@v0.20.1...v0.21.0

Commits

Updates webcolors from 24.8.0 to 24.11.1

Changelog

Sourced from webcolors's changelog.

.. _changelog:

Changelog

This document lists the changes in each release of webcolors.

Version numbering

This library currently tracks its version numbers using the YY.MM.MICRO form of Calendar Versioning <https://calver.org>_ ("CalVer"), in which the first two components of the version number are the (two-digit) year and (non-zero-padded) month of the release date, while the third component is an incrementing value for releases occurring in that month. For example, the first release issued in January 2025 would have a version number of 25.1.0; a subsequent release in the same month would be 25.1.1; a release the following month (February) would be 25.2.0.

The CalVer system was adopted for this library in 2024, and the first release to use a CalVer version number was 24.6.0.

API stability and deprecations

The API stability/deprecation policy for this library is as follows:

  • The supported stable public API of this library is the set of symbols which are exported by its __all__ declaration and which are documented in this documentation. For classes exported there, the supported stable public API is the set of methods and attributes of those classes whose names do not begin with one or more underscore (_) characters and which are documented in this documentation.

  • When a public API is to be removed, or undergo a backwards-incompatible change, it will emit a deprecation warning which serves as notice of the intended removal or change, and which will give a date -- which will always be at least in the next calendar year after the first release which emits the deprecation warning -- past which the removal or change may occur without further warning.

  • Security fixes, and fixes for high-severity bugs (such as those which might cause unrecoverable crash or data loss), are not required to emit deprecation warnings, and may -- if needed -- impose backwards-incompatible change in any release. If this occurs, this changelog document will contain a note explaining why the usual deprecation process could not be followed for that case.

... (truncated)

Commits
  • 834f77b Release 24.11.1.
  • 8df5318 Release 24.11.0.
  • c55f147 Start prepping 24.11.0.
  • 396f2cc Try the coverage action with plain pip.
  • a3b9397 Adjust coverage configuration.
  • 690949b Explicitly specify Python version.
  • 8caf72d Switch back to the original version of the coverage action.
  • ef82dee Attempt to fix the coverage check.
  • f3cde3d Remove disallowed pip usage.
  • cc1d2a1 Adjust which jobs run in CI.
  • Additional commits viewable in compare view

Updates websockets from 13.1 to 14.0

Release notes

Sourced from websockets's releases.

14.0

See https://websockets.readthedocs.io/en/stable/project/changelog.html for details.

Commits ...

Description has been truncated

Bumps the poetry-dependencies group with 14 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [ruff](https://github.com/astral-sh/ruff) | `0.7.2` | `0.7.3` |
| [deptry](https://github.com/fpgmaas/deptry) | `0.20.0` | `0.21.0` |
| [types-setuptools](https://github.com/python/typeshed) | `75.3.0.20241105` | `75.3.0.20241107` |
| [blinker](https://github.com/pallets-eco/blinker) | `1.8.2` | `1.9.0` |
| [dapla-toolbelt](https://github.com/statisticsnorway/dapla-toolbelt) | `3.0.2` | `3.1.2` |
| [google-auth](https://github.com/googleapis/google-auth-library-python) | `2.35.0` | `2.36.0` |
| [identify](https://github.com/pre-commit/identify) | `2.6.1` | `2.6.2` |
| [jedi](https://github.com/davidhalter/jedi) | `0.19.1` | `0.19.2` |
| [opentelemetry-api](https://github.com/open-telemetry/opentelemetry-python) | `1.28.0` | `1.28.1` |
| [packaging](https://github.com/pypa/packaging) | `24.1` | `24.2` |
| [rpds-py](https://github.com/crate-py/rpds) | `0.20.1` | `0.21.0` |
| [webcolors](https://github.com/ubernostrum/webcolors) | `24.8.0` | `24.11.1` |
| [websockets](https://github.com/python-websockets/websockets) | `13.1` | `14.0` |
| [zipp](https://github.com/jaraco/zipp) | `3.20.2` | `3.21.0` |



Updates `ruff` from 0.7.2 to 0.7.3
- [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.7.2...0.7.3)

Updates `deptry` from 0.20.0 to 0.21.0
- [Release notes](https://github.com/fpgmaas/deptry/releases)
- [Changelog](https://github.com/fpgmaas/deptry/blob/main/CHANGELOG.md)
- [Commits](fpgmaas/deptry@0.20.0...0.21.0)

Updates `types-setuptools` from 75.3.0.20241105 to 75.3.0.20241107
- [Commits](https://github.com/python/typeshed/commits)

Updates `blinker` from 1.8.2 to 1.9.0
- [Release notes](https://github.com/pallets-eco/blinker/releases)
- [Changelog](https://github.com/pallets-eco/blinker/blob/main/CHANGES.rst)
- [Commits](pallets-eco/blinker@1.8.2...1.9.0)

Updates `dapla-toolbelt` from 3.0.2 to 3.1.2
- [Commits](https://github.com/statisticsnorway/dapla-toolbelt/commits)

Updates `google-auth` from 2.35.0 to 2.36.0
- [Release notes](https://github.com/googleapis/google-auth-library-python/releases)
- [Changelog](https://github.com/googleapis/google-auth-library-python/blob/main/CHANGELOG.md)
- [Commits](googleapis/google-auth-library-python@v2.35.0...v2.36.0)

Updates `identify` from 2.6.1 to 2.6.2
- [Commits](pre-commit/identify@v2.6.1...v2.6.2)

Updates `jedi` from 0.19.1 to 0.19.2
- [Changelog](https://github.com/davidhalter/jedi/blob/master/CHANGELOG.rst)
- [Commits](davidhalter/jedi@v0.19.1...v0.19.2)

Updates `opentelemetry-api` from 1.28.0 to 1.28.1
- [Release notes](https://github.com/open-telemetry/opentelemetry-python/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-python/blob/v1.28.1/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-python@v1.28.0...v1.28.1)

Updates `opentelemetry-sdk` from 1.28.0 to 1.28.1
- [Release notes](https://github.com/open-telemetry/opentelemetry-python/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-python/blob/v1.28.1/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-python@v1.28.0...v1.28.1)

Updates `opentelemetry-semantic-conventions` from 0.49b0 to 0.49b1
- [Release notes](https://github.com/open-telemetry/opentelemetry-python/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-python/blob/main/CHANGELOG.md)
- [Commits](https://github.com/open-telemetry/opentelemetry-python/commits)

Updates `packaging` from 24.1 to 24.2
- [Release notes](https://github.com/pypa/packaging/releases)
- [Changelog](https://github.com/pypa/packaging/blob/main/CHANGELOG.rst)
- [Commits](pypa/packaging@24.1...24.2)

Updates `rpds-py` from 0.20.1 to 0.21.0
- [Release notes](https://github.com/crate-py/rpds/releases)
- [Commits](crate-py/rpds@v0.20.1...v0.21.0)

Updates `webcolors` from 24.8.0 to 24.11.1
- [Changelog](https://github.com/ubernostrum/webcolors/blob/trunk/docs/changelog.rst)
- [Commits](ubernostrum/webcolors@24.8.0...24.11.1)

Updates `websockets` from 13.1 to 14.0
- [Release notes](https://github.com/python-websockets/websockets/releases)
- [Commits](python-websockets/websockets@13.1...14.0)

Updates `zipp` from 3.20.2 to 3.21.0
- [Release notes](https://github.com/jaraco/zipp/releases)
- [Changelog](https://github.com/jaraco/zipp/blob/main/NEWS.rst)
- [Commits](jaraco/zipp@v3.20.2...v3.21.0)

---
updated-dependencies:
- dependency-name: ruff
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: poetry-dependencies
- dependency-name: deptry
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: poetry-dependencies
- dependency-name: types-setuptools
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: poetry-dependencies
- dependency-name: blinker
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: poetry-dependencies
- dependency-name: dapla-toolbelt
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: poetry-dependencies
- dependency-name: google-auth
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: poetry-dependencies
- dependency-name: identify
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: poetry-dependencies
- dependency-name: jedi
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: poetry-dependencies
- dependency-name: opentelemetry-api
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: poetry-dependencies
- dependency-name: opentelemetry-sdk
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: poetry-dependencies
- dependency-name: opentelemetry-semantic-conventions
  dependency-type: indirect
  dependency-group: poetry-dependencies
- dependency-name: packaging
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: poetry-dependencies
- dependency-name: rpds-py
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: poetry-dependencies
- dependency-name: webcolors
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: poetry-dependencies
- dependency-name: websockets
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: poetry-dependencies
- dependency-name: zipp
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: poetry-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot requested a review from a team as a code owner November 11, 2024 09:08
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Nov 11, 2024
@mmwinther mmwinther merged commit e28d97f into master Nov 11, 2024
13 checks passed
@mmwinther mmwinther deleted the dependabot/pip/poetry-dependencies-6c7169bbfd branch November 11, 2024 09:18
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