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

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the patches group with 9 updates in the / directory:

Package From To
google-api-python-client 2.130.0 2.133.0
django-crispy-forms 2.1 2.2
dj-database-url 2.1.0 2.2.0
requests 2.32.2 2.32.3
sentry-sdk 2.3.1 2.5.1
boto3 1.34.113 1.34.128
pytest 8.2.1 8.2.2
coverage 7.5.2 7.5.3
ruff 0.4.5 0.4.9

Updates google-api-python-client from 2.130.0 to 2.133.0

Release notes

Sourced from google-api-python-client's releases.

v2.133.0

2.133.0 (2024-06-11)

Features

Bug Fixes

v2.132.0

2.132.0 (2024-06-04)

Features

... (truncated)

Commits

Updates django-crispy-forms from 2.1 to 2.2

Release notes

Sourced from django-crispy-forms's releases.

2.2

  • Added support for Django 5.1.
  • Allowed pass through of context when rendering a Fieldset layout object.

Full Changelog: django-crispy-forms/django-crispy-forms@2.1...2.2

Changelog

Sourced from django-crispy-forms's changelog.

2.2 (2024-06-15)

  • Added support for Django 5.1.
  • Allowed pass through of context when rendering a Fieldset layout object.
Commits

Updates dj-database-url from 2.1.0 to 2.2.0

Release notes

Sourced from dj-database-url's releases.

v2.2.0

What's Changed

New Contributors

Full Changelog: jazzband/dj-database-url@v2.1.0...v2.2.0

Changelog

Sourced from dj-database-url's changelog.

CHANGELOG

Commits

Updates requests from 2.32.2 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)
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)
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
  • See full diff in compare view

Updates sentry-sdk from 2.3.1 to 2.5.1

Release notes

Sourced from sentry-sdk's releases.

2.5.1

This change fixes a regression in our cron monitoring feature, which caused cron checkins not to be sent. The regression appears to have been introduced in version 2.4.0.

We recommend that all users, who use Cron monitoring and are currently running sentry-python ≥2.4.0, upgrade to this release as soon as possible!

Other fixes & improvements

2.5.0

Various fixes & improvements

  • Allow to configure status codes to report to Sentry in Starlette and FastAPI (#3008) by @​sentrivana

    By passing a new option to the FastAPI and Starlette integrations, you're now able to configure what status codes should be sent as events to Sentry. Here's how it works:

    from sentry_sdk.integrations.starlette import StarletteIntegration
    from sentry_sdk.integrations.fastapi import FastApiIntegration
    sentry_sdk.init(
    # ...
    integrations=[
    StarletteIntegration(
    failed_request_status_codes=[403, range(500, 599)],
    ),
    FastApiIntegration(
    failed_request_status_codes=[403, range(500, 599)],
    ),
    ]
    )

    failed_request_status_codes expects a list of integers or containers (objects that allow membership checks via in) of integers. Examples of valid failed_request_status_codes:

    • [500] will only send events on HTTP 500.
    • [400, range(500, 599)] will send events on HTTP 400 as well as the 500-599 range.
    • [500, 503] will send events on HTTP 500 and 503.

    The default is [range(500, 599)].

    See the FastAPI and Starlette integration docs for more details.

  • Support multiple keys with cache_prefixes (#3136) by @​sentrivana

  • Support integer Redis keys (#3132) by @​sentrivana

  • Update SDK version in CONTRIBUTING.md (#3129) by @​sentrivana

... (truncated)

Changelog

Sourced from sentry-sdk's changelog.

2.5.1

This change fixes a regression in our cron monitoring feature, which caused cron checkins not to be sent. The regression appears to have been introduced in version 2.4.0.

We recommend that all users, who use Cron monitoring and are currently running sentry-python ≥2.4.0, upgrade to this release as soon as possible!

Other fixes & improvements

2.5.0

Various fixes & improvements

  • Allow to configure status codes to report to Sentry in Starlette and FastAPI (#3008) by @​sentrivana

    By passing a new option to the FastAPI and Starlette integrations, you're now able to configure what status codes should be sent as events to Sentry. Here's how it works:

    from sentry_sdk.integrations.starlette import StarletteIntegration
    from sentry_sdk.integrations.fastapi import FastApiIntegration
    sentry_sdk.init(
    # ...
    integrations=[
    StarletteIntegration(
    failed_request_status_codes=[403, range(500, 599)],
    ),
    FastApiIntegration(
    failed_request_status_codes=[403, range(500, 599)],
    ),
    ]
    )

    failed_request_status_codes expects a list of integers or containers (objects that allow membership checks via in) of integers. Examples of valid failed_request_status_codes:

    • [500] will only send events on HTTP 500.
    • [400, range(500, 599)] will send events on HTTP 400 as well as the 500-599 range.
    • [500, 503] will send events on HTTP 500 and 503.

    The default is [range(500, 599)].

    See the FastAPI and Starlette integration docs for more details.

  • Support multiple keys with cache_prefixes (#3136) by @​sentrivana

... (truncated)

Commits
  • 411b1d4 Update CHANGELOG.md
  • d18ff4d release: 2.5.1
  • d818e8f Revert "Refactor the Celery Beat integration (#3105)" (#3144)
  • c2af1b0 feat(tracing): Warn if not-started transaction entered (#3003)
  • 7674bf2 test(scope): Ensure last_event_id cleared
  • dd15d32 fix(scope): Clear last_event_id on scope clear
  • 239cca2 Merge branch 'release/2.5.0'
  • 504e05e Update CHANGELOG.md
  • dbc02e6 release: 2.5.0
  • 9227968 feat(starlette): Allow to configure status codes to report to Sentry (#3008)
  • Additional commits viewable in compare view

Updates boto3 from 1.34.113 to 1.34.128

Changelog

Sourced from boto3's changelog.

1.34.128

  • api-change:acm-pca: [botocore] Doc-only update that adds name constraints as an allowed extension for ImportCertificateAuthorityCertificate.
  • api-change:batch: [botocore] Add v2 smoke tests and smithy smokeTests trait for SDK testing.
  • api-change:codebuild: [botocore] AWS CodeBuild now supports global and organization GitHub webhooks
  • api-change:cognito-idp: [botocore] Add v2 smoke tests and smithy smokeTests trait for SDK testing.
  • api-change:ds: [botocore] Add v2 smoke tests and smithy smokeTests trait for SDK testing.
  • api-change:efs: [botocore] Add v2 smoke tests and smithy smokeTests trait for SDK testing.
  • api-change:glue: [botocore] This release introduces a new feature, Usage profiles. Usage profiles allow the AWS Glue admin to create different profiles for various classes of users within the account, enforcing limits and defaults for jobs and sessions.
  • api-change:mediaconvert: [botocore] This release includes support for creating I-frame only video segments for DASH trick play.
  • api-change:secretsmanager: [botocore] Doc only update for Secrets Manager
  • api-change:waf: [botocore] Add v2 smoke tests and smithy smokeTests trait for SDK testing.

1.34.127

  • api-change:datazone: [botocore] This release introduces a new default service blueprint for custom environment creation.
  • api-change:ec2: [botocore] Documentation updates for Amazon EC2.
  • api-change:macie2: [botocore] This release adds support for managing the status of automated sensitive data discovery for individual accounts in an organization, and determining whether individual S3 buckets are included in the scope of the analyses.
  • api-change:mediaconvert: [botocore] This release adds the ability to search for historical job records within the management console using a search box and/or via the SDK/CLI with partial string matching search on input file name.
  • api-change:route53domains: [botocore] Add v2 smoke tests and smithy smokeTests trait for SDK testing.

1.34.126

  • api-change:cloudhsmv2: [botocore] Added support for hsm type hsm2m.medium. Added supported for creating a cluster in FIPS or NON_FIPS mode.
  • api-change:glue: [botocore] This release adds support for configuration of evaluation method for composite rules in Glue Data Quality rulesets.
  • api-change:iotwireless: [botocore] Add RoamingDeviceSNR and RoamingDeviceRSSI to Customer Metrics.
  • api-change:kms: [botocore] This feature allows customers to use their keys stored in KMS to derive a shared secret which can then be used to establish a secured channel for communication, provide proof of possession, or establish trust with other parties.
  • api-change:mediapackagev2: [botocore] This release adds support for CMAF ingest (DASH-IF live media ingest protocol interface 1)

1.34.125

  • api-change:apptest: [botocore] AWS Mainframe Modernization Application Testing is an AWS Mainframe Modernization service feature that automates functional equivalence testing for mainframe application modernization and migration to AWS, and regression testing.
  • api-change:backupstorage: [botocore] The backupstorage client has been removed following the deprecation of the service.
  • api-change:ec2: [botocore] Tagging support for Traffic Mirroring FilterRule resource
  • api-change:osis: [botocore] SDK changes for self-managed vpc endpoint to OpenSearch ingestion pipelines.
  • api-change:redshift: [botocore] Updates to remove DC1 and DS2 node types.
  • api-change:secretsmanager: [botocore] Introducing RotationToken parameter for PutSecretValue API
  • api-change:securitylake: [botocore] This release updates request validation regex to account for non-commercial aws partitions.
  • api-change:sesv2: [botocore] This release adds support for Amazon EventBridge as an email sending events destination.

1.34.124

... (truncated)

Commits
  • 11becdb Merge branch 'release-1.34.128'
  • dff2a1e Bumping version to 1.34.128
  • 14cdd17 Add changelog entries from botocore
  • ccf92ad Merge branch 'release-1.34.127' into develop
  • 6701fab Merge branch 'release-1.34.127'
  • 153ade5 Bumping version to 1.34.127
  • 40b402f Add changelog entries from botocore
  • a1deb11 Merge branch 'release-1.34.126' into develop
  • 60dfa6f Merge branch 'release-1.34.126'
  • 427029b Bumping version to 1.34.126
  • Additional commits viewable in compare view

Updates pytest from 8.2.1 to 8.2.2

Release notes

Sourced from pytest's releases.

8.2.2

pytest 8.2.2 (2024-06-04)

Bug Fixes

  • #12355: Fix possible catastrophic performance slowdown on a certain parametrization pattern involving many higher-scoped parameters.
  • #12367: Fix a regression in pytest 8.2.0 where unittest class instances (a fresh one is created for each test) were not released promptly on test teardown but only on session teardown.
  • #12381: Fix possible "Directory not empty" crashes arising from concurent cache dir (.pytest_cache) creation. Regressed in pytest 8.2.0.

Improved Documentation

  • #12290: Updated Sphinx theme to use Furo instead of Flask, enabling Dark mode theme.
  • #12356: Added a subsection to the documentation for debugging flaky tests to mention lack of thread safety in pytest as a possible source of flakyness.
  • #12363: The documentation webpages now links to a canonical version to reduce outdated documentation in search engine results.
Commits
  • 329d371 Prepare release version 8.2.2
  • 214d098 Merge pull request #12414 from bluetech/backport-12409
  • 153a436 [8.2.x] fixtures: fix catastrophic performance problem in reorder_items
  • b41d5a5 Merge pull request #12412 from pytest-dev/backport-12408-to-8.2.x
  • 9bb73d7 [8.2.x] cacheprovider: fix "Directory not empty" crash from cache directory c...
  • 4569a01 [8.2.x] doc: Update trainings/events (#12402)
  • 1d103e5 [8.2.x] Clarify pytest_ignore_collect docs (#12386)
  • 240a252 [8.2.x] Add html_baseurl to sphinx conf.py (#12372)
  • a5ee3c4 Merge pull request #12370 from pytest-dev/backport-12368-to-8.2.x
  • f7358ae [8.2.x] unittest: fix class instances no longer released on test teardown sin...
  • Additional commits viewable in compare view

Updates coverage from 7.5.2 to 7.5.3

Changelog

Sourced from coverage's changelog.

Version 7.5.3 — 2024-05-28

  • Performance improvements for combining data files, especially when measuring line coverage. A few different quadratic behaviors were eliminated. In one extreme case of combining 700+ data files, the time dropped from more than three hours to seven minutes. Thanks for Kraken Tech for funding the fix.

  • Performance improvements for generating HTML reports, with a side benefit of reducing memory use, closing issue 1791_. Thanks to Daniel Diniz for helping to diagnose the problem.

.. _issue 1791: nedbat/coveragepy#1791

.. _changes_7-5-2:

Commits
  • f310d7e docs: sample HTML for 7.5.3
  • a51d52f docs: prep for 7.5.3
  • b666f3a perf: it's faster in all versions if we don't cache tokenize #1791
  • a2b4929 docs: changelog entry for combine performance improvements
  • b9aff50 perf: don't read full line_bits table each time
  • c45ebac perf: cache alias mapping
  • 390cb97 perf: avoid quadratic behavior when combining line coverage
  • d3caf53 docs(build): tweaks to howto
  • 909e887 build: bump version
  • See full diff in compare view

Updates ruff from 0.4.5 to 0.4.9

Release notes

Sourced from ruff's releases.

v0.4.9

Changes

Preview features

  • [pylint] Implement consider-dict-items (C0206) (#11688)
  • [refurb] Implement repeated-global (FURB154) (#11187)

Rule changes

  • [pycodestyle] Adapt fix for E203 to work identical to ruff format (#10999)

Formatter

  • Fix formatter instability for lines only consisting of zero-width characters (#11748)

Server

  • Add supported commands in server capabilities (#11850)
  • Use real file path when available in ruff server (#11800)
  • Improve error message when a command is run on an unavailable document (#11823)
  • Introduce the ruff.printDebugInformation command (#11831)
  • Tracing system now respects log level and trace level, with options to log to a file (#11747)

CLI

  • Handle non-printable characters in diff view (#11687)

Bug fixes

  • [refurb] Avoid suggesting starmap when arguments are used outside call (FURB140) (#11830)
  • [flake8-bugbear] Avoid panic in B909 when checking large loop blocks (#11772)
  • [refurb] Fix misbehavior of operator.itemgetter when getter param is a tuple (FURB118) (#11774)

Contributors

... (truncated)

Changelog

Sourced from ruff's changelog.

0.4.9

Preview features

  • [pylint] Implement consider-dict-items (C0206) (#11688)
  • [refurb] Implement repeated-global (FURB154) (#11187)

Rule changes

  • [pycodestyle] Adapt fix for E203 to work identical to ruff format (#10999)

Formatter

  • Fix formatter instability for lines only consisting of zero-width characters (#11748)

Server

  • Add supported commands in server capabilities (#11850)
  • Use real file path when available in ruff server (#11800)
  • Improve error message when a command is run on an unavailable document (#11823)
  • Introduce the ruff.printDebugInformation command (#11831)
  • Tracing system now respects log level and trace level, with options to log to a file (#11747)

CLI

  • Handle non-printable characters in diff view (#11687)

Bug fixes

  • [refurb] Avoid suggesting starmap when arguments are used outside call (FURB140) (#11830)
  • [flake8-bugbear] Avoid panic in B909 when checking large loop blocks (#11772)
  • [refurb] Fix misbehavior of operator.itemgetter when getter param is a tuple (FURB118) (#11774)

0.4.8

Performance

  • Linter performance has been improved by around 10% on some microbenchmarks by refactoring the lexer and parser to maintain synchronicity between them (#11457)

Preview features

  • [flake8-bugbear] Implement return-in-generator (B901) (#11644)
  • [flake8-pyi] Implement PYI063 (#11699)
  • [pygrep_hooks] Check blanket ignores via file-level pragmas (PGH004) (#11540)

Rule changes

  • [pyupgrade] Update UP035 for Python 3.13 and the latest version of typing_extensions (#11693)
  • [numpy] Update NPY001 rule for NumPy 2.0 (#11735)

... (truncated)

Commits
  • 4f49e91 Bump version to v0.4.9 (#11872)
  • d681a45 Make ruff_db a required crate for ruff_python_semantic (#11874)
  • 89bb07c UPDATE latest supported versions to 3.13 (#11870)
  • fe462b3 Update Python compatibility to 3.13 (#11861)
  • c5bc368 [red-knot] Improve Vfs and FileSystem documentation (#11856)
  • 73370fe Use starts_with('/') instead of is_absolute to avoid platform specific AP...
  • 22b6488 red-knot: Add directory support to MemoryFileSystem (#11825)
  • d4dd96d red-knot: source_text, line_index, and parsed_module queries (#11822)
  • efbf7b1 red-knot[salsa part 2]: Setup semantic DB and Jar (#11837)
  • 9dc226b Add supported commands in server capabilities (#11850)
  • 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 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...

Description has been truncated

Bumps the patches group with 9 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [google-api-python-client](https://github.com/googleapis/google-api-python-client) | `2.130.0` | `2.133.0` |
| [django-crispy-forms](https://github.com/django-crispy-forms/django-crispy-forms) | `2.1` | `2.2` |
| [dj-database-url](https://github.com/jazzband/dj-database-url) | `2.1.0` | `2.2.0` |
| [requests](https://github.com/psf/requests) | `2.32.2` | `2.32.3` |
| [sentry-sdk](https://github.com/getsentry/sentry-python) | `2.3.1` | `2.5.1` |
| [boto3](https://github.com/boto/boto3) | `1.34.113` | `1.34.128` |
| [pytest](https://github.com/pytest-dev/pytest) | `8.2.1` | `8.2.2` |
| [coverage](https://github.com/nedbat/coveragepy) | `7.5.2` | `7.5.3` |
| [ruff](https://github.com/astral-sh/ruff) | `0.4.5` | `0.4.9` |



Updates `google-api-python-client` from 2.130.0 to 2.133.0
- [Release notes](https://github.com/googleapis/google-api-python-client/releases)
- [Commits](googleapis/google-api-python-client@v2.130.0...v2.133.0)

Updates `django-crispy-forms` from 2.1 to 2.2
- [Release notes](https://github.com/django-crispy-forms/django-crispy-forms/releases)
- [Changelog](https://github.com/django-crispy-forms/django-crispy-forms/blob/main/CHANGELOG.md)
- [Commits](django-crispy-forms/django-crispy-forms@2.1...2.2)

Updates `dj-database-url` from 2.1.0 to 2.2.0
- [Release notes](https://github.com/jazzband/dj-database-url/releases)
- [Changelog](https://github.com/jazzband/dj-database-url/blob/master/CHANGELOG.md)
- [Commits](jazzband/dj-database-url@v2.1.0...v2.2.0)

Updates `requests` from 2.32.2 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.32.2...v2.32.3)

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

Updates `boto3` from 1.34.113 to 1.34.128
- [Release notes](https://github.com/boto/boto3/releases)
- [Changelog](https://github.com/boto/boto3/blob/develop/CHANGELOG.rst)
- [Commits](boto/boto3@1.34.113...1.34.128)

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

Updates `coverage` from 7.5.2 to 7.5.3
- [Release notes](https://github.com/nedbat/coveragepy/releases)
- [Changelog](https://github.com/nedbat/coveragepy/blob/master/CHANGES.rst)
- [Commits](nedbat/coveragepy@7.5.2...7.5.3)

Updates `ruff` from 0.4.5 to 0.4.9
- [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.4.5...v0.4.9)

---
updated-dependencies:
- dependency-name: google-api-python-client
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patches
- dependency-name: django-crispy-forms
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patches
- dependency-name: dj-database-url
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patches
- dependency-name: requests
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patches
- dependency-name: sentry-sdk
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patches
- dependency-name: boto3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patches
- dependency-name: pytest
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patches
- dependency-name: coverage
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patches
- dependency-name: ruff
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patches
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Jun 17, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Jun 24, 2024

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

@dependabot dependabot bot closed this Jun 24, 2024
@dependabot dependabot bot deleted the dependabot/pip/patches-a5c0e3cab1 branch June 24, 2024 20:47
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file python Pull requests that update Python code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants