Skip to content

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Dec 8, 2025

Bumps the npm group with 6 updates in the /source/image-handler directory:

Package From To
@aws-sdk/client-s3 3.921.0 3.946.0
@aws-lambda-powertools/logger 2.28.1 2.29.0
@types/aws-lambda 8.10.157 8.10.159
prettier 3.6.2 3.7.4
ts-jest 29.4.5 29.4.6
tsup 8.5.0 8.5.1

Updates @aws-sdk/client-s3 from 3.921.0 to 3.946.0

Release notes

Sourced from @​aws-sdk/client-s3's releases.

v3.946.0

3.946.0(2025-12-05)

Chores
Documentation Changes
  • client-ecs: Updating stop-task API to encapsulate containers with custom stop signal (d7a58e20)
New Features
  • client-iam: Adding the ExpirationTime attribute to the delegation request resource. (2de73924)
  • client-inspector2: This release adds a new ScanStatus called "Unsupported Code Artifacts". This ScanStatus will be returned when a Lambda function was not code scanned because it has unsupported code artifacts. (30b100c9)
  • client-partnercentral-account: Adding Verification API's to Partner Central Account SDK. (b9bad198)
  • client-sesv2: Updating the desired url for PutEmailIdentityDkimSigningAttributes from v1 to v2 (4e8746ff)
Bug Fixes
  • core/protocols:
  • ec2-metadata-service: discard response body stream on failed request (#7543) (2dc10c6f)

For list of updated packages, view updated-packages.md in assets-3.946.0.zip

v3.945.0

3.945.0(2025-12-04)

New Features
  • client-lambda: Add DisallowedByVpcEncryptionControl to the LastUpdateStatusReasonCode and StateReasonCode enums to represent failures caused by VPC Encryption Controls. (cc1ebe72)

For list of updated packages, view updated-packages.md in assets-3.945.0.zip

v3.944.0

3.944.0(2025-12-03)

New Features

... (truncated)

Changelog

Sourced from @​aws-sdk/client-s3's changelog.

3.946.0 (2025-12-05)

Note: Version bump only for package @​aws-sdk/client-s3

3.943.0 (2025-12-02)

Features

  • client-s3: New S3 Storage Class FSX_ONTAP (56ffa40)

3.940.0 (2025-11-25)

Note: Version bump only for package @​aws-sdk/client-s3

3.939.0 (2025-11-24)

Note: Version bump only for package @​aws-sdk/client-s3

3.937.0 (2025-11-20)

Features

  • client-s3: Enable / Disable ABAC on a general purpose bucket. (9816b26)

3.936.0 (2025-11-19)

Note: Version bump only for package @​aws-sdk/client-s3

... (truncated)

Commits

Updates @aws-lambda-powertools/logger from 2.28.1 to 2.29.0

Release notes

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

v2.29.0

Summary

🎉 Powertools for AWS Lambda (Typescript) - Event Handler Utility is now Generally Available (GA)

Docs

We're excited to announce that the Event Handler utility is now production-ready! 🚀 Event Handler provides lightweight routing to reduce boilerplate for API Gateway REST/HTTP API, ALB and Lambda Function URLs.

⭐ Congratulations to @​yoshi-taka, @​iamgerg, @​fidelisojeah, and @​benthorner for their first PR merged in the project 🎉

Import path update

With Event Handler moving to GA, the import path has changed from the experimental namespace to a stable one.

// Before
import { Router } from '@aws-lambda-powertools/event-handler/experimental-rest';
// Now
import { Router } from '@​aws-lambda-powertools/event-handler/http';

Support for HTTP APIs, ALB, and Function URL

Event Handler now supports HTTP APIs (API Gateway v2), Application Load Balancers (ALB) and Lambda Function URL in addition to the existing REST API and support. This means you can use the same routing API across different AWS services, making it easier to build and migrate serverless applications regardless of your chosen architecture.

import { Router } from '@aws-lambda-powertools/event-handler/http';
import type {
  ALBEvent,
  APIGatewayProxyEvent,
  APIGatewayProxyEventV2,
  Context,
  LambdaFunctionURLEvent,
} from 'aws-lambda';
const app = new Router();
app.get('/hello', () => {
return {
message: 'Hello Event Handler!',
};
});
// Works across different services without any changes
export const restApiHandler = (event: APIGatewayProxyEvent, context: Context) =>
app.resolve(event, context);
export const httpApiHandler = (
</tr></table>

... (truncated)

Changelog

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

2.29.0 (2025-11-21)

Improvements

  • commons Make trace ID access more robust (#4693) (b26cd2c)

Bug Fixes

  • logger infinite loop on log buffer when item size is max bytes (#4741) (f0677d4)
  • logger not passing persistent keys to children (#4740) (eafbe13)
  • event-handler moved the response mutation logic to the composeMiddleware function (#4773) (2fe04e3)
  • event-handler handle repeated queryString values (#4755) (5d3cf2d)
  • event-handler allow event handler response to return array (#4725) (eef92ca)

Features

  • logger use async local storage for logger (#4668) (4507fcc)
  • metrics use async local storage for metrics (#4663) (#4694) (2e08f74)
  • parser add type for values parsed by DynamoDBStreamRecord (#4793) (c2bd849)
  • batch use async local storage for batch processing (#4700) (67a8de7)
  • event-handler add support for ALB (#4759) (a470892)
  • event-handler expose response streaming in public API (#4743) (be4e4e2)
  • event-handler add first-class support for binary responses (#4723) (13dbcdc)
  • event-handler Add support for HTTP APIs (API Gateway v2) (#4714) (2f70018)

Maintenance

  • tracer bump aws-xray-sdk-core from 3.11.0 to 3.12.0 (#4792) (afb5678)
  • event-handler unflag http handler from experimental (#4801) (a2deb8d)
Commits
  • fa726e0 chore(ci): bump version to 2.29.0 (#4802)
  • a2deb8d chore(event-handler): unflag http handler from experimental (#4801)
  • c2bd849 feat(parser): add type for values parsed by DynamoDBStreamRecord (#4793)
  • afb5678 chore(deps): bump aws-xray-sdk-core from 3.11.0 to 3.12.0 (#4792)
  • 8806cad docs(event-handler): added documentation for support for HTTP API, ALB and FU...
  • d2e0fcc chore(deps): upgrade InvokeStore to v0.2.1 (#4794)
  • bccd0b1 docs(event-handler): add response streaming docs (#4786)
  • 2279f9b chore(deps): bump mkdocs-llmstxt from 0.4.0 to 0.5.0 in /docs (#4789)
  • 12c5e63 chore(deps): bump actions/checkout from 5.0.1 to 6.0.0 (#4788)
  • 943bb4f docs(event-handler): update binary response docs (#4783)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​aws-lambda-powertools/logger since your current version.


Updates @types/aws-lambda from 8.10.157 to 8.10.159

Commits

Updates prettier from 3.6.2 to 3.7.4

Release notes

Sourced from prettier's releases.

3.7.4

What's Changed

🔗 Changelog

3.7.3

What's Changed

🔗 Changelog

3.7.2

What's Changed

🔗 Changelog

3.7.1

🔗 Changelog

3.7.0

diff

🔗 Release note

Changelog

Sourced from prettier's changelog.

3.7.4

diff

LWC: Avoid quote around interpolations (#18383 by @​kovsu)

<!-- Input -->
<div foo={bar}>   </div>
<!-- Prettier 3.7.3 (--embedded-language-formatting off) -->
<div foo="{bar}"></div>
<!-- Prettier 3.7.4 (--embedded-language-formatting off) -->
<div foo={bar}></div>

TypeScript: Fix comment inside union type gets duplicated (#18393 by @​fisker)

// Input
type Foo = (/** comment */ a | b) | c;
// Prettier 3.7.3
type Foo = /** comment / (/* comment */ a | b) | c;
// Prettier 3.7.4
type Foo = /** comment */ (a | b) | c;

TypeScript: Fix unstable comment print in union type comments (#18395 by @​fisker)

// Input
type X = (A | B) & (
  // comment
  A | B
);
// Prettier 3.7.3 (first format)
type X = (A | B) &
(// comment
A | B);
// Prettier 3.7.3 (second format)
type X = (
| A
</tr></table>

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for prettier since your current version.


Updates ts-jest from 29.4.5 to 29.4.6

Release notes

Sourced from ts-jest's releases.

v29.4.6

Please refer to CHANGELOG.md for details.

Changelog

Sourced from ts-jest's changelog.

29.4.6 (2025-12-01)

Bug Fixes

  • log hybrid module as warning instead of failing tests (#5144) (528d37c), closes #5130
Commits
  • 202bde5 chore(release): 29.4.6 (#5146)
  • 528d37c fix: log hybrid module as warning instead of failing tests (#5144)
  • 141e5af build(deps): update github/codeql-action digest to 497990d
  • d281cce build(deps): update google/osv-scanner-action action to v2.3.0
  • 0d20322 build(deps): update dependency memfs to ^4.51.0
  • 455dde2 build(deps): update dependency js-yaml to ^4.1.1
  • d579480 build(deps): update dependency @​types/node to v20.19.25
  • f6859d0 build(deps): update dependency @​types/yargs to ^17.0.35
  • 4d7e432 build(deps): update github/codeql-action digest to d3ced5c
  • 4ea70c9 build(deps): update actions/checkout digest to 34e1148
  • Additional commits viewable in compare view

Updates tsup from 8.5.0 to 8.5.1

Release notes

Sourced from tsup's releases.

v8.5.1

   🐞 Bug Fixes

    View changes on GitHub
Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for tsup since your current version.


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


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

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

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Dec 8, 2025
Bumps the npm group with 6 updates in the /source/image-handler directory:

| Package | From | To |
| --- | --- | --- |
| [@aws-sdk/client-s3](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-s3) | `3.921.0` | `3.946.0` |
| [@aws-lambda-powertools/logger](https://github.com/aws-powertools/powertools-lambda-typescript) | `2.28.1` | `2.29.0` |
| [@types/aws-lambda](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/aws-lambda) | `8.10.157` | `8.10.159` |
| [prettier](https://github.com/prettier/prettier) | `3.6.2` | `3.7.4` |
| [ts-jest](https://github.com/kulshekhar/ts-jest) | `29.4.5` | `29.4.6` |
| [tsup](https://github.com/egoist/tsup) | `8.5.0` | `8.5.1` |



Updates `@aws-sdk/client-s3` from 3.921.0 to 3.946.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/clients/client-s3/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.946.0/clients/client-s3)

Updates `@aws-lambda-powertools/logger` from 2.28.1 to 2.29.0
- [Release notes](https://github.com/aws-powertools/powertools-lambda-typescript/releases)
- [Changelog](https://github.com/aws-powertools/powertools-lambda-typescript/blob/main/CHANGELOG.md)
- [Commits](aws-powertools/powertools-lambda-typescript@v2.28.1...v2.29.0)

Updates `@types/aws-lambda` from 8.10.157 to 8.10.159
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/aws-lambda)

Updates `prettier` from 3.6.2 to 3.7.4
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.6.2...3.7.4)

Updates `ts-jest` from 29.4.5 to 29.4.6
- [Release notes](https://github.com/kulshekhar/ts-jest/releases)
- [Changelog](https://github.com/kulshekhar/ts-jest/blob/main/CHANGELOG.md)
- [Commits](kulshekhar/ts-jest@v29.4.5...v29.4.6)

Updates `tsup` from 8.5.0 to 8.5.1
- [Release notes](https://github.com/egoist/tsup/releases)
- [Commits](egoist/tsup@v8.5.0...v8.5.1)

---
updated-dependencies:
- dependency-name: "@aws-sdk/client-s3"
  dependency-version: 3.946.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: "@aws-lambda-powertools/logger"
  dependency-version: 2.29.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: "@types/aws-lambda"
  dependency-version: 8.10.159
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: prettier
  dependency-version: 3.7.4
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: ts-jest
  dependency-version: 29.4.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: tsup
  dependency-version: 8.5.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/source/image-handler/npm-ce05c1e5a8 branch from dabb325 to c26b53f Compare December 22, 2025 11:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants