Skip to content

Commit 6b7b76a

Browse files
author
Michael Brewer
authored
Merge branch 'awslabs:develop' into fix-1025-v2
2 parents bb40bac + 134da8e commit 6b7b76a

File tree

3 files changed

+52
-13
lines changed

3 files changed

+52
-13
lines changed

CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,32 @@ All notable changes to this project will be documented in this file.
44

55
This project follows [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) format for changes and adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## 1.25.9 - 2022-04-21
8+
9+
### Bug Fixes
10+
11+
* **deps**: correct py36 marker for jmespath
12+
## 1.25.8 - 2022-04-21
13+
14+
### Bug Fixes
15+
16+
* **governance:** removed ambiguous quotes from labels
17+
* **deps:** update jmespath marker to support 1.0 and py3.6 ([#1139](https://github.com/awslabs/aws-lambda-powertools-python/issues/1139))
18+
* **governance:** update label in names in issues
19+
20+
### Documentation
21+
22+
* **install:** instructions to reduce pydantic package size ([#1077](https://github.com/awslabs/aws-lambda-powertools-python/issues/1077))
23+
* **layer:** remove link from clipboard button ([#1135](https://github.com/awslabs/aws-lambda-powertools-python/issues/1135))
24+
* **layer:** update to 1.25.7
25+
26+
### Maintenance
27+
28+
* **deps:** bump codecov/codecov-action from 2.1.0 to 3.0.0 ([#1102](https://github.com/awslabs/aws-lambda-powertools-python/issues/1102))
29+
* **deps:** bump actions/upload-artifact from 2 to 3 ([#1103](https://github.com/awslabs/aws-lambda-powertools-python/issues/1103))
30+
* **deps-dev:** bump mkdocs-material from 8.2.4 to 8.2.7 ([#1131](https://github.com/awslabs/aws-lambda-powertools-python/issues/1131))
31+
* **deps-dev:** bump pytest from 6.2.5 to 7.0.1 ([#1063](https://github.com/awslabs/aws-lambda-powertools-python/issues/1063))
32+
733
## 1.25.7 - 2022-04-08
834

935
### Bug Fixes

poetry.lock

Lines changed: 21 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "aws_lambda_powertools"
3-
version = "1.25.7"
3+
version = "1.25.9"
44
description = "A suite of utilities for AWS Lambda functions to ease adopting best practices such as tracing, structured logging, custom metrics, batching, idempotency, feature flags, and more."
55
authors = ["Amazon Web Services"]
66
include = ["aws_lambda_powertools/py.typed", "THIRD-PARTY-LICENSES"]
@@ -24,7 +24,10 @@ python = "^3.6.2"
2424
aws-xray-sdk = "^2.8.0"
2525
fastjsonschema = "^2.14.5"
2626
boto3 = "^1.18"
27-
jmespath = "^0.10.0"
27+
jmespath = [
28+
{ version = "<=0.10.0", python = "3.6" },
29+
{ version = "^1.0.0", python = "^3.7" }
30+
]
2831
pydantic = {version = "^1.8.2", optional = true }
2932
email-validator = {version = "*", optional = true }
3033

0 commit comments

Comments
 (0)