Skip to content

Commit

Permalink
fix(lambda): bump the aws-powertools group in /lambdas with 4 updates (
Browse files Browse the repository at this point in the history
…#4184)

Bumps the aws-powertools group in /lambdas with 4 updates:
[@aws-lambda-powertools/parameters](https://github.com/aws-powertools/powertools-lambda-typescript),
[@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/parameters` from 2.8.0 to 2.9.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/aws-powertools/powertools-lambda-typescript/releases"><code>@​aws-lambda-powertools/parameters</code>'s
releases</a>.</em></p>
<blockquote>
<h2>v2.9.0</h2>
<h2>Summary</h2>
<p>This release introduces <strong>1/</strong> the ability to process
records sequentially when working with async functions in Batch
Processing, <strong>2/</strong> a new option for Idempotency to
manipulate the payload stored for idempotent operations, and
<strong>3/</strong> the option to specify custom JMESPath functions when
selecting an idempotency key.</p>
<p>Finally, you can now use the Parser utility when using our public AWS
Lambda layers.</p>
<p>⭐️ Thanks to <a
href="https://github.com/arnabrahman"><code>@​arnabrahman</code></a>, <a
href="https://github.com/garysassano"><code>@​garysassano</code></a>
and, <a
href="https://github.com/scratchclaggy"><code>@​scratchclaggy</code></a>
for their big contributions to this release!</p>
<h3>Sequential async processing</h3>
<blockquote>
<p><a
href="https://docs.powertools.aws.dev/lambda/typescript/latest/utilities/batch/#sequential-async-processing">Docs</a></p>
</blockquote>
<p>You can now process records sequentially when working with async
functions in Batch Processing by setting the
<code>processInParallel</code> option to <code>false</code>. This is
useful for when you want to opt-out of the default behavior and preserve
the order of the records.</p>
<p><img
src="https://github.com/user-attachments/assets/11a452da-dd18-46e4-b8c4-db412086b5a5"
alt="carbon-4" /></p>
<h3>Manipulating idempotent responses</h3>
<blockquote>
<p><a
href="https://docs.powertools.aws.dev/lambda/typescript/latest/utilities/idempotency/#manipulating-the-idempotent-response">Docs</a></p>
</blockquote>
<p>Now you can set up a <code>responseHook</code> function when
configuring the Idempotency utility to manipulate the returned data when
an operation is idempotent.</p>
<p><img
src="https://github.com/user-attachments/assets/125bd912-c98b-4304-bb49-586d02ba98dc"
alt="carbon-3" /></p>
<h3>Custom JMESPath functions with Idempotency</h3>
<blockquote>
<p><a
href="https://docs.powertools.aws.dev/lambda/typescript/latest/utilities/idempotency/#custom-jmespath-functions">Docs</a></p>
</blockquote>
<p>You can now use custom JMESPath functions with the Idempotency
utility by configuring the <code>jmesPathOptions</code> in your
idempotency configuration. This is useful when you’re making idempotent
operations that accept complex payloads or encoding formats that are not
supported by default.</p>
<p><img
src="https://github.com/user-attachments/assets/f73138c7-e814-4cc5-a995-be15bb179b16"
alt="carbon-4" /></p>
<h2>Changes</h2>
<ul>
<li>chore(layers): remove schema parsing from layer canary (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3171">#3171</a>)
by <a
href="https://github.com/dreamorosi"><code>@​dreamorosi</code></a></li>
<li>chore(deps): bump zgosalvez/github-actions-ensure-sha-pinned-actions
from 3.0.12 to 3.0.14 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3162">#3162</a>)
by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a></li>
<li>chore(deps): bump github/codeql-action from 3.26.9 to 3.26.11 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3157">#3157</a>)
by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a></li>
<li>chore(deps): bump actions/checkout from 4.1.7 to 4.2.0 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3122">#3122</a>)
by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a></li>
<li>chore(deps): bump github/codeql-action from 3.26.8 to 3.26.9 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3114">#3114</a>)
by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a></li>
<li>chore(deps): bump actions/setup-node from 4.0.3 to 4.0.4 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3097">#3097</a>)
by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a></li>
<li>chore(layers): add Parser to layer (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3101">#3101</a>)
by <a
href="https://github.com/scratchclaggy"><code>@​scratchclaggy</code></a></li>
<li>chore(deps): bump github/codeql-action from 3.26.7 to 3.26.8 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3087">#3087</a>)
by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a></li>
</ul>
<h2>🌟New features and non-breaking changes</h2>
<ul>
<li>feat(idempotency): ability to specify JMESPath custom functions (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3150">#3150</a>)
by <a
href="https://github.com/arnabrahman"><code>@​arnabrahman</code></a></li>
<li>feat(batch): sequential async processing of records for
<code>BatchProcessor</code> (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3109">#3109</a>)
by <a
href="https://github.com/arnabrahman"><code>@​arnabrahman</code></a></li>
<li>feat(idempotency): manipulate idempotent response via response hook
(<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3071">#3071</a>)
by <a
href="https://github.com/arnabrahman"><code>@​arnabrahman</code></a></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/aws-powertools/powertools-lambda-typescript/blob/main/CHANGELOG.md"><code>@​aws-lambda-powertools/parameters</code>'s
changelog</a>.</em></p>
<blockquote>
<h1><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.8.0...v2.9.0">2.9.0</a>
(2024-10-07)</h1>
<h3>Features</h3>
<ul>
<li><strong>batch:</strong> sequential async processing of records for
<code>BatchProcessor</code> (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3109">#3109</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/e31279af90446050a7974fbe25c34758f64915f9">e31279a</a>)</li>
<li><strong>idempotency:</strong> ability to specify JMESPath custom
functions (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3150">#3150</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/869b6fced659ad820ffe79a0b905022061570974">869b6fc</a>)</li>
<li><strong>idempotency:</strong> manipulate idempotent response via
response hook (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3071">#3071</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/f7c176901a36698f591d897c2abde54cf30c9ea9">f7c1769</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/71e70f5b42527a78c3ceef7e0533ff7c298605f3"><code>71e70f5</code></a>
chore(ci): bump version to 2.9.0 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3164">#3164</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/74c6eddc2a7b456781031e0ec2ed834087f50a55"><code>74c6edd</code></a>
chore(deps): bump the aws-cdk group across 1 directory with 2 updates
(<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3163">#3163</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/613d32ce4f3e1f7136e81f55fda04c5205d987d1"><code>613d32c</code></a>
chore(deps): bump zgosalvez/github-actions-ensure-sha-pinned-actions
from 3.0...</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/39b805b030c75756952b9434947e8c611e5295ab"><code>39b805b</code></a>
chore(deps): bump the aws-sdk-v3 group across 1 directory with 9 updates
(<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3156">#3156</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/7be70a1ab157955af7c627e609f424e870c95f2d"><code>7be70a1</code></a>
chore(deps): bump github/codeql-action from 3.26.9 to 3.26.11 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3157">#3157</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/489c8ad9f261caa0e6e60a4d8fe177c1d6f0507f"><code>489c8ad</code></a>
chore(maintenance): add Flyweight customer reference (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3161">#3161</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/0c44517b17611fb7d6a9a622fccb8b354267890c"><code>0c44517</code></a>
docs(parser): highlight <code>JSONStringify</code> helper (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3158">#3158</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/869b6fced659ad820ffe79a0b905022061570974"><code>869b6fc</code></a>
feat(idempotency): ability to specify JMESPath custom functions (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3150">#3150</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/686e5240696edf7f8376f7a810a9d5be451b4f9f"><code>686e524</code></a>
chore(metrics): expose <code>MetricsInterface</code> as return type of
single metric and...</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/c97d379e47371e2074960bf6d5164ae8428056fc"><code>c97d379</code></a>
test(idempotency): switch e2e tests to vitest (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3149">#3149</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.8.0...v2.9.0">compare
view</a></li>
</ul>
</details>
<br />

Updates `@aws-lambda-powertools/logger` from 2.8.0 to 2.9.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/aws-powertools/powertools-lambda-typescript/releases"><code>@​aws-lambda-powertools/logger</code>'s
releases</a>.</em></p>
<blockquote>
<h2>v2.9.0</h2>
<h2>Summary</h2>
<p>This release introduces <strong>1/</strong> the ability to process
records sequentially when working with async functions in Batch
Processing, <strong>2/</strong> a new option for Idempotency to
manipulate the payload stored for idempotent operations, and
<strong>3/</strong> the option to specify custom JMESPath functions when
selecting an idempotency key.</p>
<p>Finally, you can now use the Parser utility when using our public AWS
Lambda layers.</p>
<p>⭐️ Thanks to <a
href="https://github.com/arnabrahman"><code>@​arnabrahman</code></a>, <a
href="https://github.com/garysassano"><code>@​garysassano</code></a>
and, <a
href="https://github.com/scratchclaggy"><code>@​scratchclaggy</code></a>
for their big contributions to this release!</p>
<h3>Sequential async processing</h3>
<blockquote>
<p><a
href="https://docs.powertools.aws.dev/lambda/typescript/latest/utilities/batch/#sequential-async-processing">Docs</a></p>
</blockquote>
<p>You can now process records sequentially when working with async
functions in Batch Processing by setting the
<code>processInParallel</code> option to <code>false</code>. This is
useful for when you want to opt-out of the default behavior and preserve
the order of the records.</p>
<p><img
src="https://github.com/user-attachments/assets/11a452da-dd18-46e4-b8c4-db412086b5a5"
alt="carbon-4" /></p>
<h3>Manipulating idempotent responses</h3>
<blockquote>
<p><a
href="https://docs.powertools.aws.dev/lambda/typescript/latest/utilities/idempotency/#manipulating-the-idempotent-response">Docs</a></p>
</blockquote>
<p>Now you can set up a <code>responseHook</code> function when
configuring the Idempotency utility to manipulate the returned data when
an operation is idempotent.</p>
<p><img
src="https://github.com/user-attachments/assets/125bd912-c98b-4304-bb49-586d02ba98dc"
alt="carbon-3" /></p>
<h3>Custom JMESPath functions with Idempotency</h3>
<blockquote>
<p><a
href="https://docs.powertools.aws.dev/lambda/typescript/latest/utilities/idempotency/#custom-jmespath-functions">Docs</a></p>
</blockquote>
<p>You can now use custom JMESPath functions with the Idempotency
utility by configuring the <code>jmesPathOptions</code> in your
idempotency configuration. This is useful when you’re making idempotent
operations that accept complex payloads or encoding formats that are not
supported by default.</p>
<p><img
src="https://github.com/user-attachments/assets/f73138c7-e814-4cc5-a995-be15bb179b16"
alt="carbon-4" /></p>
<h2>Changes</h2>
<ul>
<li>chore(layers): remove schema parsing from layer canary (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3171">#3171</a>)
by <a
href="https://github.com/dreamorosi"><code>@​dreamorosi</code></a></li>
<li>chore(deps): bump zgosalvez/github-actions-ensure-sha-pinned-actions
from 3.0.12 to 3.0.14 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3162">#3162</a>)
by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a></li>
<li>chore(deps): bump github/codeql-action from 3.26.9 to 3.26.11 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3157">#3157</a>)
by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a></li>
<li>chore(deps): bump actions/checkout from 4.1.7 to 4.2.0 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3122">#3122</a>)
by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a></li>
<li>chore(deps): bump github/codeql-action from 3.26.8 to 3.26.9 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3114">#3114</a>)
by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a></li>
<li>chore(deps): bump actions/setup-node from 4.0.3 to 4.0.4 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3097">#3097</a>)
by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a></li>
<li>chore(layers): add Parser to layer (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3101">#3101</a>)
by <a
href="https://github.com/scratchclaggy"><code>@​scratchclaggy</code></a></li>
<li>chore(deps): bump github/codeql-action from 3.26.7 to 3.26.8 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3087">#3087</a>)
by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a></li>
</ul>
<h2>🌟New features and non-breaking changes</h2>
<ul>
<li>feat(idempotency): ability to specify JMESPath custom functions (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3150">#3150</a>)
by <a
href="https://github.com/arnabrahman"><code>@​arnabrahman</code></a></li>
<li>feat(batch): sequential async processing of records for
<code>BatchProcessor</code> (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3109">#3109</a>)
by <a
href="https://github.com/arnabrahman"><code>@​arnabrahman</code></a></li>
<li>feat(idempotency): manipulate idempotent response via response hook
(<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3071">#3071</a>)
by <a
href="https://github.com/arnabrahman"><code>@​arnabrahman</code></a></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/aws-powertools/powertools-lambda-typescript/blob/main/CHANGELOG.md"><code>@​aws-lambda-powertools/logger</code>'s
changelog</a>.</em></p>
<blockquote>
<h1><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.8.0...v2.9.0">2.9.0</a>
(2024-10-07)</h1>
<h3>Features</h3>
<ul>
<li><strong>batch:</strong> sequential async processing of records for
<code>BatchProcessor</code> (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3109">#3109</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/e31279af90446050a7974fbe25c34758f64915f9">e31279a</a>)</li>
<li><strong>idempotency:</strong> ability to specify JMESPath custom
functions (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3150">#3150</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/869b6fced659ad820ffe79a0b905022061570974">869b6fc</a>)</li>
<li><strong>idempotency:</strong> manipulate idempotent response via
response hook (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3071">#3071</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/f7c176901a36698f591d897c2abde54cf30c9ea9">f7c1769</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/71e70f5b42527a78c3ceef7e0533ff7c298605f3"><code>71e70f5</code></a>
chore(ci): bump version to 2.9.0 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3164">#3164</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/74c6eddc2a7b456781031e0ec2ed834087f50a55"><code>74c6edd</code></a>
chore(deps): bump the aws-cdk group across 1 directory with 2 updates
(<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3163">#3163</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/613d32ce4f3e1f7136e81f55fda04c5205d987d1"><code>613d32c</code></a>
chore(deps): bump zgosalvez/github-actions-ensure-sha-pinned-actions
from 3.0...</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/39b805b030c75756952b9434947e8c611e5295ab"><code>39b805b</code></a>
chore(deps): bump the aws-sdk-v3 group across 1 directory with 9 updates
(<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3156">#3156</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/7be70a1ab157955af7c627e609f424e870c95f2d"><code>7be70a1</code></a>
chore(deps): bump github/codeql-action from 3.26.9 to 3.26.11 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3157">#3157</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/489c8ad9f261caa0e6e60a4d8fe177c1d6f0507f"><code>489c8ad</code></a>
chore(maintenance): add Flyweight customer reference (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3161">#3161</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/0c44517b17611fb7d6a9a622fccb8b354267890c"><code>0c44517</code></a>
docs(parser): highlight <code>JSONStringify</code> helper (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3158">#3158</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/869b6fced659ad820ffe79a0b905022061570974"><code>869b6fc</code></a>
feat(idempotency): ability to specify JMESPath custom functions (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3150">#3150</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/686e5240696edf7f8376f7a810a9d5be451b4f9f"><code>686e524</code></a>
chore(metrics): expose <code>MetricsInterface</code> as return type of
single metric and...</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/c97d379e47371e2074960bf6d5164ae8428056fc"><code>c97d379</code></a>
test(idempotency): switch e2e tests to vitest (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3149">#3149</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.8.0...v2.9.0">compare
view</a></li>
</ul>
</details>
<br />

Updates `@aws-lambda-powertools/metrics` from 2.8.0 to 2.9.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/aws-powertools/powertools-lambda-typescript/releases"><code>@​aws-lambda-powertools/metrics</code>'s
releases</a>.</em></p>
<blockquote>
<h2>v2.9.0</h2>
<h2>Summary</h2>
<p>This release introduces <strong>1/</strong> the ability to process
records sequentially when working with async functions in Batch
Processing, <strong>2/</strong> a new option for Idempotency to
manipulate the payload stored for idempotent operations, and
<strong>3/</strong> the option to specify custom JMESPath functions when
selecting an idempotency key.</p>
<p>Finally, you can now use the Parser utility when using our public AWS
Lambda layers.</p>
<p>⭐️ Thanks to <a
href="https://github.com/arnabrahman"><code>@​arnabrahman</code></a>, <a
href="https://github.com/garysassano"><code>@​garysassano</code></a>
and, <a
href="https://github.com/scratchclaggy"><code>@​scratchclaggy</code></a>
for their big contributions to this release!</p>
<h3>Sequential async processing</h3>
<blockquote>
<p><a
href="https://docs.powertools.aws.dev/lambda/typescript/latest/utilities/batch/#sequential-async-processing">Docs</a></p>
</blockquote>
<p>You can now process records sequentially when working with async
functions in Batch Processing by setting the
<code>processInParallel</code> option to <code>false</code>. This is
useful for when you want to opt-out of the default behavior and preserve
the order of the records.</p>
<p><img
src="https://github.com/user-attachments/assets/11a452da-dd18-46e4-b8c4-db412086b5a5"
alt="carbon-4" /></p>
<h3>Manipulating idempotent responses</h3>
<blockquote>
<p><a
href="https://docs.powertools.aws.dev/lambda/typescript/latest/utilities/idempotency/#manipulating-the-idempotent-response">Docs</a></p>
</blockquote>
<p>Now you can set up a <code>responseHook</code> function when
configuring the Idempotency utility to manipulate the returned data when
an operation is idempotent.</p>
<p><img
src="https://github.com/user-attachments/assets/125bd912-c98b-4304-bb49-586d02ba98dc"
alt="carbon-3" /></p>
<h3>Custom JMESPath functions with Idempotency</h3>
<blockquote>
<p><a
href="https://docs.powertools.aws.dev/lambda/typescript/latest/utilities/idempotency/#custom-jmespath-functions">Docs</a></p>
</blockquote>
<p>You can now use custom JMESPath functions with the Idempotency
utility by configuring the <code>jmesPathOptions</code> in your
idempotency configuration. This is useful when you’re making idempotent
operations that accept complex payloads or encoding formats that are not
supported by default.</p>
<p><img
src="https://github.com/user-attachments/assets/f73138c7-e814-4cc5-a995-be15bb179b16"
alt="carbon-4" /></p>
<h2>Changes</h2>
<ul>
<li>chore(layers): remove schema parsing from layer canary (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3171">#3171</a>)
by <a
href="https://github.com/dreamorosi"><code>@​dreamorosi</code></a></li>
<li>chore(deps): bump zgosalvez/github-actions-ensure-sha-pinned-actions
from 3.0.12 to 3.0.14 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3162">#3162</a>)
by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a></li>
<li>chore(deps): bump github/codeql-action from 3.26.9 to 3.26.11 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3157">#3157</a>)
by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a></li>
<li>chore(deps): bump actions/checkout from 4.1.7 to 4.2.0 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3122">#3122</a>)
by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a></li>
<li>chore(deps): bump github/codeql-action from 3.26.8 to 3.26.9 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3114">#3114</a>)
by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a></li>
<li>chore(deps): bump actions/setup-node from 4.0.3 to 4.0.4 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3097">#3097</a>)
by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a></li>
<li>chore(layers): add Parser to layer (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3101">#3101</a>)
by <a
href="https://github.com/scratchclaggy"><code>@​scratchclaggy</code></a></li>
<li>chore(deps): bump github/codeql-action from 3.26.7 to 3.26.8 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3087">#3087</a>)
by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a></li>
</ul>
<h2>🌟New features and non-breaking changes</h2>
<ul>
<li>feat(idempotency): ability to specify JMESPath custom functions (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3150">#3150</a>)
by <a
href="https://github.com/arnabrahman"><code>@​arnabrahman</code></a></li>
<li>feat(batch): sequential async processing of records for
<code>BatchProcessor</code> (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3109">#3109</a>)
by <a
href="https://github.com/arnabrahman"><code>@​arnabrahman</code></a></li>
<li>feat(idempotency): manipulate idempotent response via response hook
(<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3071">#3071</a>)
by <a
href="https://github.com/arnabrahman"><code>@​arnabrahman</code></a></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/aws-powertools/powertools-lambda-typescript/blob/main/CHANGELOG.md"><code>@​aws-lambda-powertools/metrics</code>'s
changelog</a>.</em></p>
<blockquote>
<h1><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.8.0...v2.9.0">2.9.0</a>
(2024-10-07)</h1>
<h3>Features</h3>
<ul>
<li><strong>batch:</strong> sequential async processing of records for
<code>BatchProcessor</code> (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3109">#3109</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/e31279af90446050a7974fbe25c34758f64915f9">e31279a</a>)</li>
<li><strong>idempotency:</strong> ability to specify JMESPath custom
functions (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3150">#3150</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/869b6fced659ad820ffe79a0b905022061570974">869b6fc</a>)</li>
<li><strong>idempotency:</strong> manipulate idempotent response via
response hook (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3071">#3071</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/f7c176901a36698f591d897c2abde54cf30c9ea9">f7c1769</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/71e70f5b42527a78c3ceef7e0533ff7c298605f3"><code>71e70f5</code></a>
chore(ci): bump version to 2.9.0 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3164">#3164</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/74c6eddc2a7b456781031e0ec2ed834087f50a55"><code>74c6edd</code></a>
chore(deps): bump the aws-cdk group across 1 directory with 2 updates
(<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3163">#3163</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/613d32ce4f3e1f7136e81f55fda04c5205d987d1"><code>613d32c</code></a>
chore(deps): bump zgosalvez/github-actions-ensure-sha-pinned-actions
from 3.0...</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/39b805b030c75756952b9434947e8c611e5295ab"><code>39b805b</code></a>
chore(deps): bump the aws-sdk-v3 group across 1 directory with 9 updates
(<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3156">#3156</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/7be70a1ab157955af7c627e609f424e870c95f2d"><code>7be70a1</code></a>
chore(deps): bump github/codeql-action from 3.26.9 to 3.26.11 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3157">#3157</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/489c8ad9f261caa0e6e60a4d8fe177c1d6f0507f"><code>489c8ad</code></a>
chore(maintenance): add Flyweight customer reference (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3161">#3161</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/0c44517b17611fb7d6a9a622fccb8b354267890c"><code>0c44517</code></a>
docs(parser): highlight <code>JSONStringify</code> helper (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3158">#3158</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/869b6fced659ad820ffe79a0b905022061570974"><code>869b6fc</code></a>
feat(idempotency): ability to specify JMESPath custom functions (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3150">#3150</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/686e5240696edf7f8376f7a810a9d5be451b4f9f"><code>686e524</code></a>
chore(metrics): expose <code>MetricsInterface</code> as return type of
single metric and...</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/c97d379e47371e2074960bf6d5164ae8428056fc"><code>c97d379</code></a>
test(idempotency): switch e2e tests to vitest (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3149">#3149</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.8.0...v2.9.0">compare
view</a></li>
</ul>
</details>
<br />

Updates `@aws-lambda-powertools/tracer` from 2.8.0 to 2.9.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/aws-powertools/powertools-lambda-typescript/releases"><code>@​aws-lambda-powertools/tracer</code>'s
releases</a>.</em></p>
<blockquote>
<h2>v2.9.0</h2>
<h2>Summary</h2>
<p>This release introduces <strong>1/</strong> the ability to process
records sequentially when working with async functions in Batch
Processing, <strong>2/</strong> a new option for Idempotency to
manipulate the payload stored for idempotent operations, and
<strong>3/</strong> the option to specify custom JMESPath functions when
selecting an idempotency key.</p>
<p>Finally, you can now use the Parser utility when using our public AWS
Lambda layers.</p>
<p>⭐️ Thanks to <a
href="https://github.com/arnabrahman"><code>@​arnabrahman</code></a>, <a
href="https://github.com/garysassano"><code>@​garysassano</code></a>
and, <a
href="https://github.com/scratchclaggy"><code>@​scratchclaggy</code></a>
for their big contributions to this release!</p>
<h3>Sequential async processing</h3>
<blockquote>
<p><a
href="https://docs.powertools.aws.dev/lambda/typescript/latest/utilities/batch/#sequential-async-processing">Docs</a></p>
</blockquote>
<p>You can now process records sequentially when working with async
functions in Batch Processing by setting the
<code>processInParallel</code> option to <code>false</code>. This is
useful for when you want to opt-out of the default behavior and preserve
the order of the records.</p>
<p><img
src="https://github.com/user-attachments/assets/11a452da-dd18-46e4-b8c4-db412086b5a5"
alt="carbon-4" /></p>
<h3>Manipulating idempotent responses</h3>
<blockquote>
<p><a
href="https://docs.powertools.aws.dev/lambda/typescript/latest/utilities/idempotency/#manipulating-the-idempotent-response">Docs</a></p>
</blockquote>
<p>Now you can set up a <code>responseHook</code> function when
configuring the Idempotency utility to manipulate the returned data when
an operation is idempotent.</p>
<p><img
src="https://github.com/user-attachments/assets/125bd912-c98b-4304-bb49-586d02ba98dc"
alt="carbon-3" /></p>
<h3>Custom JMESPath functions with Idempotency</h3>
<blockquote>
<p><a
href="https://docs.powertools.aws.dev/lambda/typescript/latest/utilities/idempotency/#custom-jmespath-functions">Docs</a></p>
</blockquote>
<p>You can now use custom JMESPath functions with the Idempotency
utility by configuring the <code>jmesPathOptions</code> in your
idempotency configuration. This is useful when you’re making idempotent
operations that accept complex payloads or encoding formats that are not
supported by default.</p>
<p><img
src="https://github.com/user-attachments/assets/f73138c7-e814-4cc5-a995-be15bb179b16"
alt="carbon-4" /></p>
<h2>Changes</h2>
<ul>
<li>chore(layers): remove schema parsing from layer canary (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3171">#3171</a>)
by <a
href="https://github.com/dreamorosi"><code>@​dreamorosi</code></a></li>
<li>chore(deps): bump zgosalvez/github-actions-ensure-sha-pinned-actions
from 3.0.12 to 3.0.14 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3162">#3162</a>)
by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a></li>
<li>chore(deps): bump github/codeql-action from 3.26.9 to 3.26.11 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3157">#3157</a>)
by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a></li>
<li>chore(deps): bump actions/checkout from 4.1.7 to 4.2.0 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3122">#3122</a>)
by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a></li>
<li>chore(deps): bump github/codeql-action from 3.26.8 to 3.26.9 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3114">#3114</a>)
by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a></li>
<li>chore(deps): bump actions/setup-node from 4.0.3 to 4.0.4 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3097">#3097</a>)
by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a></li>
<li>chore(layers): add Parser to layer (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3101">#3101</a>)
by <a
href="https://github.com/scratchclaggy"><code>@​scratchclaggy</code></a></li>
<li>chore(deps): bump github/codeql-action from 3.26.7 to 3.26.8 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3087">#3087</a>)
by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a></li>
</ul>
<h2>🌟New features and non-breaking changes</h2>
<ul>
<li>feat(idempotency): ability to specify JMESPath custom functions (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3150">#3150</a>)
by <a
href="https://github.com/arnabrahman"><code>@​arnabrahman</code></a></li>
<li>feat(batch): sequential async processing of records for
<code>BatchProcessor</code> (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3109">#3109</a>)
by <a
href="https://github.com/arnabrahman"><code>@​arnabrahman</code></a></li>
<li>feat(idempotency): manipulate idempotent response via response hook
(<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3071">#3071</a>)
by <a
href="https://github.com/arnabrahman"><code>@​arnabrahman</code></a></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/aws-powertools/powertools-lambda-typescript/blob/main/CHANGELOG.md"><code>@​aws-lambda-powertools/tracer</code>'s
changelog</a>.</em></p>
<blockquote>
<h1><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.8.0...v2.9.0">2.9.0</a>
(2024-10-07)</h1>
<h3>Features</h3>
<ul>
<li><strong>batch:</strong> sequential async processing of records for
<code>BatchProcessor</code> (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3109">#3109</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/e31279af90446050a7974fbe25c34758f64915f9">e31279a</a>)</li>
<li><strong>idempotency:</strong> ability to specify JMESPath custom
functions (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3150">#3150</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/869b6fced659ad820ffe79a0b905022061570974">869b6fc</a>)</li>
<li><strong>idempotency:</strong> manipulate idempotent response via
response hook (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3071">#3071</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/f7c176901a36698f591d897c2abde54cf30c9ea9">f7c1769</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/71e70f5b42527a78c3ceef7e0533ff7c298605f3"><code>71e70f5</code></a>
chore(ci): bump version to 2.9.0 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3164">#3164</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/74c6eddc2a7b456781031e0ec2ed834087f50a55"><code>74c6edd</code></a>
chore(deps): bump the aws-cdk group across 1 directory with 2 updates
(<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3163">#3163</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/613d32ce4f3e1f7136e81f55fda04c5205d987d1"><code>613d32c</code></a>
chore(deps): bump zgosalvez/github-actions-ensure-sha-pinned-actions
from 3.0...</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/39b805b030c75756952b9434947e8c611e5295ab"><code>39b805b</code></a>
chore(deps): bump the aws-sdk-v3 group across 1 directory with 9 updates
(<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3156">#3156</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/7be70a1ab157955af7c627e609f424e870c95f2d"><code>7be70a1</code></a>
chore(deps): bump github/codeql-action from 3.26.9 to 3.26.11 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3157">#3157</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/489c8ad9f261caa0e6e60a4d8fe177c1d6f0507f"><code>489c8ad</code></a>
chore(maintenance): add Flyweight customer reference (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3161">#3161</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/0c44517b17611fb7d6a9a622fccb8b354267890c"><code>0c44517</code></a>
docs(parser): highlight <code>JSONStringify</code> helper (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3158">#3158</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/869b6fced659ad820ffe79a0b905022061570974"><code>869b6fc</code></a>
feat(idempotency): ability to specify JMESPath custom functions (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3150">#3150</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/686e5240696edf7f8376f7a810a9d5be451b4f9f"><code>686e524</code></a>
chore(metrics): expose <code>MetricsInterface</code> as return type of
single metric and...</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/c97d379e47371e2074960bf6d5164ae8428056fc"><code>c97d379</code></a>
test(idempotency): switch e2e tests to vitest (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3149">#3149</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.8.0...v2.9.0">compare
view</a></li>
</ul>
</details>
<br />


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-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

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


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Oct 17, 2024
1 parent a1f0390 commit e18ac60
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 37 deletions.
2 changes: 1 addition & 1 deletion lambdas/functions/control-plane/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"dependencies": {
"@aws-github-runner/aws-powertools-util": "*",
"@aws-github-runner/aws-ssm-util": "*",
"@aws-lambda-powertools/parameters": "^2.8.0",
"@aws-lambda-powertools/parameters": "^2.9.0",
"@aws-sdk/client-ec2": "^3.666.0",
"@aws-sdk/client-sqs": "^3.666.0",
"@aws-sdk/types": "^3.664.0",
Expand Down
6 changes: 3 additions & 3 deletions lambdas/libs/aws-powertools-util/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@
"typescript": "^5.5.4"
},
"dependencies": {
"@aws-lambda-powertools/logger": "^2.8.0",
"@aws-lambda-powertools/metrics": "^2.8.0",
"@aws-lambda-powertools/tracer": "^2.8.0",
"@aws-lambda-powertools/logger": "^2.9.0",
"@aws-lambda-powertools/metrics": "^2.9.0",
"@aws-lambda-powertools/tracer": "^2.9.0",
"aws-lambda": "^1.0.7"
},
"nx": {
Expand Down
66 changes: 33 additions & 33 deletions lambdas/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -134,9 +134,9 @@ __metadata:
version: 0.0.0-use.local
resolution: "@aws-github-runner/aws-powertools-util@workspace:libs/aws-powertools-util"
dependencies:
"@aws-lambda-powertools/logger": "npm:^2.8.0"
"@aws-lambda-powertools/metrics": "npm:^2.8.0"
"@aws-lambda-powertools/tracer": "npm:^2.8.0"
"@aws-lambda-powertools/logger": "npm:^2.9.0"
"@aws-lambda-powertools/metrics": "npm:^2.9.0"
"@aws-lambda-powertools/tracer": "npm:^2.9.0"
"@trivago/prettier-plugin-sort-imports": "npm:^4.3.0"
"@types/aws-lambda": "npm:^8.10.145"
"@types/express": "npm:^4.17.21"
Expand Down Expand Up @@ -195,7 +195,7 @@ __metadata:
dependencies:
"@aws-github-runner/aws-powertools-util": "npm:*"
"@aws-github-runner/aws-ssm-util": "npm:*"
"@aws-lambda-powertools/parameters": "npm:^2.8.0"
"@aws-lambda-powertools/parameters": "npm:^2.9.0"
"@aws-sdk/client-ec2": "npm:^3.666.0"
"@aws-sdk/client-sqs": "npm:^3.666.0"
"@aws-sdk/types": "npm:^3.664.0"
Expand Down Expand Up @@ -327,47 +327,47 @@ __metadata:
languageName: unknown
linkType: soft

"@aws-lambda-powertools/commons@npm:^2.8.0":
version: 2.8.0
resolution: "@aws-lambda-powertools/commons@npm:2.8.0"
checksum: 10c0/d8e5591e4bf56f3aaaa3015a78f5a3c7db84ff81e9b709d3317e7b79909ac34873c9533236dca829b45aae1cc87ad8519cfa3606dc3db8ac993ffa24ecd20b1a
"@aws-lambda-powertools/commons@npm:^2.9.0":
version: 2.9.0
resolution: "@aws-lambda-powertools/commons@npm:2.9.0"
checksum: 10c0/93754305c05196651dce62c68a8ceb5fe59e029fe11f1361a06d192e34cee07e70f9cc0e17eefaa4a760f3910eb02f2f0b70cb9482d3635e05afe217a2ee1766
languageName: node
linkType: hard

"@aws-lambda-powertools/logger@npm:^2.8.0":
version: 2.8.0
resolution: "@aws-lambda-powertools/logger@npm:2.8.0"
"@aws-lambda-powertools/logger@npm:^2.9.0":
version: 2.9.0
resolution: "@aws-lambda-powertools/logger@npm:2.9.0"
dependencies:
"@aws-lambda-powertools/commons": "npm:^2.8.0"
"@aws-lambda-powertools/commons": "npm:^2.9.0"
lodash.merge: "npm:^4.6.2"
peerDependencies:
"@middy/core": 4.x || 5.x
peerDependenciesMeta:
"@middy/core":
optional: true
checksum: 10c0/464d05a2f81b5802956efa7eaac2c6a1d42edd9c78181d4e67de09ee01efe78caa5644e5517308fb67ded23dd8eb51ac282327755ab3e2c7672ec1fb26d7e5a0
checksum: 10c0/5afb0a2a77bb23eb7c18fd96e46f7bafccd7ed616bd18c4e023a1af556c566ede8c92ba5285ec5f8cdb9ebfe73055903ee25b595642b5d7ebbb1ab8b28658640
languageName: node
linkType: hard

"@aws-lambda-powertools/metrics@npm:^2.8.0":
version: 2.8.0
resolution: "@aws-lambda-powertools/metrics@npm:2.8.0"
"@aws-lambda-powertools/metrics@npm:^2.9.0":
version: 2.9.0
resolution: "@aws-lambda-powertools/metrics@npm:2.9.0"
dependencies:
"@aws-lambda-powertools/commons": "npm:^2.8.0"
"@aws-lambda-powertools/commons": "npm:^2.9.0"
peerDependencies:
"@middy/core": 4.x || 5.x
peerDependenciesMeta:
"@middy/core":
optional: true
checksum: 10c0/7deb11c757a77f4cca76cf212bcc648340a6dd6a52ec93f1693024280876938d62328e2ed512d94d2e5a374956bda8a3600c94826606ba78f6dbf73a59dde5b5
checksum: 10c0/bc6e3c57be24d77cc770ba93903a8fce050b34080e4de3b8432ccfb601da6d097730008d2b2203e391c9782fc8a05c504ef9b37adb78d589a2a83dbb2f418878
languageName: node
linkType: hard

"@aws-lambda-powertools/parameters@npm:^2.8.0":
version: 2.8.0
resolution: "@aws-lambda-powertools/parameters@npm:2.8.0"
"@aws-lambda-powertools/parameters@npm:^2.9.0":
version: 2.9.0
resolution: "@aws-lambda-powertools/parameters@npm:2.9.0"
dependencies:
"@aws-lambda-powertools/commons": "npm:^2.8.0"
"@aws-lambda-powertools/commons": "npm:^2.9.0"
peerDependencies:
"@aws-sdk/client-appconfigdata": ">=3.x"
"@aws-sdk/client-dynamodb": ">=3.x"
Expand All @@ -388,22 +388,22 @@ __metadata:
optional: true
"@middy/core":
optional: true
checksum: 10c0/f44146f80a5ad771e0f46411b5ddf9cd72852d60491e0929e2c4546222186758716aab3a7a71b67d151b02d380033ca8eacf78f81a4b29dd95d1bc977fc8622a
checksum: 10c0/551e6c70bab4263b83f6000f1dbe9ee4142f23a0514d6e5bca8066629c1b0d5e6e722456cb106c7ef6bd56c3ee87a896e88e3fdcb579a1bc070cb96806f054ca
languageName: node
linkType: hard

"@aws-lambda-powertools/tracer@npm:^2.8.0":
version: 2.8.0
resolution: "@aws-lambda-powertools/tracer@npm:2.8.0"
"@aws-lambda-powertools/tracer@npm:^2.9.0":
version: 2.9.0
resolution: "@aws-lambda-powertools/tracer@npm:2.9.0"
dependencies:
"@aws-lambda-powertools/commons": "npm:^2.8.0"
aws-xray-sdk-core: "npm:^3.10.0"
"@aws-lambda-powertools/commons": "npm:^2.9.0"
aws-xray-sdk-core: "npm:^3.10.1"
peerDependencies:
"@middy/core": 4.x || 5.x
peerDependenciesMeta:
"@middy/core":
optional: true
checksum: 10c0/2d781e5d60a905f5f829585605a9891b5f4cb8f952bf202c55ef61bb2d9f847a79787f7c3c18abf7614daa1d602aebc6c7bcbea5c6c01650da5a8cc03cd5d6b0
checksum: 10c0/06eed6ee7c5aff687995c0442a8faf3e1e743167d2d65ba814f45d0eae1c12089b4040eb4032f9bb864451c45f8febcdc9a4588daafc16e363fbdfe3e6a235c6
languageName: node
linkType: hard

Expand Down Expand Up @@ -5806,17 +5806,17 @@ __metadata:
languageName: node
linkType: hard

"aws-xray-sdk-core@npm:^3.10.0":
version: 3.10.0
resolution: "aws-xray-sdk-core@npm:3.10.0"
"aws-xray-sdk-core@npm:^3.10.1":
version: 3.10.1
resolution: "aws-xray-sdk-core@npm:3.10.1"
dependencies:
"@aws-sdk/types": "npm:^3.4.1"
"@smithy/service-error-classification": "npm:^2.0.4"
"@types/cls-hooked": "npm:^4.3.3"
atomic-batcher: "npm:^1.0.2"
cls-hooked: "npm:^4.2.2"
semver: "npm:^7.5.3"
checksum: 10c0/4c8985d49974d1b880bda8d1ecea921c00200da7d5e491ab8c8a7dcaab21503ea14f1f20c22d86622531bb765ad4d4edf616d061d6f395f792d6426427a86e38
checksum: 10c0/e7a084e08458ef8a75001ef5ddc137633d741f164e2e1126deae2065926e9d464ca494e55240193062503b32d512e567a2d7bc3f6ced8dff137a425d4623f0bb
languageName: node
linkType: hard

Expand Down

0 comments on commit e18ac60

Please sign in to comment.