Skip to content

Bump the dependencies group with 6 updates #524

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

Merged
merged 1 commit into from
May 14, 2025

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github May 12, 2025

Bumps the dependencies group with 6 updates:

Package From To
django 5.1.9 5.2.1
boto3 1.38.8 1.38.13
sentry-sdk 2.27.0 2.28.0
google-auth 2.39.0 2.40.1
boto3-stubs 1.38.8 1.38.13
ruff 0.11.8 0.11.9

Updates django from 5.1.9 to 5.2.1

Commits
  • bc833e8 [5.2.x] Bumped version for 5.2.1 release.
  • c9731dc [5.2.x] Fixed CVE-2025-32873 -- Mitigated potential DoS in strip_tags().
  • ae6b5df [5.2.x] Simplified artifact building steps in docs/internals/howto-release-dj...
  • 44bda7a [5.2.x] Refs #36052, #32234 -- Fixed inspectdb tests for CompositePrimaryKey ...
  • 3c887e5 [5.2.x] Fixed #17461 -- Doc'd the presumed order of foreign keys on the inter...
  • 57c2451 [5.2.x] Made cosmetic edits and added upcoming security release to release no...
  • 1367a19 [5.2.x] Fixed #36357 -- Skipped unique_together in inspectdb output for compo...
  • ec73fd6 [5.2.x] Fixed #36358 -- Corrected introspection of composite primary keys on ...
  • 5d03c71 [5.2.x] Refs #36052, #32234 -- Removed create_test_table_with_composite_prima...
  • 7f6a5fb [5.2.x] Fixed #36360 -- Fixed QuerySet.update() crash when referring annotati...
  • Additional commits viewable in compare view

Updates boto3 from 1.38.8 to 1.38.13

Commits
  • 81462cc Merge branch 'release-1.38.13'
  • 98cde6e Bumping version to 1.38.13
  • ae91f07 Add changelog entries from botocore
  • 6a79fc6 Merge branch 'release-1.38.12'
  • 37ab6d4 Merge branch 'release-1.38.12' into develop
  • 5500de7 Bumping version to 1.38.12
  • 25489e9 Add changelog entries from botocore
  • e84865b Merge pull request #4527 from hssyoo/download-fileobj-append
  • 9b51374 fix indent
  • 24d7139 Ensure fileobj mode is str when checking for append mode
  • Additional commits viewable in compare view

Updates sentry-sdk from 2.27.0 to 2.28.0

Release notes

Sourced from sentry-sdk's releases.

2.28.0

Various fixes & improvements

Changelog

Sourced from sentry-sdk's changelog.

2.28.0

Various fixes & improvements

Commits

Updates google-auth from 2.39.0 to 2.40.1

Release notes

Sourced from google-auth's releases.

v2.40.1

2.40.1 (2025-05-06)

Bug Fixes

  • Disable logging response body for async logs (#1756) (2f0ddfe)

v2.40.0

2.40.0 (2025-04-29)

Features

Bug Fixes

  • Correct webauthn JSON parsing to be compliant with standard. (#1658) (0c5ef36)
Changelog

Sourced from google-auth's changelog.

2.40.1 (2025-05-06)

Bug Fixes

  • Disable logging response body for async logs (#1756) (2f0ddfe)

2.40.0 (2025-04-29)

Features

Bug Fixes

  • Correct webauthn JSON parsing to be compliant with standard. (#1658) (0c5ef36)
Commits

Updates boto3-stubs from 1.38.8 to 1.38.13

Release notes

Sourced from boto3-stubs's releases.

8.8.0 - Python 3.8 runtime is back

Changed

  • [services] install_requires section is calculated based on dependencies in use, so typing-extensions version is set properly
  • [all] Replaced typing imports with collections.abc with a fallback to typing for Python <3.9
  • [all] Added aliases for builtins.list, builtins.set, builtins.dict, and builtins.type, so Python 3.8 runtime should work as expected again (reported by @​YHallouard in #340 and @​Omri-Ben-Yair in #336)
  • [all] Unions use the same type annotations as the rest of the structures due to proper fallbacks

Fixed

  • [services] Universal input/output shapes were not replaced properly in service subresources
  • [docs] Simplified doc links rendering for services
  • [services] Cleaned up unnecessary imports in client.pyi
  • [builder] Import records with fallback are always rendered
Commits

Updates ruff from 0.11.8 to 0.11.9

Release notes

Sourced from ruff's releases.

0.11.9

Release Notes

Preview features

  • Default to latest supported Python version for version-related syntax errors (#17529)
  • Implement deferred annotations for Python 3.14 (#17658)
  • [airflow] Fix SQLTableCheckOperator typo (AIR302) (#17946)
  • [airflow] Remove airflow.utils.dag_parsing_context.get_parsing_context (AIR301) (#17852)
  • [airflow] Skip attribute check in try catch block (AIR301) (#17790)
  • [flake8-bandit] Mark tuples of string literals as trusted input in S603 (#17801)
  • [isort] Check full module path against project root(s) when categorizing first-party imports (#16565)
  • [ruff] Add new rule in-empty-collection (RUF060) (#16480)

Bug fixes

  • Fix missing combine call for lint.typing-extensions setting (#17823)
  • [flake8-async] Fix module name in ASYNC110, ASYNC115, and ASYNC116 fixes (#17774)
  • [pyupgrade] Add spaces between tokens as necessary to avoid syntax errors in UP018 autofix (#17648)
  • [refurb] Fix false positive for float and complex numbers in FURB116 (#17661)
  • [parser] Flag single unparenthesized generator expr with trailing comma in arguments. (#17893)

Documentation

  • Add instructions on how to upgrade to a newer Rust version (#17928)
  • Update code of conduct email address (#17875)
  • Add fix safety sections to PLC2801, PLR1722, and RUF013 (#17825, #17826, #17759)
  • Add link to check-typed-exception from S110 and S112 (#17786)

Other changes

  • Allow passing a virtual environment to ruff analyze graph (#17743)

Contributors

... (truncated)

Changelog

Sourced from ruff's changelog.

0.11.9

Preview features

  • Default to latest supported Python version for version-related syntax errors (#17529)
  • Implement deferred annotations for Python 3.14 (#17658)
  • [airflow] Fix SQLTableCheckOperator typo (AIR302) (#17946)
  • [airflow] Remove airflow.utils.dag_parsing_context.get_parsing_context (AIR301) (#17852)
  • [airflow] Skip attribute check in try catch block (AIR301) (#17790)
  • [flake8-bandit] Mark tuples of string literals as trusted input in S603 (#17801)
  • [isort] Check full module path against project root(s) when categorizing first-party imports (#16565)
  • [ruff] Add new rule in-empty-collection (RUF060) (#16480)

Bug fixes

  • Fix missing combine call for lint.typing-extensions setting (#17823)
  • [flake8-async] Fix module name in ASYNC110, ASYNC115, and ASYNC116 fixes (#17774)
  • [pyupgrade] Add spaces between tokens as necessary to avoid syntax errors in UP018 autofix (#17648)
  • [refurb] Fix false positive for float and complex numbers in FURB116 (#17661)
  • [parser] Flag single unparenthesized generator expr with trailing comma in arguments. (#17893)

Documentation

  • Add instructions on how to upgrade to a newer Rust version (#17928)
  • Update code of conduct email address (#17875)
  • Add fix safety sections to PLC2801, PLR1722, and RUF013 (#17825, #17826, #17759)
  • Add link to check-typed-exception from S110 and S112 (#17786)

Other changes

  • Allow passing a virtual environment to ruff analyze graph (#17743)
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 <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> 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 <dependency name> 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 <dependency name> 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 <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the dependencies group with 6 updates:

| Package | From | To |
| --- | --- | --- |
| [django](https://github.com/django/django) | `5.1.9` | `5.2.1` |
| [boto3](https://github.com/boto/boto3) | `1.38.8` | `1.38.13` |
| [sentry-sdk](https://github.com/getsentry/sentry-python) | `2.27.0` | `2.28.0` |
| [google-auth](https://github.com/googleapis/google-auth-library-python) | `2.39.0` | `2.40.1` |
| [boto3-stubs](https://github.com/youtype/mypy_boto3_builder) | `1.38.8` | `1.38.13` |
| [ruff](https://github.com/astral-sh/ruff) | `0.11.8` | `0.11.9` |


Updates `django` from 5.1.9 to 5.2.1
- [Commits](django/django@5.1.9...5.2.1)

Updates `boto3` from 1.38.8 to 1.38.13
- [Release notes](https://github.com/boto/boto3/releases)
- [Commits](boto/boto3@1.38.8...1.38.13)

Updates `sentry-sdk` from 2.27.0 to 2.28.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@2.27.0...2.28.0)

Updates `google-auth` from 2.39.0 to 2.40.1
- [Release notes](https://github.com/googleapis/google-auth-library-python/releases)
- [Changelog](https://github.com/googleapis/google-auth-library-python/blob/main/CHANGELOG.md)
- [Commits](googleapis/google-auth-library-python@v2.39.0...v2.40.1)

Updates `boto3-stubs` from 1.38.8 to 1.38.13
- [Release notes](https://github.com/youtype/mypy_boto3_builder/releases)
- [Commits](https://github.com/youtype/mypy_boto3_builder/commits)

Updates `ruff` from 0.11.8 to 0.11.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@0.11.8...0.11.9)

---
updated-dependencies:
- dependency-name: django
  dependency-version: 5.2.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: boto3
  dependency-version: 1.38.13
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: sentry-sdk
  dependency-version: 2.28.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: google-auth
  dependency-version: 2.40.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: boto3-stubs
  dependency-version: 1.38.13
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: ruff
  dependency-version: 0.11.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels May 12, 2025
@RadoRado RadoRado merged commit f8858f5 into master May 14, 2025
3 checks passed
@RadoRado RadoRado deleted the dependabot/pip/master/dependencies-3f558b10ee branch May 14, 2025 06:34
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.

1 participant