Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update all non-major dependencies #3

Merged
merged 1 commit into from
Jan 3, 2024

Conversation

cu-infra-svc-git
Copy link
Contributor

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

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@aws-lambda-powertools/metrics (source) ^1.15.0 -> ^1.17.0 age adoption passing confidence
@aws-lambda-powertools/parameters (source) ^1.15.0 -> ^1.17.0 age adoption passing confidence
@aws-sdk/client-secrets-manager (source) ^3.451.0 -> ^3.484.0 age adoption passing confidence
@types/aws-lambda (source) ^8.10.126 -> ^8.10.130 age adoption passing confidence
@types/jest (source) ^29.5.6 -> ^29.5.11 age adoption passing confidence
esbuild ^0.19.5 -> ^0.19.11 age adoption passing confidence
eslint-config-prettier ^9.0.0 -> ^9.1.0 age adoption passing confidence
eslint-plugin-import ^2.28.1 -> ^2.29.1 age adoption passing confidence
eslint-plugin-prettier ^5.0.1 -> ^5.1.2 age adoption passing confidence
jsii-diff (source) ^1.90.0 -> ^1.93.0 age adoption passing confidence
jsii-pacmak (source) ^1.90.0 -> ^1.93.0 age adoption passing confidence
jsii-release ^0.2.737 -> ^0.2.768 age adoption passing confidence
prettier (source) ^3.0.3 -> ^3.1.1 age adoption passing confidence
typescript (source) ^5.2.2 -> ^5.3.3 age adoption passing confidence

Release Notes

aws/aws-sdk-js-v3 (@​aws-sdk/client-secrets-manager)

v3.484.0

Compare Source

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

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.

cdklabs/publib (jsii-release)

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

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.

@cu-infra-svc-git cu-infra-svc-git force-pushed the renovate/all-minor-patch branch 4 times, most recently from bc50c55 to a2817c8 Compare January 2, 2024 18:12
@cu-infra-svc-git cu-infra-svc-git changed the title Update all non-major dependencies fix(deps): update all non-major dependencies Jan 2, 2024
Copy link

codecov bot commented Jan 2, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Comparison is base (d5cc5e8) 58.33% compared to head (e05907e) 58.33%.

Additional details and impacted files

Impacted file tree graph

@@           Coverage Diff           @@
##             main       #3   +/-   ##
=======================================
  Coverage   58.33%   58.33%           
=======================================
  Files           4        4           
  Lines         408      408           
  Branches       11       11           
=======================================
  Hits          238      238           
  Misses        169      169           
  Partials        1        1           

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 d5cc5e8...e05907e. Read the comment docs.

@cu-infra-svc-git cu-infra-svc-git force-pushed the renovate/all-minor-patch branch from a2817c8 to e05907e Compare January 3, 2024 00:13
@ahammond ahammond enabled auto-merge (squash) January 3, 2024 21:31
@ahammond ahammond merged commit a33c6ce into main Jan 3, 2024
8 checks passed
@ahammond ahammond deleted the renovate/all-minor-patch branch January 3, 2024 21:33
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