django-discord / bot

A bot for the Django Discord server
MIT License
10 stars 6 forks source link

Bump the all group with 10 updates #461

Closed dependabot[bot] closed 1 week ago

dependabot[bot] commented 1 week ago

Bumps the all group with 10 updates:

Package From To
flake8 7.0.0 7.1.0
aiohttp 3.9.1 3.9.5
frozenlist 1.4.0 1.4.1
multidict 6.0.4 6.0.5
fastjsonschema 2.19.1 2.20.0
filelock 3.14.0 3.15.1
prompt-toolkit 3.0.46 3.0.47
pycodestyle 2.11.1 2.12.0
pydantic 2.7.3 2.7.4
pydantic-core 2.18.4 2.19.0

Updates flake8 from 7.0.0 to 7.1.0

Commits


Updates aiohttp from 3.9.1 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 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 multidict from 6.0.4 to 6.0.5

Release notes

Sourced from multidict's releases.

6.0.5

Bug fixes

  • Upgraded the C-API macros that have been deprecated in Python 3.9 and later removed in 3.13 -- by @​iemelyanov💰.

    Related issues and pull requests on GitHub: #862, #864, #868, #898.

  • Reverted to using the public argument parsing API PyArg_ParseTupleAndKeywords() under Python 3.12 -- by @​charles-dyfis-net💰 and @​webknjaz💰.

    The effect is that this change prevents build failures with clang 16.9.6 and gcc-14 reported in #926. It also fixes a segmentation fault crash caused by passing keyword arguments to MultiDict.getall() discovered by @​jonaslb💰 and @​hroncok💰 while examining the problem.

    Related issues and pull requests on GitHub: #862, #909, #926, #929.

  • Fixed a SystemError: null argument to internal routine error on a MultiDict.items().isdisjoint() call when using C Extensions.

    Related issues and pull requests on GitHub: #927.

Improved documentation

  • On the Contributing docs age, a link to the Towncrier philosophy has been fixed.

    Related issues and pull requests on GitHub: #911.

Packaging updates and notes for downstreams

  • Stopped marking all files as installable package data -- by @​webknjaz💰.

    This change helps setuptools understand that C-headers are not to be installed under lib/python3.{x}/site-packages/.

    Related commits on GitHub: 31e1170.

... (truncated)

Changelog

Sourced from multidict's changelog.

6.0.5 (2024-02-01)

Bug fixes

  • Upgraded the C-API macros that have been deprecated in Python 3.9 and later removed in 3.13 -- by :user:iemelyanov.

    Related issues and pull requests on GitHub: :issue:862, :issue:864, :issue:868, :issue:898.

  • Reverted to using the public argument parsing API :c:func:PyArg_ParseTupleAndKeywords under Python 3.12 -- by :user:charles-dyfis-net and :user:webknjaz.

    The effect is that this change prevents build failures with clang 16.9.6 and gcc-14 reported in :issue:926. It also fixes a segmentation fault crash caused by passing keyword arguments to :py:meth:MultiDict.getall() <multidict.MultiDict.getall> discovered by :user:jonaslb and :user:hroncok while examining the problem.

    Related issues and pull requests on GitHub: :issue:862, :issue:909, :issue:926, :issue:929.

  • Fixed a SystemError: null argument to internal routine error on a MultiDict.items().isdisjoint() call when using C Extensions.

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

Improved documentation

  • On the Contributing docs <https://github.com/aio-libs/multidict/blob/master/CHANGES/README.rst>_ page, a link to the Towncrier philosophy has been fixed.

    Related issues and pull requests on GitHub:

... (truncated)

Commits
  • a9b281b ⇪ 📦 Release v6.0.5
  • ed825c8 🧪 Download artifacts to dist/ @ release job
  • 7b04a64 🧪 Normalize issue refs @ release action
  • 74840e8 🧪 Pass Codecov token to reusable linters job
  • 41c133e 🧪 Bump Codecov action to v4
  • adb1976 📝 Fix return type @ Sphinx config
  • 99e435f 📝 Mention bylines in the changelog guidelines
  • 736169e 📝 Clarify need to only ref PR @ change note name
  • 887846f 📝 Highlight the RST term @ changelog guide
  • 8f57f8a 📝 Add a missing comma @ changelog guide
  • Additional commits viewable in compare view


Updates fastjsonschema from 2.19.1 to 2.20.0

Changelog

Sourced from fastjsonschema's changelog.

=== 2.20.0 (2024-06-15)

  • Added validations at compile time:
    • required must have unique items
    • checking if schema is not allowing required items (item is required, but is not listed in properties)
