Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(lambda): bump the aws-powertools group in /lambdas with 3 updates #4058

Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 12, 2024

Bumps the aws-powertools group in /lambdas with 3 updates: @aws-lambda-powertools/logger, @aws-lambda-powertools/metrics and @aws-lambda-powertools/tracer.

Updates @aws-lambda-powertools/logger from 2.6.0 to 2.7.0

Release notes

Sourced from @​aws-lambda-powertools/logger's releases.

v2.7.0

Summary

This release 1/ brings a new helper function to parse JSON stringified fields when using Parser, 2/ and improved Metrics, which now can emit metrics using the None unit.

⭐️ Thanks to @​daschaa for fixing Logger and making it default to :UTC when encountering an invalid time zone value.

Quickly parse JSON stringified fields

Docs

You can now parse and validate JSON stringified fields using Zod schemas without having to transform them first. This is useful when working with payloads coming from sources that stringify payloads like Amazon API Gateway, Amazon SQS, Amazon Application Load Balancer (ALB), etc.

Use the JSONStringified helper to extend your schemas or any of the built-in schemas in Parser:

carbon-2

Metrics without unit

Docs

You can now create metrics without a unit of measure, this is helpful when your business metrics are tied to an abstract concept or when none of the units supported by the Embedded metric format specification fit.

carbon-2

Changes

