Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(lambda): bump the aws-powertools group in /lambdas with 4 updates (…
…#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] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
- Loading branch information