Skip to content

Commit aeb52c9

Browse files
authored
Merge pull request #175 from heitorlessa/chore/bump-1.6.0
chore: bump to 1.6.0
2 parents 0f170c1 + dc74a72 commit aeb52c9

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

Diff for: CHANGELOG.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [1.6.0] - 2020-09-22
10+
911
### Added
10-
- **Metrics**: Support adding multiple metric values to a metric name
12+
- **Metrics**: Support adding multiple metric values to a single metric name
1113
- **Utilities**: Add new `Validator` utility to validate inbound events and responses using JSON Schema
14+
- **Utilities**: Add new `Event source data classes` utility to easily describe event schema of popular event sources
15+
- **Docs**: Add new `Testing your code` section to both Logger and Metrics page, and content width is now wider
16+
- **Tracer**: Support for automatically disable Tracer when running a Chalice app
17+
18+
### Fixed
19+
- **Docs**: Improve wording on log sampling feature in Logger, and removed duplicate content on main page
20+
- **Utilities**: Remove DeleteMessageBatch API call when there are no messages to delete
1221

1322
## [1.5.0] - 2020-09-04
1423

Diff for: docs/content/core/logger.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ Sampling allows you to set your Logger Log Level as DEBUG based on a percentage
226226

227227
This is useful when you want to troubleshoot an issue, say a sudden increase in concurrency, and you might not have enough information in your logs as Logger log level was understandably set as INFO.
228228

229-
Sampling decision happens at the Logger class initialization, which only happens during a cold start. This means sampling may happen significant more or less than you expect if you have a steady low number of invocations and thus few cold starts.
229+
Sampling decision happens at the Logger class initialization, which only happens during a cold start. This means sampling may happen significantly more or less than you expect if you have a steady low number of invocations and thus few cold starts.
230230

231231
<Note type="info">
232232
If you want Logger to calculate sampling on every invocation, then please open a feature request.

Diff for: 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.5.0"
3+
version = "1.6.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
classifiers=[

0 commit comments

Comments
 (0)