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

chore(deps): update all non-major dependencies (2.x) #26935

Merged
merged 1 commit into from May 7, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 25, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@babel/core (source) ^7.24.4 -> ^7.24.5 age adoption passing confidence dependencies patch
@babel/core (source) 7.24.4 -> 7.24.5 age adoption passing confidence devDependencies patch
@babel/preset-env (source) ^7.24.4 -> ^7.24.5 age adoption passing confidence dependencies patch
@babel/preset-env (source) 7.24.4 -> 7.24.5 age adoption passing confidence devDependencies patch
@babel/runtime (source) ^7.24.4 -> ^7.24.5 age adoption passing confidence dependencies patch
actions/checkout v4.1.3 -> v4.1.4 age adoption passing confidence action patch
actions/download-artifact v4.1.6 -> v4.1.7 age adoption passing confidence action patch
caniuse-lite ^1.0.30001612 -> ^1.0.30001616 age adoption passing confidence dependencies patch
esbuild 0.20.2 -> 0.21.1 age adoption passing confidence devDependencies minor
eslint-plugin-jest 28.2.0 -> 28.5.0 age adoption passing confidence devDependencies minor
postcss-preset-env (source) ^9.5.9 -> ^9.5.11 age adoption passing confidence dependencies patch
puppeteer-core (source) 22.0.0 -> 22.8.0 age adoption passing confidence devDependencies minor
rollup (source) 4.16.4 -> 4.17.2 age adoption passing confidence devDependencies minor
sass 1.75.0 -> 1.77.0 age adoption passing confidence devDependencies minor
semver ^7.6.0 -> ^7.6.1 age adoption passing confidence dependencies patch
semver 7.6.0 -> 7.6.1 age adoption passing confidence devDependencies patch
vue-tsc (source) 2.0.14 -> 2.0.16 age adoption passing confidence devDependencies patch

Release Notes

babel/babel (@​babel/core)

v7.24.5

Compare Source

🐛 Bug Fix
💅 Polish
🏠 Internal
  • Other
  • babel-parser
  • babel-helper-create-class-features-plugin, babel-helper-member-expression-to-functions, babel-helper-module-transforms, babel-helper-split-export-declaration, babel-helper-wrap-function, babel-helpers, babel-plugin-bugfix-firefox-class-in-computed-class-key, babel-plugin-proposal-explicit-resource-management, babel-plugin-transform-block-scoping, babel-plugin-transform-destructuring, babel-plugin-transform-object-rest-spread, babel-plugin-transform-optional-chaining, babel-plugin-transform-parameters, babel-plugin-transform-private-property-in-object, babel-plugin-transform-react-jsx-self, babel-plugin-transform-typeof-symbol, babel-plugin-transform-typescript, babel-traverse
  • babel-plugin-proposal-partial-application, babel-types
  • babel-plugin-transform-class-properties, babel-preset-env
🏃‍♀️ Performance
  • babel-helpers, babel-preset-env, babel-runtime-corejs3
actions/checkout (actions/checkout)

v4.1.4

Compare Source

actions/download-artifact (actions/download-artifact)

v4.1.7

Compare Source

What's Changed

Full Changelog: actions/download-artifact@v4.1.6...v4.1.7

browserslist/caniuse-lite (caniuse-lite)

v1.0.30001616

Compare Source

v1.0.30001615

Compare Source

v1.0.30001614

Compare Source

v1.0.30001613

Compare Source

evanw/esbuild (esbuild)

v0.21.1

Compare Source

  • Fix a regression with --keep-names (#​3756)

    The previous release introduced a regression with the --keep-names setting and object literals with get/set accessor methods, in which case the generated code contained syntax errors. This release fixes the regression:

    // Original code
    x = { get y() {} }
    
    // Output from version 0.21.0 (with --keep-names)
    x = { get y: /* @​__PURE__ */ __name(function() {
    }, "y") };
    
    // Output from this version (with --keep-names)
    x = { get y() {
    } };

v0.21.0

Compare Source

This release doesn't contain any deliberately-breaking changes. However, it contains a very complex new feature and while all of esbuild's tests pass, I would not be surprised if an important edge case turns out to be broken. So I'm releasing this as a breaking change release to avoid causing any trouble. As usual, make sure to test your code when you upgrade.

  • Implement the JavaScript decorators proposal (#​104)

    With this release, esbuild now contains an implementation of the upcoming JavaScript decorators proposal. This is the same feature that shipped in TypeScript 5.0 and has been highly-requested on esbuild's issue tracker. You can read more about them in that blog post and in this other (now slightly outdated) extensive blog post here: https://2ality.com/2022/10/javascript-decorators.html. Here's a quick example:

    const log = (fn, context) => function() {
      console.log(`before ${context.name}`)
      const it = fn.apply(this, arguments)
      console.log(`after ${context.name}`)
      return it
    }
    
    class Foo {
      @​log static foo() {
        console.log('in foo')
      }
    }
    
    // Logs "before foo", "in foo", "after foo"
    Foo.foo()

    Note that this feature is different than the existing "TypeScript experimental decorators" feature that esbuild already implements. It uses similar syntax but behaves very differently, and the two are not compatible (although it's sometimes possible to write decorators that work with both). TypeScript experimental decorators will still be supported by esbuild going forward as they have been around for a long time, are very widely used, and let you do certain things that are not possible with JavaScript decorators (such as decorating function parameters). By default esbuild will parse and transform JavaScript decorators, but you can tell esbuild to parse and transform TypeScript experimental decorators instead by setting "experimentalDecorators": true in your tsconfig.json file.

    Probably at least half of the work for this feature went into creating a test suite that exercises many of the proposal's edge cases: https://github.com/evanw/decorator-tests. It has given me a reasonable level of confidence that esbuild's initial implementation is acceptable. However, I don't have access to a significant sample of real code that uses JavaScript decorators. If you're currently using JavaScript decorators in a real code base, please try out esbuild's implementation and let me know if anything seems off.

    ⚠️ WARNING ⚠️

    This proposal has been in the works for a very long time (work began around 10 years ago in 2014) and it is finally getting close to becoming part of the JavaScript language. However, it's still a work in progress and isn't a part of JavaScript yet, so keep in mind that any code that uses JavaScript decorators may need to be updated as the feature continues to evolve. The decorators proposal is pretty close to its final form but it can and likely will undergo some small behavioral adjustments before it ends up becoming a part of the standard. If/when that happens, I will update esbuild's implementation to match the specification. I will not be supporting old versions of the specification.

  • Optimize the generated code for private methods

    Previously when lowering private methods for old browsers, esbuild would generate one WeakSet for each private method. This mirrors similar logic for generating one WeakSet for each private field. Using a separate WeakMap for private fields is necessary as their assignment can be observable:

    let it
    class Bar {
      constructor() {
        it = this
      }
    }
    class Foo extends Bar {
      #x = 1
      #y = null.foo
      static check() {
        console.log(#x in it, #y in it)
      }
    }
    try { new Foo } catch {}
    Foo.check()

    This prints true false because this partially-initialized instance has #x but not #y. In other words, it's not true that all class instances will always have all of their private fields. However, the assignment of private methods to a class instance is not observable. In other words, it's true that all class instances will always have all of their private methods. This means esbuild can lower private methods into code where all methods share a single WeakSet, which is smaller, faster, and uses less memory. Other JavaScript processing tools such as the TypeScript compiler already make this optimization. Here's what this change looks like:

    // Original code
    class Foo {
      #x() { return this.#x() }
      #y() { return this.#y() }
      #z() { return this.#z() }
    }
    
    // Old output (--supported:class-private-method=false)
    var _x, x_fn, _y, y_fn, _z, z_fn;
    class Foo {
      constructor() {
        __privateAdd(this, _x);
        __privateAdd(this, _y);
        __privateAdd(this, _z);
      }
    }
    _x = new WeakSet();
    x_fn = function() {
      return __privateMethod(this, _x, x_fn).call(this);
    };
    _y = new WeakSet();
    y_fn = function() {
      return __privateMethod(this, _y, y_fn).call(this);
    };
    _z = new WeakSet();
    z_fn = function() {
      return __privateMethod(this, _z, z_fn).call(this);
    };
    
    // New output (--supported:class-private-method=false)
    var _Foo_instances, x_fn, y_fn, z_fn;
    class Foo {
      constructor() {
        __privateAdd(this, _Foo_instances);
      }
    }
    _Foo_instances = new WeakSet();
    x_fn = function() {
      return __privateMethod(this, _Foo_instances, x_fn).call(this);
    };
    y_fn = function() {
      return __privateMethod(this, _Foo_instances, y_fn).call(this);
    };
    z_fn = function() {
      return __privateMethod(this, _Foo_instances, z_fn).call(this);
    };
  • Fix an obscure bug with lowering class members with computed property keys

    When class members that use newer syntax features are transformed for older target environments, they sometimes need to be relocated. However, care must be taken to not reorder any side effects caused by computed property keys. For example, the following code must evaluate a() then b() then c():

    class Foo {
      [a()]() {}
      [b()];
      static { c() }
    }

    Previously esbuild did this by shifting the computed property key forward to the next spot in the evaluation order. Classes evaluate all computed keys first and then all static class elements, so if the last computed key needs to be shifted, esbuild previously inserted a static block at start of the class body, ensuring it came before all other static class elements:

    var _a;
    class Foo {
      constructor() {
        __publicField(this, _a);
      }
      static {
        _a = b();
      }
      [a()]() {
      }
      static {
        c();
      }
    }

    However, this could cause esbuild to accidentally generate a syntax error if the computed property key contains code that isn't allowed in a static block, such as an await expression. With this release, esbuild fixes this problem by shifting the computed property key backward to the previous spot in the evaluation order instead, which may push it into the extends clause or even before the class itself:

    // Original code
    class Foo {
      [a()]() {}
      [await b()];
      static { c() }
    }
    
    // Old output (with --supported:class-field=false)
    var _a;
    class Foo {
      constructor() {
        __publicField(this, _a);
      }
      static {
        _a = await b();
      }
      [a()]() {
      }
      static {
        c();
      }
    }
    
    // New output (with --supported:class-field=false)
    var _a, _b;
    class Foo {
      constructor() {
        __publicField(this, _a);
      }
      [(_b = a(), _a = await b(), _b)]() {
      }
      static {
        c();
      }
    }
  • Fix some --keep-names edge cases

    The NamedEvaluation syntax-directed operation in the JavaScript specification gives certain anonymous expressions a name property depending on where they are in the syntax tree. For example, the following initializers convey a name value:

    var foo = function() {}
    var bar = class {}
    console.log(foo.name, bar.name)

    When you enable esbuild's --keep-names setting, esbuild generates additional code to represent this NamedEvaluation operation so that the value of the name property persists even when the identifiers are renamed (e.g. due to minification).

    However, I recently learned that esbuild's implementation of NamedEvaluation is missing a few cases. Specifically esbuild was missing property definitions, class initializers, logical-assignment operators. These cases should now all be handled:

    var obj = { foo: function() {} }
    class Foo0 { foo = function() {} }
    class Foo1 { static foo = function() {} }
    class Foo2 { accessor foo = function() {} }
    class Foo3 { static accessor foo = function() {} }
    foo ||= function() {}
    foo &&= function() {}
    foo ??= function() {}
jest-community/eslint-plugin-jest (eslint-plugin-jest)

v28.5.0

Compare Source

Features
  • allow @typescript-eslint/utils v7 as a direct dependency (#​1567) (1476f10)

v28.4.0

Compare Source

Features
  • valid-expect: supporting automatically fixing missing await in some cases (#​1574) (a407098)

v28.3.0

Compare Source

Features
csstools/postcss-plugins (postcss-preset-env)

v9.5.11

Compare Source

May 4, 2024

v9.5.10

Compare Source

May 4, 2024

puppeteer/puppeteer (puppeteer-core)

v22.8.0: puppeteer: v22.8.0

Compare Source

Miscellaneous Chores
  • puppeteer: Synchronize puppeteer versions
Dependencies
  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 22.7.1 to 22.8.0

v22.7.1

Compare Source

v22.7.0

Compare Source

v22.6.5

Compare Source

v22.6.4

Compare Source

v22.6.3: puppeteer: v22.6.3

Compare Source

Bug Fixes
Dependencies
  • The following workspace dependencies were updated

v22.6.2: puppeteer-core: v22.6.2

Compare Source

Bug Fixes

v22.6.1

Compare Source

v22.6.0

Compare Source

v22.5.0: puppeteer: v22.5.0

Compare Source

Miscellaneous Chores
  • puppeteer: Synchronize puppeteer versions
Dependencies
  • The following workspace dependencies were updated

v22.4.1: puppeteer: v22.4.1

Compare Source

Miscellaneous Chores
  • puppeteer: Synchronize puppeteer versions
Dependencies
  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 22.4.0 to 22.4.1

v22.4.0: puppeteer-core: v22.4.0

Compare Source

Features
Bug Fixes
  • roll to Chrome 122.0.6261.94 (r1250580) (#​12012) (7ba5529)
  • webdriver: wait for response if the response has not completed once navigation has finished (#​12018) (6d8831a)

v22.3.0: puppeteer: v22.3.0

Compare Source

Miscellaneous Chores
  • puppeteer: Synchronize puppeteer versions
Dependencies
  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 22.2.0 to 22.3.0

v22.2.0: puppeteer: v22.2.0

Compare Source

Features
Dependencies
  • The following workspace dependencies were updated

v22.1.0: puppeteer: v22.1.0

Compare Source

Miscellaneous Chores
  • puppeteer: Synchronize puppeteer versions
Dependencies
  • The following workspace dependencies were updated
rollup/rollup (rollup)

v4.17.2

Compare Source

2024-04-30

Bug Fixes
  • Fix tree-shaking problems when using spread arguments (#​5503)
Pull Requests

v4.17.1

Compare Source

2024-04-29

Bug Fixes
  • Prevent infinite recursions for certain constructor invocations (#​5500)
Pull Requests

v4.17.0

Compare Source

2024-04-27

Features
  • Track function call arguments to optimize functions only called once or with the same literal values (re-release from 4.16.0) (#​5483)
Bug Fixes
  • Reduce browser WASM size to a fraction by changing optimization settings (#​5494)
Pull Requests
sass/dart-sass (sass)

v1.77.0

Compare Source

  • Don't throw errors for at-rules in keyframe blocks.

v1.76.0

Compare Source

  • Throw errors for misplaced statements in keyframe blocks.

  • Mixins and functions whose names begin with -- are now deprecated for
    forwards-compatibility with the in-progress CSS functions and mixins spec.
    This deprecation is named css-function-mixin.

npm/node-semver (semver)

v7.6.1

Compare Source

Bug Fixes
Dependencies
Chores
vuejs/language-tools (vue-tsc)

v2.0.16

Compare Source

Bug Fixes
Other Changes

[v2.0.15](https://togithub.com/vuejs/language-tools/blob/HEAD/CHANGELOG.md#2015-2024


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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 Mend Renovate. View repository job log here.

Copy link

stackblitz bot commented Apr 25, 2024

Review PR in StackBlitz Codeflow Run & review this pull request in StackBlitz Codeflow.

@codecov-commenter
Copy link

codecov-commenter commented Apr 25, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 66.22%. Comparing base (fd2265c) to head (d007987).

Additional details and impacted files
@@           Coverage Diff           @@
##              2.x   #26935   +/-   ##
=======================================
  Coverage   66.22%   66.22%           
=======================================
  Files          93       93           
  Lines        4121     4121           
  Branches     1169     1169           
=======================================
  Hits         2729     2729           
  Misses       1126     1126           
  Partials      266      266           
Flag Coverage Δ
unittests 66.22% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@renovate renovate bot force-pushed the renovate/2.x-all-minor-patch branch 2 times, most recently from b10663e to d7632c8 Compare April 27, 2024 11:21
Copy link

socket-security bot commented Apr 27, 2024

New and removed dependencies detected. Learn more about Socket for GitHub ↗︎

Package New capabilities Transitives Size Publisher
npm/@babel/helper-annotate-as-pure@7.22.5 None 0 4.02 kB nicolo-ribaudo
npm/@babel/helper-function-name@7.23.0 None 0 21.6 kB nicolo-ribaudo
npm/@babel/helper-skip-transparent-expression-wrappers@7.22.5 None 0 5.96 kB nicolo-ribaudo
npm/@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2 None 0 16.3 kB nicolo-ribaudo
npm/@babel/plugin-syntax-class-properties@7.12.13 None 0 2.68 kB nicolo-ribaudo
npm/@babel/plugin-syntax-import-meta@7.10.4 None 0 2.56 kB jlhwung
npm/@babel/plugin-syntax-logical-assignment-operators@7.10.4 None 0 2.74 kB jlhwung
npm/@babel/plugin-syntax-numeric-separator@7.10.4 None 0 2.75 kB jlhwung
npm/@babel/plugin-syntax-top-level-await@7.14.5 None 0 2.74 kB nicolo-ribaudo
npm/@babel/template@7.24.0 None 0 68.9 kB nicolo-ribaudo
npm/@discoveryjs/json-ext@0.5.7 None 0 81.1 kB lahmatiy
npm/@esbuild/aix-ppc64@0.21.1 None 0 0 B
npm/@esbuild/android-arm@0.21.1 None 0 0 B
npm/@esbuild/android-arm64@0.21.1 None 0 0 B
npm/@esbuild/android-x64@0.21.1 None 0 0 B
npm/@esbuild/darwin-arm64@0.21.1 None 0 0 B
npm/@esbuild/darwin-x64@0.21.1 None 0 0 B
npm/@esbuild/freebsd-arm64@0.21.1 None 0 0 B
npm/@esbuild/freebsd-x64@0.21.1 None 0 0 B
npm/@esbuild/linux-arm@0.21.1 None 0 0 B
npm/@esbuild/linux-arm64@0.21.1 None 0 0 B
npm/@esbuild/linux-ia32@0.21.1 None 0 0 B
npm/@esbuild/linux-loong64@0.21.1 None 0 0 B
npm/@esbuild/linux-mips64el@0.21.1 None 0 0 B
npm/@esbuild/linux-ppc64@0.21.1 None 0 0 B
npm/@esbuild/linux-riscv64@0.21.1 None 0 0 B
npm/@esbuild/linux-s390x@0.21.1 None 0 0 B
npm/@esbuild/linux-x64@0.21.1 None 0 0 B
npm/@esbuild/netbsd-x64@0.21.1 None 0 0 B
npm/@esbuild/openbsd-x64@0.21.1 None 0 0 B
npm/@esbuild/sunos-x64@0.21.1 None 0 0 B
npm/@esbuild/win32-arm64@0.21.1 None 0 0 B
npm/@esbuild/win32-ia32@0.21.1 None 0 0 B
npm/@esbuild/win32-x64@0.21.1 None 0 0 B
npm/@nodelib/fs.stat@2.0.5 filesystem 0 11.8 kB mrmlnc
npm/@nodelib/fs.walk@1.2.8 Transitive: filesystem +3 63.5 kB mrmlnc
npm/@types/babel__core@7.20.5 None +2 51.6 kB types
npm/@types/babel__traverse@7.18.3 None 0 65.2 kB types
npm/@types/body-parser@1.19.2 None 0 8.3 kB types
npm/@types/istanbul-lib-coverage@2.0.4 None 0 5.76 kB types
npm/@types/parse-json@4.0.0 None 0 2.74 kB types
npm/@webassemblyjs/floating-point-hex-parser@1.11.6 None 0 5.14 kB xtuc
npm/@webassemblyjs/helper-api-error@1.11.6 None 0 5.4 kB xtuc
npm/@webassemblyjs/ieee754@1.11.6 None +1 11.8 kB xtuc
npm/@webassemblyjs/leb128@1.11.6 None +1 221 kB xtuc
npm/@webassemblyjs/utf8@1.11.6 None 0 7.31 kB xtuc
npm/accepts@1.3.8 None 0 16.8 kB dougwilson
npm/acorn-walk@8.2.0 None 0 42.8 kB marijn
npm/ansi-escapes@4.3.2 None +1 135 kB sindresorhus
npm/ansi-html-community@0.0.8 None 0 20.1 kB mahdyar
npm/ansi-regex@6.0.1 None 0 5.67 kB qix
npm/ansi-styles@4.3.0 None +2 50.9 kB sindresorhus
npm/base64-js@1.5.1 None 0 9.62 kB feross
npm/binary-extensions@2.2.0 None 0 5.36 kB sindresorhus
npm/braces@3.0.2 None +3 98.1 kB doowb
npm/buffer@5.7.1 None 0 82.5 kB feross
npm/bytes@3.1.2 None 0 12.3 kB dougwilson
npm/call-bind@1.0.2 None +1 39.9 kB ljharb
npm/camel-case@4.1.2 None +3 71.8 kB blakeembrey
npm/chokidar@3.6.0 environment, filesystem +2 114 kB paulmillr
npm/ci-info@3.8.0 environment 0 25.8 kB sibiraj-s
npm/cli-cursor@3.1.0 None 0 4.37 kB sindresorhus
npm/combined-stream@1.0.8 None +1 19.5 kB alexindigo
npm/compressible@2.0.18 None 0 7.36 kB dougwilson
npm/cross-spawn@7.0.3 environment, filesystem, shell +2 42.1 kB satazor
npm/css-what@6.1.0 None 0 66 kB feedic
npm/define-properties@1.2.1 None +2 48.7 kB ljharb
npm/destroy@1.2.0 filesystem 0 9.02 kB dougwilson
npm/domelementtype@2.3.0 None 0 11.4 kB feedic
npm/domhandler@5.0.3 None 0 75.3 kB feedic
npm/duplexer@0.1.2 None 0 5.47 kB raynos
npm/end-of-stream@1.4.4 None 0 6.23 kB mafintosh
npm/enhanced-resolve@5.15.0 None +1 234 kB thelarkinn
npm/esbuild@0.21.1 None 0 0 B
npm/escodegen@2.1.0 None +1 159 kB michaelficarra
npm/eslint-module-utils@2.8.0 None 0 36.4 kB ljharb
npm/eslint-scope@7.2.2 None 0 146 kB eslintbot
npm/eslint-visitor-keys@3.4.3 None 0 32.3 kB eslintbot
npm/esprima@4.0.1 None 0 314 kB ariya
npm/esrecurse@4.3.0 None 0 13.5 kB michaelficarra
npm/estraverse@5.3.0 None 0 37.1 kB michaelficarra
npm/etag@1.8.1 filesystem 0 10.8 kB dougwilson
npm/events@3.3.0 None 0 82.8 kB goto-bus-stop
npm/exit@0.1.2 None 0 59.8 kB cowboy
npm/fast-deep-equal@3.1.3 None 0 13 kB esp
npm/fast-json-stable-stringify@2.1.0 None 0 17 kB esp
npm/finalhandler@1.2.0 environment +4 52.6 kB dougwilson
npm/fresh@0.5.2 None 0 10.1 kB dougwilson
npm/fs-extra@10.1.0 None +1 67.9 kB ryanzim
npm/fsevents@2.3.2 None 0 156 kB pipobscure
npm/get-intrinsic@1.2.1 eval +3 74.4 kB ljharb
npm/glob-parent@5.1.2 None 0 12.1 kB phated
npm/has-bigints@1.0.2 None 0 12.8 kB ljharb
npm/has-symbols@1.0.3 None 0 20.6 kB ljharb
npm/he@1.2.0 None 0 124 kB mathias
npm/html-escaper@2.0.2 None 0 13.1 kB webreflection
npm/iconv-lite@0.4.24 None 0 336 kB ashtuchkin
npm/inherits@2.0.4 None 0 3.96 kB isaacs
npm/is-array-buffer@3.0.2 None 0 11.9 kB ljharb
npm/is-callable@1.2.7 None 0 28.9 kB ljharb
npm/is-docker@2.2.1 filesystem 0 3.01 kB sindresorhus
npm/is-plain-obj@1.1.0 None 0 2.62 kB sindresorhus
npm/is-string@1.0.7 None +1 30 kB ljharb
npm/is-symbol@1.0.4 None 0 22 kB ljharb
npm/is-typed-array@1.1.12 None 0 17.6 kB ljharb
npm/isobject@3.0.1 None 0 6.93 kB doowb
npm/istanbul-lib-coverage@3.2.0 None 0 29.3 kB oss-bot
npm/jest-util@29.7.0 environment +5 538 kB simenb
npm/js-yaml@3.14.1 eval Transitive: environment, filesystem +2 443 kB vitaly
npm/json-parse-better-errors@1.0.2 None 0 6.7 kB zkat
npm/json-stringify-safe@5.0.1 None 0 12.7 kB isaacs
npm/json5@2.2.3 None 0 235 kB jordanbtucker
npm/jsonfile@6.1.0 filesystem +1 24.4 kB ryanzim
npm/loader-runner@4.3.0 eval, filesystem 0 18.4 kB sokra
npm/loader-utils@2.0.4 None +2 154 kB evilebottnawi
npm/lodash@4.17.21 None 0 1.41 MB bnjmnt4n
npm/log-symbols@4.1.0 None +1 8.12 kB sindresorhus
npm/merge2@1.4.1 None 0 8.9 kB zensh
npm/mime-db@1.52.0 None 0 206 kB dougwilson
npm/mime-types@2.1.35 None 0 18.3 kB dougwilson
npm/mime@1.6.0 environment, filesystem 0 51.7 kB broofa
npm/negotiator@0.6.3 None 0 27.4 kB dougwilson
npm/neo-async@2.6.2 None 0 298 kB suguru03
npm/normalize-path@3.0.0 None 0 9.22 kB jonschlinkert
npm/nth-check@2.1.1 None +1 43.9 kB feedic
npm/object-assign@4.1.1 None 0 5.49 kB sindresorhus
npm/on-finished@2.4.1 unsafe +1 19.9 kB dougwilson
npm/on-headers@1.0.2 None 0 7.54 kB dougwilson
npm/once@1.4.0 None +1 7.01 kB isaacs
npm/path-key@3.1.1 None 0 4.55 kB sindresorhus
npm/picomatch@2.3.1 None 0 90 kB mrmlnc
npm/postcss-value-parser@4.2.0 None 0 27.2 kB evilebottnawi
npm/randombytes@2.1.0 None 0 6.36 kB cwmma
npm/range-parser@1.2.1 None 0 8.46 kB dougwilson
npm/readable-stream@3.6.2 environment 0 124 kB matteo.collina
npm/regenerator-runtime@0.14.1 None 0 27.9 kB benjamn
npm/resolve-from@5.0.0 filesystem, unsafe 0 5.82 kB sindresorhus
npm/rollup@4.17.2 environment, filesystem +16 46.7 MB lukastaegert
npm/safe-buffer@5.2.1 None 0 32.1 kB feross
npm/safer-buffer@2.1.2 None 0 42.3 kB chalker
npm/serialize-javascript@6.0.2 None 0 16.9 kB redonkulus
npm/serve-static@1.15.0 None +3 47.1 kB dougwilson
npm/source-map-support@0.5.13 filesystem, unsafe +1 87.5 kB linusu
npm/strip-ansi@6.0.1 None +1 9.64 kB sindresorhus
npm/unpipe@1.0.0 None 0 4.31 kB dougwilson
npm/util-deprecate@1.0.2 None 0 5.48 kB tootallnate
npm/vary@1.1.2 None 0 8.75 kB dougwilson
npm/wcwidth@1.0.1 None 0 14.2 kB timoxley
npm/webpack-sources@3.2.3 None 0 91.3 kB sokra
npm/ws@8.16.0 environment, network 0 141 kB lpinca
npm/xtend@4.0.2 None 0 6.46 kB raynos
npm/yargs-parser@21.1.1 environment, filesystem 0 128 kB oss-bot

🚮 Removed packages: npm/dotenv@16.4.5, npm/esbuild@0.20.2, npm/graceful-fs@4.2.11

View full report↗︎

@renovate renovate bot force-pushed the renovate/2.x-all-minor-patch branch 3 times, most recently from 47df17c to c7c1f54 Compare April 29, 2024 02:50
Copy link

socket-security bot commented Apr 29, 2024

👍 Dependency issues cleared. Learn more about Socket for GitHub ↗︎

This PR previously contained dependency changes with security issues that have been resolved, removed, or ignored.

View full report↗︎

@renovate renovate bot force-pushed the renovate/2.x-all-minor-patch branch 11 times, most recently from 405cc36 to a87efa6 Compare May 4, 2024 21:57
@renovate renovate bot force-pushed the renovate/2.x-all-minor-patch branch 4 times, most recently from 21c3c53 to d007987 Compare May 7, 2024 16:53
@renovate renovate bot force-pushed the renovate/2.x-all-minor-patch branch from d007987 to 60fb2f9 Compare May 7, 2024 18:54
@danielroe danielroe merged commit 5651463 into 2.x May 7, 2024
16 checks passed
@danielroe danielroe deleted the renovate/2.x-all-minor-patch branch May 7, 2024 20:56
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants