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 32 updates #220

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 Oct 18, 2024

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

Package From To
sentry-sdk 1.38.0 2.17.0
django-pipeline 2.1.0 3.1.0
whitenoise 6.6.0 6.7.0
libsass 0.22.0 0.23.0
django-sesame 3.2.1 3.2.2
psycopg2-binary 2.9.9 2.9.10
django-ses 3.5.1 4.2.0
uk-election-ids 0.7.5 0.8.0
faker 20.1.0 30.6.0
requests 2.31.0 2.32.3
django-apiblueprint-view 2.5.0 2.5.1
django-debug-toolbar 4.2.0 4.4.6
python-memcached 1.59 1.62
django-cors-headers 4.3.1 4.5.0
setuptools 74.1.2 75.2.0
djhtml 3.0.6 3.0.7
pre-commit 3.5.0 4.0.1
pytest 7.4.3 8.3.3
pytest-django 4.7.0 4.9.0
pytest-ruff 0.2.1 0.4.1
pytest-env 1.1.3 1.1.5
coveralls 3.3.1 4.0.1
pytest-cov 4.1.0 5.0.0
factory-boy 3.3.0 3.3.1
ipython 8.18.1 8.28.0
pytest-mock 3.12.0 3.14.0
pytest-socket 0.6.0 0.7.0
wheel 0.42.0 0.44.0
ruff 0.1.6 0.7.0
uvicorn 0.30.6 0.32.0

Updates sentry-sdk from 1.38.0 to 2.17.0

Release notes

Sourced from sentry-sdk's releases.

2.17.0

Various fixes & improvements

2.16.0

Integrations

  • Bottle: Add failed_request_status_codes (#3618) by @​szokeasaurusrex

    You can now define a set of integers that will determine which status codes should be reported to Sentry.

    sentry_sdk.init(
        integrations=[
            BottleIntegration(
                failed_request_status_codes={403, *range(500, 600)},
            )
        ]
    )

    Examples of valid failed_request_status_codes:

    • {500} will only send events on HTTP 500.
    • {400, *range(500, 600)} will send events on HTTP 400 as well as the 5xx range.
    • {500, 503} will send events on HTTP 500 and 503.
    • set() (the empty set) will not send events for any HTTP status code.

    The default is {*range(500, 600)}, meaning that all 5xx status codes are reported to Sentry.

  • Bottle: Delete never-reached code (#3605) by @​szokeasaurusrex

  • Redis: Remove flaky test (#3626) by @​sentrivana

  • Django: Improve getting psycopg3 connection info (#3580) by @​nijel

  • Django: Add SpotlightMiddleware when Spotlight is enabled (#3600) by @​BYK

  • Django: Open relevant error when SpotlightMiddleware is on (#3614) by @​BYK

  • Django: Support http_methods_to_capture in ASGI Django (#3607) by @​sentrivana

    ASGI Django now also supports the http_methods_to_capture integration option. This is a configurable tuple of HTTP method verbs that should create a transaction in Sentry. The default is ("CONNECT", "DELETE", "GET", "PATCH", "POST", "PUT", "TRACE",). OPTIONS and HEAD are not included by default.

... (truncated)

Changelog

Sourced from sentry-sdk's changelog.

2.17.0

Various fixes & improvements

2.16.0

Integrations

  • Bottle: Add failed_request_status_codes (#3618) by @​szokeasaurusrex

    You can now define a set of integers that will determine which status codes should be reported to Sentry.

    sentry_sdk.init(
        integrations=[
            BottleIntegration(
                failed_request_status_codes={403, *range(500, 600)},
            )
        ]
    )

    Examples of valid failed_request_status_codes:

    • {500} will only send events on HTTP 500.
    • {400, *range(500, 600)} will send events on HTTP 400 as well as the 5xx range.
    • {500, 503} will send events on HTTP 500 and 503.
    • set() (the empty set) will not send events for any HTTP status code.

    The default is {*range(500, 600)}, meaning that all 5xx status codes are reported to Sentry.

  • Bottle: Delete never-reached code (#3605) by @​szokeasaurusrex

  • Redis: Remove flaky test (#3626) by @​sentrivana

  • Django: Improve getting psycopg3 connection info (#3580) by @​nijel

  • Django: Add SpotlightMiddleware when Spotlight is enabled (#3600) by @​BYK

  • Django: Open relevant error when SpotlightMiddleware is on (#3614) by @​BYK

  • Django: Support http_methods_to_capture in ASGI Django (#3607) by @​sentrivana

... (truncated)

Commits

Updates django-pipeline from 2.1.0 to 3.1.0

Release notes

Sourced from django-pipeline's releases.

3.1.0

  • Replace deprecated .warn method with .warning
  • Update sourcemap paths when concatenating source files
  • Ensure correct compiler error styling and strip ANSI escape sequences

3.0.0

  • Use Pypy 3.10
  • Drop support for Python 3.7
  • Drop support for Django 2
  • Add Python 3.12 support
  • Add Django 4.2 support
  • Add Django 5.0 support
Changelog

Sourced from django-pipeline's changelog.

3.1.0

  • Replace deprecated .warn method with .warning
  • Update sourcemap paths when concatenating source files
  • Ensure correct compiler error styling and strip ANSI escape sequences

3.0.0

  • Use Pypy 3.10
  • Drop support for Python 3.7
  • Drop support for Django 2
  • Add Python 3.12 support
  • Add Django 4.2 support
  • Add Django 5.0 support
Commits
  • 5c9ee24 Release 3.1.0
  • 0d450e5 [pre-commit.ci] auto fixes from pre-commit.com hooks
  • e00bbcd Ensure correct compiler error styling and strip ANSI escape sequences.
  • 3c9354d Add a couple more items to the ruff ignore list.
  • 193cc20 Merge pull request #809 from chipx86/3.x/fix-sourcemap-paths
  • 58f9f99 [pre-commit.ci] auto fixes from pre-commit.com hooks
  • fd1c033 Update sourcemap paths when concatenating source files.
  • 2018c11 Replace deprecated .warn method with .warning (#807)
  • 14b6d2c Update history and docs conf to release v3 (#804)
  • 7b4eea1 Add django 5 support (#803)
  • Additional commits viewable in compare view

Updates whitenoise from 6.6.0 to 6.7.0

Changelog

Sourced from whitenoise's changelog.

6.7.0 (2024-06-19)

  • Support Django 5.1.
Commits

Updates libsass from 0.22.0 to 0.23.0

Commits

Updates django-sesame from 3.2.1 to 3.2.2

Commits
  • 349b172 Tag version 3.2.2
  • 228dd83 Remove old versionadded/changed notes from docs.
  • 1f5cd0e Drop compatibility with Django < 3.2.
  • 65907a5 Switch to ruff for linting.
  • 57e0aa5 Add Django 5.0 support
  • ffa19dc Added build section to RTD config file.
  • db439f2 Merge branch '3.2.x'
  • 49d919c skip User.EMAIL_FIELD check if not invalidating on email change
  • b38842c fix SESAME_INVALIDATE_ON_EMAIL_CHANGE link in docs
  • 58e607b Python 3.6 and 3.7 are EOL.
  • See full diff in compare view

Updates psycopg2-binary from 2.9.9 to 2.9.10

Changelog

Sourced from psycopg2-binary's changelog.

Current release

What's new in psycopg 2.9.10 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^

  • Add support for Python 3.13.
  • Receive notifications on commit (:ticket:[#1728](https://github.com/psycopg/psycopg2/issues/1728)).
  • ~psycopg2.errorcodes map and ~psycopg2.errors classes updated to PostgreSQL 17.
  • Drop support for Python 3.7.

What's new in psycopg 2.9.9 ^^^^^^^^^^^^^^^^^^^^^^^^^^^

  • Add support for Python 3.12.
  • Drop support for Python 3.6.

What's new in psycopg 2.9.8 ^^^^^^^^^^^^^^^^^^^^^^^^^^^

  • Wheel package bundled with PostgreSQL 16 libpq in order to add support for recent features, such as sslcertmode.

What's new in psycopg 2.9.7 ^^^^^^^^^^^^^^^^^^^^^^^^^^^

  • Fix propagation of exceptions raised during module initialization (:ticket:[#1598](https://github.com/psycopg/psycopg2/issues/1598)).
  • Fix building when pg_config returns an empty string (:ticket:[#1599](https://github.com/psycopg/psycopg2/issues/1599)).
  • Wheel package bundled with OpenSSL 1.1.1v.

What's new in psycopg 2.9.6 ^^^^^^^^^^^^^^^^^^^^^^^^^^^

  • Package manylinux 2014 for aarch64 and ppc64le platforms, in order to include libpq 15 in the binary package (:ticket:[#1396](https://github.com/psycopg/psycopg2/issues/1396)).
  • Wheel package bundled with OpenSSL 1.1.1t.

What's new in psycopg 2.9.5 ^^^^^^^^^^^^^^^^^^^^^^^^^^^

  • Add support for Python 3.11.
  • Add support for rowcount in MERGE statements in binary packages (:ticket:[#1497](https://github.com/psycopg/psycopg2/issues/1497)).

... (truncated)

Commits

Updates django-ses from 3.5.1 to 4.2.0

Release notes

Sourced from django-ses's releases.

v4.1.1

Drop requirement for pytz

Pulls:

v4.1.0

Adds support for AWS Session Profile with a new setting.

This is a minor bump due to the new setting, it also changes the way the connection is initialized, see here.

Pulls:

Issues:

v4.0.0

Drops support for Django 2 and python 3.7

Pulls:

v3.6.0

Fixes unicode surrogate issues from 3.11.9 and 3.12.3

Pulls:

Issues:

v3.5.2

Pulls:

Changelog

Sourced from django-ses's changelog.

Change Log

For a list of releases, see: https://github.com/django-ses/django-ses/releases/

Upcoming (dev)

The following changes are not yet released, but are code complete:

Pulls and Issues:

  • None

Features:

  • None

Changes:

  • None

Deprecations:

  • None

Fixes:

  • None

Current

4.2.0

Automatic handling of bounce and complaint events, managed with a blacklist

Pulls:

Past

4.1.1

Drop requirement for pytz

Pulls:

4.1.0

Adds support for AWS Session Profile with a new setting.

This is a minor bump due to the new setting, it also changes the way the connection is initialized, see here.

Pulls:

... (truncated)

Commits

Updates uk-election-ids from 0.7.5 to 0.8.0

Release notes

Sourced from uk-election-ids's releases.

0.8.0

What's Changed

Full Changelog: DemocracyClub/uk-election-ids@0.7.5...0.8.0

Commits

Updates faker from 20.1.0 to 30.6.0

Release notes

Sourced from faker's releases.

Release v30.6.0

See CHANGELOG.md.

Release v30.5.0

See CHANGELOG.md.

Release v30.4.0

See CHANGELOG.md.

Release v30.3.0

See CHANGELOG.md.

Release v30.2.0

See CHANGELOG.md.

Release v30.1.0

See CHANGELOG.md.

Release v30.0.0

See CHANGELOG.md.

Release v29.0.0

See CHANGELOG.md.

Release v28.4.1

See CHANGELOG.md.

Release v28.4.0

See CHANGELOG.md.

Release v28.3.0

See CHANGELOG.md.

Release v28.2.0

See CHANGELOG.md.

Release v28.1.0

See CHANGELOG.md.

Release v28.0.0

See CHANGELOG.md.

Release v27.4.0

See CHANGELOG.md.

Release v27.3.0

See CHANGELOG.md.

Release v27.2.0

See CHANGELOG.md.

... (truncated)

Changelog

Sourced from faker's changelog.

v30.6.0 - 2024-10-16

v30.5.0 - 2024-10-16

  • Add Providers for ka_GE locale. Thanks @​onesch.

v30.4.0 - 2024-10-15

  • Add separate male/female names along with prefix/suffix for hi_IN locale. Thanks @​wh0th3h3llam1.

v30.3.0 - 2024-10-07

v30.2.0 - 2024-10-07

  • Cache Factory._find_provider_class module look-ups. Thanks @​huonw.

v30.1.0 - 2024-09-30

  • Add PIN Code range and union territories in en_IN address provider. Thanks @​wh0th3h3llam1.

v30.0.0 - 2024-09-25

  • Force the slug always be generated with ASCII characters. Thanks @​Pandede.

v29.0.0 - 2024-09-19

  • Fix pydecimal distribution when called with a range across 0. Thanks @​AlexLitvino.

v28.4.1 - 2024-09-04

  • Fix issue where Faker does not properly convert min/max float values to Decimal. Thanks @​bdjellabaldebaran.

v28.4.0 - 2024-09-04

v28.3.0 - 2024-09-04

v28.2.0 - 2024-09-04

v28.1.0 - 2024-08-30

... (truncated)

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

Updates django-apiblueprint-view from 2.5.0 to 2.5.1

Changelog

Sourced from django-apiblueprint-view's changelog.

📦 2.5.1 - 2023-12-06

  • Tested on Django 5.0
Commits

Updates django-debug-toolbar from 4.2.0 to 4.4.6

Release notes

Sourced from django-debug-toolbar's releases.

4.4.6

What's Changed

Full Changelog: jazzband/django-debug-toolbar@4.4.5...4.4.6

4.4.5

What's Changed

Full Changelog: jazzband/django-debug-toolbar@4.4.4...4.4.5

4.4.4

What's Changed

New Contributors

Full Changelog: jazzband/django-debug-toolbar@4.4.3...4.4.4

4.4.3

What's Changed

New Contributors

Full Changelog: jazzband/django-debug-toolbar@4.4.2...4.4.3

4.4.2

What's Changed

... (truncated)

Changelog

Sourced from django-debug-toolbar's changelog.

4.4.6 (2024-07-10)

  • Changed ordering (and grammatical number) of panels and their titles in documentation to match actual panel ordering and titles.
  • Skipped processing the alerts panel when response isn't a HTML response.

4.4.5 (2024-07-05)

  • Avoided crashing when the alerts panel was skipped.
  • Removed the inadvertently added hard dependency on Jinja2.

4.4.4 (2024-07-05)

  • Added check for StreamingHttpResponse in alerts panel.
  • Instrument the Django Jinja2 template backend. This only instruments the immediate template that's rendered. It will not provide stats on any parent templates.

4.4.3 (2024-07-04)

  • Added alerts panel with warning when form is using file fields without proper encoding type.
  • Fixed overriding font-family for both light and dark themes.
  • Restored compatibility with iptools.IpRangeList.
  • Limit E001 check to likely error cases when the SHOW_TOOLBAR_CALLBACK has changed, but the toolbar's URL paths aren't installed.
  • Introduce helper function debug_toolbar_urls to simplify installation.
  • Moved "1rem" height/width for SVGs to CSS properties.

4.4.2 (2024-05-27)

  • Removed some CSS which wasn't carefully limited to the toolbar's elements.
  • Stopped assuming that INTERNAL_IPS is a list.
  • Added a section to the installation docs about running tests in projects where the toolbar is being used.

4.4.1 (2024-05-26)

  • Pin metadata version to 2.2 to be compatible with Jazzband release process.

... (truncated)

Commits
  • 8f4fa8e Version 4.4.6
  • 982a127 Alerts panel: Only process HTML responses
  • 9bcd6ca [pre-commit.ci] pre-commit autoupdate
  • 699c1d9 Fixed order and grammatical number of panels in documentation (#1956)
  • dfad5db Close #1509: Revert the infinite recursion fix, Django has changed the behavi...
  • 7acad6b django-debug-toolbar 4.4.5
  • 944120c Only import the jinja2 instrumentation when jinja2 itself is importable (#1954)
  • a591d86 Fix #1951: Do not crash if the 'alerts' key doesn't exist (#1953)
  • 57ada8e Version 4.4.4
  • 9834e7e Ignore check for jinja2's base.html template in integration test
  • Additional commits viewable in compare view

Updates python-memcached from 1.59 to 1.62

Release notes

Sourced from python-memcached's releases.

1.62 delete() returns 0 for NOT_FOUND or server error (consistent with docstring)

delete() return value now is 1 for "DELETED" and 0 for "NOT_FOUND" or server error. (Nick Pope PR #190) This is consistent with the docstring.

1.61 Fixing date in Changelog

This is a documentation-only fix, fixing the date in the Changelog in the 1.60 release. See that release for the full set of changes.

1.60: Many bug-fixes (2023)

  • Allow to use a datetime.timedelta parameter for Client.set (PR from Theo Massard)
  • Fix cmemcahe_hash 0 values being translated to 1 (PR from Chow Loong Jin)
  • Fix tuple key support in multi methods (PR from Sergii Mikhtoniuk) #154
  • Add support for default value in get (PR from Jakub Szafrański)
  • test_memcache.py: try import unittest.mock (PR from Tim Orli...

    Description has been truncated

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

| Package | From | To |
| --- | --- | --- |
| [sentry-sdk](https://github.com/getsentry/sentry-python) | `1.38.0` | `2.17.0` |
| [django-pipeline](https://github.com/jazzband/django-pipeline) | `2.1.0` | `3.1.0` |
| [whitenoise](https://github.com/evansd/whitenoise) | `6.6.0` | `6.7.0` |
| [libsass](https://github.com/sass/libsass) | `0.22.0` | `0.23.0` |
| [django-sesame](https://github.com/aaugustin/django-sesame) | `3.2.1` | `3.2.2` |
| [psycopg2-binary](https://github.com/psycopg/psycopg2) | `2.9.9` | `2.9.10` |
| [django-ses](https://github.com/django-ses/django-ses) | `3.5.1` | `4.2.0` |
| [uk-election-ids](https://github.com/DemocracyClub/uk-election-ids) | `0.7.5` | `0.8.0` |
| [faker](https://github.com/joke2k/faker) | `20.1.0` | `30.6.0` |
| [requests](https://github.com/psf/requests) | `2.31.0` | `2.32.3` |
| [django-apiblueprint-view](https://github.com/chris48s/django-apiblueprint-view) | `2.5.0` | `2.5.1` |
| [django-debug-toolbar](https://github.com/jazzband/django-debug-toolbar) | `4.2.0` | `4.4.6` |
| [python-memcached](https://github.com/linsomniac/python-memcached) | `1.59` | `1.62` |
| [django-cors-headers](https://github.com/adamchainz/django-cors-headers) | `4.3.1` | `4.5.0` |
| [setuptools](https://github.com/pypa/setuptools) | `74.1.2` | `75.2.0` |
| [djhtml](https://github.com/rtts/djhtml) | `3.0.6` | `3.0.7` |
| [pre-commit](https://github.com/pre-commit/pre-commit) | `3.5.0` | `4.0.1` |
| [pytest](https://github.com/pytest-dev/pytest) | `7.4.3` | `8.3.3` |
| [pytest-django](https://github.com/pytest-dev/pytest-django) | `4.7.0` | `4.9.0` |
| [pytest-ruff](https://github.com/businho/pytest-ruff) | `0.2.1` | `0.4.1` |
| [pytest-env](https://github.com/pytest-dev/pytest-env) | `1.1.3` | `1.1.5` |
| [coveralls](https://github.com/TheKevJames/coveralls-python) | `3.3.1` | `4.0.1` |
| [pytest-cov](https://github.com/pytest-dev/pytest-cov) | `4.1.0` | `5.0.0` |
| [factory-boy](https://github.com/FactoryBoy/factory_boy) | `3.3.0` | `3.3.1` |
| [ipython](https://github.com/ipython/ipython) | `8.18.1` | `8.28.0` |
| [pytest-mock](https://github.com/pytest-dev/pytest-mock) | `3.12.0` | `3.14.0` |
| [pytest-socket](https://github.com/miketheman/pytest-socket) | `0.6.0` | `0.7.0` |
| [wheel](https://github.com/pypa/wheel) | `0.42.0` | `0.44.0` |
| [ruff](https://github.com/astral-sh/ruff) | `0.1.6` | `0.7.0` |
| [uvicorn](https://github.com/encode/uvicorn) | `0.30.6` | `0.32.0` |



Updates `sentry-sdk` from 1.38.0 to 2.17.0
- [Release notes](https://github.com/getsentry/sentry-python/releases)
- [Changelog](https://github.com/getsentry/sentry-python/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-python@1.38.0...2.17.0)

Updates `django-pipeline` from 2.1.0 to 3.1.0
- [Release notes](https://github.com/jazzband/django-pipeline/releases)
- [Changelog](https://github.com/jazzband/django-pipeline/blob/master/HISTORY.rst)
- [Commits](jazzband/django-pipeline@2.1.0...3.1.0)

Updates `whitenoise` from 6.6.0 to 6.7.0
- [Changelog](https://github.com/evansd/whitenoise/blob/main/docs/changelog.rst)
- [Commits](evansd/whitenoise@6.6.0...6.7.0)

Updates `libsass` from 0.22.0 to 0.23.0
- [Release notes](https://github.com/sass/libsass/releases)
- [Commits](https://github.com/sass/libsass/commits)

Updates `django-sesame` from 3.2.1 to 3.2.2
- [Changelog](https://github.com/aaugustin/django-sesame/blob/main/docs/changelog.rst)
- [Commits](aaugustin/django-sesame@3.2.1...3.2.2)

Updates `psycopg2-binary` from 2.9.9 to 2.9.10
- [Changelog](https://github.com/psycopg/psycopg2/blob/master/NEWS)
- [Commits](https://github.com/psycopg/psycopg2/commits)

Updates `django-ses` from 3.5.1 to 4.2.0
- [Release notes](https://github.com/django-ses/django-ses/releases)
- [Changelog](https://github.com/django-ses/django-ses/blob/main/CHANGES.md)
- [Commits](django-ses/django-ses@v3.5.1...v4.2.0)

Updates `uk-election-ids` from 0.7.5 to 0.8.0
- [Release notes](https://github.com/DemocracyClub/uk-election-ids/releases)
- [Changelog](https://github.com/DemocracyClub/uk-election-ids/blob/master/CHANGELOG.md)
- [Commits](DemocracyClub/uk-election-ids@0.7.5...0.8.0)

Updates `faker` from 20.1.0 to 30.6.0
- [Release notes](https://github.com/joke2k/faker/releases)
- [Changelog](https://github.com/joke2k/faker/blob/master/CHANGELOG.md)
- [Commits](joke2k/faker@v20.1.0...v30.6.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)

Updates `django-apiblueprint-view` from 2.5.0 to 2.5.1
- [Changelog](https://github.com/chris48s/django-apiblueprint-view/blob/master/CHANGELOG.md)
- [Commits](chris48s/django-apiblueprint-view@2.5.0...2.5.1)

Updates `django-debug-toolbar` from 4.2.0 to 4.4.6
- [Release notes](https://github.com/jazzband/django-debug-toolbar/releases)
- [Changelog](https://github.com/jazzband/django-debug-toolbar/blob/main/docs/changes.rst)
- [Commits](jazzband/django-debug-toolbar@4.2...4.4.6)

Updates `python-memcached` from 1.59 to 1.62
- [Release notes](https://github.com/linsomniac/python-memcached/releases)
- [Changelog](https://github.com/linsomniac/python-memcached/blob/master/ChangeLog)
- [Commits](linsomniac/python-memcached@1.59...1.62)

Updates `certifi` from 2023.11.17 to 2024.8.30
- [Commits](certifi/python-certifi@2023.11.17...2024.08.30)

Updates `django-cors-headers` from 4.3.1 to 4.5.0
- [Changelog](https://github.com/adamchainz/django-cors-headers/blob/main/CHANGELOG.rst)
- [Commits](adamchainz/django-cors-headers@4.3.1...4.5.0)

Updates `urllib3` from 1.26.18 to 1.26.20
- [Release notes](https://github.com/urllib3/urllib3/releases)
- [Changelog](https://github.com/urllib3/urllib3/blob/main/CHANGES.rst)
- [Commits](urllib3/urllib3@1.26.18...1.26.20)

Updates `setuptools` from 74.1.2 to 75.2.0
- [Release notes](https://github.com/pypa/setuptools/releases)
- [Changelog](https://github.com/pypa/setuptools/blob/main/NEWS.rst)
- [Commits](pypa/setuptools@v74.1.2...v75.2.0)

Updates `djhtml` from 3.0.6 to 3.0.7
- [Release notes](https://github.com/rtts/djhtml/releases)
- [Commits](rtts/djhtml@3.0.6...3.0.7)

Updates `pre-commit` from 3.5.0 to 4.0.1
- [Release notes](https://github.com/pre-commit/pre-commit/releases)
- [Changelog](https://github.com/pre-commit/pre-commit/blob/main/CHANGELOG.md)
- [Commits](pre-commit/pre-commit@v3.5.0...v4.0.1)

Updates `pytest` from 7.4.3 to 8.3.3
- [Release notes](https://github.com/pytest-dev/pytest/releases)
- [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst)
- [Commits](pytest-dev/pytest@7.4.3...8.3.3)

Updates `pytest-django` from 4.7.0 to 4.9.0
- [Release notes](https://github.com/pytest-dev/pytest-django/releases)
- [Changelog](https://github.com/pytest-dev/pytest-django/blob/main/docs/changelog.rst)
- [Commits](pytest-dev/pytest-django@v4.7.0...v4.9.0)

Updates `pytest-ruff` from 0.2.1 to 0.4.1
- [Release notes](https://github.com/businho/pytest-ruff/releases)
- [Commits](businho/pytest-ruff@v0.2.1...v0.4.1)

Updates `pytest-env` from 1.1.3 to 1.1.5
- [Release notes](https://github.com/pytest-dev/pytest-env/releases)
- [Commits](pytest-dev/pytest-env@1.1.3...1.1.5)

Updates `coveralls` from 3.3.1 to 4.0.1
- [Release notes](https://github.com/TheKevJames/coveralls-python/releases)
- [Changelog](https://github.com/TheKevJames/coveralls-python/blob/master/CHANGELOG.md)
- [Commits](TheKevJames/coveralls-python@3.3.1...4.0.1)

Updates `pytest-cov` from 4.1.0 to 5.0.0
- [Changelog](https://github.com/pytest-dev/pytest-cov/blob/master/CHANGELOG.rst)
- [Commits](pytest-dev/pytest-cov@v4.1.0...v5.0.0)

Updates `factory-boy` from 3.3.0 to 3.3.1
- [Changelog](https://github.com/FactoryBoy/factory_boy/blob/master/docs/changelog.rst)
- [Commits](FactoryBoy/factory_boy@3.3.0...3.3.1)

Updates `ipython` from 8.18.1 to 8.28.0
- [Release notes](https://github.com/ipython/ipython/releases)
- [Commits](ipython/ipython@8.18.1...8.28.0)

Updates `pytest-mock` from 3.12.0 to 3.14.0
- [Release notes](https://github.com/pytest-dev/pytest-mock/releases)
- [Changelog](https://github.com/pytest-dev/pytest-mock/blob/main/CHANGELOG.rst)
- [Commits](pytest-dev/pytest-mock@v3.12.0...v3.14.0)

Updates `pytest-socket` from 0.6.0 to 0.7.0
- [Release notes](https://github.com/miketheman/pytest-socket/releases)
- [Changelog](https://github.com/miketheman/pytest-socket/blob/main/CHANGELOG.md)
- [Commits](miketheman/pytest-socket@0.6.0...0.7.0)

Updates `wheel` from 0.42.0 to 0.44.0
- [Release notes](https://github.com/pypa/wheel/releases)
- [Changelog](https://github.com/pypa/wheel/blob/main/docs/news.rst)
- [Commits](pypa/wheel@0.42.0...0.44.0)

Updates `ruff` from 0.1.6 to 0.7.0
- [Release notes](https://github.com/astral-sh/ruff/releases)
- [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md)
- [Commits](astral-sh/ruff@v0.1.6...0.7.0)

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

---
updated-dependencies:
- dependency-name: sentry-sdk
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: python-packages
- dependency-name: django-pipeline
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: python-packages
- dependency-name: whitenoise
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-packages
- dependency-name: libsass
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-packages
- dependency-name: django-sesame
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-packages
- dependency-name: psycopg2-binary
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-packages
- dependency-name: django-ses
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: python-packages
- dependency-name: uk-election-ids
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-packages
- dependency-name: faker
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: python-packages
- dependency-name: requests
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-packages
- dependency-name: django-apiblueprint-view
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-packages
- dependency-name: django-debug-toolbar
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-packages
- dependency-name: python-memcached
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-packages
- dependency-name: certifi
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: python-packages
- dependency-name: django-cors-headers
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-packages
- dependency-name: urllib3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-packages
- dependency-name: setuptools
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: python-packages
- dependency-name: djhtml
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-packages
- dependency-name: pre-commit
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: python-packages
- dependency-name: pytest
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: python-packages
- dependency-name: pytest-django
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-packages
- dependency-name: pytest-ruff
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-packages
- dependency-name: pytest-env
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: python-packages
- dependency-name: coveralls
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: python-packages
- dependency-name: pytest-cov
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: python-packages
- dependency-name: factory-boy
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: python-packages
- dependency-name: ipython
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-packages
- dependency-name: pytest-mock
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-packages
- dependency-name: pytest-socket
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-packages
- dependency-name: wheel
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-packages
- dependency-name: ruff
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-packages
- dependency-name: uvicorn
  dependency-type: direct:development
  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 Oct 18, 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