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

Bump the npm_and_yarn group across 1 directory with 22 updates #251

Closed

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Feb 17, 2025

Bumps the npm_and_yarn group with 17 updates in the / directory:

Package From To
cookie-parser 1.4.6 1.4.7
http-proxy-middleware 2.0.6 2.0.7
liquidjs 9.22.1 10.0.0
next 14.2.15 14.2.21
rss-parser 3.12.0 3.13.0
jest-environment-puppeteer 5.0.4 11.0.0
postcss 8.4.31 8.5.2
start-server-and-test 1.14.0 2.0.10
jest-puppeteer 5.0.4 11.0.0
@babel/traverse 7.18.5 7.26.9
braces 3.0.2 3.0.3
http-cache-semantics 4.1.0 4.1.1
json5 1.0.1 1.0.2
loader-utils 2.0.2 2.0.4
micromatch 4.0.5 4.0.8
webpack 5.73.0 5.98.0
ws 7.5.9 7.5.10

Updates cookie-parser from 1.4.6 to 1.4.7

Release notes

Sourced from cookie-parser's releases.

1.4.7

What's Changed

New Contributors

Full Changelog: expressjs/cookie-parser@1.4.6...1.4.7

Changelog

Sourced from cookie-parser's changelog.

1.4.7 / 2024-10-08

  • deps: [email protected]
    • Fix object assignment of hasOwnProperty
  • deps: [email protected]
    • Allow leading dot for domain
      • Although not permitted in the spec, some users expect this to work and user agents ignore the leading dot according to spec
    • Add fast path for serialize without options, use obj.hasOwnProperty when parsing
  • deps: [email protected]
    • perf: parse cookies ~10% faster
    • fix: narrow the validation of cookies to match RFC6265
    • fix: add main to package.json for rspack
  • deps: [email protected]
    • Add partitioned option
  • deps: [email protected]
    • Add priority option
    • Fix expires option to reject invalid dates
    • pref: improve default decode speed
    • pref: remove slow string split in parse
  • deps: [email protected]
    • pref: read value only when assigning in parse
    • pref: remove unnecessary regexp in parse
Commits
Maintainer changes

This version was pushed to npm by ulisesgascon, a new releaser for cookie-parser since your current version.


Updates http-proxy-middleware from 2.0.6 to 2.0.7

Release notes

Sourced from http-proxy-middleware's releases.

v2.0.7

Full Changelog: chimurai/http-proxy-middleware@v2.0.6...v2.0.7

v2.0.7-beta.1

Full Changelog: chimurai/http-proxy-middleware@v2.0.7-beta.0...v2.0.7-beta.1

v2.0.7-beta.0

Full Changelog: chimurai/http-proxy-middleware@v2.0.6...v2.0.7-beta.0

Changelog

Sourced from http-proxy-middleware's changelog.

v2.0.7

  • ci(github actions): add publish.yml
  • fix(filter): handle errors
Commits

Updates liquidjs from 9.22.1 to 10.0.0

Release notes

Sourced from liquidjs's releases.

v10.0.0

10.0.0 (2022-11-27)

chore

Code Refactoring

  • _evalToken renamed to evalToken (4e1a30a)
  • change ownPropertyOnly default value to true (7eb6216)
  • delay creation of operatorsTrie and hide this implementation (bb58d3e)
  • remove toThenable export (ffefd91)
  • remove use of internal Context class in evalValue argument (b115077)

Performance Improvements

  • target Node.js 14 for cjs bundle (main entry) (1f6ce7c)

BREAKING CHANGES

  • evalToken now returns a generator (LiquidJS async), which is different from evalToken in previous LiquidJS versions.
  • main entry need Node.js>=14 to run, you can build LiquidJS by your own by using ESM entry.
  • ownPropertyOnly default value changed to true
  • <liquidjs>.toThenable is removed, use <liquidjs>.toPromise instead
  • evalValue won't support Context as second argument anymore.
  • use operators instead of operatorsTrie as Tokenizer constructor argument, #500
  • keys in <liquidjs>.filters are now in snake case (instead of camel case), identical to that in Liquid template.

v9.43.0

9.43.0 (2022-11-27)

Features

  • support timezone offset argument for date filter, #553 (7a71485)

v9.42.1

9.42.1 (2022-10-21)

Bug Fixes

  • truncatewords should use at least one word, #537 (32f613f)

v9.42.0

... (truncated)

Changelog

Sourced from liquidjs's changelog.

10.0.0 (2022-11-27)

Code Refactoring

  • rename filters to snake style, #487 (ff112a4)
  • _evalToken renamed to evalToken (4e1a30a)
  • change ownPropertyOnly default value to true (7eb6216)
  • delay creation of operatorsTrie and hide this implementation (bb58d3e)
  • remove toThenable export (ffefd91)
  • remove use of internal Context class in evalValue argument (b115077)

Performance Improvements

  • target Node.js 14 for cjs bundle (main entry) (1f6ce7c)

BREAKING CHANGES

  • evalToken now returns a generator (LiquidJS async), which is different from evalToken in previous LiquidJS versions.
  • main entry need Node.js>=14 to run, you can build LiquidJS by your own by using ESM entry.
  • ownPropertyOnly default value changed to true
  • <liquidjs>.toThenable is removed, use <liquidjs>.toPromise instead
  • evalValue won't support Context as second argument anymore.
  • use operators instead of operatorsTrie as Tokenizer constructor argument, #500
  • keys in <liquidjs>.filters are now in snake case (instead of camel case), identical to that in Liquid template.

9.43.0 (2022-11-27)

Features

  • support timezone offset argument for date filter, #553 (7a71485)

9.42.1 (2022-10-21)

Bug Fixes

  • truncatewords should use at least one word, #537 (32f613f)

9.42.0 (2022-08-27)

Features

9.41.0 (2022-08-24)

... (truncated)

Commits
  • 9b9ef37 chore(release): 10.0.0 [skip ci]
  • 5bbdc08 chore(deps): bump minimatch from 3.0.4 to 3.1.2
  • 1380ac9 refactor: more consistent tags to make it easier to iterate over, #524
  • 4e1a30a refactor: _evalToken renamed to evalToken
  • 9299268 refactor: Tag class support in registerTag()
  • 1f6ce7c perf: target Node.js 14 for cjs bundle (main entry)
  • 7eb6216 refactor: change ownPropertyOnly default value to true
  • ffefd91 refactor: remove toThenable export
  • b115077 refactor: remove use of internal Context class in evalValue argument
  • bb58d3e refactor: delay creation of operatorsTrie and hide this implementation
  • Additional commits viewable in compare view

Updates next from 14.2.15 to 14.2.21

Release notes

Sourced from next's releases.

v14.2.21

[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes

Misc Changes

Credits

Huge thanks to @​unstubbable, @​ztanner, and @​styfle for helping!

Commits

Updates rss-parser from 3.12.0 to 3.13.0

Commits

Updates jest-environment-puppeteer from 5.0.4 to 11.0.0

Release notes

Sourced from jest-environment-puppeteer's releases.

v11.0.0

Features

BREAKING CHANGES

  • Node.js v16 is not supported

v10.1.4

Bug Fixes

  • revert types resolution from [@jest](https://github.com/jest)/globals (#604) (4bc420b)

v10.1.3

Bug Fixes

v10.1.2

Bug Fixes

  • fix types resolution for expect-puppeteer (#599) (37e3271)

v10.1.1

No release notes provided.

v10.1.0

Features

v10.0.1

Bug Fixes

... (truncated)

Changelog

Sourced from jest-environment-puppeteer's changelog.

11.0.0 (2024-12-21)

Features

BREAKING CHANGES

  • Node.js v16 is not supported

10.1.4 (2024-10-26)

Bug Fixes

  • revert types resolution from @jest/globals (#604) (4bc420b)

10.1.2 (2024-10-10)

Bug Fixes

  • fix types resolution for expect-puppeteer (#599) (37e3271)

10.1.1 (2024-09-06)

Note: Version bump only for package jest-environment-puppeteer

10.1.0 (2024-08-17)

... (truncated)

Commits

Updates postcss from 8.4.31 to 8.5.2

Release notes

Sourced from postcss's releases.

8.5.2

8.5.1

8.5 “Duke Alloces”

PostCSS 8.5 brought API to work better with non-CSS sources like HTML, Vue.js/Svelte sources or CSS-in-JS.

@​romainmenke during his work on Stylelint added Input#document in additional to Input#css.

root.source.input.document //=> "<p>Hello</p>
                           //    <style>
                           //    p {
                           //      color: green;
                           //    }
                           //    </style>"
root.source.input.css      //=> "p {
                           //      color: green;
                           //    }"

Thanks to Sponsors

This release was possible thanks to our community.

If your company wants to support the sustainability of front-end infrastructure or wants to give some love to PostCSS, you can join our supporters by:

8.4.49

8.4.48

  • Fixed position calculation in error/warnings methods (by @​romainmenke).

8.4.47

  • Removed debug code.

8.4.46

  • Fixed Cannot read properties of undefined (reading 'before').

8.4.45

  • Removed unnecessary fix which could lead to infinite loop.

... (truncated)

Changelog

Sourced from postcss's changelog.

8.5.2

8.5.1

8.5 “Duke Alloces”

  • Added Input#document for sources like CSS-in-JS or HTML (by @​romainmenke).

8.4.49

8.4.48

  • Fixed position calculation in error/warnings methods (by @​romainmenke).

8.4.47

  • Removed debug code.

8.4.46

  • Fixed Cannot read properties of undefined (reading 'before').

8.4.45

  • Removed unnecessary fix which could lead to infinite loop.

8.4.44

  • Another way to fix markClean is not a function error.

8.4.43

  • Fixed markClean is not a function error.

8.4.42

  • Fixed CSS syntax error on long minified files (by @​varpstar).

8.4.41

8.4.40

  • Moved to getter/setter in nodes types to help Sass team (by @​nex3).

8.4.39

8.4.38

8.4.37

  • Fixed original.column are not numbers error in another case.

8.4.36

... (truncated)

Commits

Updates start-server-and-test from 1.14.0 to 2.0.10

Release notes

Sourced from start-server-and-test's releases.

v2.0.10

2.0.10 (2025-01-14)

Bug Fixes

  • deps: update dependency wait-on to v8.0.2 (#399) (a514875)

v2.0.9

2.0.9 (2024-12-11)

Bug Fixes

  • deps: update dependency debug to v4.4.0 (#397) (0f057d7)

v2.0.8

2.0.8 (2024-09-16)

Bug Fixes

  • deps: update dependency wait-on to v8.0.1 (fe1c25d)

v2.0.7

2.0.7 (2024-09-09)

Bug Fixes

  • deps: update dependency wait-on to v8 (#386) (d814a72)

v2.0.6

2.0.6 (2024-09-08)

Bug Fixes

  • deps: update dependency debug to v4.3.7 (78c6f53)

v2.0.5

2.0.5 (2024-07-29)

Bug Fixes

  • deps: update dependency debug to v4.3.6 (8ebb70b)

v2.0.4

2.0.4 (2024-06-05)

... (truncated)

Commits
  • a514875 fix(deps): update dependency wait-on to v8.0.2 (#399)
  • 0f057d7 fix(deps): update dependency debug to v4.4.0 (#397)
  • fe1c25d fix(deps): update dependency wait-on to v8.0.1
  • d814a72 fix(deps): update dependency wait-on to v8 (#386)
  • 78c6f53 fix(deps): update dependency debug to v4.3.7
  • 8ebb70b fix(deps): update dependency debug to v4.3.6
  • dd8a2d7 fix(deps): update dependency debug to v4.3.5
  • ad35c2e fix(deps): update dependency wait-on to v7.2.0 (#374)
  • efe7384 fix(deps): update dependency wait-on to v7.1.0
  • 2fc1f98 fix: bump minimum Node to v16, closes #351
  • Additional commits viewable in compare view

Updates jest-puppeteer from 5.0.4 to 11.0.0

Release notes

Sourced from jest-puppeteer's releases.

v11.0.0

Features

BREAKING CHANGES

  • Node.js v16 is not supported

v10.1.4

Bug Fixes

  • revert types resolution from [@jest](https://github.com/jest)/globals (#604) (4bc420b)

v10.1.3

Bug Fixes

v10.1.2

Bug Fixes

  • fix types resolution for expect-puppeteer (#599) (37e3271)

v10.1.1

No release notes provided.

v10.1.0

Features

v10.0.1

Bug Fixes

... (truncated)

Changelog

Sourced from jest-puppeteer's changelog.

11.0.0 (2024-12-21)

Features

  • add support for Node.js v22-23 (d67228e)

BREAKING CHANGES

  • Node.js v16 is not supported

10.1.4 (2024-10-26)

Note: Version bump only for package jest-puppeteer

10.1.3 (2024-10-22)

Note: Version bump only for package jest-puppeteer

10.1.2 (2024-10-10)

Note: Version bump only for package jest-puppeteer

10.1.1 (2024-09-06)

Note: Version bump only for package jest-puppeteer

10.1.0 (2024-08-17)

... (truncated)

Commits

Updates @babel/traverse from 7.18.5 to 7.26.9

Release notes

Sourced from @​babel/traverse's releases.

v7.26.9 (2025-02-14)

🐛 Bug Fix

🏠 Internal

Committers: 5

v7.26.8 (2025-02-08)

🏠 Internal

  • babel-preset-env
    • #17097 Update dependency babel-plugin-polyfill-corejs3 to ^0.11.0

v7.26.7 (2025-01-24)

Thanks @​branchseer and @​tquetano-netflix for your first PRs!

🐛 Bug Fix

  • babel-helpers, babel-preset-env, babel-runtime-corejs3
  • babel-plugin-transform-typeof-symbol
  • babel-parser
  • babel-core
  • babel-plugin-transform-typescript
  • babel-plugin-transform-typescript, babel-traverse, babel-types

Committers: 6

... (truncated)

Changelog

Sourced from @​babel/traverse's changelog.

v7.26.9 (2025-02-14)

🐛 Bug Fix

🏠 Internal

v7.26.7 (2025-01-24)

🐛 Bug Fix

  • babel-helpers, babel-preset-env, babel-runtime-corejs3
  • babel-plugin-transform-typeof-symbol
  • babel-parser
  • babel-core
  • babel-plugin-transform-typescript
  • babel-plugin-transform-typescript, babel-traverse, babel-types

v7.26.6 (2025-01-13)

🐛 Bug Fix

  • babel-plugin-transform-nullish-coalescing-operator

v7.26.5 (2025-01-10)

👓 Spec Compliance

🐛 Bug Fix

  • babel-plugin-transform-block-scoped-functions
  • babel-plugin-transform-typescript
  • babel-parser
  • babel-generator, babel-parser, babel-plugin-transform-flow-strip-types, babel-types

... (truncated)

Commits

Updates @sideway/formula from 3.0.0 to 3.0.1

Commits
Maintainer changes

This version was pushed to npm by marsup, a new releaser for @​sideway/formula since your current version.


Updates axios from 0.21.4 to 1.7.9

Release notes

Sourced from axios's releases.

Release v1.7.9

Release notes:

Reverts

Contributors to this release

Release v1.7.8

Release notes:

Bug Fixes

  • allow passing a callback as paramsSerializer to buildURL (Description has been truncated

Bumps the npm_and_yarn group with 17 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [cookie-parser](https://github.com/expressjs/cookie-parser) | `1.4.6` | `1.4.7` |
| [http-proxy-middleware](https://github.com/chimurai/http-proxy-middleware) | `2.0.6` | `2.0.7` |
| [liquidjs](https://github.com/harttle/liquidjs) | `9.22.1` | `10.0.0` |
| [next](https://github.com/vercel/next.js) | `14.2.15` | `14.2.21` |
| [rss-parser](https://github.com/bobby-brennan/rss-parser) | `3.12.0` | `3.13.0` |
| [jest-environment-puppeteer](https://github.com/argos-ci/jest-puppeteer/tree/HEAD/packages/jest-environment-puppeteer) | `5.0.4` | `11.0.0` |
| [postcss](https://github.com/postcss/postcss) | `8.4.31` | `8.5.2` |
| [start-server-and-test](https://github.com/bahmutov/start-server-and-test) | `1.14.0` | `2.0.10` |
| [jest-puppeteer](https://github.com/argos-ci/jest-puppeteer/tree/HEAD/packages/jest-puppeteer) | `5.0.4` | `11.0.0` |
| [@babel/traverse](https://github.com/babel/babel/tree/HEAD/packages/babel-traverse) | `7.18.5` | `7.26.9` |
| [braces](https://github.com/micromatch/braces) | `3.0.2` | `3.0.3` |
| [http-cache-semantics](https://github.com/kornelski/http-cache-semantics) | `4.1.0` | `4.1.1` |
| [json5](https://github.com/json5/json5) | `1.0.1` | `1.0.2` |
| [loader-utils](https://github.com/webpack/loader-utils) | `2.0.2` | `2.0.4` |
| [micromatch](https://github.com/micromatch/micromatch) | `4.0.5` | `4.0.8` |
| [webpack](https://github.com/webpack/webpack) | `5.73.0` | `5.98.0` |
| [ws](https://github.com/websockets/ws) | `7.5.9` | `7.5.10` |



Updates `cookie-parser` from 1.4.6 to 1.4.7
- [Release notes](https://github.com/expressjs/cookie-parser/releases)
- [Changelog](https://github.com/expressjs/cookie-parser/blob/master/HISTORY.md)
- [Commits](expressjs/cookie-parser@1.4.6...1.4.7)

Updates `http-proxy-middleware` from 2.0.6 to 2.0.7
- [Release notes](https://github.com/chimurai/http-proxy-middleware/releases)
- [Changelog](https://github.com/chimurai/http-proxy-middleware/blob/v2.0.7/CHANGELOG.md)
- [Commits](chimurai/http-proxy-middleware@v2.0.6...v2.0.7)

Updates `liquidjs` from 9.22.1 to 10.0.0
- [Release notes](https://github.com/harttle/liquidjs/releases)
- [Changelog](https://github.com/harttle/liquidjs/blob/master/CHANGELOG.md)
- [Commits](harttle/liquidjs@v9.22.1...v10.0.0)

Updates `next` from 14.2.15 to 14.2.21
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](vercel/next.js@v14.2.15...v14.2.21)

Updates `rss-parser` from 3.12.0 to 3.13.0
- [Commits](rbren/rss-parser@v3.12.0...v3.13.0)

Updates `jest-environment-puppeteer` from 5.0.4 to 11.0.0
- [Release notes](https://github.com/argos-ci/jest-puppeteer/releases)
- [Changelog](https://github.com/argos-ci/jest-puppeteer/blob/main/packages/jest-environment-puppeteer/CHANGELOG.md)
- [Commits](https://github.com/argos-ci/jest-puppeteer/commits/v11.0.0/packages/jest-environment-puppeteer)

Updates `postcss` from 8.4.31 to 8.5.2
- [Release notes](https://github.com/postcss/postcss/releases)
- [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md)
- [Commits](postcss/postcss@8.4.31...8.5.2)

Updates `start-server-and-test` from 1.14.0 to 2.0.10
- [Release notes](https://github.com/bahmutov/start-server-and-test/releases)
- [Commits](bahmutov/start-server-and-test@v1.14.0...v2.0.10)

Updates `jest-puppeteer` from 5.0.4 to 11.0.0
- [Release notes](https://github.com/argos-ci/jest-puppeteer/releases)
- [Changelog](https://github.com/argos-ci/jest-puppeteer/blob/main/packages/jest-puppeteer/CHANGELOG.md)
- [Commits](https://github.com/argos-ci/jest-puppeteer/commits/v11.0.0/packages/jest-puppeteer)

Updates `@babel/traverse` from 7.18.5 to 7.26.9
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.26.9/packages/babel-traverse)

Updates `@sideway/formula` from 3.0.0 to 3.0.1
- [Commits](hapijs/formula@v3.0.0...v3.0.1)

Updates `axios` from 0.21.4 to 1.7.9
- [Release notes](https://github.com/axios/axios/releases)
- [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md)
- [Commits](axios/axios@v0.21.4...v1.7.9)

Updates `braces` from 3.0.2 to 3.0.3
- [Changelog](https://github.com/micromatch/braces/blob/master/CHANGELOG.md)
- [Commits](micromatch/braces@3.0.2...3.0.3)

Updates `cookie` from 0.4.1 to 0.7.1
- [Release notes](https://github.com/jshttp/cookie/releases)
- [Commits](jshttp/cookie@v0.4.1...v0.7.1)

Updates `follow-redirects` from 1.14.8 to 1.15.9
- [Release notes](https://github.com/follow-redirects/follow-redirects/releases)
- [Commits](follow-redirects/follow-redirects@v1.14.8...v1.15.9)

Updates `http-cache-semantics` from 4.1.0 to 4.1.1
- [Commits](kornelski/http-cache-semantics@v4.1.0...v4.1.1)

Updates `json5` from 1.0.1 to 1.0.2
- [Release notes](https://github.com/json5/json5/releases)
- [Changelog](https://github.com/json5/json5/blob/main/CHANGELOG.md)
- [Commits](json5/json5@v1.0.1...v1.0.2)

Updates `loader-utils` from 2.0.2 to 2.0.4
- [Release notes](https://github.com/webpack/loader-utils/releases)
- [Changelog](https://github.com/webpack/loader-utils/blob/v2.0.4/CHANGELOG.md)
- [Commits](webpack/loader-utils@v2.0.2...v2.0.4)

Updates `micromatch` from 4.0.5 to 4.0.8
- [Release notes](https://github.com/micromatch/micromatch/releases)
- [Changelog](https://github.com/micromatch/micromatch/blob/master/CHANGELOG.md)
- [Commits](micromatch/micromatch@4.0.5...4.0.8)

Updates `webpack` from 5.73.0 to 5.98.0
- [Release notes](https://github.com/webpack/webpack/releases)
- [Commits](webpack/webpack@v5.73.0...v5.98.0)

Updates `ws` from 7.5.9 to 7.5.10
- [Release notes](https://github.com/websockets/ws/releases)
- [Commits](websockets/ws@7.5.9...7.5.10)

Updates `xml2js` from 0.4.23 to 0.5.0
- [Commits](https://github.com/Leonidas-from-XIV/node-xml2js/commits/0.5.0)

---
updated-dependencies:
- dependency-name: cookie-parser
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: http-proxy-middleware
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: liquidjs
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: next
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: rss-parser
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: jest-environment-puppeteer
  dependency-type: direct:development
  dependency-group: npm_and_yarn
- dependency-name: postcss
  dependency-type: direct:development
  dependency-group: npm_and_yarn
- dependency-name: start-server-and-test
  dependency-type: direct:development
  dependency-group: npm_and_yarn
- dependency-name: jest-puppeteer
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: "@babel/traverse"
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: "@sideway/formula"
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: axios
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: braces
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: cookie
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: follow-redirects
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: http-cache-semantics
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: json5
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: loader-utils
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: micromatch
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: webpack
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: ws
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: xml2js
  dependency-type: indirect
  dependency-group: npm_and_yarn
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Feb 17, 2025
Copy link
Author

dependabot bot commented on behalf of github Feb 17, 2025

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Feb 17, 2025
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/npm_and_yarn-3c01ce0690 branch February 17, 2025 15:22
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants