Skip to content

build(deps): bump the patches group across 1 directory with 7 updates - #150

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pip/lambda/patches-7a2c63f901
Open

dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pip/lambda/patches-7a2c63f901

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 14, 2026

Copy link
Copy Markdown
Contributor

Bumps the patches group with 7 updates in the /lambda directory:

Package From To
aws-encryption-sdk 4.0.6 4.0.7
boto3 1.43.41 1.43.92
botocore 1.43.41 1.43.92
pydantic 2.13.4 2.13.5
python-dotenv 1.2.2 1.2.3
s3transfer 0.19.0 0.19.2
typing-inspection 0.4.2 0.4.4

Updates aws-encryption-sdk from 4.0.6 to 4.0.7

Release notes

Sourced from aws-encryption-sdk's releases.

4.0.7 -- 2026-09-04

Fixes

  • fix: validate encryption context entry lengths (#813) Thanks to kiwigitops for the contribution.

  • fix: preserve root-cause errors in KMSMasterKey exception chaining (#815) Thanks to @​arpitjain099 for the contribution.

Maintenance

  • deps: Extend supported MPL versions to include v1.11.3 (#816)
Changelog

Sourced from aws-encryption-sdk's changelog.

4.0.7 -- 2026-08-31

Fixes

  • fix: validate encryption context entry lengths (#813) [#813](https://github.com/aws/aws-encryption-sdk-python/issues/813) <https://github.com/aws/aws-encryption-sdk-python/pull/813>_

    Thanks to kiwigitops for the contribution.

  • fix: preserve root-cause errors in KMSMasterKey exception chaining (#815) [#815](https://github.com/aws/aws-encryption-sdk-python/issues/815) <https://github.com/aws/aws-encryption-sdk-python/pull/815>_

    Thanks to @arpitjain099 <https://github.com/arpitjain099>_ for the contribution.

Maintenance

  • deps: Extend supported MPL_ versions to include v1.11.3 [#816](https://github.com/aws/aws-encryption-sdk-python/issues/816) <https://github.com/aws/aws-encryption-sdk-python/pull/816>_
Commits
  • 401c9bb chore: preflight 4.0.7 release (#816)
  • 0697b56 fix: preserve root-cause errors in KMSMasterKey exception chaining
  • 695c995 chore: revert "fix: preserve root-cause errors in KMSMasterKey exception chai...
  • 556ea55 fix: validate encryption context entry lengths (#805)
  • 2c0200b chore: bump upstream-requirements-py311 pytest version (#808)
  • 81e6529 chore(ci): bump tox == 4.25.0 (#811)
  • 6b7007a fix: preserve root-cause errors in KMSMasterKey exception chaining (#809)
  • 61040db chore: Update support policy to make v3 end of support (#806)
  • 04b001e chore(ci): replace Busy Engineer's Workshop validation with in-repo install-a...
  • See full diff in compare view

Updates boto3 from 1.43.41 to 1.43.92

Commits

Updates botocore from 1.43.41 to 1.43.92

Commits
  • dfd7fee Merge branch 'release-1.43.92'
  • 0831ac2 Bumping version to 1.43.92
  • a91f10f Update endpoints model
  • a205ada Update to latest models
  • 49ca08d Merge branch 'release-1.43.91'
  • 23ca24b Merge branch 'release-1.43.91' into develop
  • e312467 Bumping version to 1.43.91
  • 2c5b866 Update to latest models
  • dc85104 Merge branch 'release-1.43.90'
  • 52ed7af Merge branch 'release-1.43.90' into develop
  • Additional commits viewable in compare view

Updates pydantic from 2.13.4 to 2.13.5

Release notes

Sourced from pydantic's releases.

v2.13.5 (2026-08-28)

What's Changed

Fixes

  • Allow reuse of validators when plugins are set by @​Viicos in #13535
  • Fix missing GC traversal on some pydantic-core struct fields by @​Viicos in #13624
  • Fix missing GC traversal in pydantic-core for GeneralFieldsSerializer by @​Viicos in #13629
  • Count validated model fields once in smart unions by @​tamird in #13731
Changelog

Sourced from pydantic's changelog.

v2.13.5 (2026-08-28)

GitHub release

What's Changed

Fixes

  • Allow reuse of validators when plugins are set by @​Viicos in #13535
  • Fix missing GC traversal on some pydantic-core struct fields by @​Viicos in #13624
  • Fix missing GC traversal in pydantic-core for GeneralFieldsSerializer by @​Viicos in #13629
  • Count validated model fields once in smart unions by @​tamird in #13731
Commits
  • 001dea0 Bump pypa/gh-action-pypi-publish action to v1.14.2
  • 558379f Bump twine to v7.0.0
  • 2cfd5d3 Do not check for docs build
  • a735bee Fix more Clippy lints
  • 7eed4a1 Fix Clippy 0.1.95 warnings
  • b353bbb Prepare release v2.13.5
  • 63d2ccc Count validated model fields once in smart unions
  • a53ec2e Speed up PyPy CI tests
  • d65e0f9 Workaround circular import error in Mypy
  • 47a6dbf Fix missing GC traversal in pydantic-core for GeneralFieldsSerializer
  • Additional commits viewable in compare view

Updates python-dotenv from 1.2.2 to 1.2.3

Release notes

Sourced from python-dotenv's releases.

v1.2.3

Fixed

  • Strip a leading UTF-8 BOM from .env file contents so the first variable is no longer silently lost when the file is saved with BOM (e.g. by some JetBrains IDEs on Windows) by [@​h1whelan] in #640
  • set_key now escapes backslashes, so values containing them (Windows paths, regular expressions) survive a write/read round-trip. Quoted values ending in an escaped backslash are no longer mis-parsed as an escaped quote, which used to swallow the following lines by [@​dchaudhari7177] in #680
  • dotenv run now prints a friendly error instead of a traceback when no command is given by [@​bbc2] in #606
  • Cache the parsed result for empty .env files so repeated dotenv_values/load_dotenv calls no longer re-read the file by [@​ReinerBRO] in #638
Changelog

Sourced from python-dotenv's changelog.

[1.2.3] - 2026-08-16

Fixed

  • Strip a leading UTF-8 BOM from .env file contents so the first variable is no longer silently lost when the file is saved with BOM (e.g. by some JetBrains IDEs on Windows) by [@​h1whelan] in #640
  • set_key now escapes backslashes, so values containing them (Windows paths, regular expressions) survive a write/read round-trip. Quoted values ending in an escaped backslash are no longer mis-parsed as an escaped quote, which used to swallow the following lines by [@​dchaudhari7177] in #680
  • dotenv run now prints a friendly error instead of a traceback when no command is given by [@​bbc2] in #606
  • Cache the parsed result for empty .env files so repeated dotenv_values/load_dotenv calls no longer re-read the file by [@​ReinerBRO] in #638
Commits
  • 49515af Bump version: 1.2.2 → 1.2.3
  • 8ac846f chore: add release runbook (RELEASING.md) and make release target
  • bb31c94 docs: add 1.2.3 release notes (#606, #638, #680)
  • f7b18d9 fix: round-trip backslashes through set_key (#680)
  • 751f8c1 ci(deps): bump actions/checkout from 6.0.2 to 6.0.3 in the github-actions gro...
  • f1937b6 chore(deps): update mkdocs-include-markdown-plugin requirement from >=6.0.0 t...
  • 45b9372 chore(deps): update pytest requirement from >=3.9 to >=9.0.3 (#653)
  • 72896e9 docs: fix broken mkdocs link in CONTRIBUTING.md (#636)
  • 72754a1 ci(deps): bump peaceiris/actions-gh-pages from 4.0.0 to 4.1.0 in the github-a...
  • 078325e ci(security): harden CI/CD supply chain with SHA pinning and least-privilege ...
  • Additional commits viewable in compare view

Updates s3transfer from 0.19.0 to 0.19.2

Changelog

Sourced from s3transfer's changelog.

0.19.2

  • bugfix:TLS: Return a configuration error when the CA bundle value (ca_bundle, AWS_CA_BUNDLE, REQUESTS_CA_BUNDLE, or verify) resolves to an empty or whitespace-only string.

0.19.1

  • bugfix:s3: Only pin VersionId if supplied by caller instead of automatically using value from HeadObject response
Commits

Updates typing-inspection from 0.4.2 to 0.4.4

Release notes

Sourced from typing-inspection's releases.

v0.4.3 2026-08-10

What's Changed

Full Changelog: pydantic/typing-inspection@v0.4.2...v0.4.3

Changelog

Sourced from typing-inspection's changelog.

v0.4.4 (2026-08-12)

v0.4.3 (2026-08-10)

Commits

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

| Package | From | To |
| --- | --- | --- |
| [aws-encryption-sdk](https://github.com/aws/aws-encryption-sdk-python) | `4.0.6` | `4.0.7` |
| [boto3](https://github.com/boto/boto3) | `1.43.41` | `1.43.92` |
| [botocore](https://github.com/boto/botocore) | `1.43.41` | `1.43.92` |
| [pydantic](https://github.com/pydantic/pydantic) | `2.13.4` | `2.13.5` |
| [python-dotenv](https://github.com/theskumar/python-dotenv) | `1.2.2` | `1.2.3` |
| [s3transfer](https://github.com/boto/s3transfer) | `0.19.0` | `0.19.2` |
| [typing-inspection](https://github.com/pydantic/typing-inspection) | `0.4.2` | `0.4.4` |



Updates `aws-encryption-sdk` from 4.0.6 to 4.0.7
- [Release notes](https://github.com/aws/aws-encryption-sdk-python/releases)
- [Changelog](https://github.com/aws/aws-encryption-sdk-python/blob/master/CHANGELOG.rst)
- [Commits](aws/aws-encryption-sdk-python@v4.0.6...v4.0.7)

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

Updates `botocore` from 1.43.41 to 1.43.92
- [Commits](boto/botocore@1.43.41...1.43.92)

Updates `pydantic` from 2.13.4 to 2.13.5
- [Release notes](https://github.com/pydantic/pydantic/releases)
- [Changelog](https://github.com/pydantic/pydantic/blob/v2.13.5/HISTORY.md)
- [Commits](pydantic/pydantic@v2.13.4...v2.13.5)

Updates `python-dotenv` from 1.2.2 to 1.2.3
- [Release notes](https://github.com/theskumar/python-dotenv/releases)
- [Changelog](https://github.com/theskumar/python-dotenv/blob/main/CHANGELOG.md)
- [Commits](theskumar/python-dotenv@v1.2.2...v1.2.3)

Updates `s3transfer` from 0.19.0 to 0.19.2
- [Changelog](https://github.com/boto/s3transfer/blob/develop/CHANGELOG.rst)
- [Commits](boto/s3transfer@0.19.0...0.19.2)

Updates `typing-inspection` from 0.4.2 to 0.4.4
- [Release notes](https://github.com/pydantic/typing-inspection/releases)
- [Changelog](https://github.com/pydantic/typing-inspection/blob/main/HISTORY.md)
- [Commits](pydantic/typing-inspection@v0.4.2...v0.4.4)

---
updated-dependencies:
- dependency-name: aws-encryption-sdk
  dependency-version: 4.0.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patches
- dependency-name: boto3
  dependency-version: 1.43.92
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patches
- dependency-name: botocore
  dependency-version: 1.43.92
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patches
- dependency-name: pydantic
  dependency-version: 2.13.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patches
- dependency-name: python-dotenv
  dependency-version: 1.2.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patches
- dependency-name: s3transfer
  dependency-version: 0.19.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patches
- dependency-name: typing-inspection
  dependency-version: 0.4.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patches
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python Pull requests that update python code labels Sep 14, 2026
@github-actions
github-actions Bot enabled auto-merge (squash) September 14, 2026 13:09
@github-actions

Copy link
Copy Markdown

No description provided.

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