From 005f850722dda1375cf9a74130dcab397566e6a0 Mon Sep 17 00:00:00 2001 From: heitorlessa Date: Mon, 26 Oct 2020 10:19:06 +0100 Subject: [PATCH 1/2] chore: bump version to 1.7.0 Signed-off-by: heitorlessa --- CHANGELOG.md | 10 ++++++++++ pyproject.toml | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5deb6a8d9b9..074b9306c34 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.7.0] - 2020-10-26 + +### Added +- **Utilities**: Add new `Parser` utility to provide parsing and deep data validation using Pydantic Models +- **Utilities**: Add case insensitive header lookup, and Cognito custom auth triggers to `Event source data classes` + +### Fixed +- **Logger**: keeps Lambda root logger handler, and add log filter instead to prevent child log records duplication +- **Docs**: Improve wording on adding log keys conditionally + ## [1.6.1] - 2020-09-23 ### Fixed diff --git a/pyproject.toml b/pyproject.toml index e18cfe3e211..3f37808f81b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "aws_lambda_powertools" -version = "1.6.1" +version = "1.7.0" description = "Python utilities for AWS Lambda functions including but not limited to tracing, logging and custom metric" authors = ["Amazon Web Services"] classifiers=[ From a9d57d6647542ce3b092f134cc6a84ae7b20b70d Mon Sep 17 00:00:00 2001 From: heitorlessa Date: Mon, 26 Oct 2020 10:20:29 +0100 Subject: [PATCH 2/2] chore: fix repository URL Signed-off-by: heitorlessa --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 3f37808f81b..432cc01323d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,7 +12,7 @@ classifiers=[ "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", ] -repository="https://github.com/awslabs/aws-lambda-powertools/" +repository="https://github.com/awslabs/aws-lambda-powertools-python" readme = "README.md" keywords = ["aws_lambda_powertools", "aws", "tracing", "logging", "lambda", "powertools"] license = "MIT-0"