Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 16, 2025

Bumps the npm-deps group with 7 updates:

Package From To
@types/chrome 0.0.308 0.0.309
eslint-plugin-jsdoc 50.6.3 50.6.6
lint-staged 15.4.3 15.5.0
pdfjs-dist 4.10.38 5.0.375
stylelint 16.15.0 16.16.0
typescript-eslint 8.26.0 8.26.1
undici-types 7.4.0 7.5.0

Updates @types/chrome from 0.0.308 to 0.0.309

Commits

Updates eslint-plugin-jsdoc from 50.6.3 to 50.6.6

Release notes

Sourced from eslint-plugin-jsdoc's releases.

v50.6.6

50.6.6 (2025-03-10)

Bug Fixes

  • empty-tags: allow for JSDoc-block final asterisks; fixes #670 (23b4bfa)

v50.6.5

50.6.5 (2025-03-10)

Bug Fixes

  • text-escaping: always allow content in example tags; fixes #1360 (6baad05)

v50.6.4

50.6.4 (2025-03-10)

Bug Fixes

Commits
  • 6e0f752 Merge pull request #1362 from brettz9/empty-tags-asterisk-final
  • 23b4bfa fix(empty-tags): allow for JSDoc-block final asterisks; fixes #670
  • 60d4d4b Merge pull request #1361 from brettz9/text-escaping-example
  • 6baad05 fix(text-escaping): always allow content in example tags; fixes #1360
  • 9edf4b1 fix: force release
  • b08733a fix: force release
  • 9c69a9f ci: update github actions
  • e9a98a3 test: add types for test cases
  • See full diff in compare view

Updates lint-staged from 15.4.3 to 15.5.0

Release notes

Sourced from lint-staged's releases.

v15.5.0

Minor Changes

  • #1526 630af5f Thanks @​iiroj! - Lint-staged no longer resets to the original state when preventing an empty git commit. This happens when your configured tasks reset all the staged changes, typically when trying to commit formatting changes which conflict with your linter setup like ESLint or Prettier.

    Example with Prettier

    By default Prettier prefers double quotes.

    Previously

    1. Stage file.js with only double quotes " changed to '
    2. Run git commit -am "I don't like double quotes"
    3. Lint-staged runs prettier --write file.js, converting all the ' back to "
    4. Because there are now no changes, lint-staged fails, cancels the commit, and resets back to the original state
    5. Commit was not done, original state is restored and single quotes ' are staged

    Now

    1. Stage file.js with only double-quotes " changed to '
    2. Run git commit -am "I don't like double quotes"
    3. Lint-staged runs prettier --write file.js, converting all the ' back to "
    4. Because there are now no changes, lint-staged fails and cancels the commit
    5. Commit was not done, and there are no staged changes
Changelog

Sourced from lint-staged's changelog.

15.5.0

Minor Changes

  • #1526 630af5f Thanks @​iiroj! - Lint-staged no longer resets to the original state when preventing an empty git commit. This happens when your configured tasks reset all the staged changes, typically when trying to commit formatting changes which conflict with your linter setup like ESLint or Prettier.

    Example with Prettier

    By default Prettier prefers double quotes.

    Previously

    1. Stage file.js with only double quotes " changed to '
    2. Run git commit -am "I don't like double quotes"
    3. Lint-staged runs prettier --write file.js, converting all the ' back to "
    4. Because there are now no changes, lint-staged fails, cancels the commit, and resets back to the original state
    5. Commit was not done, original state is restored and single quotes ' are staged

    Now

    1. Stage file.js with only double-quotes " changed to '
    2. Run git commit -am "I don't like double quotes"
    3. Lint-staged runs prettier --write file.js, converting all the ' back to "
    4. Because there are now no changes, lint-staged fails and cancels the commit
    5. Commit was not done, and there are no staged changes
Commits
  • 7e6abe4 chore(changeset): release
  • 0ebfa69 build(deps): update dependencies
  • 630af5f feat: do not reset to original state when preventing empty commit
  • 7b8be70 chore: update default branch references from "master" to "main"
  • 362a78d docs: add workaround for tsc ignoring tsconfig.json issue to README FAQ (#1523)
  • e013823 fix: "node_modules" typo in eslint.config.js
  • 67019ee test: add integration test to ensure unmodified merged files are not linted (...
  • 366f8bd refactor: move TypeScript types to "index.d.ts" file
  • 85ea6a4 docs: adjust readme regarding monorepo setup
  • See full diff in compare view

Updates pdfjs-dist from 4.10.38 to 5.0.375

Release notes

Sourced from pdfjs-dist's releases.

v5.0.375

PDF.js 5.0 is a major release that contains a number of API changes, features and bugfixes.

The following significant new features are highlighted:

  • Improved JPEG 2000 decoding support
    • The OpenJPEG decoder was moved into a separate .wasm file, which requires setting a new wasmUrl API option in order to use it; see PR mozilla/pdf.js#19329.
    • A (much slower) JavaScript OpenJPEG fallback decoder was added (also uses the wasmUrl API option) for environments without WebAssembly support; see PR mozilla/pdf.js#19525.
  • Support for ICC profiles
    • This requires WebAssembly support, and that the wasmUrl API option is set; see PR mozilla/pdf.js#19564.
    • Use an ICC profile to improve CMYK to RGB color conversion, which requires setting a new iccUrl API option in order to use it; see PR mozilla/pdf.js#19620.
    • Currently Lab profiles are not supported, which is tracked in bug 1717767.
  • Improved rendering of large pages in the viewer
    • Render the currently visible portion of pages at full resolution, once we've reached the size limits and are falling back to CSS-zooming; see PR mozilla/pdf.js#19128.
    • Limit the maximum canvas dimensions, to avoid rendering breaking and canvases being empty; see PR mozilla/pdf.js#19604.
  • Enable creation of hyperlinks, in the viewer, from text that look like URLs
    • This is disabled by default because of some remaining issues, but can be enabled in the viewer with the enableAutoLinking option/preference; see PR mozilla/pdf.js#19110.

The following significant changes are highlighted (which may require changes in third-party PDF.js implementations):

The complete list of changes in this release is shown below. If you're upgrading to PDF.js 5.0 we recommend checking the changes prefixed with [api-minor] and [api-major] since those might require updates to your code.

Changes since v4.10.38

... (truncated)

Commits
  • 23972e1 Merge pull request #19661 from Snuffleupagus/thumbnails-inline-finishRenderTask
  • 6548c9f Inline the PDFThumbnailView.prototype.#finishRenderTask helper method
  • 7ee061b Add a helper function, in web/pdf_thumbnail_view.js, for "zeroing" a canvas
  • b7eef92 Shorten the PDFThumbnailView.prototype.#getReducedImageDims method (PR 1963...
  • 4b2683e Merge pull request #19656 from Snuffleupagus/shorten-MeshStreamReader
  • 9967ab4 Merge pull request #19657 from Snuffleupagus/GenericL10n-rm-regex
  • 9180e27 Replace the regular expression in GenericL10n.#getPaths with simple string ...
  • ec30f07 Slightly shorten a couple of MeshStreamReader methods
  • 2294a51 Merge pull request #19653 from calixteman/rm_strings_html
  • 88c3ed9 Remove all the translatable strings from the html
  • Additional commits viewable in compare view

Updates stylelint from 16.15.0 to 16.16.0

Release notes

Sourced from stylelint's releases.

16.16.0

Changelog

Sourced from stylelint's changelog.

16.16.0 - 2025-03-14

It adds support for computing EditInfo to 22 more rules and reverts a change that added context.lexer to our public API in the previous release.

Commits
  • e35e3b9 16.16.0
  • 3bbbea3 Prepare 16.16.0 (#8438)
  • 2642237 Added value-no-vendor-prefix support for computing EditInfo (#8470)
  • 974d4ff Added value-keyword-case support for computing EditInfo (#8469)
  • 6a0b08d Fix Could not find a declaration file for module 'css-tree' type error (#8452)
  • 42108ad Added media-feature-range-notation support for computing EditInfo (#8455)
  • 1e68bb8 Added media-feature-name-no-vendor-prefix support for computing EditInfo ...
  • d7500b1 Added keyframe-selector-notation support for computing EditInfo (#8457)
  • 9f15d9d Added lightness-notation support for computing EditInfo (#8458)
  • 9be82dd Added length-zero-no-unit support for computing EditInfo. (#8459)
  • Additional commits viewable in compare view

Updates typescript-eslint from 8.26.0 to 8.26.1

Release notes

Sourced from typescript-eslint's releases.

v8.26.1

8.26.1 (2025-03-10)

🩹 Fixes

  • eslint-plugin: [prefer-nullish-coalescing] treat any/unknown as eligible for nullish coalescing (#10865)
  • eslint-plugin: [no-unsafe-return] handle recursive type (#10883)
  • rule-tester: export TestLanguageOptions (#10930)

❤️ Thank You

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

Changelog

Sourced from typescript-eslint's changelog.

8.26.1 (2025-03-10)

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

Updates undici-types from 7.4.0 to 7.5.0

Release notes

Sourced from undici-types's releases.

v7.5.0

What's Changed

New Contributors

Full Changelog: nodejs/undici@v7.4.0...v7.5.0

Commits

Most Recent Ignore Conditions Applied to This Pull Request
Dependency Name Ignore Conditions
pdfjs-dist [>= 4.0.a, < 4.1]

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

Bumps the npm-deps group with 7 updates:

| Package | From | To |
| --- | --- | --- |
| [@types/chrome](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/chrome) | `0.0.308` | `0.0.309` |
| [eslint-plugin-jsdoc](https://github.com/gajus/eslint-plugin-jsdoc) | `50.6.3` | `50.6.6` |
| [lint-staged](https://github.com/lint-staged/lint-staged) | `15.4.3` | `15.5.0` |
| [pdfjs-dist](https://github.com/mozilla/pdf.js) | `4.10.38` | `5.0.375` |
| [stylelint](https://github.com/stylelint/stylelint) | `16.15.0` | `16.16.0` |
| [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.26.0` | `8.26.1` |
| [undici-types](https://github.com/nodejs/undici) | `7.4.0` | `7.5.0` |


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

Updates `eslint-plugin-jsdoc` from 50.6.3 to 50.6.6
- [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.3...v50.6.6)

Updates `lint-staged` from 15.4.3 to 15.5.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.4.3...v15.5.0)

Updates `pdfjs-dist` from 4.10.38 to 5.0.375
- [Release notes](https://github.com/mozilla/pdf.js/releases)
- [Commits](mozilla/pdf.js@v4.10.38...v5.0.375)

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

Updates `typescript-eslint` from 8.26.0 to 8.26.1
- [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.26.1/packages/typescript-eslint)

Updates `undici-types` from 7.4.0 to 7.5.0
- [Release notes](https://github.com/nodejs/undici/releases)
- [Commits](nodejs/undici@v7.4.0...v7.5.0)

---
updated-dependencies:
- dependency-name: "@types/chrome"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-deps
- dependency-name: eslint-plugin-jsdoc
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-deps
- dependency-name: lint-staged
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-deps
- dependency-name: pdfjs-dist
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-deps
- dependency-name: stylelint
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-deps
- dependency-name: typescript-eslint
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-deps
- dependency-name: undici-types
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-deps
...

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 Mar 16, 2025
@dependabot dependabot bot requested a review from sosnovsky as a code owner March 16, 2025 22:18
@FlowCryptRobot FlowCryptRobot enabled auto-merge (squash) March 16, 2025 22:18
@FlowCryptRobot FlowCryptRobot merged commit 4c49193 into master Mar 16, 2025
11 checks passed
@FlowCryptRobot FlowCryptRobot deleted the dependabot/npm_and_yarn/npm-deps-bea9743e69 branch March 16, 2025 22:48
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.

1 participant