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

chore(deps): bump the python group across 1 directory with 8 updates #481

Closed
wants to merge 2 commits into from

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the python group with 8 updates in the / directory:

Package From To
requests 2.31.0 2.32.3
aws-lambda-powertools 2.37.0 2.41.0
boto3 1.34.98 1.34.143
aws-xray-sdk 2.13.0 2.14.0
mypy 1.10.0 1.10.1
pylint 3.1.0 3.2.5
types-requests 2.31.0.20240406 2.32.0.20240622
pytest 8.2.0 8.2.2

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 aws-lambda-powertools from 2.37.0 to 2.41.0

Release notes

Sourced from aws-lambda-powertools's releases.

v2.41.0

Summary

This release enhances the Batch Processing feature, which you can now customize to not throw an error when the entire batch of items fails to process.

We have also added three new Pydantic models to our Parser feature to work with authorizers in Amazon API Gateway.

Thanks to @​adriantomas, customers can bring their own boto3 client when using Feature Flags feature.

🌟 ⭐ A big thank you to everyone who helped make this release.

Working with full batch failures

Docs

You can now set the raise_on_entire_batch_failure option to False to prevent the Batch Processing utility from throwing a BatchProcessingError, when all records in a batch fail to process. This is useful when working with functions that handle batches with a small number of records, or when you use errors as a flow control mechanism.

batch_process

New Parser models

Docs

You can now use the new Pydantic models to validate payloads originating from authorization events in REST and HTTP APIs.

parser

Here are all the modules we've added:

  • ApiGatewayAuthorizerToken - For REST API Authorizer events using Token
  • ApiGatewayAuthorizerRequest - For REST API Authorizer events using Request
  • ApiGatewayAuthorizerRequestV2 - For HTTP API Authorizer events using Request

Customizing boto3 client configuration for Feature Flags

Docs

You can now bring your own boto3 client instance when using Feature Flags. This is ideal when you want to reuse or customize the appconfigdata client.

appconfig

Last but not least, thanks to @​Wurstnase for helping us to fix a bug when using CORS in the Event Handler feature.

Changes

🌟New features and non-breaking changes

  • feat(feature_flags): allow customers to bring their own boto3 client and session (#4717) by @​adriantomas
  • feat(batch): add option to not raise BatchProcessingError exception when the entire batch fails (#4719) by @​leandrodamascena

... (truncated)

Changelog

Sourced from aws-lambda-powertools's changelog.

[v2.41.0] - 2024-07-11

Maintenance

  • version bump
  • layers: downgrade aws cdk to 2.145.0 (#4739)

[v2.40.1] - 2024-06-28

Bug Fixes

  • event_handler: current_event regression AppSyncResolver Router (#4652)

Maintenance

  • version bump
  • ci: new pre-release 2.40.1a1 (#4653)
  • ci: new pre-release 2.40.1a0 (#4648)
  • deps-dev: bump cfn-lint from 1.3.7 to 1.4.1 (#4646)
  • deps-dev: bump sentry-sdk from 2.7.0 to 2.7.1 (#4645)

[v2.40.0] - 2024-06-27

Bug Fixes

  • event_sources: change partition and offset field types in KafkaEventRecord (#4515)

Documentation

  • homepage: Fix homepage link (#4587)
  • i-made-this: add new article about best practices for accelerating serverless development (#4518)
  • public reference: add Brsk as a public reference (#4597)

Features

  • event-handler: add appsync batch resolvers (#1998)
  • validation: support JSON Schema referencing in validation utils (#4508)

Maintenance

  • version bump
  • ci: add the Metrics feature to nox tests (#4552)
  • ci: new pre-release 2.39.2a5 (#4636)
  • ci: add the Streaming feature to nox tests (#4575)
  • ci: new pre-release 2.39.2a4 (#4629)
  • ci: new pre-release 2.39.2a3 (#4620)
  • ci: add the Event Handler feature to nox tests (#4581)
  • ci: add the Data Class feature to nox tests (#4583)
  • ci: add the Parser feature to nox tests (#4584)

... (truncated)

Commits
  • 3556fcd chore: version bump
  • 4e9a5fe chore(layers): downgrade aws cdk to 2.145.0 (#4739)
  • b5d6384 chore(ci): new pre-release 2.40.2a8 (#4737)
  • 3ae2eec fix(event_handler): make the max_age attribute comply with RFC specification ...
  • 599f6fe chore(deps-dev): bump sentry-sdk from 2.8.0 to 2.9.0 (#4735)
  • 96fd770 chore(deps-dev): bump cfn-lint from 1.5.2 to 1.5.3 (#4734)
  • 2f4b976 chore(deps): bump actions/setup-python from 5.1.0 to 5.1.1 (#4732)
  • 51de224 chore(deps): bump the layer-balancer group in /layer/scripts/layer-balancer w...
  • 10d551c feat(feature_flags): allow customers to bring their own boto3 client and sess...
  • 14b44ce feat(batch): add option to not raise BatchProcessingError exception when th...
  • Additional commits viewable in compare view

Updates boto3 from 1.34.98 to 1.34.143

Commits
  • 5b7ef37 Merge branch 'release-1.34.143'
  • 5527d5b Bumping version to 1.34.143
  • 5b20752 Add changelog entries from botocore
  • dfbe878 Merge branch 'release-1.34.142'
  • f902982 Merge branch 'release-1.34.142' into develop
  • a32f621 Bumping version to 1.34.142
  • 53609dd Add changelog entries from botocore
  • a9a47bd Merge branch 'release-1.34.141' into develop
  • f327879 Merge branch 'release-1.34.141'
  • 37fafd4 Bumping version to 1.34.141
  • Additional commits viewable in compare view

Updates aws-xray-sdk from 2.13.0 to 2.14.0

Release notes

Sourced from aws-xray-sdk's releases.

2.14.0 Release

See details in CHANGELOG

2.13.1 Release

See details in CHANGELOG

Changelog

Sourced from aws-xray-sdk's changelog.

2.14.0

  • bugfix: Fix warning message condition for subsegment ending https://github.com/aws/aws-xray-sdk-python/pull/434

2.13.1

  • improvement: Bump idna from 3.6 to 3.7 in /sample-apps/flask https://github.com/aws/aws-xray-sdk-python/pull/425
  • bugfix: Fix end_time param type docstring from int to float https://github.com/aws/aws-xray-sdk-python/pull/426
  • improvement: Bump werkzeug from 3.0.1 to 3.0.3 in /sample-apps/flask https://github.com/aws/aws-xray-sdk-python/pull/428
  • improvement: [LambdaContext] Create dummy segment when trace header is incomplete https://github.com/aws/aws-xray-sdk-python/pull/429
  • bugfix: [LambdaContext] Fix logging to only happen inside lambda function https://github.com/aws/aws-xray-sdk-python/pull/431
Commits
  • 683fdec Merge pull request #435 from wangzlei/release-2.14.0
  • d4d9b4a Release commit for v2.14.0
  • 934fa95 Merge pull request #433 from aws/dependabot/pip/sample-apps/flask/requests-2....
  • 6a4f7f4 Merge branch 'master' into dependabot/pip/sample-apps/flask/requests-2.32.0
  • 1ea7768 Merge pull request #434 from majanjua-amzn/master
  • e62f0c5 Fix warning message condition for subsegment ending
  • 4f4349b ---
  • e65d05b Merge pull request #432 from jj22ee/release-2.13.1
  • a3ff59a Release commit for v2.13.1
  • 5c38703 Merge pull request #431 from majanjua-amzn/patch-1
  • Additional commits viewable in compare view

Updates mypy from 1.10.0 to 1.10.1

Changelog

Sourced from mypy's changelog.

Mypy 1.10.1

  • Fix error reporting on cached run after uninstallation of third party library (Shantanu, PR 17420)

Acknowledgements

Thanks to all mypy contributors who contributed to this release:

  • Alex Waygood
  • Ali Hamdan
  • Edward Paget
  • Evgeniy Slobodkin
  • Hashem
  • hesam
  • Hugo van Kemenade
  • Ihor
  • James Braza
  • Jelle Zijlstra
  • jhance
  • Jukka Lehtosalo
  • Loïc Simon
  • Marc Mueller
  • Matthieu Devlin
  • Michael R. Crusoe
  • Nikita Sobolev
  • Oskari Lehto
  • Riccardo Di Maio
  • Richard Si
  • roberfi
  • Roman Solomatin
  • Sam Xifaras
  • Shantanu
  • Spencer Brown
  • Srinivas Lade
  • Tamir Duberstein
  • youkaichao

I’d also like to thank my employer, Dropbox, for supporting mypy development.

Mypy 1.9

We’ve just uploaded mypy 1.9 to the Python Package Index (PyPI). Mypy is a static type checker for Python. This release includes new features, performance improvements and bug fixes. You can install it as follows:

python3 -m pip install -U mypy

You can read the full documentation for this release on Read the Docs.

Breaking Changes

Because the version of typeshed we use in mypy 1.9 doesn't support 3.7, neither does mypy 1.9. (Jared Hance, PR 16883)

... (truncated)

Commits
  • c28b525 [1.10 backport] Fix error reporting on cached run after uninstallation of thi...
  • See full diff in compare view

Updates pylint from 3.1.0 to 3.2.5

Commits
  • ae730ac Bump pylint to 3.2.5, update changelog (#9756)
  • be7b5cc [unreachable-code] Fix the false positive in python 3.8 (#9753) (#9755)
  • 6c3ab77 [release] Fix 3.2.4 release date following issue with twine 5.1.0 (#9749) (#9...
  • 425ad66 Bump pylint to 3.2.4, update changelog (#9746)
  • c41c35a [possibly-used-before-assignment] Avoid FP for typing.NoReturn & Never (#9714...
  • 22e4d36 [symilar] Rename the unittest file that had a typo.
  • 3cf313a [symilar] Fix the short form options that weren't being processed properly
  • e13544f [symilar] Fix crash when giving bad options to symilar
  • c3e2579 [unnecessary-list-index-lookup] Fix crashes for uninferrable 'start' value in...
  • 6b66ca6 [undefined-variable] Fix a crash for undefined lineno in annotations (#9705) ...
  • Additional commits viewable in compare view

Updates types-requests from 2.31.0.20240406 to 2.32.0.20240622

Commits

Updates pytest from 8.2.0 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.

8.2.1

pytest 8.2.1 (2024-05-19)

Improvements

  • #12334: Support for Python 3.13 (beta1 at the time of writing).

Bug Fixes

  • #12120: Fix [PermissionError]{.title-ref} crashes arising from directories which are not selected on the command-line.
  • #12191: Keyboard interrupts and system exits are now properly handled during the test collection.
  • #12300: Fixed handling of 'Function not implemented' error under squashfuse_ll, which is a different way to say that the mountpoint is read-only.
  • #12308: Fix a regression in pytest 8.2.0 where the permissions of automatically-created .pytest_cache directories became rwx------ instead of the expected rwxr-xr-x.

Trivial/Internal Changes

  • #12333: pytest releases are now attested using the recent Artifact Attestation support from GitHub, allowing users to verify the provenance of pytest's sdist and wheel artifacts.
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

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 python group with 8 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [requests](https://github.com/psf/requests) | `2.31.0` | `2.32.3` |
| [aws-lambda-powertools](https://github.com/aws-powertools/powertools-lambda-python) | `2.37.0` | `2.41.0` |
| [boto3](https://github.com/boto/boto3) | `1.34.98` | `1.34.143` |
| [aws-xray-sdk](https://github.com/aws/aws-xray-sdk-python) | `2.13.0` | `2.14.0` |
| [mypy](https://github.com/python/mypy) | `1.10.0` | `1.10.1` |
| [pylint](https://github.com/pylint-dev/pylint) | `3.1.0` | `3.2.5` |
| [types-requests](https://github.com/python/typeshed) | `2.31.0.20240406` | `2.32.0.20240622` |
| [pytest](https://github.com/pytest-dev/pytest) | `8.2.0` | `8.2.2` |



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 `aws-lambda-powertools` from 2.37.0 to 2.41.0
- [Release notes](https://github.com/aws-powertools/powertools-lambda-python/releases)
- [Changelog](https://github.com/aws-powertools/powertools-lambda-python/blob/develop/CHANGELOG.md)
- [Commits](aws-powertools/powertools-lambda-python@v2.37.0...v2.41.0)

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

Updates `aws-xray-sdk` from 2.13.0 to 2.14.0
- [Release notes](https://github.com/aws/aws-xray-sdk-python/releases)
- [Changelog](https://github.com/aws/aws-xray-sdk-python/blob/master/CHANGELOG.rst)
- [Commits](aws/aws-xray-sdk-python@2.13.0...2.14.0)

Updates `mypy` from 1.10.0 to 1.10.1
- [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md)
- [Commits](python/mypy@v1.10.0...v1.10.1)

Updates `pylint` from 3.1.0 to 3.2.5
- [Release notes](https://github.com/pylint-dev/pylint/releases)
- [Commits](pylint-dev/pylint@v3.1.0...v3.2.5)

Updates `types-requests` from 2.31.0.20240406 to 2.32.0.20240622
- [Commits](https://github.com/python/typeshed/commits)

Updates `pytest` from 8.2.0 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.0...8.2.2)

---
updated-dependencies:
- dependency-name: requests
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python
- dependency-name: aws-lambda-powertools
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python
- dependency-name: boto3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python
- dependency-name: aws-xray-sdk
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python
- dependency-name: mypy
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: python
- dependency-name: pylint
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python
- dependency-name: types-requests
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python
- dependency-name: pytest
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: python
...

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 Jul 11, 2024
Copy link

changeset-bot bot commented Jul 11, 2024

🦋 Changeset detected

Latest commit: ecfee25

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 1 package
Name Type
arcane-scripts Patch

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

Copy link
Contributor Author

dependabot bot commented on behalf of github Jul 15, 2024

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

@dependabot dependabot bot closed this Jul 15, 2024
@dependabot dependabot bot deleted the dependabot/pip/python-51d73b39b4 branch July 15, 2024 15:56
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.

0 participants