Skip to content
This repository has been archived by the owner on Jan 11, 2024. It is now read-only.

chore(deps): update all non-major dependencies #5

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

cu-infra-svc-git
Copy link

@cu-infra-svc-git cu-infra-svc-git commented Dec 25, 2023

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
esbuild ^0.19.10 -> ^0.19.11 age adoption passing confidence
jest (source) ^27 -> ^27.5.1 age adoption passing confidence
jsii-diff (source) ^1.93.0 -> ^1.94.0 age adoption passing confidence
jsii-pacmak (source) ^1.93.0 -> ^1.94.0 age adoption passing confidence
jsii-release ^0.2.762 -> ^0.2.771 age adoption passing confidence

Release Notes

evanw/esbuild (esbuild)

v0.19.11

Compare Source

  • Fix TypeScript-specific class transform edge case (#​3559)

    The previous release introduced an optimization that avoided transforming super() in the class constructor for TypeScript code compiled with useDefineForClassFields set to false if all class instance fields have no initializers. The rationale was that in this case, all class instance fields are omitted in the output so no changes to the constructor are needed. However, if all of this is the case and there are #private instance fields with initializers, those private instance field initializers were still being moved into the constructor. This was problematic because they were being inserted before the call to super() (since super() is now no longer transformed in that case). This release introduces an additional optimization that avoids moving the private instance field initializers into the constructor in this edge case, which generates smaller code, matches the TypeScript compiler's output more closely, and avoids this bug:

    // Original code
    class Foo extends Bar {
      #private = 1;
      public: any;
      constructor() {
        super();
      }
    }
    
    // Old output (with esbuild v0.19.9)
    class Foo extends Bar {
      constructor() {
        super();
        this.#private = 1;
      }
      #private;
    }
    
    // Old output (with esbuild v0.19.10)
    class Foo extends Bar {
      constructor() {
        this.#private = 1;
        super();
      }
      #private;
    }
    
    // New output
    class Foo extends Bar {
      #private = 1;
      constructor() {
        super();
      }
    }
  • Minifier: allow reording a primitive past a side-effect (#​3568)

    The minifier previously allowed reordering a side-effect past a primitive, but didn't handle the case of reordering a primitive past a side-effect. This additional case is now handled:

    // Original code
    function f() {
      let x = false;
      let y = x;
      const boolean = y;
      let frag = $.template(`<p contenteditable="${boolean}">hello world</p>`);
      return frag;
    }
    
    // Old output (with --minify)
    function f(){const e=!1;return $.template(`<p contenteditable="${e}">hello world</p>`)}
    
    // New output (with --minify)
    function f(){return $.template('<p contenteditable="false">hello world</p>')}
  • Minifier: consider properties named using known Symbol instances to be side-effect free (#​3561)

    Many things in JavaScript can have side effects including property accesses and ToString operations, so using a symbol such as Symbol.iterator as a computed property name is not obviously side-effect free. This release adds a special case for known Symbol instances so that they are considered side-effect free when used as property names. For example, this class declaration will now be considered side-effect free:

    class Foo {
      *[Symbol.iterator]() {
      }
    }
  • Provide the stop() API in node to exit esbuild's child process (#​3558)

    You can now call stop() in esbuild's node API to exit esbuild's child process to reclaim the resources used. It only makes sense to do this for a long-lived node process when you know you will no longer be making any more esbuild API calls. It is not necessary to call this to allow node to exit, and it's advantageous to not call this in between calls to esbuild's API as sharing a single long-lived esbuild child process is more efficient than re-creating a new esbuild child process for every API call. This API call used to exist but was removed in version 0.9.0. This release adds it back due to a user request.

aws/jsii (jsii-diff)

v1.94.0

Compare Source

Features
Bug Fixes
  • pacmak: invokeBinScript fails when using symlinked cache (#​4389) (37d9dc7)
cdklabs/publib (jsii-release)

v0.2.771

Compare Source

0.2.771 (2024-01-09)
Bug Fixes

v0.2.770

Compare Source

0.2.770 (2024-01-07)
Bug Fixes

v0.2.769

Compare Source

0.2.769 (2024-01-04)
Bug Fixes

v0.2.768

Compare Source

0.2.768 (2023-12-30)
Bug Fixes

v0.2.767

Compare Source

0.2.767 (2023-12-29)
Bug Fixes

v0.2.766

Compare Source

0.2.766 (2023-12-27)
Bug Fixes

v0.2.765

Compare Source

0.2.765 (2023-12-22)
Bug Fixes

v0.2.764

Compare Source

0.2.764 (2023-12-21)
Bug Fixes

v0.2.763

Compare Source

0.2.763 (2023-12-20)
Bug Fixes

Configuration

📅 Schedule: Branch creation - "before 1am on Monday" (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 has been generated by Renovate Bot.

Copy link

codecov bot commented Dec 25, 2023

Codecov Report

All modified and coverable lines are covered by tests ✅

Comparison is base (c3525c5) 100.00% compared to head (5e5b54e) 100.00%.

Additional details and impacted files

Impacted file tree graph

@@            Coverage Diff            @@
##              main        #5   +/-   ##
=========================================
  Coverage   100.00%   100.00%           
=========================================
  Files            1         1           
  Lines            5         5           
  Branches         1         1           
=========================================
  Hits             5         5           

Continue to review full report in Codecov by Sentry.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update c3525c5...5e5b54e. Read the comment docs.

@cu-infra-svc-git cu-infra-svc-git force-pushed the renovate/all-minor-patch branch 2 times, most recently from 6623061 to 09bb107 Compare January 1, 2024 00:16
@cu-infra-svc-git cu-infra-svc-git force-pushed the renovate/all-minor-patch branch 2 times, most recently from e48d30f to 0fddf65 Compare January 8, 2024 00:15
@cu-infra-svc-git cu-infra-svc-git force-pushed the renovate/all-minor-patch branch from 0fddf65 to 5e5b54e Compare January 10, 2024 00:15
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant