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 7 updates #444

Closed
wants to merge 2 commits into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github May 23, 2024

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

Package From To
requests 2.31.0 2.32.2
aws-lambda-powertools 2.37.0 2.38.1
boto3 1.34.98 1.34.111
aws-xray-sdk 2.13.0 2.13.1
pylint 3.1.0 3.2.2
types-requests 2.31.0.20240406 2.32.0.20240523
pytest 8.2.0 8.2.1

Updates requests from 2.31.0 to 2.32.2

Release notes

Sourced from requests's releases.

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. 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)

Bugfixes

  • Fixed bug in length detection where emoji length was incorrectly calculated in the request content-length. (#6589)
  • Fixed deserialization bug in JSONDecodeError. (#6629)
  • Fixed bug where an extra leading / (path separator) could lead urllib3 to unnecessarily reparse the request URI. (#6644)

... (truncated)

Changelog

Sourced from requests's changelog.

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)

Bugfixes

  • Fixed bug in length detection where emoji length was incorrectly calculated in the request content-length. (#6589)
  • Fixed deserialization bug in JSONDecodeError. (#6629)
  • Fixed bug where an extra leading / (path separator) could lead urllib3 to unnecessarily reparse the request URI. (#6644)

Deprecations

... (truncated)

Commits
  • 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
  • 970e8ce v2.32.1
  • d6ebc4a v2.32.0
  • 9a40d12 Avoid reloading root certificates to improve concurrent performance (#6667)
  • 0c030f7 Merge pull request #6702 from nateprewitt/no_char_detection
  • 555b870 Allow character detection dependencies to be optional in post-packaging steps
  • d6dded3 Merge pull request #6700 from franekmagiera/update-redirect-to-invalid-uri-test
  • Additional commits viewable in compare view

Updates aws-lambda-powertools from 2.37.0 to 2.38.1

Changelog

Sourced from aws-lambda-powertools's changelog.

[v2.38.1] - 2024-05-17

Bug Fixes

  • logger: reverting logger child modification (#4363)

Maintenance

  • version bump

[v2.38.0] - 2024-05-17

Bug Fixes

  • ci: apply lessons learned to monthly roadmap reminder cross-repo (#4078)
  • event-sources: sane defaults for authorizer v1 and v2 (#4298)
  • logger: correctly pick powertools or custom handler in custom environments (#4295)
  • parser: make etag optional field on S3 notification events (#4173)
  • typing: resolved_headers_field is not Optional (#4148)

Code Refactoring

  • data-masking: remove Non-GA comments (#4334)
  • parser: only infer type hints when necessary (#4183)

Documentation

  • general: update documentation to add info about v3 (#4234)
  • homepage: add link to new and official workshop (#4292)
  • idempotency: fix highlight and import path (#4154)
  • roadmap: april updates (#4181)

Features

  • event_handler: add support for persisting authorization session in OpenAPI (#4312)
  • event_handler: add decorator for HTTP HEAD verb (#4275)
  • logger-utils: preserve log level for discovered third-party top-level loggers (#4299)

Maintenance

  • version bump
  • ci: bump upload artifact action to v4 (#4355)
  • ci: add branch v3 to quality check and e2e actions (#4232)
  • ci: bump download artifact action to v4 (#4358)
  • deps: bump actions/download-artifact from 4.1.4 to 4.1.5 (#4161)
  • deps: bump actions/checkout from 4.1.3 to 4.1.4 (#4206)
  • deps: bump ossf/scorecard-action from 2.3.1 to 2.3.3 (#4315)
  • deps: bump github.com/aws/aws-sdk-go-v2/config from 1.27.12 to 1.27.13 in /layer/scripts/layer-balancer in the layer-balancer group (#4319)
  • deps: bump actions/download-artifact from 4.1.6 to 4.1.7 (#4205)
  • deps: bump squidfunk/mkdocs-material from 521644b to e309089 in /docs (#4216)

... (truncated)

Commits
  • f3e5641 chore: version bump
  • ded5622 fix(logger): reverting logger child modification (#4363)
  • d0293d0 chore(ci): layer docs update (#4361)
  • 7ac95d9 chore(ci): bump version to 2.38.0 (#4360)
  • 0864a98 chore(ci): bump download artifact action to v4 (#4358)
  • 38a4620 chore(ci): bump upload artifact action to v4 (#4355)
  • 7a16454 chore(ci): changelog rebuild (#4350)
  • edf556e feat(logger-utils): preserve log level for discovered third-party top-level l...
  • a8a8018 chore(deps-dev): bump aws-cdk-lib from 2.141.0 to 2.142.1 (#4352)
  • 5993cbd chore(deps-dev): bump cdklabs-generative-ai-cdk-constructs from 0.1.146 to 0....
  • Additional commits viewable in compare view

Updates boto3 from 1.34.98 to 1.34.111

Changelog

Sourced from boto3's changelog.

1.34.111

  • api-change:chatbot: [botocore] This change adds support for tagging Chatbot configurations.
  • api-change:cloudformation: [botocore] Added DeletionMode FORCE_DELETE_STACK for deleting a stack that is stuck in DELETE_FAILED state due to resource deletion failure.
  • api-change:kms: [botocore] This release includes feature to import customer's asymmetric (RSA, ECC and SM2) and HMAC keys into KMS in China.
  • api-change:opensearch: [botocore] This release adds support for enabling or disabling a data source configured as part of Zero-ETL integration with Amazon S3, by setting its status.
  • api-change:wafv2: [botocore] You can now use Security Lake to collect web ACL traffic data.

1.34.110

  • api-change:cloudfront: [botocore] Model update; no change to SDK functionality.
  • api-change:glue: [botocore] Add Maintenance window to CreateJob and UpdateJob APIs and JobRun response. Add a new Job Run State for EXPIRED.
  • api-change:lightsail: [botocore] This release adds support for Amazon Lightsail instances to switch between dual-stack or IPv4 only and IPv6-only public IP address types.
  • api-change:mailmanager: [botocore] This release includes a new Amazon SES feature called Mail Manager, which is a set of email gateway capabilities designed to help customers strengthen their organization's email infrastructure, simplify email workflow management, and streamline email compliance control.
  • api-change:pi: [botocore] Performance Insights added a new input parameter called AuthorizedActions to support the fine-grained access feature. Performance Insights also restricted the acceptable input characters.
  • api-change:rds: [botocore] Updates Amazon RDS documentation for Db2 license through AWS Marketplace.
  • api-change:storagegateway: [botocore] Added new SMBSecurityStrategy enum named MandatoryEncryptionNoAes128, new mode enforces encryption and disables AES 128-bit algorithums.

1.34.109

  • api-change:bedrock-agent: [botocore] This release adds support for using Guardrails with Bedrock Agents.
  • api-change:bedrock-agent-runtime: [botocore] This release adds support for using Guardrails with Bedrock Agents.
  • api-change:controltower: [botocore] Added ListControlOperations API and filtering support for ListEnabledControls API. Updates also includes added metadata for enabled controls and control operations.
  • api-change:osis: [botocore] Add support for creating an OpenSearch Ingestion pipeline that is attached to a provided VPC. Add information about the destinations of an OpenSearch Ingestion pipeline to the GetPipeline and ListPipelines APIs.
  • api-change:rds: [botocore] This release adds support for EngineLifecycleSupport on DBInstances, DBClusters, and GlobalClusters.
  • api-change:secretsmanager: [botocore] add v2 smoke tests and smithy smokeTests trait for SDK testing

1.34.108

  • api-change:application-autoscaling: [botocore] add v2 smoke tests and smithy smokeTests trait for SDK testing.
  • api-change:codebuild: [botocore] Aws CodeBuild now supports 36 hours build timeout
  • api-change:elbv2: [botocore] This release adds dualstack-without-public-ipv4 IP address type for ALB.
  • api-change:lakeformation: [botocore] Introduces a new API, GetDataLakePrincipal, that returns the identity of the invoking principal
  • api-change:transfer: [botocore] Enable use of CloudFormation traits in Smithy model to improve generated CloudFormation schema from the Smithy API model.

1.34.107

  • api-change:acm-pca: [botocore] This release adds support for waiters to fail on AccessDeniedException when having insufficient permissions
  • api-change:connect: [botocore] Adding Contact Flow metrics to the GetMetricDataV2 API
  • api-change:kafka: [botocore] AWS MSK support for Broker Removal.
  • api-change:mwaa: [botocore] Amazon MWAA now supports Airflow web server auto scaling to automatically handle increased demand from REST APIs, Command Line Interface (CLI), or more Airflow User Interface (UI) users. Customers can specify maximum and minimum web server instances during environment creation and update workflow.

... (truncated)

Commits
  • 811e337 Merge branch 'release-1.34.111'
  • 9ab8596 Bumping version to 1.34.111
  • 02533ec Add changelog entries from botocore
  • 2c5cbf6 Merge branch 'release-1.34.110'
  • fb608de Merge branch 'release-1.34.110' into develop
  • 0684532 Bumping version to 1.34.110
  • c90c0db Add changelog entries from botocore
  • c3ff201 Merge branch 'release-1.34.109'
  • 75b6165 Merge branch 'release-1.34.109' into develop
  • 95c4f21 Bumping version to 1.34.109
  • Additional commits viewable in compare view

Updates aws-xray-sdk from 2.13.0 to 2.13.1

Release notes

Sourced from aws-xray-sdk's releases.

2.13.1 Release

See details in CHANGELOG

Changelog

Sourced from aws-xray-sdk's changelog.

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
  • 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
  • 3582607 [Lambda] Fix logging to only happen inside lambda function
  • bf8f919 Merge pull request #428 from aws/dependabot/pip/sample-apps/flask/werkzeug-3.0.3
  • 0fc4621 Merge branch 'master' into dependabot/pip/sample-apps/flask/werkzeug-3.0.3
  • d1bdca7 Merge pull request #425 from aws/dependabot/pip/sample-apps/flask/idna-3.7
  • 347d420 Merge branch 'master' into dependabot/pip/sample-apps/flask/idna-3.7
  • 7503c2c Merge pull request #430 from jj22ee/pytest-asyncio-upgrade
  • 07ac6f8 update pytest-asyncio to >= 0.21.2
  • Additional commits viewable in compare view

Updates pylint from 3.1.0 to 3.2.2

Commits
  • 769ffd2 Bump pylint to 3.2.2, update changelog (#9658)
  • 98c5af9 Fix false-positive with contextmanager missing cleanup (#9654) (#9657)
  • 9a9db8f Update astroid to 3.2.2 (#9655) (#9656)
  • 9223172 Bump pylint to 3.2.1, update changelog
  • 926547b [trailing-comma-tuple] Fix enabling with message control locally when disable...
  • 1498675 Fix linterstats.get_module_message_count() (#9146) (#9648)
  • aed496a Fix FP for possibly-used-before-assignment with assert_never() (#9645) (#...
  • 9dae975 [Backport maintenance/3.2.x] Add --prefer-stubs=y option (#9646)
  • a03ceae Add --prefer-stubs=y option (#9632)
  • b2ea316 [Backport maintenance/3.2.x] Don't emit incorrect-variance for type parameter...
  • Additional commits viewable in compare view

Updates types-requests from 2.31.0.20240406 to 2.32.0.20240523

Commits

Updates pytest from 8.2.0 to 8.2.1

Release notes

Sourced from pytest's releases.

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
  • 66ff8df Prepare release version 8.2.1
  • 3ffcfd1 Merge pull request #12340 from pytest-dev/backport-12334-to-8.2.x
  • 0b28313 [8.2.x] Add Python 3.13 (beta) support
  • f3dd93a [8.2.x] Attest package provenance (#12335)
  • bb5a125 [8.2.x] Spelling (#12331)
  • f179bf2 Merge pull request #12327 from pytest-dev/backport-12325-to-8.2.x
  • 2b671b5 [8.2.x] cacheprovider: fix .pytest_cache not being world-readable
  • 65ab7cb Merge pull request #12324 from pytest-dev/backport-12320-to-8.2.x
  • 4d5fb7d Merge pull request #12319 from pytest-dev/backport-12311-to-8.2.x
  • cbe5996 [8.2.x] changelog: document unittest 8.2 change as breaking
  • 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 7 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [requests](https://github.com/psf/requests) | `2.31.0` | `2.32.2` |
| [aws-lambda-powertools](https://github.com/aws-powertools/powertools-lambda-python) | `2.37.0` | `2.38.1` |
| [boto3](https://github.com/boto/boto3) | `1.34.98` | `1.34.111` |
| [aws-xray-sdk](https://github.com/aws/aws-xray-sdk-python) | `2.13.0` | `2.13.1` |
| [pylint](https://github.com/pylint-dev/pylint) | `3.1.0` | `3.2.2` |
| [types-requests](https://github.com/python/typeshed) | `2.31.0.20240406` | `2.32.0.20240523` |
| [pytest](https://github.com/pytest-dev/pytest) | `8.2.0` | `8.2.1` |



Updates `requests` from 2.31.0 to 2.32.2
- [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.2)

Updates `aws-lambda-powertools` from 2.37.0 to 2.38.1
- [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.38.1)

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

Updates `aws-xray-sdk` from 2.13.0 to 2.13.1
- [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.13.1)

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

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

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

---
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-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 May 23, 2024
Copy link

changeset-bot bot commented May 23, 2024

🦋 Changeset detected

Latest commit: aed9681

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 Jun 25, 2024

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

@dependabot dependabot bot closed this Jun 25, 2024
@dependabot dependabot bot deleted the dependabot/pip/python-53b4c1a6c6 branch June 25, 2024 15:33
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