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 11 updates #857

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

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jul 22, 2024

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

Package From To
django-cors-headers 4.3.1 4.4.0
django-model-utils 4.5.0 4.5.1
django-storages 1.14.2 1.14.4
sentry-sdk 1.45.0 2.10.0
pre-commit 3.5.0 3.7.1
pytest 8.2.1 8.3.1
pytest-subtests 0.12.1 0.13.1
ruff 0.4.4 0.5.4
pytest-ruff 0.3.2 0.4.1
aws-sam-cli 1.115.0 1.120.0

Updates django-cors-headers from 4.3.1 to 4.4.0

Changelog

Sourced from django-cors-headers's changelog.

4.4.0 (2024-06-19)

  • Support Django 5.1.
Commits

Updates django-model-utils from 4.5.0 to 4.5.1

Release notes

Sourced from django-model-utils's releases.

4.5.1

What's Changed

Full Changelog: jazzband/django-model-utils@4.5.0...4.5.1

Changelog

Sourced from django-model-utils's changelog.

4.5.1 (2024-05-02)

Commits

Updates django-storages from 1.14.2 to 1.14.4

Changelog

Sourced from django-storages's changelog.

1.14.4 (2024-07-09)


S3

  • Pull AWS_SESSION_TOKEN from the environment ([#1399](https://github.com/jschneier/django-storages/issues/1399)_)
  • Fix newline handling for text mode files ([#1381](https://github.com/jschneier/django-storages/issues/1381)_)
  • Do not sign URLs when querystring_auth=False e.g public buckets or static files ([#1402](https://github.com/jschneier/django-storages/issues/1402)_)
  • Cache CloudFront Signers ([#1417](https://github.com/jschneier/django-storages/issues/1417)_)

Azure

  • Fix collectstatic --clear ([#1403](https://github.com/jschneier/django-storages/issues/1403)_)
  • Add mode kwarg to .url() to support creation of signed URLs for upload ([#1414](https://github.com/jschneier/django-storages/issues/1414)_)
  • Fix fetching user delegation key when custom domain is enabled ([#1418](https://github.com/jschneier/django-storages/issues/1418)_)

SFTP

  • Add implementations of get_(modified|accessed)_time ([#1347](https://github.com/jschneier/django-storages/issues/1347)_)

Dropbox

  • Add support for Python 3.12 ([#1421](https://github.com/jschneier/django-storages/issues/1421)_)

FTP

  • Conform to BaseStorage interface ([#1423](https://github.com/jschneier/django-storages/issues/1423)_)
  • Add FTP_ALLOW_OVERWRITE setting ([#1424](https://github.com/jschneier/django-storages/issues/1424)_)

.. _#1399: jschneier/django-storages#1399 .. _#1381: jschneier/django-storages#1381 .. _#1402: jschneier/django-storages#1402 .. _#1403: jschneier/django-storages#1403 .. _#1414: jschneier/django-storages#1414 .. _#1417: jschneier/django-storages#1417 .. _#1418: jschneier/django-storages#1418 .. _#1347: jschneier/django-storages#1347 .. _#1421: jschneier/django-storages#1421 .. _#1423: jschneier/django-storages#1423 .. _#1424: jschneier/django-storages#1424

1.14.3 (2024-05-04)


... (truncated)

Commits

Updates sentry-sdk from 1.45.0 to 2.10.0

Release notes

Sourced from sentry-sdk's releases.

2.10.0

Various fixes & improvements

  • Add client cert and key support to HttpTransport (#3258) by @​grammy-jiang

    Add cert_file and key_file to your sentry_sdk.init to use a custom client cert and key. Alternatively, the environment variables CLIENT_CERT_FILE and CLIENT_KEY_FILE can be used as well.

  • OpenAI: Lazy initialize tiktoken to avoid http at import time (#3287) by @​colin-sentry

  • OpenAI, Langchain: Make tiktoken encoding name configurable + tiktoken usage opt-in (#3289) by @​colin-sentry

    Fixed a bug where having certain packages installed along the Sentry SDK caused an HTTP request to be made to OpenAI infrastructure when the Sentry SDK was initialized. The request was made when the tiktoken package and at least one of the openai or langchain packages were installed.

    The request was fetching a tiktoken encoding in order to correctly measure token usage in some OpenAI and Langchain calls. This behavior is now opt-in. The choice of encoding to use was made configurable as well. To opt in, set the tiktoken_encoding_name parameter in the OpenAPI or Langchain integration.

    sentry_sdk.init(
        integrations=[
            OpenAIIntegration(tiktoken_encoding_name="cl100k_base"),
            LangchainIntegration(tiktoken_encoding_name="cl100k_base"),
        ],
    )
  • PyMongo: Send query description as valid JSON (#3291) by @​0Calories

  • Remove Python 2 compatibility code (#3284) by @​szokeasaurusrex

  • Fix sentry_sdk.init type hint (#3283) by @​szokeasaurusrex

  • Deprecate hub in Profile (#3270) by @​szokeasaurusrex

  • Stop using Hub in init (#3275) by @​szokeasaurusrex

  • Delete _should_send_default_pii (#3274) by @​szokeasaurusrex

  • Remove Hub usage in conftest (#3273) by @​szokeasaurusrex

  • Rename debug logging filter (#3260) by @​szokeasaurusrex

  • Update NoOpSpan.finish signature (#3267) by @​szokeasaurusrex

  • Remove Hub in Transaction.finish (#3267) by @​szokeasaurusrex

  • Remove Hub from capture_internal_exception logic (#3264) by @​szokeasaurusrex

  • Improve Scope._capture_internal_exception type hint (#3264) by @​szokeasaurusrex

  • Correct ExcInfo type (#3266) by @​szokeasaurusrex

  • Stop using Hub in tracing_utils (#3269) by @​szokeasaurusrex

2.9.0

Various fixes & improvements

... (truncated)

Changelog

Sourced from sentry-sdk's changelog.

2.10.0

Various fixes & improvements

  • Add client cert and key support to HttpTransport (#3258) by @​grammy-jiang

    Add cert_file and key_file to your sentry_sdk.init to use a custom client cert and key. Alternatively, the environment variables CLIENT_CERT_FILE and CLIENT_KEY_FILE can be used as well.

  • OpenAI: Lazy initialize tiktoken to avoid http at import time (#3287) by @​colin-sentry

  • OpenAI, Langchain: Make tiktoken encoding name configurable + tiktoken usage opt-in (#3289) by @​colin-sentry

    Fixed a bug where having certain packages installed along the Sentry SDK caused an HTTP request to be made to OpenAI infrastructure when the Sentry SDK was initialized. The request was made when the tiktoken package and at least one of the openai or langchain packages were installed.

    The request was fetching a tiktoken encoding in order to correctly measure token usage in some OpenAI and Langchain calls. This behavior is now opt-in. The choice of encoding to use was made configurable as well. To opt in, set the tiktoken_encoding_name parameter in the OpenAPI or Langchain integration.

    sentry_sdk.init(
        integrations=[
            OpenAIIntegration(tiktoken_encoding_name="cl100k_base"),
            LangchainIntegration(tiktoken_encoding_name="cl100k_base"),
        ],
    )
  • PyMongo: Send query description as valid JSON (#3291) by @​0Calories

  • Remove Python 2 compatibility code (#3284) by @​szokeasaurusrex

  • Fix sentry_sdk.init type hint (#3283) by @​szokeasaurusrex

  • Deprecate hub in Profile (#3270) by @​szokeasaurusrex

  • Stop using Hub in init (#3275) by @​szokeasaurusrex

  • Delete _should_send_default_pii (#3274) by @​szokeasaurusrex

  • Remove Hub usage in conftest (#3273) by @​szokeasaurusrex

  • Rename debug logging filter (#3260) by @​szokeasaurusrex

  • Update NoOpSpan.finish signature (#3267) by @​szokeasaurusrex

  • Remove Hub in Transaction.finish (#3267) by @​szokeasaurusrex

  • Remove Hub from capture_internal_exception logic (#3264) by @​szokeasaurusrex

  • Improve Scope._capture_internal_exception type hint (#3264) by @​szokeasaurusrex

  • Correct ExcInfo type (#3266) by @​szokeasaurusrex

  • Stop using Hub in tracing_utils (#3269) by @​szokeasaurusrex

2.9.0

Various fixes & improvements

... (truncated)

Commits
  • b026dbd Update CHANGELOG.md
  • c45640b release: 2.10.0
  • 5bad5c6 feat(openai): Make tiktoken encoding name configurable + tiktoken usage opt-i...
  • 84a2afc feat(pymongo): Send query description as valid JSON (#3291)
  • 301c4b8 OpenAI: Lazy initialize tiktoken to avoid http at import time (#3287)
  • ae034ab ref(consts): Remove Python 2 compatibility code (#3284)
  • 8a95971 docs(init): Fix sentry_sdk.init type hint (#3283)
  • 4fb51f2 Add the client cert and key support to HttpTransport (#3258)
  • 06d5da1 ref(profiling): Deprecate hub in Profile (#3270)
  • 1e82809 ref(init): Stop using Hub in init
  • Additional commits viewable in compare view

Updates urllib3 from 2.2.1 to 2.2.2

Release notes

Sourced from urllib3's releases.

2.2.2

🚀 urllib3 is fundraising for HTTP/2 support

urllib3 is raising ~$40,000 USD to release HTTP/2 support and ensure long-term sustainable maintenance of the project after a sharp decline in financial support for 2023. If your company or organization uses Python and would benefit from HTTP/2 support in Requests, pip, cloud SDKs, and thousands of other projects please consider contributing financially to ensure HTTP/2 support is developed sustainably and maintained for the long-haul.

Thank you for your support.

Changes

  • Added the Proxy-Authorization header to the list of headers to strip from requests when redirecting to a different host. As before, different headers can be set via Retry.remove_headers_on_redirect.
  • Allowed passing negative integers as amt to read methods of http.client.HTTPResponse as an alternative to None. (#3122)
  • Fixed return types representing copying actions to use typing.Self. (#3363)

Full Changelog: urllib3/urllib3@2.2.1...2.2.2

Changelog

Sourced from urllib3's changelog.

2.2.2 (2024-06-17)

  • Added the Proxy-Authorization header to the list of headers to strip from requests when redirecting to a different host. As before, different headers can be set via Retry.remove_headers_on_redirect.
  • Allowed passing negative integers as amt to read methods of http.client.HTTPResponse as an alternative to None. ([#3122](https://github.com/urllib3/urllib3/issues/3122) <https://github.com/urllib3/urllib3/issues/3122>__)
  • Fixed return types representing copying actions to use typing.Self. ([#3363](https://github.com/urllib3/urllib3/issues/3363) <https://github.com/urllib3/urllib3/issues/3363>__)
Commits

Updates pre-commit from 3.5.0 to 3.7.1

Release notes

Sourced from pre-commit's releases.

pre-commit v3.7.1

Fixes

pre-commit v3.7.0

Features

  • Use a tty for docker and docker_image hooks when --color is specified.

Fixes

Updating

  • The per-hook behaviour of fail_fast was fixed. If you want the pre-3.7.0 behaviour, add fail_fast: true to all hooks before the last fail_fast hook.

pre-commit v3.6.2

Fixes

pre-commit v3.6.1

Fixes

pre-commit v3.6.0

Features

  • Check minimum_pre_commit_version first when parsing configs.

Fixes

Updating

  • Drop support for python<3.9.

... (truncated)

Changelog

Sourced from pre-commit's changelog.

3.7.1 - 2024-05-10

Fixes

3.7.0 - 2024-03-24

Features

  • Use a tty for docker and docker_image hooks when --color is specified.

Fixes

Updating

  • The per-hook behaviour of fail_fast was fixed. If you want the pre-3.7.0 behaviour, add fail_fast: true to all hooks before the last fail_fast hook.

3.6.2 - 2024-02-18

Fixes

3.6.1 - 2024-02-10

Fixes

3.6.0 - 2023-12-09

Features

  • Check minimum_pre_commit_version first when parsing configs.

... (truncated)

Commits
  • 9ee0768 v3.7.1
  • eeac061 Merge pull request #3201 from pre-commit/rust-default-language-version
  • 296f592 determine rust default language version independent of rust-toolchain.toml
  • 1602328 Merge pull request #3193 from pre-commit/pre-commit-ci-update-config
  • 0142f45 [pre-commit.ci] pre-commit autoupdate
  • d7e21cd Merge pull request #3194 from pre-commit/handle-readonly-3-12
  • 5c3d006 use a simpler gem for testing additional_dependencies
  • 0d4c6da adjust _handle_readonly for typeshed updates
  • 85fe182 Merge pull request #3176 from pre-commit/pre-commit-ci-update-config
  • 74d05b4 [pre-commit.ci] pre-commit autoupdate
  • Additional commits viewable in compare view

Updates pytest from 8.2.1 to 8.3.1

Release notes

Sourced from pytest's releases.

8.3.1

pytest 8.3.1 (2024-07-20)

The 8.3.0 release failed to include the change notes and docs for the release. This patch release remedies this. There are no other changes.

8.3.0

pytest 8.3.0 (2024-07-20)

New features

  • #12231: Added [--xfail-tb]{.title-ref} flag, which turns on traceback output for XFAIL results.

    • If the [--xfail-tb]{.title-ref} flag is not given, tracebacks for XFAIL results are NOT shown.
    • The style of traceback for XFAIL is set with [--tb]{.title-ref}, and can be [auto|long|short|line|native|no]{.title-ref}.
    • Note: Even if you have [--xfail-tb]{.title-ref} set, you won't see them if [--tb=no]{.title-ref}.

    Some history:

    With pytest 8.0, [-rx]{.title-ref} or [-ra]{.title-ref} would not only turn on summary reports for xfail, but also report the tracebacks for xfail results. This caused issues with some projects that utilize xfail, but don't want to see all of the xfail tracebacks.

    This change detaches xfail tracebacks from [-rx]{.title-ref}, and now we turn on xfail tracebacks with [--xfail-tb]{.title-ref}. With this, the default [-rx]{.title-ref}/ [-ra]{.title-ref} behavior is identical to pre-8.0 with respect to xfail tracebacks. While this is a behavior change, it brings default behavior back to pre-8.0.0 behavior, which ultimately was considered the better course of action.

  • #12281: Added support for keyword matching in marker expressions.

    Now tests can be selected by marker keyword arguments. Supported values are int{.interpreted-text role="class"}, (unescaped) str{.interpreted-text role="class"}, bool{.interpreted-text role="class"} & None{.interpreted-text role="data"}.

    See marker examples <marker_keyword_expression_example>{.interpreted-text role="ref"} for more information.

    -- by lovetheguitar{.interpreted-text role="user"}

  • #12567: Added --no-fold-skipped command line option.

    If this option is set, then skipped tests in short summary are no longer grouped by reason but all tests are printed individually with their nodeid in the same way as other statuses.

    -- by pbrezina{.interpreted-text role="user"}

Improvements in existing functionality

  • #12469: The console output now uses the "third-party plugins" terminology, replacing the previously established but confusing and outdated reference to setuptools <setuptools:index>{.interpreted-text role="std:doc"} -- by webknjaz{.interpreted-text role="user"}.

  • #12544, #12545: Python virtual environment detection was improved by checking for a pyvenv.cfg{.interpreted-text role="file"} file, ensuring reliable detection on various platforms -- by zachsnickers{.interpreted-text role="user"}.

... (truncated)

Commits
  • de98446 Prepare release version 8.3.1
  • bd0a042 Merge pull request #12636 from pytest-dev/update-release-notes
  • 664325b doc/changelog: update 8.3.0 notes
  • 19d225d Merge pull request #12635 from pytest-dev/release-8.3.0
  • bc33028 Prepare release version 8.3.0
  • a7d5a8e Merge pull request #12557 from x612skm/maintainence/11771-pypy-3.9-bump
  • ced7072 Add a change note for PR #11771
  • d42b76d Adjust test_errors_in_xfail_skip_expressions for PyPy
  • 9eee45a Bump PyPy runtime to v3.9 @ GHA
  • d489247 Fix caching of parameterized fixtures (#12600)
  • Additional commits viewable in compare view

Updates pytest-subtests from 0.12.1 to 0.13.1

Release notes

Sourced from pytest-subtests's releases.

v0.13.1

No release notes provided.

v0.13.0

What's Changed

New Contributors

Full Changelog: pytest-dev/pytest-subtests@v0.12.1...v0.13.0

Changelog

Sourced from pytest-subtests's changelog.

0.13.1 (2024-07-16)

  • Fixed bug were an extra test would execute when -x/--exitfirst was used ([#139](https://github.com/pytest-dev/pytest-subtests/issues/139)_).

.. _#139: pytest-dev/pytest-subtests#139

0.13.0 (2024-07-07)

  • Dropped support for EOL Python 3.7.
  • Added support for -x/--exitfirst ([#134](https://github.com/pytest-dev/pytest-subtests/issues/134)_).
  • Hide the traceback inside the SubTests.test() method ([#131](https://github.com/pytest-dev/pytest-subtests/issues/131)_).

.. _#131: pytest-dev/pytest-subtests#131 .. _#134: pytest-dev/pytest-subtests#134

Commits
  • 3671b40 Release 0.13.1
  • c02c55e Fix off by one error when using -x (#139)
  • cbff3e1 Merge pull request #138 from nicoddemus/adjust-deploy
  • c2ccbfb Fix deploy and update instructions
  • 358790b Merge pull request #137 from pytest-dev/release-0.13.0
  • 3c6a72c Automatically merge branch during deploy
  • ed8f899 Create a GH release during deploy
  • cb5a922 Update CHANGELOG
  • 79a6bc1 Simplify CI configuration
  • eef3c59 Drop support for Python 3.7
  • Additional commits viewable in compare view

Updates ruff from 0.4.4 to 0.5.4

Release notes

Sourced from ruff's releases.

0.5.4

Release Notes

Rule changes

  • [ruff] Rename RUF007 to zip-instead-of-pairwise (#12399)

Bug fixes

  • [flake8-builtins] Avoid shadowing diagnostics for @override methods (#12415)
  • [flake8-comprehensions] Insert parentheses for multi-argument generators (#12422)
  • [pydocstyle] Handle escaped docstrings within docstring (D301) (#12192)

Documentation

  • Fix GitHub link to Neovim setup (#12410)
  • Fix output-format default in settings reference (#12409)

Install ruff 0.5.4

Install prebuilt binaries via shell script

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/astral-sh/ruff/releases/download/0.5.4/ruff-installer.sh | sh

Install prebuilt binaries via powershell script

powershell -c "irm https://github.com/astral-sh/ruff/releases/download/0.5.4/ruff-installer.ps1 | iex"

Download ruff 0.5.4

File Platform Checksum
ruff-aarch64-apple-darwin.tar.gz Apple Silicon macOS checksum
ruff-x86_64-apple-darwin.tar.gz Intel macOS checksum
ruff-aarch64-pc-windows-msvc.zip ARM64 Windows checksum
ruff-i686-pc-windows-msvc.zip x86 Windows checksum
ruff-x86_64-pc-windows-msvc.zip x64 Windows checksum
ruff-aarch64-unknown-linux-gnu.tar.gz ARM64 Linux checksum
ruff-i686-unknown-linux-gnu.tar.gz x86 Linux checksum
ruff-powerpc64-unknown-linux-gnu.tar.gz PPC64 Linux checksum
ruff-powerpc64le-unknown-linux-gnu.tar.gz PPC64LE Linux checksum
ruff-s390x-unknown-linux-gnu.tar.gz S390x Linux checksum
ruff-x86_64-unknown-linux-gnu.tar.gz x64 Linux checksum
ruff-armv7-unknown-linux-gnueabihf.tar.gz ARMv7 Linux checksum
ruff-aarch64-unknown-linux-musl.tar.gz ARM64 MUSL Linux checksum
ruff-i686-unknown-linux-musl.tar.gz x86 MUSL Linux checksum

... (truncated)

Changelog

Sourced from ruff's changelog.

0.5.4

Rule changes

  • [ruff] Rename RUF007 to zip-instead-of-pairwise (#12399)

Bug fixes

  • [flake8-builtins] Avoid shadowing diagnostics for @override methods (#12415)
  • [flake8-comprehensions] Insert parentheses for multi-argument generators (#12422)
  • [pydocstyle] Handle escaped docstrings within docstring (D301) (#12192)

Documentation<...

Description has been truncated

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

| Package | From | To |
| --- | --- | --- |
| [django-cors-headers](https://github.com/adamchainz/django-cors-headers) | `4.3.1` | `4.4.0` |
| [django-model-utils](https://github.com/jazzband/django-model-utils) | `4.5.0` | `4.5.1` |
| [django-storages](https://github.com/jschneier/django-storages) | `1.14.2` | `1.14.4` |
| [sentry-sdk](https://github.com/getsentry/sentry-python) | `1.45.0` | `2.10.0` |
| [pre-commit](https://github.com/pre-commit/pre-commit) | `3.5.0` | `3.7.1` |
| [pytest](https://github.com/pytest-dev/pytest) | `8.2.1` | `8.3.1` |
| [pytest-subtests](https://github.com/pytest-dev/pytest-subtests) | `0.12.1` | `0.13.1` |
| [ruff](https://github.com/astral-sh/ruff) | `0.4.4` | `0.5.4` |
| [pytest-ruff](https://github.com/businho/pytest-ruff) | `0.3.2` | `0.4.1` |
| [aws-sam-cli](https://github.com/aws/aws-sam-cli) | `1.115.0` | `1.120.0` |



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

Updates `django-model-utils` from 4.5.0 to 4.5.1
- [Release notes](https://github.com/jazzband/django-model-utils/releases)
- [Changelog](https://github.com/jazzband/django-model-utils/blob/master/CHANGES.rst)
- [Commits](jazzband/django-model-utils@4.5.0...4.5.1)

Updates `django-storages` from 1.14.2 to 1.14.4
- [Changelog](https://github.com/jschneier/django-storages/blob/master/CHANGELOG.rst)
- [Commits](jschneier/django-storages@1.14.2...1.14.4)

Updates `sentry-sdk` from 1.45.0 to 2.10.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.45.0...2.10.0)

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

Updates `pre-commit` from 3.5.0 to 3.7.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...v3.7.1)

Updates `pytest` from 8.2.1 to 8.3.1
- [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.3.1)

Updates `pytest-subtests` from 0.12.1 to 0.13.1
- [Release notes](https://github.com/pytest-dev/pytest-subtests/releases)
- [Changelog](https://github.com/pytest-dev/pytest-subtests/blob/main/CHANGELOG.rst)
- [Commits](pytest-dev/pytest-subtests@v0.12.1...v0.13.1)

Updates `ruff` from 0.4.4 to 0.5.4
- [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.4...0.5.4)

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

Updates `aws-sam-cli` from 1.115.0 to 1.120.0
- [Release notes](https://github.com/aws/aws-sam-cli/releases)
- [Commits](aws/aws-sam-cli@v1.115.0...v1.120.0)

---
updated-dependencies:
- dependency-name: django-cors-headers
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-packages
- dependency-name: django-model-utils
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-packages
- dependency-name: django-storages
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-packages
- dependency-name: sentry-sdk
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: python-packages
- dependency-name: urllib3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-packages
- dependency-name: pre-commit
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-packages
- dependency-name: pytest
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-packages
- dependency-name: pytest-subtests
  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: pytest-ruff
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-packages
- dependency-name: aws-sam-cli
  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 Jul 22, 2024
@dependabot dependabot bot requested a review from symroe July 22, 2024 03:45
Copy link

codecov bot commented Jul 22, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 77.81%. Comparing base (5129aac) to head (30990f4).

Additional details and impacted files
@@           Coverage Diff           @@
##           master     #857   +/-   ##
=======================================
  Coverage   77.81%   77.81%           
=======================================
  Files          28       28           
  Lines         568      568           
=======================================
  Hits          442      442           
  Misses        126      126           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

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