Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jan 5, 2026

This PR contains the following updates:

Package Change Age Confidence
@aws-sdk/client-apigatewayv2 (source) 3.952.03.957.0 age confidence
@aws-sdk/client-lambda (source) 3.952.03.957.0 age confidence
@aws-sdk/client-s3 (source) 3.952.03.957.0 age confidence
@aws-sdk/client-secrets-manager (source) 3.952.03.957.0 age confidence
@aws-sdk/client-ssm (source) 3.952.03.957.0 age confidence
@aws-sdk/client-sts (source) 3.952.03.957.0 age confidence
esbuild 0.27.10.27.2 age confidence
fs-extra 11.3.211.3.3 age confidence

Release Notes

aws/aws-sdk-js-v3 (@​aws-sdk/client-apigatewayv2)

v3.957.0

Compare Source

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

v3.956.0

Compare Source

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

v3.955.0

Compare Source

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

v3.954.0

Compare Source

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

v3.953.0

Compare Source

Features
  • clients: allow protocol selection by class constructor (#​7568) (5c5fd2e)
aws/aws-sdk-js-v3 (@​aws-sdk/client-lambda)

v3.957.0

Compare Source

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

v3.956.0

Compare Source

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

v3.955.0

Compare Source

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

v3.954.0

Compare Source

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

v3.953.0

Compare Source

Features
  • clients: allow protocol selection by class constructor (#​7568) (5c5fd2e)
aws/aws-sdk-js-v3 (@​aws-sdk/client-s3)

v3.957.0

Compare Source

3.957.0(2025-12-22)
Chores
Documentation Changes
  • client-pcs: Change API Reference Documentation for default Mode in Accounting and SlurmRest (966f60ac)
New Features
  • client-config-service: Added supported resourceTypes for Config from July to November 2025 (2c7dab27)
  • client-ec2: Adds support for linkedGroupId on the CreatePlacementGroup and DescribePlacementGroups APIs. The linkedGroupId parameter is reserved for future use. (a492f734)
  • client-guardduty: Make accountIds a required field in GetRemainingFreeTrialDays API to reflect service behavior. (53e59c65)
  • middleware-flexible-checksums: use CRC64NVME JS implementation if CRT is not available (#​7595) (4c6ad409)
Bug Fixes
  • middleware-flexible-checksums: advise user on InvalidChunkSizeError (#​7598) (6fa3b4cc)

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

v3.956.0

Compare Source

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

v3.955.0

Compare Source

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

v3.954.0

Compare Source

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

v3.953.0

Compare Source

Features
  • clients: allow protocol selection by class constructor (#​7568) (5c5fd2e)
aws/aws-sdk-js-v3 (@​aws-sdk/client-secrets-manager)

v3.957.0

Compare Source

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

v3.956.0

Compare Source

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

v3.955.0

Compare Source

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

v3.954.0

Compare Source

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

v3.953.0

Compare Source

Features
  • clients: allow protocol selection by class constructor (#​7568) (5c5fd2e)
aws/aws-sdk-js-v3 (@​aws-sdk/client-ssm)

v3.957.0

Compare Source

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

v3.956.0

Compare Source

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

v3.955.0

Compare Source

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

v3.954.0

Compare Source

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

v3.953.0

Compare Source

Features
  • clients: allow protocol selection by class constructor (#​7568) (5c5fd2e)
aws/aws-sdk-js-v3 (@​aws-sdk/client-sts)

v3.957.0

Compare Source

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

v3.956.0

Compare Source

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

v3.955.0

Compare Source

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

v3.954.0

Compare Source

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

v3.953.0

Compare Source

Features
  • clients: allow protocol selection by class constructor (#​7568) (5c5fd2e)
evanw/esbuild (esbuild)

v0.27.2

Compare Source

  • Allow import path specifiers starting with #/ (#​4361)

    Previously the specification for package.json disallowed import path specifiers starting with #/, but this restriction has recently been relaxed and support for it is being added across the JavaScript ecosystem. One use case is using it for a wildcard pattern such as mapping #/* to ./src/* (previously you had to use another character such as #_* instead, which was more confusing). There is some more context in nodejs/node#49182.

    This change was contributed by @​hybrist.

  • Automatically add the -webkit-mask prefix (#​4357, #​4358)

    This release automatically adds the -webkit- vendor prefix for the mask CSS shorthand property:

    /* Original code */
    main {
      mask: url(x.png) center/5rem no-repeat
    }
    
    /* Old output (with --target=chrome110) */
    main {
      mask: url(x.png) center/5rem no-repeat;
    }
    
    /* New output (with --target=chrome110) */
    main {
      -webkit-mask: url(x.png) center/5rem no-repeat;
      mask: url(x.png) center/5rem no-repeat;
    }

    This change was contributed by @​BPJEnnova.

  • Additional minification of switch statements (#​4176, #​4359)

    This release contains additional minification patterns for reducing switch statements. Here is an example:

    // Original code
    switch (x) {
      case 0:
        foo()
        break
      case 1:
      default:
        bar()
    }
    
    // Old output (with --minify)
    switch(x){case 0:foo();break;case 1:default:bar()}
    
    // New output (with --minify)
    x===0?foo():bar();
  • Forbid using declarations inside switch clauses (#​4323)

    This is a rare change to remove something that was previously possible. The Explicit Resource Management proposal introduced using declarations. These were previously allowed inside case and default clauses in switch statements. This had well-defined semantics and was already widely implemented (by V8, SpiderMonkey, TypeScript, esbuild, and others). However, it was considered to be too confusing because of how scope works in switch statements, so it has been removed from the specification. This edge case will now be a syntax error. See tc39/proposal-explicit-resource-management#215 and rbuckton/ecma262#14 for details.

    Here is an example of code that is no longer allowed:

    switch (mode) {
      case 'read':
        using readLock = db.read()
        return readAll(readLock)
    
      case 'write':
        using writeLock = db.write()
        return writeAll(writeLock)
    }

    That code will now have to be modified to look like this instead (note the additional { and } block statements around each case body):

    switch (mode) {
      case 'read': {
        using readLock = db.read()
        return readAll(readLock)
      }
      case 'write': {
        using writeLock = db.write()
        return writeAll(writeLock)
      }
    }

    This is not being released in one of esbuild's breaking change releases since this feature hasn't been finalized yet, and esbuild always tracks the current state of the specification (so esbuild's previous behavior was arguably incorrect).

jprichardson/node-fs-extra (fs-extra)

v11.3.3

Compare Source

  • Fix copying symlink when destination is a symlink to the same target (#​1019, #​1060)

Configuration

📅 Schedule: Branch creation - "after 2pm on Monday" in timezone Europe/Zurich, Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@github-actions
Copy link

github-actions bot commented Jan 5, 2026

This PR will trigger a patch release when merged.

@renovate renovate bot force-pushed the renovate-external-fixes branch from 9797153 to 53e4c56 Compare January 5, 2026 22:40
@renovate renovate bot merged commit fba076b into main Jan 6, 2026
6 checks passed
@renovate renovate bot deleted the renovate-external-fixes branch January 6, 2026 02:24
adobe-bot pushed a commit that referenced this pull request Jan 6, 2026
## [13.2.7](v13.2.6...v13.2.7) (2026-01-06)

### Bug Fixes

* **deps:** update dependency @adobe/helix-shared-process-queue to v3.1.4 ([#878](#878)) ([4404a28](4404a28))
* **deps:** update external fixes ([#877](#877)) ([fba076b](fba076b))
@adobe-bot
Copy link

🎉 This PR is included in version 13.2.7 🎉

The release is available on:

Your semantic-release bot 📦🚀

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants