An open index of dependabot pull requests across open source projects.

Bump the dev-dependencies group across 1 directory with 3 updates

Merged
Number: #43
Type: Pull Request
State: Merged
Author: dependabot[bot] dependabot[bot]
Association: Contributor
Comments: 0
Created: July 15, 2025 at 06:16 AM UTC
(4 months ago)
Updated: July 15, 2025 at 06:16 AM UTC
(4 months ago)
Merged: July 15, 2025 at 06:16 AM UTC
(4 months ago)
by SebRamsland
Time to Close: 1 minute
Labels:
dependencies javascript
Description:

Bumps the dev-dependencies group with 3 updates in the /resources directory: @aws-sdk/client-s3, @types/node and esbuild.

Updates @aws-sdk/client-s3 from 3.840.0 to 3.844.0

Release notes

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

v3.844.0

3.844.0(2025-07-09)

Chores
  • codegen:
  • scripts: reduce publish concurrency to fix socket hang up (#7189) (8bcaf94f)
  • core: upgrade fast-xml-parser to 5.2.5 (#7176) (6cda13cf)
Documentation Changes
  • client-opsworkscm: Removing content that refers to an S3 bucket that is no longer in use. (64c467c7)
New Features
  • clients: update client endpoints as of 2025-07-09 (accc6e83)
  • client-ec2: Adds support to Capacity Blocks for ML for purchasing EC2 P6e-GB200 UltraServers. Customers can now purchase u-p6e-gb200x72 and u-p6e-gb200x36 UltraServers. Adds new DescribeCapacityBlocks andDescribeCapacityBlockStatus APIs. Adds support for CapacityBlockId to DescribeInstanceTopology. (202ec5f1)
  • client-freetier: This release introduces four new APIs: GetAccountPlanState and UpgradeAccountPlan for AWS account plan management; ListAccountActivities and GetAccountActivity that provide activity tracking capabilities. (5ad57558)
Bug Fixes
  • codegen: generate default endpoint provider for default regional AWS endpoints (#7190) (27a66c0b)
  • tests: prevent changeset race condition in parallel tests (#7183) (2d376dc2)
Tests
  • aws-client-api-test: add new endpoint variation tests (#7192) (a37bd632)

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

v3.843.0

3.843.0(2025-07-03)

New Features
  • clients: update client endpoints as of 2025-07-03 (8d7d3dff)
  • client-ec2: This release adds GroupOwnerId as a response member to the DescribeSecurityGroupVpcAssociations API and also adds waiters for SecurityGroupVpcAssociations (SecurityGroupVpcAssociationAssociated and SecurityGroupVpcAssociationDisassociated). (69f38fa8)
  • client-sagemaker: Changes include new StartSession API for SageMaker Studio spaces and CreateHubContentPresignedUrls API for SageMaker JumpStart. (33f9fd40)
  • client-customer-profiles: This release introduces capability of create Segments via importing a CSV file directly. This consumes the CSV file and creates/updates corresponding profiles for the particular domain. (517b6698)
  • client-route-53: Amazon Route 53 now supports the iso-e regions for private DNS Amazon VPCs and cloudwatch healthchecks. (42e0f48f)
  • client-deadline: Added fields for output manifest reporting and task chunking parameters (e5bcf91b)
  • client-mediapackagev2: This release adds support for Microsoft Smooth Streaming (MSS) and allows users to exclude DRM segment Metadata in MediaPackage v2 Origin Endpoints (11e9774b)

... (truncated)

Changelog

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

3.844.0 (2025-07-09)

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

3.842.0 (2025-07-02)

Features

  • client-s3: Added support for directory bucket creation with tags and bucket ARN retrieval in CreateBucket, ListDirectoryBuckets, and HeadBucket operations (e5eb29d)
Commits
  • d9c5976 Publish v3.844.0
  • d65a730 chore(codegen): sync for isCustomEndpoint changes (#7193)
  • 83e7db9 Publish v3.842.0
  • e5eb29d feat(client-s3): Added support for directory bucket creation with tags and bu...
  • See full diff in compare view

Updates @types/node from 24.0.8 to 24.0.13

Commits

Updates esbuild from 0.25.5 to 0.25.6

Release notes

Sourced from esbuild's releases.

v0.25.6

  • Fix a memory leak when cancel() is used on a build context (#4231)

    Calling rebuild() followed by cancel() in rapid succession could previously leak memory. The bundler uses a producer/consumer model internally, and the resource leak was caused by the consumer being termianted while there were still remaining unreceived results from a producer. To avoid the leak, the consumer now waits for all producers to finish before terminating.

  • Support empty :is() and :where() syntax in CSS (#4232)

    Previously using these selectors with esbuild would generate a warning. That warning has been removed in this release for these cases.

  • Improve tree-shaking of try statements in dead code (#4224)

    With this release, esbuild will now remove certain try statements if esbuild considers them to be within dead code (i.e. code that is known to not ever be evaluated). For example:

    // Original code
    return 'foo'
    try { return 'bar' } catch {}
    

    // Old output (with --minify) return"foo";try{return"bar"}catch{}

    // New output (with --minify) return"foo";

  • Consider negated bigints to have no side effects

    While esbuild currently considers 1, -1, and 1n to all have no side effects, it didn't previously consider -1n to have no side effects. This is because esbuild does constant folding with numbers but not bigints. However, it meant that unused negative bigint constants were not tree-shaken. With this release, esbuild will now consider these expressions to also be side-effect free:

    // Original code
    let a = 1, b = -1, c = 1n, d = -1n
    

    // Old output (with --bundle --minify) (()=>{var n=-1n;})();

    // New output (with --bundle --minify) (()=>{})();

  • Support a configurable delay in watch mode before rebuilding (#3476, #4178)

    The watch() API now takes a delay option that lets you add a delay (in milliseconds) before rebuilding when a change is detected in watch mode. If you use a tool that regenerates multiple source files very slowly, this should make it more likely that esbuild's watch mode won't generate a broken intermediate build before the successful final build. This option is also available via the CLI using the --watch-delay= flag.

    This should also help avoid confusion about the watch() API's options argument. It was previously empty to allow for future API expansion, which caused some people to think that the documentation was missing. It's no longer empty now that the watch() API has an option.

  • Allow mixed array for entryPoints API option (#4223)

    The TypeScript type definitions now allow you to pass a mixed array of both string literals and object literals to the entryPoints API option, such as ['foo.js', { out: 'lib', in: 'bar.js' }]. This was always possible to do in JavaScript but the TypeScript type definitions were previously too restrictive.

... (truncated)

Changelog

Sourced from esbuild's changelog.

0.25.6

  • Fix a memory leak when cancel() is used on a build context (#4231)

    Calling rebuild() followed by cancel() in rapid succession could previously leak memory. The bundler uses a producer/consumer model internally, and the resource leak was caused by the consumer being termianted while there were still remaining unreceived results from a producer. To avoid the leak, the consumer now waits for all producers to finish before terminating.

  • Support empty :is() and :where() syntax in CSS (#4232)

    Previously using these selectors with esbuild would generate a warning. That warning has been removed in this release for these cases.

  • Improve tree-shaking of try statements in dead code (#4224)

    With this release, esbuild will now remove certain try statements if esbuild considers them to be within dead code (i.e. code that is known to not ever be evaluated). For example:

    // Original code
    return 'foo'
    try { return 'bar' } catch {}
    

    // Old output (with --minify) return"foo";try{return"bar"}catch{}

    // New output (with --minify) return"foo";

  • Consider negated bigints to have no side effects

    While esbuild currently considers 1, -1, and 1n to all have no side effects, it didn't previously consider -1n to have no side effects. This is because esbuild does constant folding with numbers but not bigints. However, it meant that unused negative bigint constants were not tree-shaken. With this release, esbuild will now consider these expressions to also be side-effect free:

    // Original code
    let a = 1, b = -1, c = 1n, d = -1n
    

    // Old output (with --bundle --minify) (()=>{var n=-1n;})();

    // New output (with --bundle --minify) (()=>{})();

  • Support a configurable delay in watch mode before rebuilding (#3476, #4178)

    The watch() API now takes a delay option that lets you add a delay (in milliseconds) before rebuilding when a change is detected in watch mode. If you use a tool that regenerates multiple source files very slowly, this should make it more likely that esbuild's watch mode won't generate a broken intermediate build before the successful final build. This option is also available via the CLI using the --watch-delay= flag.

    This should also help avoid confusion about the watch() API's options argument. It was previously empty to allow for future API expansion, which caused some people to think that the documentation was missing. It's no longer empty now that the watch() API has an option.

  • Allow mixed array for entryPoints API option (#4223)

    The TypeScript type definitions now allow you to pass a mixed array of both string literals and object literals to the entryPoints API option, such as ['foo.js', { out: 'lib', in: 'bar.js' }]. This was always possible to do in JavaScript but the TypeScript type definitions were previously too restrictive.

... (truncated)

Commits

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
Pull Request Statistics
Commits:
1
Files Changed:
2
Additions:
+374
Deletions:
-298
Package Dependencies
Package:
@types/node
Ecosystem:
npm
Version Change:
24.0.8 → 24.0.13
Update Type:
Patch
Ecosystem:
npm
Version Change:
3.840.0 → 3.844.0
Update Type:
Minor
Package:
esbuild
Ecosystem:
npm
Version Change:
0.25.5 → 0.25.6
Update Type:
Patch
Technical Details
ID: 3377585
UUID: 2666200330
Node ID: PR_kwDOM-UdRc6e6v0K
Host: GitHub
Repository: skrastrek/terraform-modules-aws-lambda-s3-object-image-processor
Merge State: Unknown