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-packages group across 1 directory with 9 updates #28

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the python-packages group with 9 updates in the / directory:

Package From To
django 4.1.13 5.0.6
pyctr 0.6.0 0.7.5
flask 2.3.2 3.0.3
werkzeug 2.3.8 3.0.3
django-extensions 3.2.1 3.2.3
pyopenssl 23.0.0 24.1.0
django-admin-interface 0.24.2 0.28.8
django-colorfield 0.8.0 0.11.0
requests 2.31.0 2.32.3

Updates django from 4.1.13 to 5.0.6

Commits
  • 2719a7f [5.0.x] Bumped version for 5.0.6 release.
  • c90b20f [5.0.x] Added release notes for 5.0.6 and 4.2.13.
  • 0504608 [5.0.x] Added stub release notes for 5.0.6.
  • 2fa9fe3 [5.0.x] Post-release version bump.
  • b6844c6 [5.0.x] Bumped version for 5.0.5 release.
  • e1eecba [5.0.x] Added release date for 5.0.5 and 4.2.12.
  • 9b5029f [5.0.x] Fixed #35426 -- Updated querysets to be a required argument of Generi...
  • ac9e18f [5.0.x] Refs #35359 -- Fixed OperationTests.test_add_generate_field() test on...
  • 59c3f8a [5.0.x] Fixed #35427 -- Corrected help text for makemessages --extension in d...
  • e18e931 [5.0.x] Refs #35422 -- Fixed typo in docs/releases/5.0.5.txt.
  • Additional commits viewable in compare view

Updates pyctr from 0.6.0 to 0.7.5

Changelog

Sourced from pyctr's changelog.

v0.7.5 - February 28, 2024

  • Attempt to load from "Crypto" module if "Cryptodome" fails. This is for cases where on pycryptodome is available and not pycryptodomex.

v0.7.4 - February 16, 2024

  • Fix setting CTRNANDNew Y incorrectly (the fixed key was being overwritten by the incorrect key from Boot9)

v0.7.3 - January 2, 2024

  • Always set fixed keys regardless of boot9 (in particular: TWLNAND Y, CTRNANDNew Y, ZeroKey N, FixedSystemKey N)

v0.7.2 - November 27, 2023

  • Fix setting TWLNAND key for dev consoles (thanks to @​xprism1 for assistance)

v0.7.1 - September 15, 2023

Changelog

  • Backport CryptoEngine._format_state and CryptoEngine._print_state from 0.8
  • Fix pycryptodomex version specifier (should be >=3.9,<4)

v0.7.0 - September 3, 2023

Highlights

Python 3.8 or later is now required, up from 3.6.1.

A new pyctr.type.config package with save and blocks modules was added. These allow for reading the config savegame, both to read the raw blocks, and to parse the data into a usable format.

A new nand module with the NAND class is added to read and write to NAND images. This only provides raw access (for FAT32, try nathanhi/pyfatfs).

RomFSReader initialization performance was improved, especially with RomFS files containing large amounts of files or directories.

Documentation is being added and improved over time. Check it on Read the Docs.

Changelog

  • Add the module pyctr.type.configsave with the class ConfigSaveReader (module name changed in a future commit)
  • Implement to_bytes and remove_block in ConfigSaveReader
  • Split pyctr.type.configsave into two packages: pyctr.type.config.blocks and pyctr.type.config.save
    • New ConfigSaveBlockParser class with 3 methods: get_username, get_user_time_offset, and get_system_model (plus convenience functions load and from_file so a ConfigSaveParser doesn't need to be manually created)
    • New enum: SystemModel
    • Both ConfigSaveReader and ConfigSaveBlockParser are importable from pyctr.type.config
  • Add flush to SubsectionIO
  • Optimize CTRFileIO to re-use existing cipher object when possible (seeking invalidates the current one)
  • Optimize RomFSReader by reading entire directory and file metadata at once before traversing, significantly reducing the amount of read calls to the underlying file
  • Optimize RomFSReader to reduce the read calls for the header (once for raw lv3, twice for IVFC)
  • Check for unformatted saves in DISA (the first 0x20 bytes are all NULL and the rest is garbage)
  • Remove crypto_method == 0 check for NCCH files using fixed_crypto_key
  • Add nand module with NAND class, to read and write to a NAND image
  • Add __slots__ to a bunch of classes (CCIReader, CDNReader, CIAReader, ExeFSReader, NAND, NCCHReader, RomFSReader, SDFilesystem, SDTitleReader, SMDH, ConfigSaveReader, TypeReaderBase, TypeReaderCryptoBase)

... (truncated)

Commits
  • 1bc033a v0.7.5
  • eb2362a crypto.engine: don't keep version_info attribute from Crypto
  • 76e1c37 crypto.engine: attempt to load Crypto if Cryptodome fails
  • 9db7c8f v0.7.4
  • 5932346 crypto.engine: set fixed keys after attempting to load boot9 (fixes #44)
  • d3b2fe2 CHANGELOG: fix 0.7.3 date
  • 11fdf71 v0.7.3
  • 16ffe3d crypto.engine: always set fixed keys regardless of boot9
  • 2e93a40 credit @​xprism1 for assistance with TWLNAND key issue
  • 67b9711 v0.7.2
  • Additional commits viewable in compare view

Updates flask from 2.3.2 to 3.0.3

Release notes

Sourced from flask's releases.

3.0.3

This is a fix release for the 3.0.x feature branch.

PyPI: https://pypi.org/project/Flask/3.0.3/ Changes: https://flask.palletsprojects.com/en/3.0.x/changes/#version-3-0-3 Milestone: https://github.com/pallets/flask/milestone/35?closed=1

  • The default hashlib.sha1 may not be available in FIPS builds. Don't access it at import time so the developer has time to change the default. #5448
  • Don't initialize the cli attribute in the sansio scaffold, but rather in the Flask concrete class. #5270

3.0.2

This is a fix release for the 3.0.x feature release branch. It fixes bugs but does not otherwise change behavior and should not result in breaking changes.

3.0.1

This is a fix release for the 3.0.x feature release branch.

Fixes an issue where using other JSON providers, such as flask-orjson, previously caused loaded session data to have an incorrect format in some cases.

3.0.0

This is a feature release, which includes new features, removes previously deprecated code, and adds new deprecations. The 3.0.x branch is now the supported fix branch, the 2.3.x branch will become a tag marking the end of support for that branch. 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.

2.3.3

This is a fix release for the 2.3.x feature branch.

Changelog

Sourced from flask's changelog.

Version 3.0.3

Released 2024-04-07

  • The default hashlib.sha1 may not be available in FIPS builds. Don't access it at import time so the developer has time to change the default. :issue:5448
  • Don't initialize the cli attribute in the sansio scaffold, but rather in the Flask concrete class. :pr:5270

Version 3.0.2

Released 2024-02-03

  • Correct type for jinja_loader property. :issue:5388
  • Fix error with --extra-files and --exclude-patterns CLI options. :issue:5391

Version 3.0.1

Released 2024-01-18

  • Correct type for path argument to send_file. :issue:5230
  • Fix a typo in an error message for the flask run --key option. :pr:5344
  • Session data is untagged without relying on the built-in json.loads object_hook. This allows other JSON providers that don't implement that. :issue:5381
  • Address more type findings when using mypy strict mode. :pr:5383

Version 3.0.0

Released 2023-09-30

  • Remove previously deprecated code. :pr:5223
  • Deprecate the __version__ attribute. Use feature detection, or importlib.metadata.version("flask"), instead. :issue:5230
  • Restructure the code such that the Flask (app) and Blueprint classes have Sans-IO bases. :pr:5127
  • Allow self as an argument to url_for. :pr:5264
  • Require Werkzeug >= 3.0.0.

Version 2.3.3

... (truncated)

Commits

Updates werkzeug from 2.3.8 to 3.0.3

Release notes

Sourced from werkzeug's releases.

3.0.3

This is the Werkzeug 3.0.3 security release, which fixes security issues and bugs but does not otherwise change behavior and should not result in breaking changes.

PyPI: https://pypi.org/project/Werkzeug/3.0.3/ Changes: https://werkzeug.palletsprojects.com/en/3.0.x/changes/#version-3-0-3 Milestone: https://github.com/pallets/werkzeug/milestone/35?closed=1

  • Only allow localhost, .localhost, 127.0.0.1, or the specified hostname when running the dev server, to make debugger requests. Additional hosts can be added by using the debugger middleware directly. The debugger UI makes requests using the full URL rather than only the path. GHSA-2g68-c3qc-8985
  • Make reloader more robust when "" is in sys.path. #2823
  • Better TLS cert format with adhoc dev certs. #2891
  • Inform Python < 3.12 how to handle itms-services URIs correctly, rather than using an overly-broad workaround in Werkzeug that caused some redirect URIs to be passed on without encoding. #2828
  • Type annotation for Rule.endpoint and other uses of endpoint is Any. #2836

3.0.2

This is a fix release for the 3.0.x feature branch.

3.0.1

This is a security release for the 3.0.x feature branch.

3.0.0

This is a feature release, which includes new features, removes previously deprecated code, and adds new deprecations. The 3.0.x branch is now the supported fix branch, the 2.3.x branch will become a tag marking the end of support for that branch. 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.

Changelog

Sourced from werkzeug's changelog.

Version 3.0.3

Released 2024-05-05

  • Only allow localhost, .localhost, 127.0.0.1, or the specified hostname when running the dev server, to make debugger requests. Additional hosts can be added by using the debugger middleware directly. The debugger UI makes requests using the full URL rather than only the path. :ghsa:2g68-c3qc-8985

  • Make reloader more robust when "" is in sys.path. :pr:2823

  • Better TLS cert format with adhoc dev certs. :pr:2891

  • Inform Python < 3.12 how to handle itms-services URIs correctly, rather than using an overly-broad workaround in Werkzeug that caused some redirect URIs to be passed on without encoding. :issue:2828

  • Type annotation for Rule.endpoint and other uses of endpoint is Any. :issue:2836

  • Make reloader more robust when "" is in sys.path. :pr:2823

Version 3.0.2

Released 2024-04-01

  • Ensure setting merge_slashes to False results in NotFound for repeated-slash requests against single slash routes. :issue:2834
  • Fix handling of TypeError in TypeConversionDict.get() to match ValueError. :issue:2843
  • Fix response_wrapper type check in test client. :issue:2831
  • Make the return type of MultiPartParser.parse more precise. :issue:2840
  • Raise an error if converter arguments cannot be parsed. :issue:2822

Version 3.0.1

Released 2023-10-24

  • Fix slow multipart parsing for large parts potentially enabling DoS attacks.

Version 3.0.0

Released 2023-09-30

  • Remove previously deprecated code. :pr:2768

... (truncated)

Commits

Updates django-extensions from 3.2.1 to 3.2.3

Release notes

Sourced from django-extensions's releases.

3.2.3

What's Changed

New Contributors

Full Changelog: django-extensions/django-extensions@3.2.1...3.2.3

Changelog

Sourced from django-extensions's changelog.

Changelog

See https://github.com/django-extensions/django-extensions/releases

3.2.2

Changes:

  • Improvement: Add support for psycopg3 (#1814)
  • Improvement: runserver_plus, autoreload on template change (#1796)
  • Improvement: highlighting, test_should_highlight_bash_syntax_without_name to include whitespace spans (#1797)
  • Improvement: tests, add Python 3.11 to tox and actions to formally support python 3.11 (#1786)
  • Improvement: runserver_plus, Send the file_changed event when a reload is triggered (#1775)
  • Improvement: runserver_plus, Add REMOTE_USER to werkzeug environment (#1708)
  • Improvement: pipchecker, force pip to use pkg_resources as backend for resolving distributions (#1782)
  • Fix: Fix error with lack of PosixPath support (#1785)
  • Fix: Cleanup http: links (#1798)
Commits

Updates pyopenssl from 23.0.0 to 24.1.0

Changelog

Sourced from pyopenssl's changelog.

24.1.0 (2024-03-09)

Backward-incompatible changes: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

  • Removed the deprecated OpenSSL.crypto.PKCS12 and OpenSSL.crypto.NetscapeSPKI. OpenSSL.crypto.PKCS12 may be replaced by the PKCS#12 APIs in the cryptography package.

Deprecations: ^^^^^^^^^^^^^

Changes: ^^^^^^^^

24.0.0 (2024-01-22)

Backward-incompatible changes: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Deprecations: ^^^^^^^^^^^^^

Changes: ^^^^^^^^

  • Added OpenSSL.SSL.Connection.get_selected_srtp_profile to determine which SRTP profile was negotiated. [#1279](https://github.com/pyca/pyopenssl/issues/1279) <https://github.com/pyca/pyopenssl/pull/1279>_.

23.3.0 (2023-10-25)

Backward-incompatible changes: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

  • Dropped support for Python 3.6.
  • The minimum cryptography version is now 41.0.5.
  • Removed OpenSSL.crypto.load_pkcs7 and OpenSSL.crypto.load_pkcs12 which had been deprecated for 3 years.
  • Added OpenSSL.SSL.OP_LEGACY_SERVER_CONNECT to allow legacy insecure renegotiation between OpenSSL and unpatched servers. [#1234](https://github.com/pyca/pyopenssl/issues/1234) <https://github.com/pyca/pyopenssl/pull/1234>_.

Deprecations: ^^^^^^^^^^^^^

  • Deprecated OpenSSL.crypto.PKCS12 (which was intended to have been deprecated at the same time as OpenSSL.crypto.load_pkcs12).
  • Deprecated OpenSSL.crypto.NetscapeSPKI.
  • Deprecated OpenSSL.crypto.CRL
  • Deprecated OpenSSL.crypto.Revoked

... (truncated)

Commits

Updates django-admin-interface from 0.24.2 to 0.28.8

Release notes

Sourced from django-admin-interface's releases.

0.28.8

  • [js] Fix invalid assignment to const iframeInternalModalClass.

0.28.7

  • [html] Fix missing check for showing inlines as tabs. #390
  • [css] Improve m2m selector style.
  • [css] Fix m2m selector not styled correctly. #393
  • [css] Update related-widget links margins.
  • [css] Use position: fixed; for related modal.
  • [css] Improve html list preview rendering with django-streamfield.
  • [js] Code refactoring for adding modal params to url and use const and let instead of var.
  • [ci] Bump pre-commit hooks.

0.28.6

  • [python] Fix date hierarchy params. #374 (by @​jeroenpeters1986 in #375)
  • [js] Open any link with _popup=1 query-string parameter in a modal window.
  • [ci] Bump requirements.
  • [ci] Bump pre-commit hooks.

0.28.5

  • [css] Fix related widget height and buttons alignment when there is a multiline label.
  • [css] Fix inputs height when there is a multiline label.

0.28.4

  • [css] Fix header logo not displayed correctly.

0.28.3

  • [css] Fix help text horizontal alignment when using show-fieldsets-as-tabs / show-inlines-as-tabs theme options. #317
  • [css] Fix file-upload widget margin-left.
  • [css] Fix related widget links add button position on many-to-many selector.
  • [css] Fix related widget links margin from select2 (autocomplete_fields).
  • [css] Reduce paginator vertical padding.

0.28.2

  • [css] Fix related widget icon alignment. #348 #350

0.28.1

  • [python] Fix TemplateDoesNotExist when using django-nested-admin by returning custom template for other third-party packages. #341 (by @​markdrrr in #342)
  • [html] Display language chooser language name uppercase.
  • [css] Move save buttons to right in change form.
  • [css] Fix related widget links icons size and vertical alignment.
  • [css] Fix admin raw_id_fields appearance.
  • [css] Fix autocomplete_fields appearance.
  • [ci] Bump requirements.

Contributors

0.28.0

  • [html] Remove old flat-theme body class.

... (truncated)

Changelog

Sourced from django-admin-interface's changelog.

0.28.8 - 2024-06-26

  • [js] Fix invalid assignment to const iframeInternalModalClass.

0.28.7 - 2024-06-23

  • [html] Fix missing check for showing inlines as tabs. #390
  • [css] Improve m2m selector style.
  • [css] Fix m2m selector not styled correctly. #393
  • [css] Update related-widget links margins.
  • [css] Use position: fixed; for related modal.
  • [css] Improve html list preview rendering with django-streamfield.
  • [js] Code refactoring for adding modal params to url and use const and let instead of var.
  • [ci] Bump pre-commit hooks.

0.28.6 - 2024-03-07

  • [python] Fix date hierarchy params. #374 (by @​jeroenpeters1986 in #375)
  • [js] Open any link with _popup=1 query-string parameter in a modal window.
  • [ci] Bump requirements.
  • [ci] Bump pre-commit hooks.

0.28.5 - 2024-01-30

  • [css] Fix related widget height and buttons alignment when there is a multiline label.
  • [css] Fix inputs height when there is a multiline label.

0.28.4 - 2024-01-29

  • [css] Fix header logo not displayed correctly.

0.28.3 - 2024-01-08

  • [css] Fix help text horizontal alignment when using show-fieldsets-as-tabs / show-inlines-as-tabs theme options. #317
  • [css] Fix file-upload widget margin-left.
  • [css] Fix related widget links add button position on many-to-many selector.
  • [css] Fix related widget links margin from select2 (autocomplete_fields).
  • [css] Reduce paginator vertical padding.

0.28.2 - 2024-01-08

  • [css] Fix related widget icon alignment. #348 #350

0.28.1 - 2023-12-28

  • [python] Fix TemplateDoesNotExist when using django-nested-admin by returning custom template for other third-party packages. #341 (by @​markdrrr in #342)
  • [html] Display language chooser language name uppercase.
  • [css] Move save buttons to right in change form.
  • [css] Fix related widget links icons size and vertical alignment.
  • [css] Fix admin raw_id_fields appearance.
  • [css] Fix autocomplete_fields appearance.
  • [ci] Bump requirements.

Contributors

0.28.0 - 2023-12-21

  • [html] Remove old flat-theme body class.

... (truncated)

Commits
  • 5415a11 Update CHANGELOG and version.
  • 5a5b456 [js] Fix invalid assignment to const iframeInternalModalClass.
  • 26d6e37 Update README.md
  • 626bc9a Update test-package.yml
  • 5a40b4f Update CHANGELOG and version.
  • 0450905 Bump pre-commit hooks.
  • 85ba5ba Fix missing check for showing inlines as tabs. #390
  • 06a8ed8 [css] Improve m2m selector style.
  • e30bea7 [css] Fix m2m selector not styled correctly. #393
  • f7d6eca [css] Update related-widget links margins.
  • Additional commits viewable in compare view

Updates django-colorfield from 0.8.0 to 0.11.0

Release notes

Sourced from django-colorfield's releases.

0.11.0

  • Add Python 3.12 support.
  • Add Django 5.0 support.
  • Speed-up test workflow.
  • Bump requirements.
  • Bump pre-commit hooks.

0.10.1

  • Fix crash when using image_field option with RGB/RGBA formats. #153 (by @​browniebroke in #154)
  • Fix field max_length (increased from 18 to 25).

0.10.0

0.9.0

  • Add Django 4.2 support.
  • Drop Django 2.2 support.
  • Add pyupgrade and django-upgrade to pre-commit hooks.
  • Upgrade syntax for Python >= 3.8.
  • Set max line length to 88.
  • Switch from setup.py to pyproject.toml.
  • Replace flake8 with Ruff.
  • Add locales (en and it).
  • Add metadata module.
  • Set max line length to 88.
  • Run pre-commit also with tox.
  • Bump requirements.
  • Pin test requirements.
  • Rename default branch from master to main.
Changelog

Sourced from django-colorfield's changelog.

0.11.0 - 2023-12-05

  • Add Python 3.12 support.
  • Add Django 5.0 support.
  • Speed-up test workflow.
  • Bump requirements.
  • Bump pre-commit hooks.

0.10.1 - 2023-09-05

  • Fix crash when using image_field option with RGB/RGBA formats. #153 (by @​browniebroke in #154)
  • Fix field max_length (increased from 18 to 25).

0.10.0 - 2023-09-04

0.9.0 - 2023-06-13

  • Add Django 4.2 support.
  • Drop Django 2.2 support.
  • Add pyupgrade and django-upgrade to pre-commit hooks.
  • Upgrade syntax for Python >= 3.8.
  • Set max line length to 88.
  • Switch from setup.py to pyproject.toml.
  • Replace flake8 with Ruff.
  • Add locales (en and it).
  • Add metadata module.
  • Set max line length to 88.
  • Run pre-commit also with tox.
  • Bump requirements.
  • Pin test requirements.
  • Rename default branch from master to main.
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 load time on Windows systems when using a Python version built with OpenSSL 3.x. (#6667)
  • Requests now supports optional use of character detection (chardet or charset_normalizer) when repackaged or vendored.

... (truncated)

Changelog

Sourced from requests's changelog.

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)

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)

2.32.1 (2024-05-20)

Bugfixes

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

2.32.0 (2024-05-20)

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 load time on Windows systems when using a Python version built with OpenSSL 3.x. (#6667)
  • Requests now supports optional use of character detection (chardet or charset_normalizer) when repackaged or vendored. This enables pip and other projects to minimize their vendoring surface area. The Response.text() and apparent_encoding APIs will default to utf-8 if neither library is present. (#6702)

... (truncated)

Commits
  • 0e322af v2.32.3
  • e188799 Don't create default SSLContext if ssl module isn't present (#6724)
  • 145b539 Merge pull request #6716 from sigmavirus24/bug/6715
  • b1d73dd Don't use default SSLContext with custom poolmanager kwargs
  • 6badbac Update HISTORY.md
  • a62a2d3 Allow for overriding of specific pool key params
  • 88dce9d v2.32.2
  • c98e4d1 Merge pull request #6710 from nateprewitt/api_rename
  • 92075b3 Add deprecation warning
  • aa1461b Move _get_connection to get_connection_with_tls_context
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trig...

Description has been truncated

Bumps the python-packages group with 9 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [django](https://github.com/django/django) | `4.1.13` | `5.0.6` |
| [pyctr](https://github.com/ihaveamac/pyctr) | `0.6.0` | `0.7.5` |
| [flask](https://github.com/pallets/flask) | `2.3.2` | `3.0.3` |
| [werkzeug](https://github.com/pallets/werkzeug) | `2.3.8` | `3.0.3` |
| [django-extensions](https://github.com/django-extensions/django-extensions) | `3.2.1` | `3.2.3` |
| [pyopenssl](https://github.com/pyca/pyopenssl) | `23.0.0` | `24.1.0` |
| [django-admin-interface](https://github.com/fabiocaccamo/django-admin-interface) | `0.24.2` | `0.28.8` |
| [django-colorfield](https://github.com/fabiocaccamo/django-colorfield) | `0.8.0` | `0.11.0` |
| [requests](https://github.com/psf/requests) | `2.31.0` | `2.32.3` |



Updates `django` from 4.1.13 to 5.0.6
- [Commits](django/django@4.1.13...5.0.6)

Updates `pyctr` from 0.6.0 to 0.7.5
- [Changelog](https://github.com/ihaveamac/pyctr/blob/v0.7.5/CHANGELOG.md)
- [Commits](ihaveamac/pyctr@v0.6.0...v0.7.5)

Updates `flask` from 2.3.2 to 3.0.3
- [Release notes](https://github.com/pallets/flask/releases)
- [Changelog](https://github.com/pallets/flask/blob/main/CHANGES.rst)
- [Commits](pallets/flask@2.3.2...3.0.3)

Updates `werkzeug` from 2.3.8 to 3.0.3
- [Release notes](https://github.com/pallets/werkzeug/releases)
- [Changelog](https://github.com/pallets/werkzeug/blob/main/CHANGES.rst)
- [Commits](pallets/werkzeug@2.3.8...3.0.3)

Updates `django-extensions` from 3.2.1 to 3.2.3
- [Release notes](https://github.com/django-extensions/django-extensions/releases)
- [Changelog](https://github.com/django-extensions/django-extensions/blob/main/CHANGELOG.md)
- [Commits](django-extensions/django-extensions@3.2.1...3.2.3)

Updates `pyopenssl` from 23.0.0 to 24.1.0
- [Changelog](https://github.com/pyca/pyopenssl/blob/main/CHANGELOG.rst)
- [Commits](pyca/pyopenssl@23.0.0...24.1.0)

Updates `django-admin-interface` from 0.24.2 to 0.28.8
- [Release notes](https://github.com/fabiocaccamo/django-admin-interface/releases)
- [Changelog](https://github.com/fabiocaccamo/django-admin-interface/blob/main/CHANGELOG.md)
- [Commits](fabiocaccamo/django-admin-interface@0.24.2...0.28.8)

Updates `django-colorfield` from 0.8.0 to 0.11.0
- [Release notes](https://github.com/fabiocaccamo/django-colorfield/releases)
- [Changelog](https://github.com/fabiocaccamo/django-colorfield/blob/main/CHANGELOG.md)
- [Commits](fabiocaccamo/django-colorfield@0.8.0...0.11.0)

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)

---
updated-dependencies:
- dependency-name: django
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: python-packages
- dependency-name: pyctr
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-packages
- dependency-name: flask
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: python-packages
- dependency-name: werkzeug
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: python-packages
- dependency-name: django-extensions
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-packages
- dependency-name: pyopenssl
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: python-packages
- dependency-name: django-admin-interface
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-packages
- dependency-name: django-colorfield
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-packages
- dependency-name: requests
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-packages
...

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