Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 22, 2025

Bumps the canary-pip-dependencies group with 3 updates in the /canary directory: black, aws-lambda-powertools[all,aws-sdk] and aws-lambda-powertools.

Updates black from 25.1.0 to 25.9.0

Release notes

Sourced from black's releases.

25.9.0

Highlights

  • Remove support for pre-python 3.7 await/async as soft keywords/variable names (#4676)

Stable style

  • Fix crash while formatting a long del statement containing tuples (#4628)
  • Fix crash while formatting expressions using the walrus operator in complex with statements (#4630)
  • Handle # fmt: skip followed by a comment at the end of file (#4635)
  • Fix crash when a tuple appears in the as clause of a with statement (#4634)
  • Fix crash when tuple is used as a context manager inside a with statement (#4646)
  • Fix crash when formatting a \ followed by a \r followed by a comment (#4663)
  • Fix crash on a \\r\n (#4673)
  • Fix crash on await ... (where ... is a literal Ellipsis) (#4676)
  • Fix crash on parenthesized expression inside a type parameter bound (#4684)
  • Fix crash when using line ranges excluding indented single line decorated items (#4670)

Preview style

  • Fix a bug where one-liner functions/conditionals marked with # fmt: skip would still be formatted (#4552)
  • Improve multiline_string_handling with ternaries and dictionaries (#4657)
  • Fix a bug where string_processing would not split f-strings directly after expressions (#4680)
  • Wrap the in clause of comprehensions across lines if necessary (#4699)
  • Remove parentheses around multiple exception types in except and except* without as. (#4720)
  • Add \r style newlines to the potential newlines to normalize file newlines both from and to (#4710)

Parser

  • Rewrite tokenizer to improve performance and compliance (#4536)
  • Fix bug where certain unusual expressions (e.g., lambdas) were not accepted in type parameter bounds and defaults. (#4602)

Performance

  • Avoid using an extra process when running with only one worker (#4734)

Integrations

  • Fix the version check in the vim file to reject Python 3.8 (#4567)
  • Enhance GitHub Action psf/black to read Black version from an additional section in pyproject.toml: [project.dependency-groups] (#4606)
  • Build gallery docker image with python3-slim and reduce image size (#4686)

... (truncated)

Changelog

Sourced from black's changelog.

25.9.0

Highlights

  • Remove support for pre-python 3.7 await/async as soft keywords/variable names (#4676)

Stable style

  • Fix crash while formatting a long del statement containing tuples (#4628)
  • Fix crash while formatting expressions using the walrus operator in complex with statements (#4630)
  • Handle # fmt: skip followed by a comment at the end of file (#4635)
  • Fix crash when a tuple appears in the as clause of a with statement (#4634)
  • Fix crash when tuple is used as a context manager inside a with statement (#4646)
  • Fix crash when formatting a \ followed by a \r followed by a comment (#4663)
  • Fix crash on a \\r\n (#4673)
  • Fix crash on await ... (where ... is a literal Ellipsis) (#4676)
  • Fix crash on parenthesized expression inside a type parameter bound (#4684)
  • Fix crash when using line ranges excluding indented single line decorated items (#4670)

Preview style

  • Fix a bug where one-liner functions/conditionals marked with # fmt: skip would still be formatted (#4552)
  • Improve multiline_string_handling with ternaries and dictionaries (#4657)
  • Fix a bug where string_processing would not split f-strings directly after expressions (#4680)
  • Wrap the in clause of comprehensions across lines if necessary (#4699)
  • Remove parentheses around multiple exception types in except and except* without as. (#4720)
  • Add \r style newlines to the potential newlines to normalize file newlines both from and to (#4710)

Parser

  • Rewrite tokenizer to improve performance and compliance (#4536)
  • Fix bug where certain unusual expressions (e.g., lambdas) were not accepted in type parameter bounds and defaults. (#4602)

Performance

  • Avoid using an extra process when running with only one worker (#4734)

Integrations

  • Fix the version check in the vim file to reject Python 3.8 (#4567)
  • Enhance GitHub Action psf/black to read Black version from an additional section in pyproject.toml: [project.dependency-groups] (#4606)

... (truncated)

Commits

Updates aws-lambda-powertools[all,aws-sdk] from 3.19.0 to 3.20.0

Release notes

Sourced from aws-lambda-powertools[all,aws-sdk]'s releases.

v3.20.0

Summary

In this release we are excited to announce the new build recipes documentation for Powertools for AWS Lambda Python, which explains how to handle Rust and C bindings libraries, GLIBC compatibility, cross-platform builds, and architecture-specific dependencies.

We also improved the Parser utility models by adding detailed descriptions and examples illustrating AWS Lambda event structures.

⭐️ Congrats to @​dcabib, @​sreejaaryahi18, @​Liam-DeVoe and @​shrivarshapoojari for contributing to this project for the first time!

The build recipes documentation

Docs

The Python ecosystem is evolving with more Rust and C bindings for better performance, introducing new Lambda deployment challenges like GLIBC compatibility and cross-platform builds.

We've published updated Powertools build recipes that cover:

  • Build tools: pip, Poetry, SAM, CDK, Pants
  • Cross-platform deployment for macOS/Windows → Linux Lambda
  • GLIBC compatibility across Amazon Linux runtime versions
  • Troubleshooting common issues
  • Performance tips to reduce cold starts and package size
  • CI/CD examples with GitHub Actions and CodeBuild

Changes

  • refactor(event_handler): allow to pass dict as argument to exception classes (#7341) by @​shrivarshapoojari
  • refactor(parser): improves S3 models with examples and descriptions (#7292) by @​ivica-k
  • refactor(parser): Improve Transfer Family models with examples and descriptions (#7294) by @​dcabib
  • refactor(parser): Improve Kafka models with examples and descriptions (#7293) by @​dcabib
  • refactor(parser): Improve SQS models with examples and descriptions (#7286) by @​dcabib
  • refactor(parser): Improve SNS models with examples and descriptions (#7287) by @​dcabib
  • refactor(parser): Improve VPC Lattice with examples and descriptions (#7234) by @​anafalcao
  • refactor(parser): Improve DynamoDB models with examples and descriptions (#7146) by @​sreejaaryahi18

🌟New features and non-breaking changes

📜 Documentation updates

... (truncated)

Changelog

Sourced from aws-lambda-powertools[all,aws-sdk]'s changelog.

[v3.20.0] - 2025-09-09

Code Refactoring

  • event_handler: allow to pass dict as argument to exception classes (#7341)
  • parser: improves S3 models with examples and descriptions (#7292)
  • parser: Improve Transfer Family models with examples and descriptions (#7294)
  • parser: Improve Kafka models with examples and descriptions (#7293)
  • parser: Improve SQS models with examples and descriptions (#7286)
  • parser: Improve SNS models with examples and descriptions (#7287)
  • parser: Improve VPC Lattice with examples and descriptions (#7234)
  • parser: Improve DynamoDB models with examples and descriptions (#7146)

Documentation

  • fix SSM recursive parameter highlighting (#7316)
  • Add AWS copyright footer. (#7313)
  • Add installation snippet for uv package manager (#7272)
  • Fix copy to clipboard button (#7270)
  • build_recipes: add troubleshooting page (#7195)
  • build_recipes: add cicd page (#7176)
  • build_recipes: add initial build recipes structure (#7163)
  • build_recipes: add build tools page (#7201)
  • build_recipes: add cross build page (#7199)
  • build_recipes: add performance optimization page (#7197)
  • index: remove customer names (#7318)
  • mkdocs: fix docs warnings (#7211)
  • public_reference: add QuasiScience as a public reference (#7228)

Features

  • parser: add support for sourceIp with ipv6 and port (#7351)
  • parser: add support for sourceIp with port (#7315)

Maintenance

  • version bump
  • automation: update PR template to include closes command (#7173)
  • ci: new pre-release 3.19.1a11 (#7278)
  • ci: new pre-release 3.19.1a0 (#7161)
  • ci: new pre-release 3.19.1a16 (#7350)
  • ci: new pre-release 3.19.1a1 (#7172)
  • ci: new pre-release 3.19.1a2 (#7192)
  • ci: new pre-release 3.19.1a3 (#7207)
  • ci: new pre-release 3.19.1a4 (#7217)
  • ci: new pre-release 3.19.1a6 (#7232)
  • ci: new pre-release 3.19.1a7 (#7244)
  • ci: new pre-release 3.19.1a14 (#7306)
  • ci: new pre-release 3.19.1a5 (#7226)
  • ci: new pre-release 3.19.1a8 (#7247)
  • ci: new pre-release 3.19.1a9 (#7256)

... (truncated)

Commits
  • 87e8f62 chore: version bump
  • 1c05061 chore(deps): bump codecov/codecov-action from 5.5.0 to 5.5.1 (#7345)
  • b42d7cc chore(deps): bump squidfunk/mkdocs-material from 1a4e939 to 209b62d in /d...
  • 118a3e8 feat(parser): add support for sourceIp with ipv6 and port (#7351)
  • f93d3cc chore(deps): bump mkdocs-material from 9.6.18 to 9.6.19 (#7346)
  • 0eb5cb8 chore(deps-dev): bump boto3-stubs from 1.40.25 to 1.40.26 (#7348)
  • 682e051 chore(deps-dev): bump pytest-cov from 6.2.1 to 6.3.0 (#7349)
  • e36b138 chore(ci): new pre-release 3.19.1a16 (#7350)
  • 14c0aa8 chore(ci): changelog rebuild (#7340)
  • a186759 refactor(event_handler): allow to pass dict as argument to exception classes ...
  • Additional commits viewable in compare view

Updates aws-lambda-powertools from 3.19.0 to 3.20.0

Release notes

Sourced from aws-lambda-powertools's releases.

v3.20.0

Summary

In this release we are excited to announce the new build recipes documentation for Powertools for AWS Lambda Python, which explains how to handle Rust and C bindings libraries, GLIBC compatibility, cross-platform builds, and architecture-specific dependencies.

We also improved the Parser utility models by adding detailed descriptions and examples illustrating AWS Lambda event structures.

⭐️ Congrats to @​dcabib, @​sreejaaryahi18, @​Liam-DeVoe and @​shrivarshapoojari for contributing to this project for the first time!

The build recipes documentation

Docs

The Python ecosystem is evolving with more Rust and C bindings for better performance, introducing new Lambda deployment challenges like GLIBC compatibility and cross-platform builds.

We've published updated Powertools build recipes that cover:

  • Build tools: pip, Poetry, SAM, CDK, Pants
  • Cross-platform deployment for macOS/Windows → Linux Lambda
  • GLIBC compatibility across Amazon Linux runtime versions
  • Troubleshooting common issues
  • Performance tips to reduce cold starts and package size
  • CI/CD examples with GitHub Actions and CodeBuild

Changes

  • refactor(event_handler): allow to pass dict as argument to exception classes (#7341) by @​shrivarshapoojari
  • refactor(parser): improves S3 models with examples and descriptions (#7292) by @​ivica-k
  • refactor(parser): Improve Transfer Family models with examples and descriptions (#7294) by @​dcabib
  • refactor(parser): Improve Kafka models with examples and descriptions (#7293) by @​dcabib
  • refactor(parser): Improve SQS models with examples and descriptions (#7286) by @​dcabib
  • refactor(parser): Improve SNS models with examples and descriptions (#7287) by @​dcabib
  • refactor(parser): Improve VPC Lattice with examples and descriptions (#7234) by @​anafalcao
  • refactor(parser): Improve DynamoDB models with examples and descriptions (#7146) by @​sreejaaryahi18

🌟New features and non-breaking changes

📜 Documentation updates

... (truncated)

Changelog

Sourced from aws-lambda-powertools's changelog.

[v3.20.0] - 2025-09-09

Code Refactoring

  • event_handler: allow to pass dict as argument to exception classes (#7341)
  • parser: improves S3 models with examples and descriptions (#7292)
  • parser: Improve Transfer Family models with examples and descriptions (#7294)
  • parser: Improve Kafka models with examples and descriptions (#7293)
  • parser: Improve SQS models with examples and descriptions (#7286)
  • parser: Improve SNS models with examples and descriptions (#7287)
  • parser: Improve VPC Lattice with examples and descriptions (#7234)
  • parser: Improve DynamoDB models with examples and descriptions (#7146)

Documentation

  • fix SSM recursive parameter highlighting (#7316)
  • Add AWS copyright footer. (#7313)
  • Add installation snippet for uv package manager (#7272)
  • Fix copy to clipboard button (#7270)
  • build_recipes: add troubleshooting page (#7195)
  • build_recipes: add cicd page (#7176)
  • build_recipes: add initial build recipes structure (#7163)
  • build_recipes: add build tools page (#7201)
  • build_recipes: add cross build page (#7199)
  • build_recipes: add performance optimization page (#7197)
  • index: remove customer names (#7318)
  • mkdocs: fix docs warnings (#7211)
  • public_reference: add QuasiScience as a public reference (#7228)

Features

  • parser: add support for sourceIp with ipv6 and port (#7351)
  • parser: add support for sourceIp with port (#7315)

Maintenance

  • version bump
  • automation: update PR template to include closes command (#7173)
  • ci: new pre-release 3.19.1a11 (#7278)
  • ci: new pre-release 3.19.1a0 (#7161)
  • ci: new pre-release 3.19.1a16 (#7350)
  • ci: new pre-release 3.19.1a1 (#7172)
  • ci: new pre-release 3.19.1a2 (#7192)
  • ci: new pre-release 3.19.1a3 (#7207)
  • ci: new pre-release 3.19.1a4 (#7217)
  • ci: new pre-release 3.19.1a6 (#7232)
  • ci: new pre-release 3.19.1a7 (#7244)
  • ci: new pre-release 3.19.1a14 (#7306)
  • ci: new pre-release 3.19.1a5 (#7226)
  • ci: new pre-release 3.19.1a8 (#7247)
  • ci: new pre-release 3.19.1a9 (#7256)

... (truncated)

Commits
  • 87e8f62 chore: version bump
  • 1c05061 chore(deps): bump codecov/codecov-action from 5.5.0 to 5.5.1 (#7345)
  • b42d7cc chore(deps): bump squidfunk/mkdocs-material from 1a4e939 to 209b62d in /d...
  • 118a3e8 feat(parser): add support for sourceIp with ipv6 and port (#7351)
  • f93d3cc chore(deps): bump mkdocs-material from 9.6.18 to 9.6.19 (#7346)
  • 0eb5cb8 chore(deps-dev): bump boto3-stubs from 1.40.25 to 1.40.26 (#7348)
  • 682e051 chore(deps-dev): bump pytest-cov from 6.2.1 to 6.3.0 (#7349)
  • e36b138 chore(ci): new pre-release 3.19.1a16 (#7350)
  • 14c0aa8 chore(ci): changelog rebuild (#7340)
  • a186759 refactor(event_handler): allow to pass dict as argument to exception classes ...
  • 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

@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Sep 22, 2025
@dependabot dependabot bot requested a review from a team as a code owner September 22, 2025 13:17
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Sep 22, 2025
…y with 3 updates

Bumps the canary-pip-dependencies group with 3 updates in the /canary directory: [black](https://github.com/psf/black), [aws-lambda-powertools[all,aws-sdk]](https://github.com/aws-powertools/powertools-lambda-python) and [aws-lambda-powertools](https://github.com/aws-powertools/powertools-lambda-python).


Updates `black` from 25.1.0 to 25.9.0
- [Release notes](https://github.com/psf/black/releases)
- [Changelog](https://github.com/psf/black/blob/main/CHANGES.md)
- [Commits](psf/black@25.1.0...25.9.0)

Updates `aws-lambda-powertools[all,aws-sdk]` from 3.19.0 to 3.20.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@v3.19.0...v3.20.0)

Updates `aws-lambda-powertools` from 3.19.0 to 3.20.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@v3.19.0...v3.20.0)

---
updated-dependencies:
- dependency-name: black
  dependency-version: 25.9.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: canary-pip-dependencies
- dependency-name: aws-lambda-powertools[all,aws-sdk]
  dependency-version: 3.20.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: canary-pip-dependencies
- dependency-name: aws-lambda-powertools
  dependency-version: 3.20.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: canary-pip-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/pip/canary/canary-pip-dependencies-79a7f869e5 branch from d3cf00d to e572b36 Compare September 29, 2025 13:43
Copy link
Contributor Author

dependabot bot commented on behalf of github Oct 6, 2025

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

@dependabot dependabot bot closed this Oct 6, 2025
@dependabot dependabot bot deleted the dependabot/pip/canary/canary-pip-dependencies-79a7f869e5 branch October 6, 2025 23:29
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