Skip to content

build(deps): bump the npm-deps group with 10 updates#5991

Merged
FlowCryptRobot merged 3 commits intomasterfrom
dependabot/npm_and_yarn/npm-deps-4d4dda2412
May 16, 2025
Merged

build(deps): bump the npm-deps group with 10 updates#5991
FlowCryptRobot merged 3 commits intomasterfrom
dependabot/npm_and_yarn/npm-deps-4d4dda2412

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github May 11, 2025

Bumps the npm-deps group with 10 updates:

Package From To
linkify-html 4.2.0 4.3.1
linkifyjs 4.2.0 4.3.1
@types/chrome 0.0.319 0.0.321
@types/mailparser 3.4.5 3.4.6
eslint-config-prettier 10.1.2 10.1.5
eslint-plugin-jsdoc 50.6.11 50.6.14
lint-staged 15.5.1 16.0.0
puppeteer 24.8.0 24.8.2
typescript-eslint 8.31.1 8.32.0
undici-types 7.8.0 7.9.0

Updates linkify-html from 4.2.0 to 4.3.1

Release notes

Sourced from linkify-html's releases.

v4.3.1

What's Changed

  • Use correct simple-html-tokenizer version for linkify-html

Full Changelog: nfrasser/linkifyjs@v4.3.0...v4.3.1

v4.3.0

What's Changed

Full Changelog: nfrasser/linkifyjs@v4.2.0...v4.3.0

Changelog

Sourced from linkify-html's changelog.

v4.3.1

  • Use correct simple-html-tokenizer version for linkify-html

v4.3.0

  • HTML comments opened or closed with 3 dashes tokenized correctly
  • Restore support for delimiter apostrophes in URLs
  • Rename dist file .cjs.js and .es.js extensions to .cjs and .mjs, respectively
Commits

Updates linkifyjs from 4.2.0 to 4.3.1

Release notes

Sourced from linkifyjs's releases.

v4.3.1

What's Changed

  • Use correct simple-html-tokenizer version for linkify-html

Full Changelog: nfrasser/linkifyjs@v4.3.0...v4.3.1

v4.3.0

What's Changed

Full Changelog: nfrasser/linkifyjs@v4.2.0...v4.3.0

Changelog

Sourced from linkifyjs's changelog.

v4.3.1

  • Use correct simple-html-tokenizer version for linkify-html

v4.3.0

  • HTML comments opened or closed with 3 dashes tokenized correctly
  • Restore support for delimiter apostrophes in URLs
  • Rename dist file .cjs.js and .es.js extensions to .cjs and .mjs, respectively
Commits

Updates @types/chrome from 0.0.319 to 0.0.321

Commits

Updates @types/mailparser from 3.4.5 to 3.4.6

Commits

Updates eslint-config-prettier from 10.1.2 to 10.1.5

Release notes

Sourced from eslint-config-prettier's releases.

v10.1.5

Patch Changes

Full Changelog: prettier/eslint-config-prettier@v10.1.4...v10.1.5

v10.1.4

Patch Changes

Full Changelog: prettier/eslint-config-prettier@v10.1.3...v10.1.4

v10.1.3

Patch Changes

New Contributors

Full Changelog: prettier/eslint-config-prettier@v10.1.2...v10.1.3

Changelog

Sourced from eslint-config-prettier's changelog.

10.1.5

Patch Changes

10.1.4

Patch Changes

10.1.3

Patch Changes

Commits

Updates eslint-plugin-jsdoc from 50.6.11 to 50.6.14

Release notes

Sourced from eslint-plugin-jsdoc's releases.

v50.6.14

50.6.14 (2025-05-10)

Bug Fixes

  • lines-before-block: Switch to a whitelist of punctuators (#1385) (0a30832)

v50.6.13

50.6.13 (2025-05-10)

Bug Fixes

v50.6.12

50.6.12 (2025-05-10)

Bug Fixes

  • no-undefined-types: workaround parse-imports-exports bug in handling trailing whitespace; fixes #1373 (#1384) (f32989c)
Commits
  • 0a30832 fix(lines-before-block): Switch to a whitelist of punctuators (#1385)
  • 19fa3dc fix(lines-before-block): Only trigger after ';', '}', '|', and '&' (#1383)
  • f32989c fix(no-undefined-types): workaround parse-imports-exports bug in handling...
  • See full diff in compare view

Updates lint-staged from 15.5.1 to 16.0.0

Release notes

Sourced from lint-staged's releases.

v16.0.0

Major Changes

  • #1546 158d15c Thanks @​iiroj! - Processes are spawned using nano-spawn instead of execa. If you are using Node.js scripts as tasks, you might need to explicitly run them with node, especially when using Windows:

    {
      "*.js": "node my-js-linter.js"
    }
  • #1546 158d15c Thanks @​iiroj! - The --shell flag has been removed and lint-staged no longer supports evaluating commands directly via a shell. To migrate existing commands, you can create a shell script and invoke it instead. Lint-staged will pass matched staged files as a list of arguments, accessible via "$@":

    # my-script.sh
    #!/bin/bash
    echo "Staged files: $@"

    and

    { "*.js": "my-script.sh" }

    If you were using the shell option to avoid passing filenames to tasks, for example bash -c 'tsc --noEmit', use the function syntax instead:

    export default { '*.ts': () => 'tsc --noEmit' }
  • #1546 158d15c Thanks @​iiroj! - Validation for deprecated advanced configuration has been removed. The advanced configuration was removed in lint-staged version 9 and until now validation has failed if advanced configuration options were detected. Going forward the entire configuration will be treated with the same logic and if these advanced options are still present, they might be treated as valid globs for staged files instead.

  • #1546 158d15c Thanks @​iiroj! - The lowest supported Node.js version is 20.18. Please upgrade your Node.js version.

Minor Changes

  • #1401 27110ef Thanks @​RohitLuthra19! - Added support for directly running functions on staged files. To configure a function task, use an object with a title and the task itself:

    export default {
      '*.js': {
        title: 'My task',
        task: async (files) => {
          console.log('Staged JS files:', files)
        },
      },
    }

... (truncated)

Changelog

Sourced from lint-staged's changelog.

16.0.0

Major Changes

  • #1546 158d15c Thanks @​iiroj! - Processes are spawned using nano-spawn instead of execa. If you are using Node.js scripts as tasks, you might need to explicitly run them with node, especially when using Windows:

    {
      "*.js": "node my-js-linter.js"
    }
  • #1546 158d15c Thanks @​iiroj! - The --shell flag has been removed and lint-staged no longer supports evaluating commands directly via a shell. To migrate existing commands, you can create a shell script and invoke it instead. Lint-staged will pass matched staged files as a list of arguments, accessible via "$@":

    # my-script.sh
    #!/bin/bash
    echo "Staged files: $@"

    and

    { "*.js": "my-script.sh" }

    If you were using the shell option to avoid passing filenames to tasks, for example bash -c 'tsc --noEmit', use the function syntax instead:

    export default { '*.ts': () => 'tsc --noEmit' }
  • #1546 158d15c Thanks @​iiroj! - Validation for deprecated advanced configuration has been removed. The advanced configuration was removed in lint-staged version 9 and until now validation has failed if advanced configuration options were detected. Going forward the entire configuration will be treated with the same logic and if these advanced options are still present, they might be treated as valid globs for staged files instead.

  • #1546 158d15c Thanks @​iiroj! - The lowest supported Node.js version is 20.18. Please upgrade your Node.js version.

Minor Changes

  • #1401 27110ef Thanks @​RohitLuthra19! - Added support for directly running functions on staged files. To configure a function task, use an object with a title and the task itself:

    export default {
      '*.js': {
        title: 'My task',
        task: async (files) => {
          console.log('Staged JS files:', files)
        },
      },
    }

... (truncated)

Commits
  • dad5490 chore(changeset): release
  • 1c19e82 build(deps): update dependencies and require Node.js 20.18
  • 08cf8f5 docs: update README.md and bump nano-spawn as major change
  • 276dcc8 refactor: simplify config validation
  • d4b7cac test: update tests
  • 0ee9ab8 fix: update TypeScript type definitions
  • 12525b2 refactor: rename functions
  • 541c353 refactor: separate "make cmd tasks" and "make function tasks"
  • 27110ef feat: added support for custom configuration
  • 52366f9 ci: update Node.js versions used in CI
  • Additional commits viewable in compare view

Updates puppeteer from 24.8.0 to 24.8.2

Release notes

Sourced from puppeteer's releases.

puppeteer-core: v24.8.2

24.8.2 (2025-05-07)

Bug Fixes

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • @​puppeteer/browsers bumped from 2.10.3 to 2.10.4

puppeteer: v24.8.2

24.8.2 (2025-05-07)

Miscellaneous Chores

  • puppeteer: Synchronize puppeteer versions

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • @​puppeteer/browsers bumped from 2.10.3 to 2.10.4
      • puppeteer-core bumped from 24.8.1 to 24.8.2

puppeteer-core: v24.8.1

24.8.1 (2025-05-06)

Bug Fixes

puppeteer: v24.8.1

24.8.1 (2025-05-06)

Bug Fixes

Dependencies

... (truncated)

Changelog

Sourced from puppeteer's changelog.

24.8.2 (2025-05-07)

Miscellaneous Chores

  • puppeteer: Synchronize puppeteer versions

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • @​puppeteer/browsers bumped from 2.10.3 to 2.10.4

Bug Fixes

24.8.1 (2025-05-06)

Bug Fixes

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 24.8.0 to 24.8.1
Commits
  • 9e4619d chore: release main (#13855)
  • c747eb8 fix: decode URL before parsing (#13857)
  • a83e6ce fix: roll to Chrome 136.0.7103.92 (#13854)
  • 946ca30 chore(deps): Bump github/codeql-action from 3.28.16 to 3.28.17 in the all gro...
  • 712f7c1 docs: Update extensions guide with new launch option (#13852)
  • 265275d chore(deps): Bump the all group in /website with 2 updates (#13837)
  • 7e1248f chore(deps-dev): Bump the dev-dependencies group across 1 directory with 20 u...
  • 7a2da7d chore: release main (#13850)
  • ce68116 docs: fix typos in browser-management.md (#13848)
  • 250cccb fix(webdriver): bump chromium-bidi (#13844)
  • Additional commits viewable in compare view

Updates typescript-eslint from 8.31.1 to 8.32.0

Release notes

Sourced from typescript-eslint's releases.

v8.32.0

8.32.0 (2025-05-05)

🚀 Features

  • eslint-plugin: [no-unnecessary-type-conversion] add rule (#10182)
  • eslint-plugin: [only-throw-error] add option allowRethrowing (#11075)

🩹 Fixes

  • deps: update dependency typedoc to ^0.28.0 (1fef33521)
  • eslint-plugin: [no-unnecessary-type-parameters] should parenthesize type in suggestion fixer if necessary (#10907)
  • eslint-plugin: [unified-signatures] exempt this from optional parameter overload check (#11005)
  • eslint-plugin: [prefer-nullish-coalescing] fix parenthesization bug in suggestion (#11098)
  • typescript-estree: ensure consistent TSMappedType AST shape (#11086)
  • typescript-estree: correct TSImportType property name when assert (#11115)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

Changelog

Sourced from typescript-eslint's changelog.

8.32.0 (2025-05-05)

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

Commits
  • 819a03f chore(release): publish 8.32.0
  • 172ab8a chore(eslint-plugin): resolve remaining issues from vitest migration (#11100)
  • a9c9251 chore: revert vitest related changes in tsconfig files (#11124)
  • See full diff in compare view

Updates undici-types from 7.8.0 to 7.9.0

Release notes

Sourced from undici-types's releases.

v7.9.0

What's Changed

New Contributors

Full Changelog: nodejs/undici@v7.8.0...v7.9.0

Commits
  • 1333929 Bumped v7.9.0 (#4204)
  • cfec10c Restore cache tests & fix max-age behavior (#4198)
  • 0981779 Doc cors spec compliance (#4202)
  • da5c38d Fix missing code in diagnostics example (#4195)
  • c9f50c4 feat: Add stats of client and pool to be accessible through agent (#4157)
  • bd24250 fix: Ensure conflicting flat headers in HTTP/2 are combined correctly (#4196)
  • 14e62db build(deps): bump ossf/scorecard-action from 2.4.0 to 2.4.1 (#4079)
  • c0e634d cache: honour unqualified no-cache response directive (#4178)
  • fe7aa83 fix: cache: treat cache-control request header case-insensitively (#4131)
  • 0daba93 feat: add new acceptNonStandardSearchParameters MockAgent option (#4148)
  • Additional commits viewable in compare view

Most Recent Ignore Conditions Applied to This Pull Request
Dependency Name Ignore Conditions
puppeteer [>= 21.7.a, < 21.8]
puppeteer [>= 22.0.a, < 22.1]
puppeteer [>= 22.1.a, < 22.2]
puppeteer [>= 22.3.a, < 22.4]
puppeteer [>= 22.5.a, < 22.6]
puppeteer [>= 22.6.a, < 22.7]
puppeteer [>= 22.4.a, < 22.5]
puppeteer [>= 22.2.a, < 22.3]
puppeteer [>= 22.7.a, < 22.8]

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels May 11, 2025
@dependabot dependabot bot requested a review from sosnovsky as a code owner May 11, 2025 22:19
@FlowCryptRobot FlowCryptRobot enabled auto-merge (squash) May 11, 2025 22:19
FlowCryptRobot
FlowCryptRobot previously approved these changes May 11, 2025
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/npm-deps-4d4dda2412 branch from 919a636 to a45d5c5 Compare May 12, 2025 06:21
FlowCryptRobot
FlowCryptRobot previously approved these changes May 12, 2025
@sosnovsky
Copy link
Collaborator

@dependabot recreate

Bumps the npm-deps group with 10 updates:

| Package | From | To |
| --- | --- | --- |
| [linkify-html](https://github.com/nfrasser/linkifyjs/tree/HEAD/packages/linkify-html) | `4.2.0` | `4.3.1` |
| [linkifyjs](https://github.com/nfrasser/linkifyjs/tree/HEAD/packages/linkifyjs) | `4.2.0` | `4.3.1` |
| [@types/chrome](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/chrome) | `0.0.319` | `0.0.321` |
| [@types/mailparser](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/mailparser) | `3.4.5` | `3.4.6` |
| [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier) | `10.1.2` | `10.1.5` |
| [eslint-plugin-jsdoc](https://github.com/gajus/eslint-plugin-jsdoc) | `50.6.11` | `50.6.14` |
| [lint-staged](https://github.com/lint-staged/lint-staged) | `15.5.1` | `16.0.0` |
| [puppeteer](https://github.com/puppeteer/puppeteer) | `24.8.0` | `24.8.2` |
| [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.31.1` | `8.32.0` |
| [undici-types](https://github.com/nodejs/undici) | `7.8.0` | `7.9.0` |


Updates `linkify-html` from 4.2.0 to 4.3.1
- [Release notes](https://github.com/nfrasser/linkifyjs/releases)
- [Changelog](https://github.com/nfrasser/linkifyjs/blob/main/CHANGELOG.md)
- [Commits](https://github.com/nfrasser/linkifyjs/commits/v4.3.1/packages/linkify-html)

Updates `linkifyjs` from 4.2.0 to 4.3.1
- [Release notes](https://github.com/nfrasser/linkifyjs/releases)
- [Changelog](https://github.com/nfrasser/linkifyjs/blob/main/CHANGELOG.md)
- [Commits](https://github.com/nfrasser/linkifyjs/commits/v4.3.1/packages/linkifyjs)

Updates `@types/chrome` from 0.0.319 to 0.0.321
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/chrome)

Updates `@types/mailparser` from 3.4.5 to 3.4.6
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/mailparser)

Updates `eslint-config-prettier` from 10.1.2 to 10.1.5
- [Release notes](https://github.com/prettier/eslint-config-prettier/releases)
- [Changelog](https://github.com/prettier/eslint-config-prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/eslint-config-prettier@v10.1.2...v10.1.5)

Updates `eslint-plugin-jsdoc` from 50.6.11 to 50.6.14
- [Release notes](https://github.com/gajus/eslint-plugin-jsdoc/releases)
- [Changelog](https://github.com/gajus/eslint-plugin-jsdoc/blob/main/.releaserc)
- [Commits](gajus/eslint-plugin-jsdoc@v50.6.11...v50.6.14)

Updates `lint-staged` from 15.5.1 to 16.0.0
- [Release notes](https://github.com/lint-staged/lint-staged/releases)
- [Changelog](https://github.com/lint-staged/lint-staged/blob/main/CHANGELOG.md)
- [Commits](lint-staged/lint-staged@v15.5.1...v16.0.0)

Updates `puppeteer` from 24.8.0 to 24.8.2
- [Release notes](https://github.com/puppeteer/puppeteer/releases)
- [Changelog](https://github.com/puppeteer/puppeteer/blob/main/CHANGELOG.md)
- [Commits](puppeteer/puppeteer@puppeteer-v24.8.0...puppeteer-v24.8.2)

Updates `typescript-eslint` from 8.31.1 to 8.32.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.32.0/packages/typescript-eslint)

Updates `undici-types` from 7.8.0 to 7.9.0
- [Release notes](https://github.com/nodejs/undici/releases)
- [Commits](nodejs/undici@v7.8.0...v7.9.0)

---
updated-dependencies:
- dependency-name: linkify-html
  dependency-version: 4.3.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-deps
- dependency-name: linkifyjs
  dependency-version: 4.3.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-deps
- dependency-name: "@types/chrome"
  dependency-version: 0.0.321
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-deps
- dependency-name: "@types/mailparser"
  dependency-version: 3.4.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-deps
- dependency-name: eslint-config-prettier
  dependency-version: 10.1.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-deps
- dependency-name: eslint-plugin-jsdoc
  dependency-version: 50.6.14
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-deps
- dependency-name: lint-staged
  dependency-version: 16.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-deps
- dependency-name: puppeteer
  dependency-version: 24.8.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-deps
- dependency-name: typescript-eslint
  dependency-version: 8.32.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-deps
- dependency-name: undici-types
  dependency-version: 7.9.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-deps
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/npm-deps-4d4dda2412 branch from a45d5c5 to 0c415e2 Compare May 12, 2025 13:01
FlowCryptRobot
FlowCryptRobot previously approved these changes May 12, 2025
@sosnovsky
Copy link
Collaborator

Hi @ioanmo226, can you please check this PR - seems to be some linking issue after the latest linkifyjs update, thanks!

@FlowCryptRobot FlowCryptRobot merged commit 9a3e1bb into master May 16, 2025
11 checks passed
@FlowCryptRobot FlowCryptRobot deleted the dependabot/npm_and_yarn/npm-deps-4d4dda2412 branch May 16, 2025 11:14
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.

2 participants