Skip to content

Update All NPM Dependencies#12

Merged
ghazi-git merged 2 commits intomainfrom
renovate/all-npm-dependencies
Mar 24, 2026
Merged

Update All NPM Dependencies#12
ghazi-git merged 2 commits intomainfrom
renovate/all-npm-dependencies

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Jan 1, 2026

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@crxjs/vite-plugin (source) 2.2.02.3.0 age adoption passing confidence
@eslint/js (source) 9.38.09.39.3 age adoption passing confidence
@prantlf/jsonlint (source) 16.0.016.1.0 age adoption passing confidence
@release-it/keep-a-changelog 7.0.07.0.1 age adoption passing confidence
@types/chrome (source) 0.1.240.1.37 age adoption passing confidence
eslint (source) 9.38.09.39.3 age adoption passing confidence
globals 16.4.016.5.0 age adoption passing confidence
open-props 1.7.161.7.23 age adoption passing confidence
prettier (source) 3.6.23.8.1 age adoption passing confidence
prism-code-editor 4.1.04.2.0 age adoption passing confidence
release-it 19.0.619.2.4 age adoption passing confidence
solid-js (source) 1.9.91.9.11 age adoption passing confidence
stylelint (source) 16.25.016.26.1 age adoption passing confidence
stylelint-plugin-logical-css 1.2.31.3.0 age adoption passing confidence
typescript-eslint (source) 8.46.28.56.0 age adoption passing confidence
vite (source) 7.1.127.3.1 age adoption passing confidence

Release Notes

crxjs/chrome-extension-tools (@​crxjs/vite-plugin)

v2.3.0

Compare Source

Minor Changes
  • ee17090: * adds support for main world content scripts declared from manifest
    • shows warning during development for detected main world scripts so that the
      dev is not surprised the hmr does not work for it
    • does not touch chrome.scripting.registerContentScripts scripts, as they
      already work

v2.2.1

Compare Source

Patch Changes
  • 5ff5465: feat(vite-plugin): limit path string checking to literals
eslint/eslint (@​eslint/js)

v9.39.3

Compare Source

Bug Fixes

  • 791bf8d fix: restore TypeScript 4.0 compatibility in types (#​20504) (sethamus)

Chores

v9.39.2

Compare Source

v9.39.1

Compare Source

v9.39.0

Compare Source

prantlf/jsonlint (@​prantlf/jsonlint)

v16.1.0

Compare Source

Features
  • Upgrade dependencies (3dedeec)
  • Add ajv-formats and ajv-keywords plugins to support the latest JSON Schema drafts (63a3b3b)
  • Allow disabling strict mode of schema compilation (0d605b6)
  • Print colourful JSON diff (f9e43de)
  • Ability to force crlf (ca7fa7f)
Bug Fixes
  • Fix schema validation instructions (ffa29c3)
release-it/keep-a-changelog (@​release-it/keep-a-changelog)

v7.0.1

Compare Source

sindresorhus/globals (globals)

v16.5.0

Compare Source


argyleink/open-props (open-props)

v1.7.23

Compare Source

31 January 2026

  • Add commit message input to version-bump workflow #585
  • ✂️ 1.7.23 74515a5

v1.7.22

Compare Source

31 January 2026

  • Add id-token permission to version-bump workflow #584
  • Add TypeScript types to submodule exports #582
  • [WIP] Fix issue with npm_publish workflow not triggering #583
  • ✂️ 1.7.22 ef7acc0

v1.7.21

Compare Source

31 January 2026

  • Add non-adaptive shadows.light.min.css and shadows.dark.min.css exports #580
  • Inject docsite version from package.json at build time #578
  • ✂️ 1.7.21 1368169

v1.7.20

Compare Source

31 January 2026

v1.7.19

Compare Source

31 January 2026

  • Add workflow_dispatch action for version bumping #577
  • Update NPM Publish workflow to latest action versions #576
  • chore: bump version to 1.7.19 1f63fef

v1.7.17

Compare Source

1 December 2025

  • fix(duration): add missing semicolon #564
  • Fix: restore newline so logo renders properly in README #560
  • ✂️ v1.7.17 5a79f44
prettier/prettier (prettier)

v3.8.1

Compare Source

v3.8.0

Compare Source

diff

🔗 Release note

v3.7.4

Compare Source

diff

LWC: Avoid quote around interpolations (#​18383 by @​kovsu)
<!-- Input -->
<div foo={bar}>   </div>

<!-- Prettier 3.7.3 (--embedded-language-formatting off) -->
<div foo="{bar}"></div>

<!-- Prettier 3.7.4 (--embedded-language-formatting off) -->
<div foo={bar}></div>
TypeScript: Fix comment inside union type gets duplicated (#​18393 by @​fisker)
// Input
type Foo = (/** comment */ a | b) | c;

// Prettier 3.7.3
type Foo = /** comment */ (/** comment */ a | b) | c;

// Prettier 3.7.4
type Foo = /** comment */ (a | b) | c;
TypeScript: Fix unstable comment print in union type comments (#​18395 by @​fisker)
// Input
type X = (A | B) & (
  // comment
  A | B
);

// Prettier 3.7.3 (first format)
type X = (A | B) &
  (// comment
  A | B);

// Prettier 3.7.3 (second format)
type X = (
  | A
  | B // comment
) &
  (A | B);

// Prettier 3.7.4
type X = (A | B) &
  // comment
  (A | B);

v3.7.3

Compare Source

diff

API: Fix prettier.getFileInfo() change that breaks VSCode extension (#​18375 by @​fisker)

An internal refactor accidentally broke the VSCode extension plugin loading.

v3.7.2

Compare Source

diff

JavaScript: Fix string print when switching quotes (#​18351 by @​fisker)
// Input
console.log("A descriptor\\'s .kind must be \"method\" or \"field\".")

// Prettier 3.7.1
console.log('A descriptor\\'s .kind must be "method" or "field".');

// Prettier 3.7.2
console.log('A descriptor\\\'s .kind must be "method" or "field".');
JavaScript: Preserve quote for embedded HTML attribute values (#​18352 by @​kovsu)
// Input
const html = /* HTML */ ` <div class="${styles.banner}"></div> `;

// Prettier 3.7.1
const html = /* HTML */ ` <div class=${styles.banner}></div> `;

// Prettier 3.7.2
const html = /* HTML */ ` <div class="${styles.banner}"></div> `;
TypeScript: Fix comment in empty type literal (#​18364 by @​fisker)
// Input
export type XXX = {
  // tbd
};

// Prettier 3.7.1
export type XXX = { // tbd };

// Prettier 3.7.2
export type XXX = {
  // tbd
};

v3.7.1

Compare Source

diff

API: Fix performance regression in doc printer (#​18342 by @​fisker)

Prettier 3.7.1 can be very slow when formatting big files, the regression has been fixed.

v3.7.0

Compare Source

diff

🔗 Release Notes

jonpyt/prism-code-editor (prism-code-editor)

v4.2.0

Compare Source

Changes

  • Increased width of search widget in narrow editors (9e14dbb)
  • Updated HTML and CSS autocompletion data (da9bb8e)
  • Improved URL and markdown highlighting for some themes (1227a17)

New features

  • Added startQuery() and insertCompletion() methods to the AutoComplete extension (#​49) (db22e78)
  • Added 3 new utilities to prism-code-editor/prism/utils to modify tokens (1a91d26):
release-it/release-it (release-it)

v19.2.4

Compare Source

v19.2.3

Compare Source

  • Reuse generated changelog (316dbfa)
  • Remove obsolete eslint compat packages/config (f6cc8f3)
  • Update remark-preset-webpro and fix broken links (6e6dd4b)

v19.2.2

Compare Source

  • Improve getChangelog method (7a56364)

v19.2.1

Compare Source

  • Improve commit prompt (b7aca7c)
  • Remedy potential edge case in template helper (5c0a6ee)

v19.2.0

Compare Source

v19.1.0

Compare Source

  • Ignore .npmrc (8ccd060)
  • Update lockfile (c4cd2ba)
  • Support interactive shell in non-CI mode for 2FA flow (resolve #​1263) (a10b20d)
  • Add --workspaces=false to get rid of the null/matches error (14a4907)
  • Remove npm config env var warnings (b8c1247)
  • doc(readme): add release-it-beautiful-changelog plugin to list of plugins (#​1261) (1b68c21)
  • Add 403 to consider resource alive (7969849)
solidjs/solid (solid-js)

v1.9.10

Compare Source

stylelint/stylelint (stylelint)

v16.26.1

Compare Source

It fixes numerous false positive bugs, including many in the declaration-property-value-no-unknown rule for the latest CSS specifications.

  • Fixed: *-no-unknown false positives for latest specs by integrating @csstools/css-syntax-patches-for-csstree (#​8850) (@​romainmenke).
  • Fixed: at-rule-no-unknown false positives for @function (#​8851) (@​jeddy3).
  • Fixed: declaration-property-value-no-unknown false positives for attr(), if() and custom functions (#​8853) (@​jeddy3).
  • Fixed: function-url-quotes false positives when URLs require quoting (#​8804) (@​taearls).
  • Fixed: selector-pseudo-element-no-unknown false positives for ::scroll-button() (#​8856) (@​Mouvedia).

v16.26.0

Compare Source

It adds 1 feature and fixes 2 bugs.

  • Added: support for customSyntax with function export (#​8834) (@​silverwind).
  • Fixed: custom-property-no-missing-var-function false positives for style query in if() function (#​8813) (@​sajdakabir).
  • Fixed: media-feature-range-notation false positives for multiple queries and except: exact-value (#​8832) (@​jeddy3).
yuschick/stylelint-plugin-logical-css (stylelint-plugin-logical-css)

v1.3.0

Compare Source

typescript-eslint/typescript-eslint (typescript-eslint)

v8.56.0

Compare Source

🚀 Features
❤️ Thank You

See GitHub Releases for more information.

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

v8.55.0

Compare Source

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

See GitHub Releases for more information.

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

v8.54.0

Compare Source

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.

v8.53.1

Compare Source

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.

v8.53.0

Compare Source

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.

v8.52.0

Compare Source

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.

v8.51.0

Compare Source

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.

v8.50.1

Compare Source

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.

v8.50.0

Compare Source

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.

v8.49.0

Compare Source

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.

v8.48.1

Compare Source

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.

v8.48.0

Compare Source

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.

v8.47.0

Compare Source

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.

v8.46.4

Compare Source

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.

v8.46.3

Compare Source

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.

vitejs/vite (vite)

v7.3.1

Compare Source

Please refer to CHANGELOG.md for details.

v7.3.0

Compare Source

Please refer to CHANGELOG.md for details.

v7.2.7

Compare Source

v7.2.6

Compare Source

7.2.6 (2025-12-01)

v7.2.4

Compare Source

Bug Fixes

v7.2.3

Compare Source

Bug Fixes
Performance Improvements
Miscellaneous Chores

v7.2.2

Compare Source

Bug Fixes

v7.2.1

Compare Source

Bug Fixes
Code Refactoring

v7.2.0

Compare Source

Bug Fixes
  • css: fallback to sass when sass-embedded platform binary is missing (#​21002) (b1fd616)
  • module-runner: make getBuiltins response JSON serializable (#​21029) (ad5b3bf)
  • types: add undefined to optional properties for exactOptionalProperties type compatibility (#​21040) (2833c55)
Miscellaneous Chores

Configuration

📅 Schedule: Branch creation - "every 2 months on the first day of the month" (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 was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot force-pushed the renovate/all-npm-dependencies branch 6 times, most recently from 0f03343 to bc8f355 Compare January 7, 2026 18:05
@renovate renovate Bot force-pushed the renovate/all-npm-dependencies branch 6 times, most recently from 7a503f6 to 5c5ca71 Compare January 14, 2026 17:25
@renovate renovate Bot force-pushed the renovate/all-npm-dependencies branch 5 times, most recently from 32e802d to a4b74e0 Compare January 25, 2026 18:12
@renovate renovate Bot force-pushed the renovate/all-npm-dependencies branch 4 times, most recently from 076085a to 0288193 Compare February 4, 2026 17:13
@renovate renovate Bot force-pushed the renovate/all-npm-dependencies branch 4 times, most recently from bf774d0 to 8d1255e Compare February 11, 2026 17:09
@renovate renovate Bot force-pushed the renovate/all-npm-dependencies branch 5 times, most recently from 9c94e1a to 13fceb0 Compare February 19, 2026 10:32
@renovate renovate Bot force-pushed the renovate/all-npm-dependencies branch 5 times, most recently from f77110c to 04ddf28 Compare February 25, 2026 18:16
@renovate renovate Bot force-pushed the renovate/all-npm-dependencies branch 2 times, most recently from c436ea8 to e051de8 Compare March 2, 2026 17:29
@renovate renovate Bot force-pushed the renovate/all-npm-dependencies branch 2 times, most recently from 2973448 to 5841182 Compare March 13, 2026 18:44
@renovate renovate Bot force-pushed the renovate/all-npm-dependencies branch 2 times, most recently from 08beccd to 928da1f Compare March 22, 2026 17:10
@renovate renovate Bot force-pushed the renovate/all-npm-dependencies branch from 928da1f to 9f19654 Compare March 22, 2026 21:18
@renovate
Copy link
Copy Markdown
Contributor Author

renovate Bot commented Mar 24, 2026

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@ghazi-git ghazi-git merged commit 6c52fb8 into main Mar 24, 2026
1 check passed
@ghazi-git ghazi-git deleted the renovate/all-npm-dependencies branch March 24, 2026 15:51
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant