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..432cc01323d 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=[ @@ -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"