Commits
  • d2fbc8f Validate more deeply required attribute
  • efc04da Merge pull request #180 from edgarrmondragon/pytest-warns-none
  • c7da3f1 Merge pull request #179 from edgarrmondragon/python3.12
  • 9bc0341 Upload to pypi using twine
  • 427a34e Use warnings.catch_warnings instead of pytest.warns(None) in tests
  • 7bc3846 Test on Python 3.12
  • See full diff in compare view


Updates filelock from 3.14.0 to 3.15.1

Release notes

Sourced from filelock's releases.

3.15.1

What's Changed

Full Changelog: https://github.com/tox-dev/filelock/compare/3.15.0...3.15.1

3.15.0

What's Changed

New Contributors

Full Changelog: https://github.com/tox-dev/filelock/compare/3.14.0...3.15.0

Commits
  • 3d7b1a6 Hotfix: Restore init method; more robust initialization for singleton loc...
  • c64787f Don't initialize BaseFileLock when just returning existing instance (#334)
  • 87453f3 asyncio support (#332)
  • 0ee2e3c [pre-commit.ci] pre-commit autoupdate (#333)
  • 8292363 [pre-commit.ci] pre-commit autoupdate (#330)
  • 1cdb3b4 [pre-commit.ci] pre-commit autoupdate (#328)
  • 19f78fc [pre-commit.ci] pre-commit autoupdate (#327)
  • 8a168c5 [pre-commit.ci] pre-commit autoupdate (#326)
  • See full diff in compare view


Updates prompt-toolkit from 3.0.46 to 3.0.47

Release notes

Sourced from prompt-toolkit's releases.

3.0.47

New features:

  • Allow passing exception classes for KeyboardInterrupt and EOFError in PromptSession.

Fixes:

  • Compute padding parameters for Box widget lazily.
Changelog

Sourced from prompt-toolkit's changelog.

3.0.47: 2024-06-10

New features:

  • Allow passing exception classes for KeyboardInterrupt and EOFError in PromptSession.

Fixes:

  • Compute padding parameters for Box widget lazily.
Commits
  • 6695411 Release 3.0.47
  • 67e644b Small simplification in Screen code.
  • 8889675 fix(Examples): address a typo in one of the examples
  • 15f3aec Allow passing exception classes for KeyboardInterrupt and EOFError in PromptS...
  • a04c37d Compute padding parameters for Box widget lazily.
  • See full diff in compare view


Updates pycodestyle from 2.11.1 to 2.12.0

Changelog

Sourced from pycodestyle's changelog.

2.12.0 (2024-06-15)

Changes:

  • E721: Fix false positive of the form x.type(...) ==. PR #1228.
  • E502: Fix false-negative with a backslash escape in a comment. PR #1234.
  • E204: New lint forbidding whitespace after decorator @. PR #1247.
Commits
  • 6f60985 Release 2.12.0
  • 5246b9e Merge pull request #1247 from PyCQA/space-after-decorator
  • 3cedd4c add new error E204 for whitespace after decorator @
  • d343c39 Merge pull request #1246 from PyCQA/pre-commit-ci-update-config
  • 5be6ca1 [pre-commit.ci] pre-commit autoupdate
  • d2b2756 Merge pull request #1245 from PyCQA/pre-commit-ci-update-config
  • 53591a5 [pre-commit.ci] pre-commit autoupdate
  • 710363b Merge pull request #1239 from PyCQA/pre-commit-ci-update-config
  • 04f579d [pre-commit.ci] pre-commit autoupdate
  • 2b90803 Merge pull request #1238 from PyCQA/pre-commit-ci-update-config
  • Additional commits viewable in compare view


Updates pydantic from 2.7.3 to 2.7.4

Release notes

Sourced from pydantic's releases.

v2.7.4 (2024-06-12)

What's Changed

Packaging

Fixes

  • Specify recursive_guard as kwarg in FutureRef._evaluate by @​vfazio in #9612

Full Changelog: https://github.com/pydantic/pydantic/compare/v2.7.3...v2.7.4

Changelog

Sourced from pydantic's changelog.

v2.7.4 (2024-06-12)

Github release

What's Changed

Packaging

Fixes

  • Specify recursive_guard as kwarg in FutureRef._evaluate by @​vfazio in #9612
Commits


Updates pydantic-core from 2.18.4 to 2.19.0

Release notes

Sourced from pydantic-core's releases.

v2.19.0 2024-06-11

What's Changed

Packaging

Fixes

Features

New Contributors

Full Changelog: https://github.com/pydantic/pydantic-core/compare/v2.18.4...v2.19.0

Commits


Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions