Skip to content

Commit e35db02

Browse files
Merge branch 'develop' into dependabot/docker/docs/squidfunk/mkdocs-material-980e11fed03b8e7851e579be9f34b1210f516c9f0b4da1a1457f21a460bd6628
2 parents 4eb1e6e + cb2bfe4 commit e35db02

File tree

6 files changed

+16
-9
lines changed

6 files changed

+16
-9
lines changed

CHANGELOG.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,19 @@
1111
## Maintenance
1212

1313
* **ci:** new pre-release 3.22.2a2 ([#7652](https://github.com/aws-powertools/powertools-lambda-python/issues/7652))
14-
* **ci:** new pre-release 3.22.2a1 ([#7646](https://github.com/aws-powertools/powertools-lambda-python/issues/7646))
1514
* **ci:** new pre-release 3.22.2a0 ([#7642](https://github.com/aws-powertools/powertools-lambda-python/issues/7642))
15+
* **ci:** new pre-release 3.22.2a1 ([#7646](https://github.com/aws-powertools/powertools-lambda-python/issues/7646))
16+
* **ci:** new pre-release 3.22.2a3 ([#7659](https://github.com/aws-powertools/powertools-lambda-python/issues/7659))
17+
* **deps:** bump mkdocstrings-python from 1.18.2 to 1.19.0 in /docs ([#7655](https://github.com/aws-powertools/powertools-lambda-python/issues/7655))
1618
* **deps:** bump docker/setup-qemu-action from 3.6.0 to 3.7.0 ([#7639](https://github.com/aws-powertools/powertools-lambda-python/issues/7639))
1719
* **deps:** bump pydantic from 2.12.3 to 2.12.4 ([#7641](https://github.com/aws-powertools/powertools-lambda-python/issues/7641))
20+
* **deps-dev:** bump types-python-dateutil from 2.9.0.20251008 to 2.9.0.20251108 ([#7657](https://github.com/aws-powertools/powertools-lambda-python/issues/7657))
21+
* **deps-dev:** bump ruff from 0.14.3 to 0.14.4 ([#7649](https://github.com/aws-powertools/powertools-lambda-python/issues/7649))
22+
* **deps-dev:** bump boto3-stubs from 1.40.64 to 1.40.69 ([#7654](https://github.com/aws-powertools/powertools-lambda-python/issues/7654))
23+
* **deps-dev:** bump pytest-benchmark from 5.2.1 to 5.2.3 ([#7658](https://github.com/aws-powertools/powertools-lambda-python/issues/7658))
1824
* **deps-dev:** bump types-protobuf from 6.32.1.20250918 to 6.32.1.20251105 ([#7640](https://github.com/aws-powertools/powertools-lambda-python/issues/7640))
25+
* **deps-dev:** bump aws-cdk-lib from 2.222.0 to 2.223.0 ([#7656](https://github.com/aws-powertools/powertools-lambda-python/issues/7656))
1926
* **deps-dev:** bump aws-cdk from 2.1031.1 to 2.1031.2 ([#7645](https://github.com/aws-powertools/powertools-lambda-python/issues/7645))
20-
* **deps-dev:** bump types-python-dateutil from 2.9.0.20251008 to 2.9.0.20251108 ([#7657](https://github.com/aws-powertools/powertools-lambda-python/issues/7657))
2127
* **docs:** fix broken images ([#7644](https://github.com/aws-powertools/powertools-lambda-python/issues/7644))
2228

2329

aws_lambda_powertools/event_handler/api_gateway.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1827,7 +1827,7 @@ def get_openapi_schema(
18271827
The title of the application.
18281828
version: str
18291829
The version of the OpenAPI document (which is distinct from the OpenAPI Specification version or the API
1830-
openapi_version: str, default = "3.0.0"
1830+
openapi_version: str, default = "3.1.0"
18311831
The version of the OpenAPI Specification (which the document uses).
18321832
summary: str, optional
18331833
A short summary of what the application does.
@@ -2041,7 +2041,7 @@ def get_openapi_json_schema(
20412041
The title of the application.
20422042
version: str
20432043
The version of the OpenAPI document (which is distinct from the OpenAPI Specification version or the API
2044-
openapi_version: str, default = "3.0.0"
2044+
openapi_version: str, default = "3.1.0"
20452045
The version of the OpenAPI Specification (which the document uses).
20462046
summary: str, optional
20472047
A short summary of what the application does.
@@ -2124,7 +2124,7 @@ def configure_openapi(
21242124
The title of the application.
21252125
version: str
21262126
The version of the OpenAPI document (which is distinct from the OpenAPI Specification version or the API
2127-
openapi_version: str, default = "3.0.0"
2127+
openapi_version: str, default = "3.1.0"
21282128
The version of the OpenAPI Specification (which the document uses).
21292129
summary: str, optional
21302130
A short summary of what the application does.
@@ -2218,7 +2218,7 @@ def enable_swagger(
22182218
The title of the application.
22192219
version: str
22202220
The version of the OpenAPI document (which is distinct from the OpenAPI Specification version or the API
2221-
openapi_version: str, default = "3.0.0"
2221+
openapi_version: str, default = "3.1.0"
22222222
The version of the OpenAPI Specification (which the document uses).
22232223
summary: str, optional
22242224
A short summary of what the application does.

aws_lambda_powertools/event_handler/openapi/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class OpenAPIConfig:
3232
The title of the application.
3333
version: str
3434
The version of the OpenAPI document (which is distinct from the OpenAPI Specification version or the API
35-
openapi_version: str, default = "3.0.0"
35+
openapi_version: str, default = "3.1.0"
3636
The version of the OpenAPI Specification (which the document uses).
3737
summary: str, optional
3838
A short summary of what the application does.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Exposes version constant to avoid circular dependencies."""
22

3-
VERSION = "3.22.2a3"
3+
VERSION = "3.22.2a4"

provenance/3.22.2a4/multiple.intoto.jsonl

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "aws_lambda_powertools"
3-
version = "3.22.2a3"
3+
version = "3.22.2a4"
44
description = "Powertools for AWS Lambda (Python) is a developer toolkit to implement Serverless best practices and increase developer velocity."
55
authors = ["Amazon Web Services"]
66
include = ["aws_lambda_powertools/py.typed", "THIRD-PARTY-LICENSES"]

0 commit comments

Comments
 (0)