Skip to content

Commit

Permalink
chore: bump to 1.10.0 (#270)
Browse files Browse the repository at this point in the history
* docs: add explicit new quote

Signed-off-by: heitorlessa <[email protected]>

* chore: bump to 1.10.0
  • Loading branch information
heitorlessa authored Jan 18, 2021
1 parent 54d8967 commit 722b4a3
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 3 deletions.
18 changes: 17 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,27 @@
# Changelog
.# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [1.10.0] - 2021-01-18

### Added
- **Utilities**: Added support for AppConfig in Parameters utility
- **Logger**: Added support for `extra` parameter to add additional root fields when logging messages
- **Logger**: Added support to Pytest Live Log feat. via feature toggle `POWERTOOLS_LOG_DEDUPLICATION_DISABLED`
- **Tracer**: Added support to disable auto-capturing response and exception as metadata
- **Utilities**: Added support to handle custom string/integer formats in JSON Schema in Validator utility
- **Install**: Added new Lambda Layer with all extra dependencies installed, available in Serverless Application Repository (SAR)

### Fixed

- **Docs**: Added missing SNS parser model
- **Docs**: Added new environment variables for toggling features in Logger and Tracer: `POWERTOOLS_LOG_DEDUPLICATION_DISABLED`, `POWERTOOLS_TRACER_CAPTURE_RESPONSE`, `POWERTOOLS_TRACER_CAPTURE_ERROR`
- **Docs**: Fixed incorrect import for Cognito data classes in Event Sources utility

## [1.9.1] - 2020-12-21

### Fixed
Expand Down
4 changes: 3 additions & 1 deletion docs/content/utilities/parameters.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,8 @@ def handler(event, context):

## App Config

> New in 1.10.0
For configurations stored in App Config, use `get_app_config`.
The following will retrieve the latest version and store it in the cache.

Expand All @@ -233,7 +235,7 @@ appconf_provider = parameters.AppConfigProvider(environment="my_env", applicatio

def handler(event, context):
# Retrieve a single secret
value : bytes = appconf_provider.get("my_conf")
value: bytes = appconf_provider.get("my_conf")
```

## Create your own provider
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "aws_lambda_powertools"
version = "1.9.1"
version = "1.10.0"
description = "Python utilities for AWS Lambda functions including but not limited to tracing, logging and custom metric"
authors = ["Amazon Web Services"]
include = ["aws_lambda_powertools/py.typed"]
Expand Down

0 comments on commit 722b4a3

Please sign in to comment.