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 python-requirements group with 36 updates #10

Closed

Conversation

dependabot[bot]
Copy link

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

Bumps the python-requirements group with 36 updates:

Package From To
anyio 3.7.1 4.2.0
attrs 23.1.0 23.2.0
azure-core 1.29.5 1.29.6
distro 1.8.0 1.9.0
fixedint 0.1.6 0.2.0
frozenlist 1.4.0 1.4.1
httpx 0.25.2 0.26.0
importlib-metadata 6.11.0 7.0.1
msal-extensions 1.0.0 1.1.0
openai[datalib] 1.3.7 1.6.1
opentelemetry-api 1.21.0 1.22.0
opentelemetry-instrumentation 0.42b0 0.43b0
opentelemetry-instrumentation-aiohttp-client 0.42b0 0.43b0
opentelemetry-instrumentation-asgi 0.42b0 0.43b0
opentelemetry-instrumentation-dbapi 0.42b0 0.43b0
opentelemetry-instrumentation-django 0.42b0 0.43b0
opentelemetry-instrumentation-fastapi 0.42b0 0.43b0
opentelemetry-instrumentation-flask 0.42b0 0.43b0
opentelemetry-instrumentation-httpx 0.42b0 0.43b0
opentelemetry-instrumentation-psycopg2 0.42b0 0.43b0
opentelemetry-instrumentation-requests 0.42b0 0.43b0
opentelemetry-instrumentation-urllib 0.42b0 0.43b0
opentelemetry-instrumentation-urllib3 0.42b0 0.43b0
opentelemetry-instrumentation-wsgi 0.42b0 0.43b0
opentelemetry-sdk 1.21.0 1.22.0
opentelemetry-semantic-conventions 0.42b0 0.43b0
opentelemetry-util-http 0.42b0 0.43b0
pandas 2.1.3 2.1.4
pandas-stubs 2.1.1.230928 2.1.4.231227
pydantic 2.5.2 2.5.3
pydantic-core 2.14.5 2.14.6
regex 2023.10.3 2023.12.25
typing-extensions 4.8.0 4.9.0
tzdata 2023.3 2023.4
uvicorn 0.24.0.post1 0.25.0
pypdf 3.17.1 3.17.4

Updates anyio from 3.7.1 to 4.2.0

Release notes

Sourced from anyio's releases.

4.2.0

  • Add support for byte-based paths in connect_unix, create_unix_listeners, create_unix_datagram_socket, and create_connected_unix_datagram_socket. (PR by Lura Skye)

  • Enabled the Event and CapacityLimiter classes to be instantiated outside an event loop thread

  • Broadly improved/fixed the type annotations. Among other things, many functions and methods that take variadic positional arguments now make use of PEP 646 TypeVarTuple to allow the positional arguments to be validated by static type checkers. These changes affected numerous methods and functions, including:

    • anyio.run()
    • TaskGroup.start_soon()
    • anyio.from_thread.run()
    • anyio.from_thread.run_sync()
    • anyio.to_thread.run_sync()
    • anyio.to_process.run_sync()
    • BlockingPortal.call()
    • BlockingPortal.start_task_soon()
    • BlockingPortal.start_task()

    (also resolves #560)

  • Fixed various type annotations of anyio.Path to match Typeshed:

    • anyio.Path.__lt__()
    • anyio.Path.__le__()
    • anyio.Path.__gt__()
    • anyio.Path.__ge__()
    • anyio.Path.__truediv__()
    • anyio.Path.__rtruediv__()
    • anyio.Path.hardlink_to()
    • anyio.Path.samefile()
    • anyio.Path.symlink_to()
    • anyio.Path.with_segments()

    (PR by Ganden Schaffner)

  • Fixed adjusting the total number of tokens in a CapacityLimiter on asyncio failing to wake up tasks waiting to acquire the limiter in certain edge cases (fixed with help from Egor Blagov)

  • Fixed loop_factory and use_uvloop options not being used on the asyncio backend (#643)

  • Fixed cancellation propagating on asyncio from a task group to child tasks if the task hosting the task group is in a shielded cancel scope (#642)

4.1.0

  • Adapted to API changes made in Trio v0.23:
    • Call trio.to_thread.run_sync() using the abandon_on_cancel keyword argument instead of cancellable
    • Removed a checkpoint when exiting a task group
    • Renamed the cancellable argument in anyio.to_thread.run_sync() to abandon_on_cancel (and deprecated the old parameter name)
    • Bumped minimum version of Trio to v0.23
  • Added support for voluntary thread cancellation via anyio.from_thread.check_cancelled()
  • Bumped minimum version of trio to v0.23
  • Exposed the ResourceGuard class in the public API (#627)
  • Fixed RuntimeError: Runner is closed when running higher-scoped async generator fixtures in some cases (#619)

... (truncated)

Changelog

Sourced from anyio's changelog.

Version history

This library adheres to Semantic Versioning 2.0 <http://semver.org/>_.

UNRELEASED

  • Added support for the Python 3.12 walk_up keyword argument in anyio.Path.relative_to() (PR by Colin Taylor)

4.2.0

  • Add support for byte-based paths in connect_unix, create_unix_listeners, create_unix_datagram_socket, and create_connected_unix_datagram_socket. (PR by Lura Skye)

  • Enabled the Event and CapacityLimiter classes to be instantiated outside an event loop thread

  • Broadly improved/fixed the type annotations. Among other things, many functions and methods that take variadic positional arguments now make use of PEP 646 TypeVarTuple to allow the positional arguments to be validated by static type checkers. These changes affected numerous methods and functions, including:

    • anyio.run()
    • TaskGroup.start_soon()
    • anyio.from_thread.run()
    • anyio.from_thread.run_sync()
    • anyio.to_thread.run_sync()
    • anyio.to_process.run_sync()
    • BlockingPortal.call()
    • BlockingPortal.start_task_soon()
    • BlockingPortal.start_task()

    (also resolves [#560](https://github.com/agronholm/anyio/issues/560) <https://github.com/agronholm/anyio/issues/560>_)

  • Fixed various type annotations of anyio.Path to match Typeshed:

    • anyio.Path.__lt__()
    • anyio.Path.__le__()
    • anyio.Path.__gt__()
    • anyio.Path.__ge__()
    • anyio.Path.__truediv__()
    • anyio.Path.__rtruediv__()
    • anyio.Path.hardlink_to()
    • anyio.Path.samefile()
    • anyio.Path.symlink_to()
    • anyio.Path.with_segments()

    (PR by Ganden Schaffner)

  • Fixed adjusting the total number of tokens in a CapacityLimiter on asyncio failing to wake up tasks waiting to acquire the limiter in certain edge cases (fixed with help from Egor Blagov)

... (truncated)

Commits
  • f757314 Bumped up the version
  • fe31dd5 Added Litestar to the downstream test suite
  • b7be190 Updated GitHub actions
  • 45b9ece Rearranged the changelog
  • 0b66994 Fix more Path typing that doesn't match Typeshed (#653)
  • e5fadb3 Added mention of anyio.from_thread.run_sync() to the changelog
  • 89795b9 Used TypeVarTuple and ParamSpec in several places (#652)
  • 3a4ec47 Removed the pyright version pin
  • 28516e2 Enabled Event and CapacityLimiter to be instantiated outside an event loop (#...
  • 44ca5ea Fixed cancellation propagation when task group host is in a shielded scope (#...
  • Additional commits viewable in compare view

Updates attrs from 23.1.0 to 23.2.0

Commits

Updates azure-core from 1.29.5 to 1.29.6

Release notes

Sourced from azure-core's releases.

azure-core_1.29.6

1.29.6 (2023-12-14)

Bugs Fixed

  • Adjusted AsyncBearerTokenCredentialPolicy to work properly with trio concurrency mechanisms. (#33307)

Other Changes

  • Added dependency on anyio >=3.0,<5.0
  • Bumped minimum dependency on requests to 2.21.0.
Commits

Updates distro from 1.8.0 to 1.9.0

Changelog

Sourced from distro's changelog.

1.9.0 (2023.12.19)

ENHANCEMENTS:

  • Refactor distro.info() method to return an InfoDict [#360]
  • Ignore the file '/etc/board-release' [#353]
  • Ignore the file '/etc/ec2_version' [#359]

RELEASE:

  • Run Python 3.6 on Ubuntu 20.04 for CI and bump isort [#355]

TESTS:

  • Test on modern versions of CPython and PyPy and macOS [#362]
  • Add support for ALT Linux Server 10.1 distribution [#354]
  • Add Debian Testing to the tests [#356]
  • Update archlinux resource for tests [#352]
Commits
  • 8d88a2d Optimize some repo metastuff and prepare v1.9.0 (#364)
  • 95ffcb6 Actions(deps): Bump actions/setup-python from 4 to 5 (#363)
  • 6a487e9 Test on modern versions of CPython and PyPy and macOS (#362)
  • 6ce9eb6 Actions(deps): Bump actions/checkout from 3 to 4 (#361)
  • 2804e55 Refactor distro.info() method to return an InfoDict (#360)
  • c443f12 Ignore the file '/etc/ec2_version'
  • 59e6e07 Add Debian Testing to the tests (#356)
  • 5fc214c Ignore the file '/etc/board-release' (#353)
  • 40ecdd9 Add support for ALT Linux Server 10.1 distribution (#354)
  • 16ae9cb Run Python 3.6 on Ubuntu 20.04 for CI and bump isort (#355)
  • Additional commits viewable in compare view

Updates fixedint from 0.1.6 to 0.2.0

Changelog

Sourced from fixedint's changelog.

v0.2.0, 2020-09-16: Add type hints (GH #4) Removed the broken MutableFixedInt.itruediv Added base argument to FixedInt constructor

Commits
  • c6f9439 Version bump to v0.2.0
  • 035bdca Add py.typed and .pyi files to setup.py
  • b25aadc Documentation updates
  • 418c239 Add type hints. Fixes #4.
  • d2dbd20 Remove MutableFixedInt.itruediv (doesn't make sense), add base argument t...
  • See full diff in compare view

Updates frozenlist from 1.4.0 to 1.4.1

Release notes

Sourced from frozenlist's releases.

1.4.1

Packaging updates and notes for downstreams

  • Declared Python 3.12 and PyPy 3.8-3.10 supported officially in the distribution package metadata.

    Related issues and pull requests on GitHub: #553.

  • Replaced the packaging is replaced from an old-fashioned :file:setup.py to an in-tree :pep:517 build backend -- by :user:webknjaz.

    Whenever the end-users or downstream packagers need to build frozenlist from source (a Git checkout or an sdist), they may pass a config_settings flag pure-python. If this flag is not set, a C-extension will be built and included into the distribution.

    Here is how this can be done with pip:

    .. code-block:: console

    $ python3 -m pip install . --config-settings=pure-python=
    

    This will also work with -e | --editable.

    The same can be achieved via pypa/build:

    .. code-block:: console

    $ python3 -m build --config-setting=pure-python=
    

    Adding -w | --wheel can force pypa/build produce a wheel from source directly, as opposed to building an sdist and then building from it.

    Related issues and pull requests on GitHub: #560.

Contributor-facing changes

  • It is now possible to request line tracing in Cython builds using the with-cython-tracing :pep:517 config setting -- :user:webknjaz.

    This can be used in CI and development environment to measure coverage on Cython modules, but is not normally useful to the end-users or

... (truncated)

Changelog

Sourced from frozenlist's changelog.

1.4.1 (2023-12-15)

Packaging updates and notes for downstreams

  • Declared Python 3.12 and PyPy 3.8-3.10 supported officially in the distribution package metadata.

    Related issues and pull requests on GitHub: :issue:553.

  • Replaced the packaging is replaced from an old-fashioned :file:setup.py to an in-tree :pep:517 build backend -- by :user:webknjaz.

    Whenever the end-users or downstream packagers need to build frozenlist from source (a Git checkout or an sdist), they may pass a config_settings flag pure-python. If this flag is not set, a C-extension will be built and included into the distribution.

    Here is how this can be done with pip:

    .. code-block:: console

    $ python3 -m pip install . --config-settings=pure-python=
    

    This will also work with -e | --editable.

    The same can be achieved via pypa/build:

    .. code-block:: console

    $ python3 -m build --config-setting=pure-python=
    

    Adding -w | --wheel can force pypa/build produce a wheel from source directly, as opposed to building an sdist and then building from it.

    Related issues and pull requests on GitHub: :issue:560.

Contributor-facing changes

  • It is now possible to request line tracing in Cython builds using the with-cython-tracing :pep:517 config setting -- :user:webknjaz.

... (truncated)

Commits
  • 457b28e ⇪📦 Bump to v1.4.1
  • 4998859 📝 Mark "dev" as a known word
  • 3d740da ⇪📦 Bump to v1.4.1.dev0
  • d92751c 🧪 Cache pre-commit.com virtualenvs @ CI
  • 7394415 🧪🐛 List explicit MyPy coverage.xml paths @ CI
  • a26ba84 🧪 Update codecov action input to plural files
  • e12ecf6 🧪 Upload MyPy coverage to Codecov
  • 59b9a74 🐛🧪 Fix the operator in test_lt
  • 01720b2 🧪 Keep building macosx_x86_64 wheels for tests
  • d9f5e0c 🧪💅 Add a reusable project name var to CI/CD
  • Additional commits viewable in compare view

Updates httpx from 0.25.2 to 0.26.0

Release notes

Sourced from httpx's releases.

Version 0.26.0

0.26.0 (20th December, 2023)

Added

  • The proxy argument was added. You should use the proxy argument instead of the deprecated proxies, or use mounts= for more complex configurations. (#2879)

Deprecated

  • The proxies argument is now deprecated. It will still continue to work, but it will be removed in the future. (#2879)

Fixed

  • Fix cases of double escaping of URL path components. Allow / as a safe character in the query portion. (#2990)
  • Handle NO_PROXY envvar cases when a fully qualified URL is supplied as the value. (#2741)
  • Allow URLs where username or password contains unescaped '@'. (#2986)
  • Ensure ASGI raw_path does not include URL query component. (#2999)
  • Ensure Response.iter_text() cannot yield empty strings. (#2998)
Changelog

Sourced from httpx's changelog.

0.26.0 (20th December, 2023)

Added

  • The proxy argument was added. You should use the proxy argument instead of the deprecated proxies, or use mounts= for more complex configurations. (#2879)

Deprecated

  • The proxies argument is now deprecated. It will still continue to work, but it will be removed in the future. (#2879)

Fixed

  • Fix cases of double escaping of URL path components. Allow / as a safe character in the query portion. (#2990)
  • Handle NO_PROXY envvar cases when a fully qualified URL is supplied as the value. (#2741)
  • Allow URLs where username or password contains unescaped '@'. (#2986)
  • Ensure ASGI raw_path does not include URL query component. (#2999)
  • Ensure Response.iter_text() cannot yield empty strings. (#2998)
Commits

Updates importlib-metadata from 6.11.0 to 7.0.1

Changelog

Sourced from importlib-metadata's changelog.

v7.0.1

Bugfixes

  • Corrected the interface for SimplePath to encompass the expectations of locate_file and PackagePath.
  • Fixed type annotations to allow strings.

v7.0.0

Deprecations and Removals

  • Removed EntryPoint access by numeric index (tuple behavior).
Commits
  • f2e84e3 Finalize
  • e9e9f77 Merge commit '98196a'
  • 98196a7 Fixed type annotations to allow strings.
  • f38e051 Add Python 3.13 to compatibility matrix. Ref python/cpython#113174.
  • 0c1d32e Inline os.PathLike using future annotations.
  • b99c9d6 Refine SimplePath to allow for os.PathLike on input and SimplePath on output.
  • 200cf45 Merge pull request #480 from python/bugfix/distribution-simplepath
  • ac243d3 Include _meta in docs to fix doc build failures.
  • 1b3f272 Corrected the interface for SimplePath to encompass the expectations of locat...
  • fc4df51 Rely on read_text and read_bytes from located paths.
  • Additional commits viewable in compare view

Updates msal-extensions from 1.0.0 to 1.1.0

Release notes

Sourced from msal-extensions's releases.

MSAL Extensions for Python, 1.1.0

  • Support Python 3.12 by removing dependency on distutils (#120, #123)
  • Dropping Python 2.7 (#122)
Commits

Updates openai[datalib] from 1.3.7 to 1.6.1

Release notes

Sourced from openai[datalib]'s releases.

v1.6.1

1.6.1 (2023-12-22)

Full Changelog: v1.6.0...v1.6.1

Chores

v1.6.0

1.6.0 (2023-12-19)

Full Changelog: v1.5.0...v1.6.0

Features

  • api: add additional instructions for runs (#995) (7bf9b75)

Chores

Documentation

  • upgrade models in examples to latest version (#989) (cedd574)

v1.5.0

1.5.0 (2023-12-17)

Full Changelog: v1.4.0...v1.5.0

Features

  • api: add token logprobs to chat completions (#980) (f50e962)

Chores

  • ci: run release workflow once per day (#978) (215476a)

v1.4.0

... (truncated)

Changelog

Sourced from openai[datalib]'s changelog.

1.6.1 (2023-12-22)

Full Changelog: v1.6.0...v1.6.1

Chores

1.6.0 (2023-12-19)

Full Changelog: v1.5.0...v1.6.0

Features

  • api: add additional instructions for runs (#995) (7bf9b75)

Chores

Documentation

  • upgrade models in examples to latest version (#989) (cedd574)

1.5.0 (2023-12-17)

Full Changelog: v1.4.0...v1.5.0

Features

  • api: add token logprobs to chat completions (#980) (f50e962)

Chores

  • ci: run release workflow once per day (#978) (215476a)

1.4.0 (2023-12-15)

Full Changelog: v1.3.9...v1.4.0

... (truncated)

Commits

Updates opentelemetry-api from 1.21.0 to 1.22.0

Changelog

Sourced from opentelemetry-api's changelog.

Version 1.22.0/0.43b0 (2023-12-15)

  • Prometheus exporter sanitize info metric (#3572)
  • Remove Jaeger exporters (#3554)
  • Log stacktrace on UNKNOWN status OTLP export error (#3536)
  • Fix OTLPExporterMixin shutdown timeout period (#3524)
  • Handle taskName logrecord attribute (#3557)
Commits

Updates opentelemetry-instrumentation from 0.42b0 to 0.43b0

Changelog

Sourced from opentelemetry-instrumentation's changelog.

Version 1.22.0/0.43b0 (2023-12-14)

Added

  • opentelemetry-instrumentation Added Otel semantic convention opt-in mechanism (#1987)
  • opentelemetry-instrumentation-httpx Fix mixing async and non async hooks (#1920)
  • opentelemetry-instrumentation-requests Implement new semantic convention opt-in with stable http semantic conventions (#2002)
  • opentelemetry-instrument-grpc Fix arity of context.abort for AIO RPCs (#2066)
  • Consolidate instrumentation suppression mechanisms and fix bug in httpx instrumentation (#2061)

Fixed

  • opentelemetry-instrumentation-httpx Remove URL credentials (#2020)
  • opentelemetry-instrumentation-urllib/opentelemetry-instrumentation-urllib3 Fix metric descriptions to match semantic conventions (#1959)
  • opentelemetry-resource-detector-azure Added dependency for Cloud Resource ID attribute (#2072)
Commits

Updates opentelemetry-instrumentation-aiohttp-client from 0.42b0 to 0.43b0

Changelog

Sourced from opentelemetry-instrumentation-aiohttp-client's changelog.

Version 1.22.0/0.43b0 (2023-12-14)

Added

  • opentelemetry-instrumentation Added Otel semantic convention opt-in mechanism (#1987)
  • opentelemetry-instrumentation-httpx Fix mixing async and non async hooks (#1920)
  • opentelemetry-instrumentation-requests Implement new semantic convention opt-in with stable http semantic conventions (#2002)
  • opentelemetry-instrument-grpc Fix arity of context.abort for AIO RPCs (#2066)
  • Consolidate instrumentation suppression mechanisms and fix bug in httpx instrumentation (#2061)

Fixed

  • opentelemetry-instrumentation-httpx Remove URL credentials (#2020)
  • opentelemetry-instrumentation-urllib/opentelemetry-instrumentation-urllib3 Fix metric descriptions to match semantic conventions (#1959)
  • opentelemetry-resource-detector-azure Added dependency for Cloud Resource ID attribute (#2072)
Commits

Updates opentelemetry-instrumentation-asgi from 0.42b0 to 0.43b0

Changelog

Sourced from opentelemetry-instrumentation-asgi's changelog.

Version 1.22.0/0.43b0 (2023-12-14)

Added

  • opentelemetry-instrumentation Added Otel semantic convention opt-in mechanism (#1987)
  • opentelemetry-instrumentation-httpx Fix mixing async and non async hooks (#1920)
  • opentelemetry-instrumentation-requests Implement new semantic convention opt-in with stable http semantic conventions (#2002)
  • opentelemetry-instrument-grpc Fix arity of context.abort for AIO RPCs (#2066)
  • Consolidate instrumentation suppression mechanisms and fix bug in httpx instrumentation (#2061)

Fixed

  • opentelemetry-instrumentation-httpx Remove URL credentials (#2020)
  • opentelemetry-instrumentation-urllib/opentelemetry-instrumentation-urllib3 Fix metric descriptions to match semantic conventions (#1959)
  • opentelemetry-resource-detector-azure Added dependency for Cloud Resource ID attribute (#2072)
Commits

Updates opentelemetry-instrumentation-dbapi from 0.42b0 to 0.43b0

Changelog

Sourced from opentelemetry-instrumentation-dbapi's changelog.

Version 1.22.0/0.43b0 (2023-12-14)

Added

  • opentelemetry-instrumentation Added Otel semantic convention opt-in mechanism (#1987)
  • opentelemetry-instrumentation-httpx Fix mixing async and non async hooks (#1920)
  • opentelemetry-instrumentation-requests Implement new semantic convention opt-in with stable http semantic conventions (#2002)
  • opentelemetry-instrument-grpc Fix arity of context.abort for AIO RPCs (#2066)
  • Consolidate instrumentation suppression mechanisms and fix bug in httpx instrumentation (#2061)

Fixed

  • opentelemetry-instrumentation-httpx Remove URL credentials (#2020)
  • opentelemetry-instrumentation-urllib/opentelemetry-instrumentation-urllib3 Fix metric descriptions to match semantic conventions (#1959)
  • opentelemetry-resource-detector-azure Added dependency for Cloud Resource ID attribute (#2072)
Commits

Updates opentelemetry-instrumentation-django from 0.42b0 to 0.43b0

Changelog

Sourced from opentelemetry-instrumentation-django's changelog.

Version 1.22.0/0.43b0 (2023-12-14)

Added

  • opentelemetry-instrumentation Added Otel semantic convention opt-in mechanism (#1987)
  • opentelemetry-instrumentation-httpx Fix mixing async and non async hooks (#1920)
  • opentelemetry-instrumentation-requests Implement new semantic convention opt-in with stable http semantic conventions (#2002)
  • opentelemetry-instrument-grpc Fix arity of context.abort for AIO RPC...

    Description has been truncated

Bumps the python-requirements group with 36 updates:

| Package | From | To |
| --- | --- | --- |
| [anyio](https://github.com/agronholm/anyio) | `3.7.1` | `4.2.0` |
| [attrs](https://github.com/sponsors/hynek) | `23.1.0` | `23.2.0` |
| [azure-core](https://github.com/Azure/azure-sdk-for-python) | `1.29.5` | `1.29.6` |
| [distro](https://github.com/python-distro/distro) | `1.8.0` | `1.9.0` |
| [fixedint](https://github.com/nneonneo/fixedint) | `0.1.6` | `0.2.0` |
| [frozenlist](https://github.com/aio-libs/frozenlist) | `1.4.0` | `1.4.1` |
| [httpx](https://github.com/encode/httpx) | `0.25.2` | `0.26.0` |
| [importlib-metadata](https://github.com/python/importlib_metadata) | `6.11.0` | `7.0.1` |
| [msal-extensions](https://github.com/AzureAD/microsoft-authentication-extensions-for-python) | `1.0.0` | `1.1.0` |
| [openai[datalib]](https://github.com/openai/openai-python) | `1.3.7` | `1.6.1` |
| [opentelemetry-api](https://github.com/open-telemetry/opentelemetry-python) | `1.21.0` | `1.22.0` |
| [opentelemetry-instrumentation](https://github.com/open-telemetry/opentelemetry-python-contrib) | `0.42b0` | `0.43b0` |
| [opentelemetry-instrumentation-aiohttp-client](https://github.com/open-telemetry/opentelemetry-python-contrib) | `0.42b0` | `0.43b0` |
| [opentelemetry-instrumentation-asgi](https://github.com/open-telemetry/opentelemetry-python-contrib) | `0.42b0` | `0.43b0` |
| [opentelemetry-instrumentation-dbapi](https://github.com/open-telemetry/opentelemetry-python-contrib) | `0.42b0` | `0.43b0` |
| [opentelemetry-instrumentation-django](https://github.com/open-telemetry/opentelemetry-python-contrib) | `0.42b0` | `0.43b0` |
| [opentelemetry-instrumentation-fastapi](https://github.com/open-telemetry/opentelemetry-python-contrib) | `0.42b0` | `0.43b0` |
| [opentelemetry-instrumentation-flask](https://github.com/open-telemetry/opentelemetry-python-contrib) | `0.42b0` | `0.43b0` |
| [opentelemetry-instrumentation-httpx](https://github.com/open-telemetry/opentelemetry-python-contrib) | `0.42b0` | `0.43b0` |
| [opentelemetry-instrumentation-psycopg2](https://github.com/open-telemetry/opentelemetry-python-contrib) | `0.42b0` | `0.43b0` |
| [opentelemetry-instrumentation-requests](https://github.com/open-telemetry/opentelemetry-python-contrib) | `0.42b0` | `0.43b0` |
| [opentelemetry-instrumentation-urllib](https://github.com/open-telemetry/opentelemetry-python-contrib) | `0.42b0` | `0.43b0` |
| [opentelemetry-instrumentation-urllib3](https://github.com/open-telemetry/opentelemetry-python-contrib) | `0.42b0` | `0.43b0` |
| [opentelemetry-instrumentation-wsgi](https://github.com/open-telemetry/opentelemetry-python-contrib) | `0.42b0` | `0.43b0` |
| [opentelemetry-sdk](https://github.com/open-telemetry/opentelemetry-python) | `1.21.0` | `1.22.0` |
| [opentelemetry-semantic-conventions](https://github.com/open-telemetry/opentelemetry-python) | `0.42b0` | `0.43b0` |
| [opentelemetry-util-http](https://github.com/open-telemetry/opentelemetry-python-contrib) | `0.42b0` | `0.43b0` |
| [pandas](https://github.com/pandas-dev/pandas) | `2.1.3` | `2.1.4` |
| [pandas-stubs](https://github.com/pandas-dev/pandas-stubs) | `2.1.1.230928` | `2.1.4.231227` |
| [pydantic](https://github.com/pydantic/pydantic) | `2.5.2` | `2.5.3` |
| [pydantic-core](https://github.com/pydantic/pydantic-core) | `2.14.5` | `2.14.6` |
| [regex](https://github.com/mrabarnett/mrab-regex) | `2023.10.3` | `2023.12.25` |
| [typing-extensions](https://github.com/python/typing_extensions) | `4.8.0` | `4.9.0` |
| [tzdata](https://github.com/python/tzdata) | `2023.3` | `2023.4` |
| [uvicorn](https://github.com/encode/uvicorn) | `0.24.0.post1` | `0.25.0` |
| [pypdf](https://github.com/py-pdf/pypdf) | `3.17.1` | `3.17.4` |


Updates `anyio` from 3.7.1 to 4.2.0
- [Release notes](https://github.com/agronholm/anyio/releases)
- [Changelog](https://github.com/agronholm/anyio/blob/master/docs/versionhistory.rst)
- [Commits](agronholm/anyio@3.7.1...4.2.0)

Updates `attrs` from 23.1.0 to 23.2.0
- [Commits](https://github.com/sponsors/hynek/commits)

Updates `azure-core` from 1.29.5 to 1.29.6
- [Release notes](https://github.com/Azure/azure-sdk-for-python/releases)
- [Changelog](https://github.com/Azure/azure-sdk-for-python/blob/main/doc/esrp_release.md)
- [Commits](Azure/azure-sdk-for-python@azure-core_1.29.5...azure-core_1.29.6)

Updates `distro` from 1.8.0 to 1.9.0
- [Release notes](https://github.com/python-distro/distro/releases)
- [Changelog](https://github.com/python-distro/distro/blob/master/CHANGELOG.md)
- [Commits](python-distro/distro@v1.8.0...v1.9.0)

Updates `fixedint` from 0.1.6 to 0.2.0
- [Changelog](https://github.com/nneonneo/fixedint/blob/master/CHANGES)
- [Commits](nneonneo/fixedint@v0.1.6...v0.2.0)

Updates `frozenlist` from 1.4.0 to 1.4.1
- [Release notes](https://github.com/aio-libs/frozenlist/releases)
- [Changelog](https://github.com/aio-libs/frozenlist/blob/master/CHANGES.rst)
- [Commits](aio-libs/frozenlist@v1.4.0...v1.4.1)

Updates `httpx` from 0.25.2 to 0.26.0
- [Release notes](https://github.com/encode/httpx/releases)
- [Changelog](https://github.com/encode/httpx/blob/master/CHANGELOG.md)
- [Commits](encode/httpx@0.25.2...0.26.0)

Updates `importlib-metadata` from 6.11.0 to 7.0.1
- [Release notes](https://github.com/python/importlib_metadata/releases)
- [Changelog](https://github.com/python/importlib_metadata/blob/main/NEWS.rst)
- [Commits](python/importlib_metadata@v6.11.0...v7.0.1)

Updates `msal-extensions` from 1.0.0 to 1.1.0
- [Release notes](https://github.com/AzureAD/microsoft-authentication-extensions-for-python/releases)
- [Commits](AzureAD/microsoft-authentication-extensions-for-python@1.0.0...1.1.0)

Updates `openai[datalib]` from 1.3.7 to 1.6.1
- [Release notes](https://github.com/openai/openai-python/releases)
- [Changelog](https://github.com/openai/openai-python/blob/main/CHANGELOG.md)
- [Commits](openai/openai-python@v1.3.7...v1.6.1)

Updates `opentelemetry-api` from 1.21.0 to 1.22.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-python/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-python/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-python@v1.21.0...v1.22.0)

Updates `opentelemetry-instrumentation` from 0.42b0 to 0.43b0
- [Release notes](https://github.com/open-telemetry/opentelemetry-python-contrib/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-python-contrib/blob/main/CHANGELOG.md)
- [Commits](https://github.com/open-telemetry/opentelemetry-python-contrib/commits)

Updates `opentelemetry-instrumentation-aiohttp-client` from 0.42b0 to 0.43b0
- [Release notes](https://github.com/open-telemetry/opentelemetry-python-contrib/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-python-contrib/blob/main/CHANGELOG.md)
- [Commits](https://github.com/open-telemetry/opentelemetry-python-contrib/commits)

Updates `opentelemetry-instrumentation-asgi` from 0.42b0 to 0.43b0
- [Release notes](https://github.com/open-telemetry/opentelemetry-python-contrib/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-python-contrib/blob/main/CHANGELOG.md)
- [Commits](https://github.com/open-telemetry/opentelemetry-python-contrib/commits)

Updates `opentelemetry-instrumentation-dbapi` from 0.42b0 to 0.43b0
- [Release notes](https://github.com/open-telemetry/opentelemetry-python-contrib/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-python-contrib/blob/main/CHANGELOG.md)
- [Commits](https://github.com/open-telemetry/opentelemetry-python-contrib/commits)

Updates `opentelemetry-instrumentation-django` from 0.42b0 to 0.43b0
- [Release notes](https://github.com/open-telemetry/opentelemetry-python-contrib/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-python-contrib/blob/main/CHANGELOG.md)
- [Commits](https://github.com/open-telemetry/opentelemetry-python-contrib/commits)

Updates `opentelemetry-instrumentation-fastapi` from 0.42b0 to 0.43b0
- [Release notes](https://github.com/open-telemetry/opentelemetry-python-contrib/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-python-contrib/blob/main/CHANGELOG.md)
- [Commits](https://github.com/open-telemetry/opentelemetry-python-contrib/commits)

Updates `opentelemetry-instrumentation-flask` from 0.42b0 to 0.43b0
- [Release notes](https://github.com/open-telemetry/opentelemetry-python-contrib/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-python-contrib/blob/main/CHANGELOG.md)
- [Commits](https://github.com/open-telemetry/opentelemetry-python-contrib/commits)

Updates `opentelemetry-instrumentation-httpx` from 0.42b0 to 0.43b0
- [Release notes](https://github.com/open-telemetry/opentelemetry-python-contrib/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-python-contrib/blob/main/CHANGELOG.md)
- [Commits](https://github.com/open-telemetry/opentelemetry-python-contrib/commits)

Updates `opentelemetry-instrumentation-psycopg2` from 0.42b0 to 0.43b0
- [Release notes](https://github.com/open-telemetry/opentelemetry-python-contrib/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-python-contrib/blob/main/CHANGELOG.md)
- [Commits](https://github.com/open-telemetry/opentelemetry-python-contrib/commits)

Updates `opentelemetry-instrumentation-requests` from 0.42b0 to 0.43b0
- [Release notes](https://github.com/open-telemetry/opentelemetry-python-contrib/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-python-contrib/blob/main/CHANGELOG.md)
- [Commits](https://github.com/open-telemetry/opentelemetry-python-contrib/commits)

Updates `opentelemetry-instrumentation-urllib` from 0.42b0 to 0.43b0
- [Release notes](https://github.com/open-telemetry/opentelemetry-python-contrib/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-python-contrib/blob/main/CHANGELOG.md)
- [Commits](https://github.com/open-telemetry/opentelemetry-python-contrib/commits)

Updates `opentelemetry-instrumentation-urllib3` from 0.42b0 to 0.43b0
- [Release notes](https://github.com/open-telemetry/opentelemetry-python-contrib/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-python-contrib/blob/main/CHANGELOG.md)
- [Commits](https://github.com/open-telemetry/opentelemetry-python-contrib/commits)

Updates `opentelemetry-instrumentation-wsgi` from 0.42b0 to 0.43b0
- [Release notes](https://github.com/open-telemetry/opentelemetry-python-contrib/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-python-contrib/blob/main/CHANGELOG.md)
- [Commits](https://github.com/open-telemetry/opentelemetry-python-contrib/commits)

Updates `opentelemetry-sdk` from 1.21.0 to 1.22.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-python/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-python/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-python@v1.21.0...v1.22.0)

Updates `opentelemetry-semantic-conventions` from 0.42b0 to 0.43b0
- [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 `opentelemetry-util-http` from 0.42b0 to 0.43b0
- [Release notes](https://github.com/open-telemetry/opentelemetry-python-contrib/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-python-contrib/blob/main/CHANGELOG.md)
- [Commits](https://github.com/open-telemetry/opentelemetry-python-contrib/commits)

Updates `pandas` from 2.1.3 to 2.1.4
- [Release notes](https://github.com/pandas-dev/pandas/releases)
- [Commits](pandas-dev/pandas@v2.1.3...v2.1.4)

Updates `pandas-stubs` from 2.1.1.230928 to 2.1.4.231227
- [Changelog](https://github.com/pandas-dev/pandas-stubs/blob/main/docs/release_procedure.md)
- [Commits](pandas-dev/pandas-stubs@v2.1.1.230928...v2.1.4.231227)

Updates `pydantic` from 2.5.2 to 2.5.3
- [Release notes](https://github.com/pydantic/pydantic/releases)
- [Changelog](https://github.com/pydantic/pydantic/blob/v2.5.3/HISTORY.md)
- [Commits](pydantic/pydantic@v2.5.2...v2.5.3)

Updates `pydantic-core` from 2.14.5 to 2.14.6
- [Release notes](https://github.com/pydantic/pydantic-core/releases)
- [Commits](pydantic/pydantic-core@v2.14.5...v2.14.6)

Updates `regex` from 2023.10.3 to 2023.12.25
- [Changelog](https://github.com/mrabarnett/mrab-regex/blob/hg/changelog.txt)
- [Commits](mrabarnett/mrab-regex@2023.10.3...2023.12.25)

Updates `typing-extensions` from 4.8.0 to 4.9.0
- [Release notes](https://github.com/python/typing_extensions/releases)
- [Changelog](https://github.com/python/typing_extensions/blob/main/CHANGELOG.md)
- [Commits](python/typing_extensions@4.8.0...4.9.0)

Updates `tzdata` from 2023.3 to 2023.4
- [Release notes](https://github.com/python/tzdata/releases)
- [Changelog](https://github.com/python/tzdata/blob/master/NEWS.md)
- [Commits](python/tzdata@2023.3...2023.4)

Updates `uvicorn` from 0.24.0.post1 to 0.25.0
- [Release notes](https://github.com/encode/uvicorn/releases)
- [Changelog](https://github.com/encode/uvicorn/blob/master/CHANGELOG.md)
- [Commits](encode/uvicorn@0.24.0.post1...0.25.0)

Updates `pypdf` from 3.17.1 to 3.17.4
- [Release notes](https://github.com/py-pdf/pypdf/releases)
- [Changelog](https://github.com/py-pdf/pypdf/blob/main/CHANGELOG.md)
- [Commits](py-pdf/pypdf@3.17.1...3.17.4)

---
updated-dependencies:
- dependency-name: anyio
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: python-requirements
- dependency-name: attrs
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-requirements
- dependency-name: azure-core
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-requirements
- dependency-name: distro
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-requirements
- dependency-name: fixedint
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-requirements
- dependency-name: frozenlist
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-requirements
- dependency-name: httpx
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-requirements
- dependency-name: importlib-metadata
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: python-requirements
- dependency-name: msal-extensions
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-requirements
- dependency-name: openai[datalib]
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-requirements
- dependency-name: opentelemetry-api
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-requirements
- dependency-name: opentelemetry-instrumentation
  dependency-type: direct:production
  dependency-group: python-requirements
- dependency-name: opentelemetry-instrumentation-aiohttp-client
  dependency-type: direct:production
  dependency-group: python-requirements
- dependency-name: opentelemetry-instrumentation-asgi
  dependency-type: direct:production
  dependency-group: python-requirements
- dependency-name: opentelemetry-instrumentation-dbapi
  dependency-type: direct:production
  dependency-group: python-requirements
- dependency-name: opentelemetry-instrumentation-django
  dependency-type: direct:production
  dependency-group: python-requirements
- dependency-name: opentelemetry-instrumentation-fastapi
  dependency-type: direct:production
  dependency-group: python-requirements
- dependency-name: opentelemetry-instrumentation-flask
  dependency-type: direct:production
  dependency-group: python-requirements
- dependency-name: opentelemetry-instrumentation-httpx
  dependency-type: direct:production
  dependency-group: python-requirements
- dependency-name: opentelemetry-instrumentation-psycopg2
  dependency-type: direct:production
  dependency-group: python-requirements
- dependency-name: opentelemetry-instrumentation-requests
  dependency-type: direct:production
  dependency-group: python-requirements
- dependency-name: opentelemetry-instrumentation-urllib
  dependency-type: direct:production
  dependency-group: python-requirements
- dependency-name: opentelemetry-instrumentation-urllib3
  dependency-type: direct:production
  dependency-group: python-requirements
- dependency-name: opentelemetry-instrumentation-wsgi
  dependency-type: direct:production
  dependency-group: python-requirements
- dependency-name: opentelemetry-sdk
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-requirements
- dependency-name: opentelemetry-semantic-conventions
  dependency-type: direct:production
  dependency-group: python-requirements
- dependency-name: opentelemetry-util-http
  dependency-type: direct:production
  dependency-group: python-requirements
- dependency-name: pandas
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-requirements
- dependency-name: pandas-stubs
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-requirements
- dependency-name: pydantic
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-requirements
- dependency-name: pydantic-core
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-requirements
- dependency-name: regex
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-requirements
- dependency-name: typing-extensions
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-requirements
- dependency-name: tzdata
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-requirements
- dependency-name: uvicorn
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-requirements
- dependency-name: pypdf
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-requirements
...

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 1, 2024
Copy link
Author

dependabot bot commented on behalf of github Jan 8, 2024

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Jan 8, 2024
@dependabot dependabot bot deleted the dependabot/pip/python-requirements-84fe36d047 branch January 8, 2024 03:53
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.

0 participants