🌟New features and non-breaking changes

  • feat(metrics): add unit None for CloudWatch EMF Metrics (#2904) by @​am29d
  • feat(parser): add helper functions to transform JSON stringified payloads (#2901) by @​am29d

📜 Documentation updates

... (truncated)

Changelog

Sourced from @​aws-lambda-powertools/logger's changelog.

2.7.0 (2024-08-08)

Bug Fixes

  • logger: invalid time zone environment variables leads to error (#2865) (d55465f)

Features

  • metrics: add unit None for CloudWatch EMF Metrics (#2904) (fa27cba)
  • parser: add helper function to handle JSON stringified fields (#2901) (806b884)
Commits
  • 24c423c chore(ci): bump version to 2.7.0 (#2905)
  • fa27cba feat(metrics): add unit None for CloudWatch EMF Metrics (#2904)
  • 806b884 feat(parser): add helper function to handle JSON stringified fields (#2901)
  • b064408 chore(commons): extract lru-cache into commons (#2899)
  • a9d4a9c chore(deps-dev): bump lint-staged from 15.2.7 to 15.2.8 (#2885)
  • 13411dd chore(deps-dev): bump aws-sdk from 2.1667.0 to 2.1668.0 (#2890)
  • 4f7e33b chore(deps): bump the aws-cdk group across 1 directory with 2 updates (#2884)
  • b9b9ec6 chore(deps-dev): bump aws-sdk from 2.1666.0 to 2.1667.0 (#2886)
  • fae0fc9 chore(deps): bump typescript from 5.4.5 to 5.5.4 (#2820)
  • 3feba28 chore(ci): extract cached-node-modules action (#2876)
  • Additional commits viewable in compare view

Updates @aws-lambda-powertools/metrics from 2.6.0 to 2.7.0

Release notes

Sourced from @​aws-lambda-powertools/metrics's releases.

v2.7.0

Summary

This release 1/ brings a new helper function to parse JSON stringified fields when using Parser, 2/ and improved Metrics, which now can emit metrics using the None unit.

⭐️ Thanks to @​daschaa for fixing Logger and making it default to :UTC when encountering an invalid time zone value.

Quickly parse JSON stringified fields

Docs

You can now parse and validate JSON stringified fields using Zod schemas without having to transform them first. This is useful when working with payloads coming from sources that stringify payloads like Amazon API Gateway, Amazon SQS, Amazon Application Load Balancer (ALB), etc.

Use the JSONStringified helper to extend your schemas or any of the built-in schemas in Parser:

carbon-2

Metrics without unit

Docs

You can now create metrics without a unit of measure, this is helpful when your business metrics are tied to an abstract concept or when none of the units supported by the Embedded metric format specification fit.

carbon-2

Changes

🌟New features and non-breaking changes

  • feat(metrics): add unit None for CloudWatch EMF Metrics (#2904) by @​am29d
  • feat(parser): add helper functions to transform JSON stringified payloads (#2901) by @​am29d

📜 Documentation updates

... (truncated)

Changelog

Sourced from @​aws-lambda-powertools/metrics's changelog.

2.7.0 (2024-08-08)

Bug Fixes

  • logger: invalid time zone environment variables leads to error (#2865) (d55465f)

Features

  • metrics: add unit None for CloudWatch EMF Metrics (#2904) (fa27cba)
  • parser: add helper function to handle JSON stringified fields (#2901) (806b884)
Commits
  • 24c423c chore(ci): bump version to 2.7.0 (#2905)
  • fa27cba feat(metrics): add unit None for CloudWatch EMF Metrics (#2904)
  • 806b884 feat(parser): add helper function to handle JSON stringified fields (#2901)
  • b064408 chore(commons): extract lru-cache into commons (#2899)
  • a9d4a9c chore(deps-dev): bump lint-staged from 15.2.7 to 15.2.8 (#2885)
  • 13411dd chore(deps-dev): bump aws-sdk from 2.1667.0 to 2.1668.0 (#2890)
  • 4f7e33b chore(deps): bump the aws-cdk group across 1 directory with 2 updates (#2884)
  • b9b9ec6 chore(deps-dev): bump aws-sdk from 2.1666.0 to 2.1667.0 (#2886)
  • fae0fc9 chore(deps): bump typescript from 5.4.5 to 5.5.4 (#2820)
  • 3feba28 chore(ci): extract cached-node-modules action (#2876)
  • Additional commits viewable in compare view

Updates @aws-lambda-powertools/tracer from 2.6.0 to 2.7.0

Release notes

Sourced from @​aws-lambda-powertools/tracer's releases.

v2.7.0

Summary

This release 1/ brings a new helper function to parse JSON stringified fields when using Parser, 2/ and improved Metrics, which now can emit metrics using the None unit.

⭐️ Thanks to @​daschaa for fixing Logger and making it default to :UTC when encountering an invalid time zone value.

Quickly parse JSON stringified fields

Docs

You can now parse and validate JSON stringified fields using Zod schemas without having to transform them first. This is useful when working with payloads coming from sources that stringify payloads like Amazon API Gateway, Amazon SQS, Amazon Application Load Balancer (ALB), etc.

Use the JSONStringified helper to extend your schemas or any of the built-in schemas in Parser:

carbon-2

Metrics without unit

Docs

You can now create metrics without a unit of measure, this is helpful when your business metrics are tied to an abstract concept or when none of the units supported by the Embedded metric format specification fit.

carbon-2

Changes

🌟New features and non-breaking changes

  • feat(metrics): add unit None for CloudWatch EMF Metrics (#2904) by @​am29d
  • feat(parser): add helper functions to transform JSON stringified payloads (#2901) by @​am29d

📜 Documentation updates

... (truncated)

Changelog

Sourced from @​aws-lambda-powertools/tracer's changelog.

2.7.0 (2024-08-08)

Bug Fixes

  • logger: invalid time zone environment variables leads to error (#2865) (d55465f)

Features

  • metrics: add unit None for CloudWatch EMF Metrics (#2904) (fa27cba)
  • parser: add helper function to handle JSON stringified fields (#2901) (806b884)
Commits
  • 24c423c chore(ci): bump version to 2.7.0 (#2905)
  • fa27cba feat(metrics): add unit None for CloudWatch EMF Metrics (#2904)
  • 806b884 feat(parser): add helper function to handle JSON stringified fields (#2901)
  • b064408 chore(commons): extract lru-cache into commons (#2899)
  • a9d4a9c chore(deps-dev): bump lint-staged from 15.2.7 to 15.2.8 (#2885)
  • 13411dd chore(deps-dev): bump aws-sdk from 2.1667.0 to 2.1668.0 (#2890)
  • 4f7e33b chore(deps): bump the aws-cdk group across 1 directory with 2 updates (#2884)
  • b9b9ec6 chore(deps-dev): bump aws-sdk from 2.1666.0 to 2.1667.0 (#2886)
  • fae0fc9 chore(deps): bump typescript from 5.4.5 to 5.5.4 (#2820)
  • 3feba28 chore(ci): extract cached-node-modules action (#2876)
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the aws-powertools group in /lambdas with 3 updates: [@aws-lambda-powertools/logger](https://github.com/aws-powertools/powertools-lambda-typescript), [@aws-lambda-powertools/metrics](https://github.com/aws-powertools/powertools-lambda-typescript) and [@aws-lambda-powertools/tracer](https://github.com/aws-powertools/powertools-lambda-typescript).


Updates `@aws-lambda-powertools/logger` from 2.6.0 to 2.7.0
- [Release notes](https://github.com/aws-powertools/powertools-lambda-typescript/releases)
- [Changelog](https://github.com/aws-powertools/powertools-lambda-typescript/blob/main/CHANGELOG.md)
- [Commits](aws-powertools/powertools-lambda-typescript@v2.6.0...v2.7.0)

Updates `@aws-lambda-powertools/metrics` from 2.6.0 to 2.7.0
- [Release notes](https://github.com/aws-powertools/powertools-lambda-typescript/releases)
- [Changelog](https://github.com/aws-powertools/powertools-lambda-typescript/blob/main/CHANGELOG.md)
- [Commits](aws-powertools/powertools-lambda-typescript@v2.6.0...v2.7.0)

Updates `@aws-lambda-powertools/tracer` from 2.6.0 to 2.7.0
- [Release notes](https://github.com/aws-powertools/powertools-lambda-typescript/releases)
- [Changelog](https://github.com/aws-powertools/powertools-lambda-typescript/blob/main/CHANGELOG.md)
- [Commits](aws-powertools/powertools-lambda-typescript@v2.6.0...v2.7.0)

---
updated-dependencies:
- dependency-name: "@aws-lambda-powertools/logger"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: aws-powertools
- dependency-name: "@aws-lambda-powertools/metrics"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: aws-powertools
- dependency-name: "@aws-lambda-powertools/tracer"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: aws-powertools
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Aug 12, 2024
@stuartp44 stuartp44 merged commit f9533f3 into main Aug 13, 2024
4 checks passed
@stuartp44 stuartp44 deleted the dependabot/npm_and_yarn/lambdas/aws-powertools-fd2c072f42 branch August 13, 2024 08:02
npalm pushed a commit that referenced this pull request Aug 16, 2024
🤖 I have created a release *beep* *boop*
---


##
[5.15.0](v5.14.1...v5.15.0)
(2024-08-16)


### Features

* add time zone support for pool schedules
([#4063](#4063))
([b8f9eb4](b8f9eb4))
@janslow
* scale up for long waiting jobs (job retry)
([#4064](#4064))
([6120571](6120571))


### Bug Fixes

* **lambda:** bump axios from 1.7.2 to 1.7.4 in /lambdas
([#4071](#4071))
([2f32195](2f32195))
* **lambda:** bump the aws group in /lambdas with 5 updates
([#4057](#4057))
([5ecdbad](5ecdbad))
* **lambda:** bump the aws-powertools group in /lambdas with 3 updates
([#4058](#4058))
([f9533f3](f9533f3))
* **lambda:** Prevent scale-up lambda from starting runner for user repo
if org level runners is enabled
([#3909](#3909))
([98b1560](98b1560))
@PerGon

---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please). See
[documentation](https://github.com/googleapis/release-please#release-please).

Co-authored-by: forest-releaser[bot] <80285352+forest-releaser[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant