Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Dec 6, 2025

This PR contains the following updates:

Package Change Age Confidence
@aws-sdk/client-cloudformation (source) 3.940.0 -> 3.947.0 age confidence
@aws-sdk/client-cloudfront (source) 3.940.0 -> 3.947.0 age confidence
@aws-sdk/client-s3 (source) 3.940.0 -> 3.947.0 age confidence
@types/node (source) 24.10.1 -> 24.10.2 age confidence
@types/papaparse (source) 5.5.0 -> 5.5.1 age confidence
aws-cdk-lib (source) 2.230.0 -> 2.232.1 age confidence
browserslist 4.28.0 -> 4.28.1 age confidence
esbuild 0.27.0 -> 0.27.1 age confidence
postcss-preset-env (source) 10.4.0 -> 10.5.0 age confidence
prettier (source) 3.7.3 -> 3.7.4 age confidence

Release Notes

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

v3.947.0

Compare Source

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

v3.946.0

Compare Source

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

v3.943.0

Compare Source

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

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

v3.947.0

Compare Source

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

v3.946.0

Compare Source

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

v3.943.0

Compare Source

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

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

v3.947.0

Compare Source

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

v3.946.0

Compare Source

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

v3.943.0

Compare Source

Features
  • client-s3: New S3 Storage Class FSX_ONTAP (56ffa40)
aws/aws-cdk (aws-cdk-lib)

v2.232.1

Compare Source

Bug Fixes

Alpha modules (2.232.1-alpha.0)

v2.232.0

Compare Source

Features
Bug Fixes

Alpha modules (2.232.0-alpha.0)

Bug Fixes

v2.231.0

Compare Source

Features
Bug Fixes

Alpha modules (2.231.0-alpha.0)

Features
browserslist/browserslist (browserslist)

v4.28.1

Compare Source

  • Removed Baseline warning since we have it own warning.
evanw/esbuild (esbuild)

v0.27.1

Compare Source

  • Fix bundler bug with var nested inside if (#​4348)

    This release fixes a bug with the bundler that happens when importing an ES module using require (which causes it to be wrapped) and there's a top-level var inside an if statement without being wrapped in a { ... } block (and a few other conditions). The bundling transform needed to hoist these var declarations outside of the lazy ES module wrapper for correctness. See the issue for details.

  • Fix minifier bug with for inside try inside label (#​4351)

    This fixes an old regression from version v0.21.4. Some code was introduced to move the label inside the try statement to address a problem with transforming labeled for await loops to avoid the await (the transformation involves converting the for await loop into a for loop and wrapping it in a try statement). However, it introduces problems for cross-compiled JVM code that uses all three of these features heavily. This release restricts this transform to only apply to for loops that esbuild itself generates internally as part of the for await transform. Here is an example of some affected code:

    // Original code
    d: {
      e: {
        try {
          while (1) { break d }
        } catch { break e; }
      }
    }
    
    // Old output (with --minify)
    a:try{e:for(;;)break a}catch{break e}
    
    // New output (with --minify)
    a:e:try{for(;;)break a}catch{break e}
  • Inline IIFEs containing a single expression (#​4354)

    Previously inlining of IIFEs (immediately-invoked function expressions) only worked if the body contained a single return statement. Now it should also work if the body contains a single expression statement instead:

    // Original code
    const foo = () => {
      const cb = () => {
        console.log(x())
      }
      return cb()
    }
    
    // Old output (with --minify)
    const foo=()=>(()=>{console.log(x())})();
    
    // New output (with --minify)
    const foo=()=>{console.log(x())};
  • The minifier now strips empty finally clauses (#​4353)

    This improvement means that finally clauses containing dead code can potentially cause the associated try statement to be removed from the output entirely in minified builds:

    // Original code
    function foo(callback) {
      if (DEBUG) stack.push(callback.name);
      try {
        callback();
      } finally {
        if (DEBUG) stack.pop();
      }
    }
    
    // Old output (with --minify --define:DEBUG=false)
    function foo(a){try{a()}finally{}}
    
    // New output (with --minify --define:DEBUG=false)
    function foo(a){a()}
  • Allow tree-shaking of the Symbol constructor

    With this release, calling Symbol is now considered to be side-effect free when the argument is known to be a primitive value. This means esbuild can now tree-shake module-level symbol variables:

    // Original code
    const a = Symbol('foo')
    const b = Symbol(bar)
    
    // Old output (with --tree-shaking=true)
    const a = Symbol("foo");
    const b = Symbol(bar);
    
    // New output (with --tree-shaking=true)
    const b = Symbol(bar);
csstools/postcss-plugins (postcss-preset-env)

v10.5.0

Compare Source

December 4, 2025

prettier/prettier (prettier)

v3.7.4

Compare Source

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
  | B // comment
) &
  (A | B);

// Prettier 3.7.4
type X = (A | B) &
  // comment
  (A | B);

Configuration

📅 Schedule: Branch creation - "every weekend" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, 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.

@renovate renovate bot force-pushed the renovate/devdependencies branch from 56e1ba9 to ecc247e Compare December 9, 2025 01:03
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant