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 #466

Closed
wants to merge 2 commits into from

Conversation

dependabot[bot]
Copy link
Contributor

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

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

Package From To
requests 2.31.0 2.32.3
aws-lambda-powertools 2.37.0 2.39.1
boto3 1.34.98 1.34.131
aws-xray-sdk 2.13.0 2.14.0
pylint 3.1.0 3.2.3
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.39.1

Release notes

Sourced from aws-lambda-powertools's releases.

v2.39.1

Summary

The regression issue caused by PR aws-powertools/powertools-lambda-python#4421 is resolved in this patch release. The issue occurred due to static typing importing Pydantic, as it went undetected in our pipeline and code review.

To prevent from happening again, we will introduce dynamic tests for all optional dependencies. We will pause new releases until that is implemented and verified. For further improvement, we will look into making daily pre-releases to help create more complex canary tests.

Changes

🐛 Bug and hot fixes

This release was made possible by the following contributors:

@​github-actions, @​github-actions[bot] and @​leandrodamascena

v2.39.0

Summary

This release improves Event Handler with (a) better serialization error for unsupported data types, and (b) middlewares are now triggered when a route is not found (404). We also crushed OpenAPI bugs for a smoother experience 🪲.

Thanks to @knightmre, Event Source Data Classes now features (a) updates Cognito User Pool User Migration event with verification link, and (b) new Pre-token generation and custom sender events.

🌟 ⭐ A big thank you to our new contributors: @knightmre, @phipag, @keithrozario, and @stevenhoelscher.

Event Handler middlewares are now triggered even when a route is not found (404)

Docs

You can now run middlewares even when a route is not found. Before, Event Handler immediately returned a HTTP 404 (Not Found). However, we learned from customers that key middleware logic should always run regardless, hence the fix.

This allows you to consistently perform cross-cutting concerns like logging, header injection, authorization, etc. even for invalid routes.

middleware

New CloudFormation Custom Resource Event Source Data Class

Docs

You can now use CloudFormationCustomResourceEvent for a better experience with type hinting and code completion support.

NOTE. We recommend customers to use CloudFormation Custom Resource Helper library to author custom resources.

Better error message for unsupported data types in Event Handler

Docs

We now raise a SerializationError when trying to serialize unsupported data types. Before, Event Handler did not distinguish between unsupported type or object altogether, like SQLAlchemy models.

... (truncated)

Changelog

Sourced from aws-lambda-powertools's changelog.

[v2.39.1] - 2024-06-13

Bug Fixes

  • event_handler: regression making pydantic required (it should not) (#4500)

Maintenance

  • version bump

[v2.39.0] - 2024-06-13

Bug Fixes

  • event_handler: do not skip middleware and exception handlers on 404 error (#4492)
  • event_handler: raise more specific SerializationError exception for unsupported types in data validation (#4415)
  • event_handler: security scheme unhashable list when working with router (#4421)
  • event_handler: CORS Origin for ALBResolver multi-headers (#4385)
  • idempotency: POWERTOOLS_IDEMPOTENCY_DISABLED should respect truthy values (#4391)

Documentation

  • homepage: Change installation to CDK v2 (#4351)
  • public reference: add Recast as a public reference (#4491)

Features

  • event_source: add CloudFormationCustomResourceEvent data class. (#4342)
  • events: Update and Add Cognito User Pool Events (#4423)

Maintenance

  • version bump
  • deps: bump the layer-balancer group in /layer/scripts/layer-balancer with 3 updates (#4369)
  • deps: bump the layer-balancer group in /layer/scripts/layer-balancer with 3 updates (#4468)
  • deps: bump datadog-lambda from 5.94.0 to 6.95.0 (#4471)
  • deps: bump redis from 5.0.4 to 5.0.5 (#4464)
  • deps: bump aws-encryption-sdk from 3.2.0 to 3.3.0 (#4393)
  • deps: bump codecov/codecov-action from 4.4.0 to 4.4.1 (#4376)
  • deps: bump squidfunk/mkdocs-material from 8a87f05 to 96abcbb in /docs (#4461)
  • deps: bump typing-extensions from 4.12.1 to 4.12.2 (#4470)
  • deps: bump the layer-balancer group in /layer/scripts/layer-balancer with 2 updates (#4396)
  • deps: bump aws-xray-sdk from 2.13.0 to 2.13.1 (#4379)
  • deps: bump actions/dependency-review-action from 4.3.2 to 4.3.3 (#4456)
  • deps: bump aws-xray-sdk from 2.13.1 to 2.14.0 (#4453)
  • deps: bump typing-extensions from 4.11.0 to 4.12.0 (#4404)
  • deps: bump squidfunk/mkdocs-material from 5358893 to 8a87f05 in /docs (#4408)
  • deps: bump zgosalvez/github-actions-ensure-sha-pinned-actions from 3.0.6 to 3.0.7 (#4478)
  • deps: bump squidfunk/mkdocs-material from 48d1914 to 5358893 in /docs (#4377)
  • deps: bump the layer-balancer group in /layer/scripts/layer-balancer with 3 updates (#4444)

... (truncated)

Commits
  • 38690f6 chore: version bump
  • cb1b194 fix(event_handler): regression making pydantic required (it should not) (#4500)
  • 1655ee5 chore(ci): layer docs update (#4496)
  • 3e827c0 chore(ci): bump version to 2.39.0 (#4495)
  • acc919f chore(ci): changelog rebuild (#4494)
  • 242da37 chore(deps): bump actions/checkout from 4.1.6 to 4.1.7 (#4493)
  • 463dd47 fix(event_handler): do not skip middleware and exception handlers on 404 erro...
  • e8dfebf docs(public reference): add Recast as a public reference (#4491)
  • 81892c1 feat(events): Update and Add Cognito User Pool Events (#4423)
  • b767d30 chore(ci): changelog rebuild (#4490)
  • Additional commits viewable in compare view

Updates boto3 from 1.34.98 to 1.34.131

Changelog

Sourced from boto3's changelog.

1.34.131

  • api-change:bedrock-runtime: [botocore] This release adds document support to Converse and ConverseStream APIs
  • api-change:codeartifact: [botocore] Add support for the Cargo package format.
  • api-change:compute-optimizer: [botocore] This release enables AWS Compute Optimizer to analyze and generate optimization recommendations for Amazon RDS MySQL and RDS PostgreSQL.
  • api-change:cost-optimization-hub: [botocore] This release enables AWS Cost Optimization Hub to show cost optimization recommendations for Amazon RDS MySQL and RDS PostgreSQL.
  • api-change:dynamodb: [botocore] Doc-only update for DynamoDB. Fixed Important note in 6 Global table APIs - CreateGlobalTable, DescribeGlobalTable, DescribeGlobalTableSettings, ListGlobalTables, UpdateGlobalTable, and UpdateGlobalTableSettings.
  • api-change:glue: [botocore] Fix Glue paginators for Jobs, JobRuns, Triggers, Blueprints and Workflows.
  • api-change:ivs-realtime: [botocore] IVS Real-Time now offers customers the ability to record individual stage participants to S3.
  • api-change:sagemaker: [botocore] Adds support for model references in Hub service, and adds support for cross-account access of Hubs
  • api-change:securityhub: [botocore] Documentation updates for Security Hub

1.34.130

  • api-change:artifact: [botocore] This release adds an acceptanceType field to the ReportSummary structure (used in the ListReports API response).
  • api-change:athena: [botocore] Add v2 smoke tests and smithy smokeTests trait for SDK testing.
  • api-change:cur: [botocore] Add v2 smoke tests and smithy smokeTests trait for SDK testing.
  • api-change:directconnect: [botocore] Add v2 smoke tests and smithy smokeTests trait for SDK testing.
  • api-change:elastictranscoder: [botocore] Add v2 smoke tests and smithy smokeTests trait for SDK testing.
  • api-change:opensearch: [botocore] This release enables customers to use JSON Web Tokens (JWT) for authentication on their Amazon OpenSearch Service domains.

1.34.129

  • api-change:bedrock-runtime: [botocore] This release adds support for using Guardrails with the Converse and ConverseStream APIs.
  • api-change:cloudtrail: [botocore] Add v2 smoke tests and smithy smokeTests trait for SDK testing.
  • api-change:config: [botocore] Add v2 smoke tests and smithy smokeTests trait for SDK testing.
  • api-change:eks: [botocore] This release adds support to surface async fargate customer errors from async path to customer through describe-fargate-profile API response.
  • api-change:lightsail: [botocore] Add v2 smoke tests and smithy smokeTests trait for SDK testing.
  • api-change:polly: [botocore] Add v2 smoke tests and smithy smokeTests trait for SDK testing.
  • api-change:rekognition: [botocore] Add v2 smoke tests and smithy smokeTests trait for SDK testing.
  • api-change:sagemaker: [botocore] Launched a new feature in SageMaker to provide managed MLflow Tracking Servers for customers to track ML experiments. This release also adds a new capability of attaching additional storage to SageMaker HyperPod cluster instances.
  • api-change:shield: [botocore] Add v2 smoke tests and smithy smokeTests trait for SDK testing.
  • api-change:snowball: [botocore] Add v2 smoke tests and smithy smokeTests trait for SDK testing.

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.

... (truncated)

Commits
  • fd8bcca Merge branch 'release-1.34.131'
  • af823bd Bumping version to 1.34.131
  • 039b973 Add changelog entries from botocore
  • 7cf3113 Merge branch 'release-1.34.130'
  • 8541840 Merge branch 'release-1.34.130' into develop
  • d5a7f62 Bumping version to 1.34.130
  • 5c5f581 Add changelog entries from botocore
  • b93e4e0 Merge branch 'release-1.34.129'
  • 50e9288 Merge branch 'release-1.34.129' into develop
  • 8bd2a39 Bumping version to 1.34.129
  • 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 pylint from 3.1.0 to 3.2.3

Commits
  • 918d216 Bump pylint to 3.2.3, update changelog
  • 8aba7d1 Fix false positive in use-yield-from when using yield return (#9700) (#9701)
  • 192727b [multiple-statements] Make pylint compatible with black's 2024 style (#9697) ...
  • 7e5e4f9 Fix a false positive for redefined-outer-name (#9678) (#9695)
  • 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)
  • 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 7 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.39.1` |
| [boto3](https://github.com/boto/boto3) | `1.34.98` | `1.34.131` |
| [aws-xray-sdk](https://github.com/aws/aws-xray-sdk-python) | `2.13.0` | `2.14.0` |
| [pylint](https://github.com/pylint-dev/pylint) | `3.1.0` | `3.2.3` |
| [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.39.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.39.1)

Updates `boto3` from 1.34.98 to 1.34.131
- [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.131)

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 `pylint` from 3.1.0 to 3.2.3
- [Release notes](https://github.com/pylint-dev/pylint/releases)
- [Commits](pylint-dev/pylint@v3.1.0...v3.2.3)

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: 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 force-pushed the dependabot/pip/python-b6530ef393 branch from 05fb2c3 to f8c8dee Compare June 24, 2024 15:36
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Jun 24, 2024
Copy link

changeset-bot bot commented Jun 24, 2024

🦋 Changeset detected

Latest commit: ca90f69

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

changeset-bot bot commented Jun 24, 2024

⚠️ No Changeset found

Latest commit: 05fb2c3

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a 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-b6530ef393 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