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

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

Merged
Number: #44
Type: Pull Request
State: Merged
Author: dependabot[bot] dependabot[bot]
Association: Contributor
Comments: 0
Created: July 29, 2025 at 08:12 AM UTC
(about 1 month ago)
Updated: July 29, 2025 at 08:15 AM UTC
(about 1 month ago)
Merged: July 29, 2025 at 08:15 AM UTC
(about 1 month ago)
by SebRamsland
Time to Close: 3 minutes
Labels:
dependencies javascript
Description:

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

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

Release notes

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

v3.855.0

3.855.0(2025-07-28)

Documentation Changes
  • lib-dynamodb: example for performing table scan (#7227) (9c6a29eb)
New Features
  • clients: update client endpoints as of 2025-07-28 (2d41ea6f)
  • client-iotsitewise: Add support for native anomaly detection in IoT SiteWise using new Computation Model APIs (0b30d5cf)
  • client-direct-connect: Enable MACSec support and features on Interconnects. (bee374c4)
  • client-osis: Add Pipeline Role Arn as an optional parameter to the create / update pipeline APIs as an alternative to passing in the pipeline configuration body (36ca668d)
Tests

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

v3.854.0

3.854.0(2025-07-25)

Documentation Changes
  • client-kms: Doc only update: fixed grammatical errors. (3015df35)
  • client-config-service: Documentation improvements have been made to the EvaluationModel and DescribeConfigurationRecorders APIs. (d557c506)
  • client-sqs: Documentation updates for Amazon SQS fair queues feature. (eaee9792)
New Features
  • client-socialmessaging: This release introduces new WhatsApp template management APIs that enable customers to programmatically create and submit templates for approval, monitor approval status, and manage the complete template lifecycle (2bcbe797)
  • client-budgets: Adds IPv6 and PrivateLink support for AWS Budgets in IAD. (2c1ea80b)
  • client-ec2: Transit Gateway native integration with AWS Network Firewall. Adding new enum value for the new Transit Gateway Attachment type. (97d8133a)
  • client-appintegrations: Amazon AppIntegrations introduces new configuration capabilities to enable customers to manage iframe permissions, control application refresh behavior (per contact or per browser/cross-contact), and run background applications (service). (30963007)
  • client-mediapackagev2: This release adds support for specifying a preferred input for channels using CMAF ingest. (2c4726a6)
Tests
  • private: add schema versions of aws-service protocol tests (#7226) (1eeede0d)

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

v3.853.0

... (truncated)

Changelog

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

3.855.0 (2025-07-28)

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

3.850.0 (2025-07-21)

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

3.848.0 (2025-07-17)

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

3.846.0 (2025-07-16)

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

3.845.0 (2025-07-15)

Bug Fixes

  • clients: upgrade @​smithy/middleware-endpoint to fix file/env endpoint resolution (#7206) (37a6275)

Features

  • client-s3: Amazon S3 Metadata live inventory tables provide a queryable inventory of all the objects in your general purpose bucket so that you can determine the latest state of your data. To help minimize your storage costs, use journal table record expiration to set a retention period for your records. (6f14868)
Commits
  • 29842bf Publish v3.855.0
  • 2e7d107 Publish v3.850.0
  • 736cdab test(client-s3): convert feature test to vitest (#7214)
  • c63c1e3 Publish v3.848.0
  • da10587 Publish v3.846.0
  • 8a37039 Publish v3.845.0
  • 6f14868 feat(client-s3): Amazon S3 Metadata live inventory tables provide a queryable...
  • 37a6275 fix(clients): upgrade @​smithy/middleware-endpoint to fix file/env endpoint re...
  • See full diff in compare view

Updates @types/aws-lambda from 8.10.150 to 8.10.152

Commits

Updates @types/node from 24.0.13 to 24.1.0

Commits

Updates esbuild from 0.25.6 to 0.25.8

Release notes

Sourced from esbuild's releases.

v0.25.8

  • Fix another TypeScript parsing edge case (#4248)

    This fixes a regression with a change in the previous release that tries to more accurately parse TypeScript arrow functions inside the ?: operator. The regression specifically involves parsing an arrow function containing a #private identifier inside the middle of a ?: ternary operator inside a class body. This was fixed by propagating private identifier state into the parser clone used to speculatively parse the arrow function body. Here is an example of some affected code:

    class CachedDict {
      #has = (a: string) => dict.has(a);
      has = window
        ? (word: string): boolean => this.#has(word)
        : this.#has;
    }
    
  • Fix a regression with the parsing of source phase imports

    The change in the previous release to parse source phase imports failed to properly handle the following cases:

    import source from 'bar'
    import source from from 'bar'
    import source type foo from 'bar'
    

    Parsing for these cases should now be fixed. The first case was incorrectly treated as a syntax error because esbuild was expecting the second case. And the last case was previously allowed but is now forbidden. TypeScript hasn't added this feature yet so it remains to be seen whether the last case will be allowed, but it's safer to disallow it for now. At least Babel doesn't allow the last case when parsing TypeScript, and Babel was involved with the source phase import specification.

v0.25.7

  • Parse and print JavaScript imports with an explicit phase (#4238)

    This release adds basic syntax support for the defer and source import phases in JavaScript:

    • defer

      This is a stage 3 proposal for an upcoming JavaScript feature that will provide one way to eagerly load but lazily initialize imported modules. The imported module is automatically initialized on first use. Support for this syntax will also be part of the upcoming release of TypeScript 5.9. The syntax looks like this:

      import defer * as foo from "<specifier>";
      const bar = await import.defer("<specifier>");
      

      Note that this feature deliberately cannot be used with the syntax import defer foo from "<specifier>" or import defer { foo } from "<specifier>".

    • source

      This is a stage 3 proposal for an upcoming JavaScript feature that will provide another way to eagerly load but lazily initialize imported modules. The imported module is returned in an uninitialized state. Support for this syntax may or may not be a part of TypeScript 5.9 (see this issue for details). The syntax looks like this:

      import source foo from "<specifier>";
      const bar = await import.source("<specifier>");
      

... (truncated)

Changelog

Sourced from esbuild's changelog.

0.25.8

  • Fix another TypeScript parsing edge case (#4248)

    This fixes a regression with a change in the previous release that tries to more accurately parse TypeScript arrow functions inside the ?: operator. The regression specifically involves parsing an arrow function containing a #private identifier inside the middle of a ?: ternary operator inside a class body. This was fixed by propagating private identifier state into the parser clone used to speculatively parse the arrow function body. Here is an example of some affected code:

    class CachedDict {
      #has = (a: string) => dict.has(a);
      has = window
        ? (word: string): boolean => this.#has(word)
        : this.#has;
    }
    
  • Fix a regression with the parsing of source phase imports

    The change in the previous release to parse source phase imports failed to properly handle the following cases:

    import source from 'bar'
    import source from from 'bar'
    import source type foo from 'bar'
    

    Parsing for these cases should now be fixed. The first case was incorrectly treated as a syntax error because esbuild was expecting the second case. And the last case was previously allowed but is now forbidden. TypeScript hasn't added this feature yet so it remains to be seen whether the last case will be allowed, but it's safer to disallow it for now. At least Babel doesn't allow the last case when parsing TypeScript, and Babel was involved with the source phase import specification.

0.25.7

  • Parse and print JavaScript imports with an explicit phase (#4238)

    This release adds basic syntax support for the defer and source import phases in JavaScript:

    • defer

      This is a stage 3 proposal for an upcoming JavaScript feature that will provide one way to eagerly load but lazily initialize imported modules. The imported module is automatically initialized on first use. Support for this syntax will also be part of the upcoming release of TypeScript 5.9. The syntax looks like this:

      import defer * as foo from "<specifier>";
      const bar = await import.defer("<specifier>");
      

      Note that this feature deliberately cannot be used with the syntax import defer foo from "<specifier>" or import defer { foo } from "<specifier>".

    • source

      This is a stage 3 proposal for an upcoming JavaScript feature that will provide another way to eagerly load but lazily initialize imported modules. The imported module is returned in an uninitialized state. Support for this syntax may or may not be a part of TypeScript 5.9 (see this issue for details). The syntax looks like this:

      import source foo from "<specifier>";
      

... (truncated)

Commits
  • 8c71947 publish 0.25.8 to npm
  • 0508f24 some parsing fixes for source phase imports
  • 6e4be2f js parser: recover from bad #private identifiers
  • c9c6357 fix #4248: #private ids in arrow fn body in ?:
  • 9b42f68 publish 0.25.7 to npm
  • 9ba01d1 abs-paths: js api and tests
  • ca196c9 fix for parser backtracking crash
  • 2979b84 fix #4241: ts arrow function type backtrack (hack)
  • 1180410 fix an unused variable warning
  • fc3da57 fix #4238: add defer and source import phases
  • Additional commits viewable in compare view

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


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions
Pull Request Statistics
Commits:
1
Files Changed:
2
Additions:
+264
Deletions:
-263
Package Dependencies
Package:
@types/node
Ecosystem:
npm
Version Change:
24.0.13 → 24.1.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
3.844.0 → 3.855.0
Update Type:
Minor
Package:
esbuild
Ecosystem:
npm
Version Change:
0.25.6 → 0.25.8
Update Type:
Patch
Ecosystem:
npm
Version Change:
8.10.150 → 8.10.152
Update Type:
Patch
Technical Details
ID: 4287931
UUID: 2703202795
Node ID: PR_kwDOM-UdRc6hH5nr
Host: GitHub
Repository: skrastrek/terraform-modules-aws-lambda-s3-object-image-processor
Merge State: Unknown