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 all group across 1 directory with 13 updates #135

Open
wants to merge 1 commit into
base: unit-01
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 24, 2024

Bumps the all group with 13 updates in the / directory:

Package From To
aiohttp 3.9.3 3.9.5
cachetools 5.3.2 5.3.3
discord-py 2.3.2 2.4.0
emoji 2.10.1 2.12.1
httpx 0.26.0 0.27.0
more-itertools 10.2.0 10.3.0
pandas 2.2.0 2.2.2
peewee 3.17.0 3.17.5
plotly 5.18.0 5.22.0
pyspark 3.5.0 3.5.1
recordclass 0.21.1 0.22
requests 2.31.0 2.32.3
yt-dlp 2023.12.30 2024.5.27

Updates aiohttp from 3.9.3 to 3.9.5

Release notes

Sourced from aiohttp's releases.

3.9.5

Bug fixes

  • Fixed "Unclosed client session" when initialization of :py:class:~aiohttp.ClientSession fails -- by :user:NewGlad.

    Related issues and pull requests on GitHub: #8253.

  • Fixed regression (from :pr:8280) with adding Content-Disposition to the form-data part after appending to writer -- by :user:Dreamsorcerer/:user:Olegt0rr.

    Related issues and pull requests on GitHub: #8332.

  • Added default Content-Disposition in multipart/form-data responses to avoid broken form-data responses -- by :user:Dreamsorcerer.

    Related issues and pull requests on GitHub: #8335.


3.9.4

Bug fixes

  • The asynchronous internals now set the underlying causes when assigning exceptions to the future objects -- by :user:webknjaz.

    Related issues and pull requests on GitHub: #8089.

  • Treated values of Accept-Encoding header as case-insensitive when checking for gzip files -- by :user:steverep.

... (truncated)

Changelog

Sourced from aiohttp's changelog.

3.9.5 (2024-04-16)

Bug fixes

  • Fixed "Unclosed client session" when initialization of :py:class:~aiohttp.ClientSession fails -- by :user:NewGlad.

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

  • Fixed regression (from :pr:8280) with adding Content-Disposition to the form-data part after appending to writer -- by :user:Dreamsorcerer/:user:Olegt0rr.

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

  • Added default Content-Disposition in multipart/form-data responses to avoid broken form-data responses -- by :user:Dreamsorcerer.

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


3.9.4 (2024-04-11)

Bug fixes

  • The asynchronous internals now set the underlying causes when assigning exceptions to the future objects -- by :user:webknjaz.

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

... (truncated)

Commits

Updates cachetools from 5.3.2 to 5.3.3

Changelog

Sourced from cachetools's changelog.

v5.3.3 (2024-02-26)

  • Documentation improvements.

  • Update CI environment.

Commits

Updates discord-py from 2.3.2 to 2.4.0

Commits
  • 978a96b Version bump to v2.4.0
  • c75ca25 Add changelog for v2.4.0
  • d528e8f Add information on Message.poll for Message Content Intent
  • c055fd3 Fix ui.Button providing a custom_id for premium buttons
  • be9edf8 Remove setting sku_id explicitly via button decorator
  • 9eac365 Allow deletion race conditions to work with purge
  • fb12d3d Remove unnecessary warning logs for poll events
  • 837bc35 Add missing versionadded for a few decorators
  • bb1d09a Account for user installations in Channel.permissions_for
  • 895d6c3 Add Permissions.use_external_apps
  • Additional commits viewable in compare view

Updates emoji from 2.10.1 to 2.12.1

Release notes

Sourced from emoji's releases.

v2.12.1

  • typing-extensions requires at least version 4.7.0

v2.12.0

  • Move type annotations inline
  • Use functools.lru_cache for looking up emoji by name with get_emoji_by_name()
  • Move internal functions get_emoji_unicode_dict(), get_aliases_unicode_dict(), _EMOJI_UNICODE and _ALIASES_UNICODE to testutils
  • Add type hints to tests
  • Remove obsolete dev dependency coveralls

v2.11.1

  • Add missing stubs for purely_emoji

v2.11.0

  • Update to Unicode v15.1
Changelog

Sourced from emoji's changelog.

v2.12.1 (2024-05-20)

  • typing-extensions requires at least version 4.7.0 #297

v2.12.0 (2024-05-19)

  • Move type annotations inline
  • Use functools.lru_cache for looking up emoji by name with get_emoji_by_name()
  • Move internal functions get_emoji_unicode_dict(), get_aliases_unicode_dict(), _EMOJI_UNICODE and _ALIASES_UNICODE to testutils
  • Add type hints to tests
  • Remove obsolete dev dependency coveralls

v2.11.1 (2024-04-21)

  • Add missing stubs for purely_emoji

v2.11.0 (2024-03-26)

  • Update to Unicode v15.1
Commits
  • e83cf4a Merge pull request #298 from cvzi/fix_297
  • 7ea7b05 Prepare v2.12.1
  • d57d337 typing_extensions >= 4.7.0
  • 099e3ad Merge pull request #296 from cvzi/prepare_v2.12.0
  • e05743f Prepare for v2.12.0
  • 81f9749 Remove obsolete dev dependency coveralls
  • 77624cd Merge pull request #295 from cvzi/lrucache
  • 39f00a8 Revert using pytest's importlib mode
  • 2e28df8 Update Unicode translations to 'release-45', but no emoji were changed
  • 42c27f5 Move get_emoji_unicode_dict(),get_aliases_unicode_dict() to testutils.py
  • Additional commits viewable in compare view

Updates httpx from 0.26.0 to 0.27.0

Release notes

Sourced from httpx's releases.

Version 0.27.0

0.27.0 (21st February, 2024)

Deprecated

  • The app=... shortcut has been deprecated. Use the explicit style of transport=httpx.WSGITransport() or transport=httpx.ASGITransport() instead.

Fixed

  • Respect the http1 argument while configuring proxy transports. (#3023)
  • Fix RFC 2069 mode digest authentication. (#3045)
Changelog

Sourced from httpx's changelog.

0.27.0 (21st February, 2024)

Deprecated

  • The app=... shortcut has been deprecated. Use the explicit style of transport=httpx.WSGITransport() or transport=httpx.ASGITransport() instead.

Fixed

  • Respect the http1 argument while configuring proxy transports. (#3023)
  • Fix RFC 2069 mode digest authentication. (#3045)
Commits

Updates more-itertools from 10.2.0 to 10.3.0

Release notes

Sourced from more-itertools's releases.

Version 10.3.0

What's Changed

New Contributors

Full Changelog: more-itertools/more-itertools@v10.2.0...v10.3.0

Commits
  • 7e46c39 Merge pull request #851 from more-itertools/version-10.3.0
  • 94e4f88 Remove trailing comma
  • 9c5dbb5 Bring in unique()
  • 932859d Merge remote-tracking branch 'origin/add-unique-recipe' into version-10.3.0
  • b78815e Add README updates
  • 8ec0620 Docs for 10.3.0
  • 0b76d6c Bump version: 10.2.0 → 10.3.0
  • 9e10fa4 Add unique()
  • 6944752 Merge pull request #847 from more-itertools/issue-843-dft
  • acdbb80 Use fsum, Wikipedia link, and cmath.isclose
  • Additional commits viewable in compare view

Updates pandas from 2.2.0 to 2.2.2

Release notes

Sourced from pandas's releases.

Pandas 2.2.2

We are pleased to announce the release of pandas 2.2.2. This release includes some new features, bug fixes, and performance improvements. We recommend that all users upgrade to this version.

See the full whatsnew for a list of all the changes. Pandas 2.2.2 supports Python 3.9 and higher.

The release will be available on the defaults and conda-forge channels:

conda install pandas

Or via PyPI:

python3 -m pip install --upgrade pandas

Please report any issues with the release on the pandas issue tracker.

Thanks to all the contributors who made this release possible.

Pandas 2.2.1

We are pleased to announce the release of pandas 2.2.1. This release includes some new features, bug fixes, and performance improvements. We recommend that all users upgrade to this version.

See the full whatsnew for a list of all the changes. Pandas 2.2.1 supports Python 3.9 and higher.

The release will be available on the defaults and conda-forge channels:

conda install pandas

Or via PyPI:

python3 -m pip install --upgrade pandas

Please report any issues with the release on the pandas issue tracker.

Thanks to all the contributors who made this release possible.

Commits

Updates peewee from 3.17.0 to 3.17.5

Release notes

Sourced from peewee's releases.

3.17.5

Fixes package installation issue on 3.12 and newer introduced in the last version.

3.17.4

  • Fix bug that could occur when using CASE inside a function, and one or more of the CASE clauses consisted of a subquery. Refs #2873. new fix in #2872 for regression in truthiness of cursor.
  • Fix bug in the conversion of TIMESTAMP type in Sqlite on Python 3.12+.
  • Fix for hybrid properties on subclasses when aliased (#2888).
  • Many fixes for SqliteQueueDatabase (#2874, #2876, #2877).

View commits

3.17.3

  • Better fix for #2871 (extraneous queries when coercing query to list), and new fix in #2872 for regression in truthiness of cursor.

View commits

3.17.2

  • Full support for psycopg3.
  • Basic support for Sqlite jsonb.
  • Fix bug where calling list(query) resulted in extra queries, #2871

View commits

3.17.1

  • Add bitwise and other helper methods to BigBitField, #2802.
  • Add add_column_default and drop_column_default migrator methods for specifying a server-side default value, #2803.
  • The new star attribute was causing issues for users who had a field named star on their models. This attribute is now renamed to __star__. #2796.
  • Fix compatibility issues with 3.12 related to utcnow() deprecation.
  • Add stricter locking on connection pool to prevent race conditions.
  • Add adapters and converters to Sqlite to replace ones deprecated in 3.12.
  • Fix bug in model_to_dict() when only aliases are present.
  • Fix version check for Sqlite native drop column support.
  • Do not specify a reconnect= argument to ping() if using MySQL 8.x.

View commits

Changelog

Sourced from peewee's changelog.

3.17.5

This release fixes a build system problem in Python 3.12, #2891.

View commits

3.17.4

  • Fix bug that could occur when using CASE inside a function, and one or more of the CASE clauses consisted of a subquery. Refs #2873. new fix in #2872 for regression in truthiness of cursor.
  • Fix bug in the conversion of TIMESTAMP type in Sqlite on Python 3.12+.
  • Fix for hybrid properties on subclasses when aliased (#2888).
  • Many fixes for SqliteQueueDatabase (#2874, #2876, #2877).

View commits

3.17.3

  • Better fix for #2871 (extraneous queries when coercing query to list), and

View commits

3.17.2

  • Full support for psycopg3.
  • Basic support for Sqlite jsonb.
  • Fix bug where calling list(query) resulted in extra queries, #2871

View commits

3.17.1

  • Add bitwise and other helper methods to BigBitField, #2802.
  • Add add_column_default and drop_column_default migrator methods for specifying a server-side default value, #2803.
  • The new star attribute was causing issues for users who had a field named star on their models. This attribute is now renamed to __star__. #2796.
  • Fix compatibility issues with 3.12 related to utcnow() deprecation.
  • Add stricter locking on connection pool to prevent race conditions.
  • Add adapters and converters to Sqlite to replace ones deprecated in 3.12.
  • Fix bug in model_to_dict() when only aliases are present.
  • Fix version check for Sqlite native drop column support.
  • Do not specify a reconnect= argument to ping() if using MySQL 8.x.

View commits

Commits
  • c5aa497 3.17.5
  • 2333d14 Try to work around issue with python 3.12 and pip.
  • 9772a69 3.17.4
  • 41bc6eb Make some var names shorter for 79 char line length.
  • ec236ac Merge pull request #2890 from lanceris/fix_convert_timestamp
  • a4e7543 Fix issue with minute overwriting month in convert_timestamp
  • 055e43e Hybrid properties on subclasses were not working when aliased.
  • 68fb127 Ensure we are not shutting down when pausing or unpausing.
  • 519a84e Additional fixes to ensure we don't block forever during shutdown.
  • 1cca5dc Ensure that pause() and unpause() conform to documentation.
  • Additional commits viewable in compare view

Updates plotly from 5.18.0 to 5.22.0

Release notes

Sourced from plotly's releases.

v5.22.0

Updated

  • Updated Plotly.js from version 2.31.1 to version 2.32.0. See the plotly.js CHANGELOG for more information. These changes are reflected in the auto-generated plotly.graph_objects module. Notable changes include:
    • Add "bold" weight, "italic" style and "small-caps" variant options to fonts #6956
    • Fix applying autotickangles on axes with showdividers as well as cases where tickson is set to "boundaries" #6967, with thanks to @​my-tien for the contribution!
    • Fix positioning of multi-line axis titles with standoff #6970, with thanks to @​my-tien for the contribution!

v5.21.0

Updated

  • Updated Plotly.js from version 2.30.0 to version 2.31.1. See the plotly.js CHANGELOG for more information. These changes are reflected in the auto-generated plotly.graph_objects module. Notable changes include:
    • Add zorder attribute to various cartesian traces for controlling stacking order of SVG traces drawn into a subplot [#6918, #6953], This feature was anonymously sponsored: thank you to our sponsor!
    • Add "between" option to shape layer for placing them above grid lines and below traces [#6927], with thanks to @​my-tien for the contribution!
    • Add "raw" sizemode to cone trace [#6938]
    • Add layout.hoversubplots to enable hover effects across multiple cartesian suplots sharing one axis [#6947, #6950]

Fixed

  • Fixed orjson loading issue [#4562]

v5.20.0

Updated

  • Updated Plotly.js from version 2.29.1 to version 2.30.0. See the plotly.js CHANGELOG for more information. These changes are reflected in the auto-generated plotly.graph_objects module. Notable changes include:
    • Add fill gradients for scatter traces [#6905], with thanks to @​lumip for the contribution!
    • Add indentation to legend [#6874], with thanks to @​my-tien for the contribution!

v5.19.0

Updated

  • Updated Plotly.js from version 2.27.0 to version 2.29.1. See the plotly.js CHANGELOG for more information. These changes are reflected in the auto-generated plotly.graph_objects module. Notable changes include:
    • Add layout.barcornerradius and trace.marker.cornerradius properties to support rounding the corners of bar traces [#6761], with thanks to Displayr for sponsoring development!
    • Add autotickangles to cartesian and radial axes [#6790], with thanks to @​my-tien for the contribution!
    • Add align option to sankey nodes to control horizontal alignment [#6800], with thanks to @​adamreeve for the contribution!
    • Add the possibility of loading "virtual-webgl" script for WebGL 1 to help display several WebGL contexts on a page [#6784], with thanks to @​greggman for the contribution!
    • Add options to use base64 encoding (bdata) and shape (for 2 dimensional arrays) to declare various typed arrays i.e. dtype=(float64|float32|int32|int16|int8|uint32|uint16|uint8) [#5230]
    • Adjust stamen styles to point to stadiamaps.com, the users may also need to provide their own API_KEY via config.mapboxAccessToken [#6776, #6778]
  • Removed Python 3.6 and Python 3.7 support [#4492]

Fixed

  • Ensure scatter mode is deterministic from px [#4429]
  • Fix issue with creating dendrogram in subplots [#4411],
  • Fix issue with px.line not accepting "spline" line shape [#2812]
  • Fix KeyError when using column of pd.Categorical dtype with unobserved categories [#4437]
  • Fix dataframe interchange in case column_names returns an unmaterialized object: generator, iterator, etc. [#4442](plotly/plotly.py#4442)
  • Fix issue with FutureWarning being displayed when setting the color argument in plotly.express [#4519](plotly/plotly.py#4519)
Changelog

Sourced from plotly's changelog.

[5.22.0] - 2024-05-01

Updated

  • Updated Plotly.js from version 2.31.1 to version 2.32.0. See the plotly.js CHANGELOG for more information. These changes are reflected in the auto-generated plotly.graph_objects module. Notable changes include:
    • Add "bold" weight, "italic" style and "small-caps" variant options to fonts #6956
    • Fix applying autotickangles on axes with showdividers as well as cases where tickson is set to "boundaries" #6967, with thanks to @​my-tien for the contribution!
    • Fix positioning of multi-line axis titles with standoff #6970, with thanks to @​my-tien for the contribution!

[5.21.0] - 2024-04-17

Updated

  • Updated Plotly.js from version 2.30.0 to version 2.31.1. See the plotly.js CHANGELOG for more information. These changes are reflected in the auto-generated plotly.graph_objects module. Notable changes include:
    • Add zorder attribute to various cartesian traces for controlling stacking order of SVG traces drawn into a subplot [#6918, #6953], This feature was anonymously sponsored: thank you to our sponsor!
    • Add "between" option to shape layer for placing them above grid lines and below traces [#6927], with thanks to @​my-tien for the contribution!
    • Add "raw" sizemode to cone trace [#6938]
    • Add layout.hoversubplots to enable hover effects across multiple cartesian suplots sharing one axis [#6947, #6950]

Fixed

  • Fixed orjson loading issue [#4562]

[5.20.0] - 2024-03-13

Updated

  • Updated Plotly.js from version 2.29.1 to version 2.30.0. See the plotly.js CHANGELOG for more information. These changes are reflected in the auto-generated plotly.graph_objects module. Notable changes include:
    • Add fill gradients for scatter traces [#6905], with thanks to @​lumip for the contribution!
    • Add indentation to legend [#6874], with thanks to @​my-tien for the contribution!

[5.19.0] - 2024-02-15

Updated

  • Updated Plotly.js from version 2.27.0 to version 2.29.1. See the plotly.js CHANGELOG for more information. These changes are reflected in the auto-generated plotly.graph_objects module. Notable changes include:
    • Add layout.barcornerradius and trace.marker.cornerradius properties to support rounding the corners of bar traces [#6761], with thanks to Displayr for sponsoring development!
    • Add autotickangles to cartesian and radial axes [#6790], with thanks to @​my-tien for the contribution!
    • Add align option to sankey nodes to control horizontal alignment [#6800], with thanks to @​adamreeve for the contribution!
    • Add the possibility of loading "virtual-webgl" script for WebGL 1 to help display several WebGL contexts on a page [#6784], with thanks to @​greggman for the contribution!
    • Add options to use base64 encoding (bdata) and shape (for 2 dimensional arrays) to declare various typed arrays i.e. dtype=(float64|float32|int32|int16|int8|uint32|uint16|uint8) [#5230]
    • Adjust stamen styles to point to stadiamaps.com, the users may also need to provide their own API_KEY via config.mapboxAccessToken [#6776, #6778]
  • Removed Python 3.6 and Python 3.7 support [#4492]

Fixed

  • Ensure scatter mode is deterministic from px [#4429]
  • Fix issue with creating dendrogram in subplots [#4411],
  • Fix issue with px.line not accepting "spline" line shape [#2812]
  • Fix KeyError when using column of pd.Categorical dtype with unobserved categories [#4437]
  • Fix dataframe interchange in case column_names returns an unmaterialized object: generator, iterator, etc. [#4442](plotly/plotly.py#4442)

... (truncated)

Commits
  • 34e8bdb version changes for v5.22.0
  • 9a158eb Merge pull request #4589 from plotly/recent-docs-updates
  • 6ed004b Merge branch 'master' into recent-docs-updates
  • 56ec663 Merge pull request #4587 from plotly/update-plotlyjs-version
  • 025eea7 add font example
  • f60b7f0 add textfont style, variant and weight
  • 2fa17d9 Merge pull request #4557 from rl-utility-man/patch-5
  • cd5fc87 update test to add new font attributes
  • 217ed66 Update doc/python/hover-text-and-formatting.md
  • 94c172e update plotly.js to 2.32
  • Additional commits viewable in compare view

Updates pyspark from 3.5.0 to 3.5.1

Commits
  • fd86f85 Preparing Spark release v3.5.1-rc2
  • 9b4778f [SPARK-46906][INFRA][3.5] Bump python libraries (pandas, pyarrow) in Docker i...
  • ea6b257 Revert "[SPARK-45396][PYTHON] Add doc entry for pyspark.ml.connect module, ...
  • a8c62d3 [SPARK-47023][BUILD] Upgrade aircompressor to 1.26
  • d27bdbe Preparing development version 3.5.2-SNAPSHOT
  • 08fe67b Preparing Spark release v3.5.1-rc1
  • 4e4d9f0 [SPARK-47022][CONNECT][TESTS][3.5] Fix connect/client/jvm to have explicit ...
  • 9700da7 [SPARK-47021][BUILD][TESTS] Fix kvstore module to have explicit `commons-la...
  • 7658f77 [SPARK-39910][SQL] Delegate path qualification to filesystem during DataSourc...
  • 77f8b38 [SPARK-46400][CORE][SQL][3.5] When there are corrupted files in the local mav...
  • Additional commits viewable in compare view

Updates recordclass from 0.21.1 to 0.22

Release notes

Sourced from recordclass's releases.

recordclass 0.22

Recordclass 0.22 started support of python 3.13.

Changlog:

  • Add a base class datastruct for subclasses that should behave more like simple datastructures.
  • Fix bug with __match_args__ (#6).
Commits

Updates requests from 2.31.0 to 2.32.3

Release notes

Sourced from requests's releases.

v2.32.3

2.32.3 (2024-05-29)

Bugfixes

  • Fixed bug breaking the ability to specify custom SSLContexts in sub-classes of HTTPAdapter. (#6716)
  • Fixed issue where Requests started failing to run on Python versions compiled without the ssl module. (#6724)

v2.32.2

2.32.2 (2024-05-21)

Deprecations

  • To provide a more stable migration for custom HTTPAdapters impacted by the CVE changes in 2.32.0, we've renamed _get_connection to a new public API, get_connection_with_tls_context. Existing custom HTTPAdapters will need to migrate their code to use this new API. get_connection is considered deprecated in all versions of Requests>=2.32.0.

    A minimal (2-line) example has been provided in the linked PR to ease migration, but we strongly urge users to evaluate if their custom adapter is subject to the same issue described in CVE-2024-35195. (#6710)

v2.32.1

2.32.1 (2024-05-20)

Bugfixes

  • Add missing test certs to the sdist distributed on PyPI.

v2.32.0

2.32.0 (2024-05-20)

🐍 PYCON US 2024 EDITION 🐍

Security

  • Fixed an issue where setting verify=False on the first request from a Session will cause subsequent requests to the same origin to also ignore cert verification, regardless of the value of verify. (GHSA-9wx4-h78v-vm56)

Improvements

  • verify=True now reuses a global SSLContext which should improve request time variance between first and subsequent requests. It should also minimize certificate...

    Description has been truncated

Bumps the all group with 13 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [aiohttp](https://github.com/aio-libs/aiohttp) | `3.9.3` | `3.9.5` |
| [cachetools](https://github.com/tkem/cachetools) | `5.3.2` | `5.3.3` |
| [discord-py](https://github.com/Rapptz/discord.py) | `2.3.2` | `2.4.0` |
| [emoji](https://github.com/carpedm20/emoji) | `2.10.1` | `2.12.1` |
| [httpx](https://github.com/encode/httpx) | `0.26.0` | `0.27.0` |
| [more-itertools](https://github.com/more-itertools/more-itertools) | `10.2.0` | `10.3.0` |
| [pandas](https://github.com/pandas-dev/pandas) | `2.2.0` | `2.2.2` |
| [peewee](https://github.com/coleifer/peewee) | `3.17.0` | `3.17.5` |
| [plotly](https://github.com/plotly/plotly.py) | `5.18.0` | `5.22.0` |
| [pyspark](https://github.com/apache/spark) | `3.5.0` | `3.5.1` |
| [recordclass](https://github.com/intellimath/recordclass) | `0.21.1` | `0.22` |
| [requests](https://github.com/psf/requests) | `2.31.0` | `2.32.3` |
| [yt-dlp](https://github.com/yt-dlp/yt-dlp) | `2023.12.30` | `2024.5.27` |



Updates `aiohttp` from 3.9.3 to 3.9.5
- [Release notes](https://github.com/aio-libs/aiohttp/releases)
- [Changelog](https://github.com/aio-libs/aiohttp/blob/master/CHANGES.rst)
- [Commits](aio-libs/aiohttp@v3.9.3...v3.9.5)

Updates `cachetools` from 5.3.2 to 5.3.3
- [Changelog](https://github.com/tkem/cachetools/blob/master/CHANGELOG.rst)
- [Commits](tkem/cachetools@v5.3.2...v5.3.3)

Updates `discord-py` from 2.3.2 to 2.4.0
- [Commits](Rapptz/discord.py@v2.3.2...v2.4.0)

Updates `emoji` from 2.10.1 to 2.12.1
- [Release notes](https://github.com/carpedm20/emoji/releases)
- [Changelog](https://github.com/carpedm20/emoji/blob/master/CHANGES.md)
- [Commits](carpedm20/emoji@v2.10.1...v2.12.1)

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

Updates `more-itertools` from 10.2.0 to 10.3.0
- [Release notes](https://github.com/more-itertools/more-itertools/releases)
- [Commits](more-itertools/more-itertools@v10.2.0...v10.3.0)

Updates `pandas` from 2.2.0 to 2.2.2
- [Release notes](https://github.com/pandas-dev/pandas/releases)
- [Commits](pandas-dev/pandas@v2.2.0...v2.2.2)

Updates `peewee` from 3.17.0 to 3.17.5
- [Release notes](https://github.com/coleifer/peewee/releases)
- [Changelog](https://github.com/coleifer/peewee/blob/master/CHANGELOG.md)
- [Commits](coleifer/peewee@3.17.0...3.17.5)

Updates `plotly` from 5.18.0 to 5.22.0
- [Release notes](https://github.com/plotly/plotly.py/releases)
- [Changelog](https://github.com/plotly/plotly.py/blob/master/CHANGELOG.md)
- [Commits](plotly/plotly.py@v5.18.0...v5.22.0)

Updates `pyspark` from 3.5.0 to 3.5.1
- [Commits](apache/spark@v3.5.0...v3.5.1)

Updates `recordclass` from 0.21.1 to 0.22
- [Release notes](https://github.com/intellimath/recordclass/releases)
- [Commits](intellimath/recordclass@0.21.1...0.22)

Updates `requests` from 2.31.0 to 2.32.3
- [Release notes](https://github.com/psf/requests/releases)
- [Changelog](https://github.com/psf/requests/blob/main/HISTORY.md)
- [Commits](psf/requests@v2.31.0...v2.32.3)

Updates `yt-dlp` from 2023.12.30 to 2024.5.27
- [Release notes](https://github.com/yt-dlp/yt-dlp/releases)
- [Changelog](https://github.com/yt-dlp/yt-dlp/blob/master/Changelog.md)
- [Commits](yt-dlp/yt-dlp@2023.12.30...2024.05.27)

---
updated-dependencies:
- dependency-name: aiohttp
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: cachetools
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: discord-py
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: emoji
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: httpx
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: more-itertools
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: pandas
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: peewee
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: plotly
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: pyspark
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: recordclass
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: requests
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: yt-dlp
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jun 24, 2024
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants