Skip to content

Commit 722b4a3

Browse files
authored
chore: bump to 1.10.0 (#270)
* docs: add explicit new quote Signed-off-by: heitorlessa <[email protected]> * chore: bump to 1.10.0
1 parent 54d8967 commit 722b4a3

File tree

3 files changed

+21
-3
lines changed

3 files changed

+21
-3
lines changed

CHANGELOG.md

+17-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,27 @@
1-
# Changelog
1+
.# Changelog
22
All notable changes to this project will be documented in this file.
33

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

77
## [Unreleased]
88

9+
## [1.10.0] - 2021-01-18
10+
11+
### Added
12+
- **Utilities**: Added support for AppConfig in Parameters utility
13+
- **Logger**: Added support for `extra` parameter to add additional root fields when logging messages
14+
- **Logger**: Added support to Pytest Live Log feat. via feature toggle `POWERTOOLS_LOG_DEDUPLICATION_DISABLED`
15+
- **Tracer**: Added support to disable auto-capturing response and exception as metadata
16+
- **Utilities**: Added support to handle custom string/integer formats in JSON Schema in Validator utility
17+
- **Install**: Added new Lambda Layer with all extra dependencies installed, available in Serverless Application Repository (SAR)
18+
19+
### Fixed
20+
21+
- **Docs**: Added missing SNS parser model
22+
- **Docs**: Added new environment variables for toggling features in Logger and Tracer: `POWERTOOLS_LOG_DEDUPLICATION_DISABLED`, `POWERTOOLS_TRACER_CAPTURE_RESPONSE`, `POWERTOOLS_TRACER_CAPTURE_ERROR`
23+
- **Docs**: Fixed incorrect import for Cognito data classes in Event Sources utility
24+
925
## [1.9.1] - 2020-12-21
1026

1127
### Fixed

docs/content/utilities/parameters.mdx

+3-1
Original file line numberDiff line numberDiff line change
@@ -207,6 +207,8 @@ def handler(event, context):
207207

208208
## App Config
209209

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

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

234236
def handler(event, context):
235237
# Retrieve a single secret
236-
value : bytes = appconf_provider.get("my_conf")
238+
value: bytes = appconf_provider.get("my_conf")
237239
```
238240

239241
## Create your own provider

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "aws_lambda_powertools"
3-
version = "1.9.1"
3+
version = "1.10.0"
44
description = "Python utilities for AWS Lambda functions including but not limited to tracing, logging and custom metric"
55
authors = ["Amazon Web Services"]
66
include = ["aws_lambda_powertools/py.typed"]

0 commit comments

Comments
 (0)