An open index of dependabot pull requests across open source projects.

Bump the patch-updates group across 1 directory with 7 updates

Closed
Number: #6
Type: Pull Request
State: Closed
Author: dependabot[bot] dependabot[bot]
Association: None
Comments: 1
Created: July 07, 2025 at 03:14 PM UTC
(4 months ago)
Updated: July 08, 2025 at 12:33 PM UTC
(4 months ago)
Closed: July 08, 2025 at 12:33 PM UTC
(4 months ago)
Time to Close: about 21 hours
Labels:
dependencies javascript
Description:

Bumps the patch-updates group with 7 updates in the / directory:

Package From To
@expressive-code/core 0.41.2 0.41.3
@expressive-code/plugin-collapsible-sections 0.41.2 0.41.3
@expressive-code/plugin-line-numbers 0.41.2 0.41.3
@iconify-json/material-symbols 1.2.26 1.2.29
astro-expressive-code 0.41.2 0.41.3
@biomejs/biome 2.0.0 2.0.6
postcss-import 16.1.0 16.1.1

Updates @expressive-code/core from 0.41.2 to 0.41.3

Release notes

Sourced from @​expressive-code/core's releases.

@​expressive-code/core@​0.41.3

Patch Changes

  • eb82591: Fixes WCAG 4.1.2 compliance issue by dynamically adding role="region" to scrollable code blocks. Thank you @​ruslanpashkov!
Changelog

Sourced from @​expressive-code/core's changelog.

0.41.3

Patch Changes

  • eb82591: Fixes WCAG 4.1.2 compliance issue by dynamically adding role="region" to scrollable code blocks. Thank you @​ruslanpashkov!
Commits

Updates @expressive-code/plugin-collapsible-sections from 0.41.2 to 0.41.3

Release notes

Sourced from @​expressive-code/plugin-collapsible-sections's releases.

@​expressive-code/plugin-collapsible-sections@​0.41.3

Patch Changes

  • Updated dependencies [eb82591]
    • @​expressive-code/core@​0.41.3
Changelog

Sourced from @​expressive-code/plugin-collapsible-sections's changelog.

0.41.3

Patch Changes

  • Updated dependencies [eb82591]
    • @​expressive-code/core@​0.41.3
Commits

Updates @expressive-code/plugin-line-numbers from 0.41.2 to 0.41.3

Release notes

Sourced from @​expressive-code/plugin-line-numbers's releases.

@​expressive-code/plugin-line-numbers@​0.41.3

Patch Changes

  • Updated dependencies [eb82591]
    • @​expressive-code/core@​0.41.3
Changelog

Sourced from @​expressive-code/plugin-line-numbers's changelog.

0.41.3

Patch Changes

  • Updated dependencies [eb82591]
    • @​expressive-code/core@​0.41.3
Commits

Updates @iconify-json/material-symbols from 1.2.26 to 1.2.29

Commits

Updates astro-expressive-code from 0.41.2 to 0.41.3

Release notes

Sourced from astro-expressive-code's releases.

astro-expressive-code@0.41.3

Patch Changes

  • eb82591: Fixes WCAG 4.1.2 compliance issue by dynamically adding role="region" to scrollable code blocks. Thank you @​ruslanpashkov!
  • Updated dependencies [eb82591]
    • rehype-expressive-code@0.41.3
Changelog

Sourced from astro-expressive-code's changelog.

0.41.3

Patch Changes

  • eb82591: Fixes WCAG 4.1.2 compliance issue by dynamically adding role="region" to scrollable code blocks. Thank you @​ruslanpashkov!
  • Updated dependencies [eb82591]
    • rehype-expressive-code@0.41.3
Commits

Updates @biomejs/biome from 2.0.0 to 2.0.6

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.0.6

2.0.6

Patch Changes

  • #6557 fd68458 Thanks @​ematipico! - Fixed a bug where Biome didn't provide all the available code actions when requested by the editor.

  • #6511 72623fa Thanks @​Conaclos! - Fixed #6492. The organizeImports assist action no longer duplicates a comment at the start of the file when :BLANK_LINE: precedes the first import group.

  • #6557 fd68458 Thanks @​ematipico! - Fixed #6287 where Biome Language Server didn't adhere to the settings.requireConfiguration option when pulling diagnostics and code actions. Note that for this configuration be correctly applied, your editor must support dynamic registration capabilities.

  • #6551 0b63b1d Thanks @​Conaclos! - Fixed #6536. useSortedKeys no longer panics in some edge cases where object spreads are involved.

  • #6503 9a8fe0f Thanks @​ematipico! - Fixed #6482 where nursery rules that belonged to a domain were incorrectly enabled.

  • #6565 e85761c Thanks @​daivinhtran! - Fixed #4677: Now the noUnusedImports rule won't produce diagnostics for types used in JSDoc comment of exports.

  • #6166 b8cbd83 Thanks @​mehm8128! - Added the nursery rule noExcessiveLinesPerFunction. This rule restrict a maximum number of lines of code in a function body.

    The following code is now reported as invalid when the limit of maximum lines is set to 2:

    function foo() {
      const x = 0;
      const y = 1;
      const z = 2;
    }
    

    The following code is now reported as valid when the limit of maximum lines is set to 3:

    const bar = () => {
      const x = 0;
      const z = 2;
    };
    
  • #6553 5f42630 Thanks @​denbezrukov! - Fixed #6547. Now the Biome CSS parser correctly parses @starting-style when it's used inside other at-rules. The following example doesn't raise an error anymore:

    @layer my-demo-layer {
      @starting-style {
        div.showing {
          background-color: red;
    

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

2.0.6

Patch Changes

  • #6557 fd68458 Thanks @​ematipico! - Fixed a bug where Biome didn't provide all the available code actions when requested by the editor.

  • #6511 72623fa Thanks @​Conaclos! - Fixed #6492. The organizeImports assist action no longer duplicates a comment at the start of the file when :BLANK_LINE: precedes the first import group.

  • #6557 fd68458 Thanks @​ematipico! - Fixed #6287 where Biome Language Server didn't adhere to the settings.requireConfiguration option when pulling diagnostics and code actions. Note that for this configuration be correctly applied, your editor must support dynamic registration capabilities.

  • #6551 0b63b1d Thanks @​Conaclos! - Fixed #6536. useSortedKeys no longer panics in some edge cases where object spreads are involved.

  • #6503 9a8fe0f Thanks @​ematipico! - Fixed #6482 where nursery rules that belonged to a domain were incorrectly enabled.

  • #6565 e85761c Thanks @​daivinhtran! - Fixed #4677: Now the noUnusedImports rule won't produce diagnostics for types used in JSDoc comment of exports.

  • #6166 b8cbd83 Thanks @​mehm8128! - Added the nursery rule noExcessiveLinesPerFunction. This rule restrict a maximum number of lines of code in a function body.

    The following code is now reported as invalid when the limit of maximum lines is set to 2:

    function foo() {
      const x = 0;
      const y = 1;
      const z = 2;
    }
    

    The following code is now reported as valid when the limit of maximum lines is set to 3:

    const bar = () => {
      const x = 0;
      const z = 2;
    };
    
  • #6553 5f42630 Thanks @​denbezrukov! - Fixed #6547. Now the Biome CSS parser correctly parses @starting-style when it's used inside other at-rules. The following example doesn't raise an error anymore:

    @layer my-demo-layer {
      @starting-style {
        div.showing {
          background-color: red;
        }
      }
    

... (truncated)

Commits

Updates postcss-import from 16.1.0 to 16.1.1

Changelog

Sourced from postcss-import's changelog.

16.1.1 / 2025-06-17

  • Fix incorrect cascade layer order when some resources can not be inlined (#567, #574)
Commits
Maintainer changes

This version was pushed to npm by romainmenke, a new releaser for postcss-import since your current version.


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
Pull Request Statistics
Commits:
1
Files Changed:
2
Additions:
+199
Deletions:
-126
Package Dependencies
Ecosystem:
npm
Version Change:
1.2.26 → 1.2.29
Update Type:
Patch
Ecosystem:
npm
Version Change:
16.1.0 → 16.1.1
Update Type:
Patch
Ecosystem:
npm
Version Change:
0.41.2 → 0.41.3
Update Type:
Patch
Ecosystem:
npm
Version Change:
2.0.0 → 2.0.6
Update Type:
Patch
Ecosystem:
npm
Version Change:
0.41.2 → 0.41.3
Update Type:
Patch
Ecosystem:
npm
Version Change:
0.41.2 → 0.41.3
Update Type:
Patch
Ecosystem:
npm
Version Change:
0.41.2 → 0.41.3
Update Type:
Patch
Technical Details
ID: 2913041
UUID: 2647127627
Node ID: PR_kwDOO_REgs6dx_ZL
Host: GitHub
Repository: 999debug/999debug.github.io
Mergeable: Yes
Merge State: Clean