Skip to content

chore(deps): Bump the dependencies group across 1 directory with 20 updates - #61

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/dependencies-95c15c9250
Open

chore(deps): Bump the dependencies group across 1 directory with 20 updates#61
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/dependencies-95c15c9250

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 1, 2026

Copy link
Copy Markdown
Contributor

Bumps the dependencies group with 19 updates in the / directory:

Package From To
sass 1.101.0 1.103.1
@cacheable/memory 2.0.9 2.2.0
@cacheable/utils 2.4.1 2.5.0
@csstools/css-syntax-patches-for-csstree 1.1.5 1.1.12
@parcel/watcher 2.5.6 2.6.0
cacheable 2.3.5 2.5.0
colord 2.9.3 2.10.0
es-to-primitive 1.3.1 1.3.4
fastq 1.20.1 1.20.3
file-entry-cache 11.1.3 11.1.5
flatted 3.4.2 3.4.4
fs-extra 11.3.5 11.4.0
immutable 5.1.6 5.1.9
is-plain-object 5.0.0 5.1.0
own-keys 1.0.1 1.0.2
postcss-selector-parser 7.1.4 7.1.5
postcss 8.5.15 8.5.26
read-cache 1.0.0 1.0.2
shell-quote 1.8.4 1.10.0

Updates sass from 1.101.0 to 1.103.1

Release notes

Sourced from sass's releases.

Dart Sass 1.103.1

To install Sass 1.103.1, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.

Changes

  • No user-visible changes.

See the full changelog for changes in earlier releases.

Dart Sass 1.103.0

To install Sass 1.103.0, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.

Changes

  • Potentially breaking compatibility fix: Colors now preserve "analogous sets" of missing channels during conversions, per the CSS spec. For example, color.to-space(lch(50% none none), lab) now returns lab(50% none none) instead of lab(50% 0 0).

See the full changelog for changes in earlier releases.

Dart Sass 1.102.0

To install Sass 1.102.0, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.

Changes

  • Use the 2.4 gamma transfer function for rec2020, as specified by the latest draft of CSS Color 4.

See the full changelog for changes in earlier releases.

Dart Sass 1.101.7

To install Sass 1.101.7, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.

Changes

  • No user-visible changes.

See the full changelog for changes in earlier releases.

Dart Sass 1.101.6

To install Sass 1.101.6, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.

... (truncated)

Changelog

Sourced from sass's changelog.

1.103.1

  • No user-visible changes.

1.103.0

  • Potentially breaking compatibility fix: Colors now preserve "analogous sets" of missing channels during conversions, per the CSS spec. For example, color.to-space(lch(50% none none), lab) now returns lab(50% none none) instead of lab(50% 0 0).

1.102.0

  • Use the 2.4 gamma transfer function for rec2020, as specified by the latest draft of CSS Color 4.

1.101.7

  • No user-visible changes.

1.101.6

  • No user-visible changes.

1.101.5

  • No user-visible changes.

1.101.4

  • Avoid emitting rgb() or rgba() functions with non-percent decimal channels. Older browsers only support integer values or (potentially decimal) percentages for these functions, so in order to preserve backwards-compatibility while retaining full precision for modern browsers, legacy colors that contain at least one non-integer channel will now use percentages for their channels (for example, rgb(0%, 100%, 50%) rather than rgb(0, 255, 127.5)).

  • Fix a bug where the values of plain-CSS if() expressions were emitted using their meta.inspect() format rather than their CSS serialization format.

1.101.3

  • No user-visible changes.

1.101.2

  • Fix a bug where the deprecation warning for vendor-prefixed expression() functions would incorrectly indicate whether or not the function would be invalid Sass in Dart Sass 2.0.0.

... (truncated)

Commits

Updates @cacheable/memory from 2.0.9 to 2.2.0

Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​cacheable/memory since your current version.


Updates @cacheable/utils from 2.4.1 to 2.5.0

Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​cacheable/utils since your current version.


Updates @csstools/css-syntax-patches-for-csstree from 1.1.5 to 1.1.12

Changelog

Sourced from @​csstools/css-syntax-patches-for-csstree's changelog.

1.1.12

August 31, 2026

  • Fix @import prelude syntax definition

1.1.11

August 31, 2026

  • Add at-rule preludes

1.1.10

August 30, 2026

  • Update @webref/css to v8.7.3

1.1.9

August 25, 2026

  • Update @webref/css to v8.7.2

1.1.8

August 15, 2026

  • Update @webref/css to v8.7.1

1.1.7

July 22, 2026

  • Update @webref/css to v8.7.0

1.1.6

June 28, 2026

  • Update @webref/css to v8.6.0
Commits

Updates @parcel/watcher from 2.5.6 to 2.6.0

Release notes

Sourced from @​parcel/watcher's releases.

v2.6.0

Adds support RegExp ignores in parcel-bundler/watcher#248. Thanks @​SimenB!

Commits

Updates cacheable from 2.3.5 to 2.5.0

Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for cacheable since your current version.


Updates colord from 2.9.3 to 2.10.0

Release notes

Sourced from colord's releases.

v2.10 (RGB color mixing)

  • mix, tints, shades and tones (mix plugin) now accept an optional interpolation color space. LAB stays the default; pass "rgb" to interpolate RGB channels instead — the way browsers and design tools (such as Figma) composite translucent layers.
import { colord, extend } from "colord";
import mixPlugin from "colord/plugins/mix";
extend([mixPlugin]);
colord("#ff0000").mix("#ffffff", 0.5, "rgb").toHex(); // "#ff8080"
colord("#f0f3f1").mix("#007d40", 0.14, "rgb").toHex(); // "#cee2d8" — same as compositing rgba(0, 125, 64, 0.14) over #f0f3f1
colord("#ff0000").tints(3, "rgb").map((c) => c.toHex()); // ["#ff0000", "#ff8080", "#ffffff"]

Changelog

Sourced from colord's changelog.

2.10.0

  • Improve mix plugin by adding an optional "rgb" interpolation mode to mix, tints, tones and shades

2.9.7

  • Make HEX parsing and serialization more than 2x faster

2.9.6

  • Fix: Rotate the unrounded hue so rotate and harmonies preserve the original color
  • Fix: Normalize HWB whiteness + blackness over 100% to gray ❤️ @​spokodev

2.9.5

Both fixes change returned numbers for a small set of colors; toHex() output is unchanged. Snapshots holding h: 360, "hsl(360, …)" or a delta() value may need updating.

2.9.4

  • Fix: Reject malformed color strings in linear time ❤️ @​GAP-dev
Commits

Updates es-to-primitive from 1.3.1 to 1.3.4

Changelog

Sourced from es-to-primitive's changelog.

v1.3.4 - 2026-06-25

Commits

  • [types] expose ES5/ES6/ES2015 as statically-detectable named exports, to fix attw 477f235
  • [Robustness] use es-define-property 73d7fa3

v1.3.3 - 2026-06-25

Commits

  • [types] further improve types f92b77a

v1.3.2 - 2026-06-25

Commits

  • [types] add ES6 (non-bigint) primitive types c221148
  • [Dev Deps] update @arethetypeswrong/ci, tape dc78129
Commits
  • f33dccb v1.3.4
  • 73d7fa3 [Robustness] use es-define-property
  • 477f235 [types] expose ES5/ES6/ES2015 as statically-detectable named exports, t...
  • ef65246 v1.3.3
  • f92b77a [types] further improve types
  • eeee0bf v1.3.2
  • dc78129 [Dev Deps] update @arethetypeswrong/ci, tape
  • c221148 [types] add ES6 (non-bigint) primitive types
  • See full diff in compare view

Updates fastq from 1.20.1 to 1.20.3

Release notes

Sourced from fastq's releases.

v1.20.3

Full Changelog: mcollina/fastq@v1.20.2...v1.20.3

v1.20.2

What's Changed

Full Changelog: mcollina/fastq@v1.20.1...v1.20.2

Commits

Updates file-entry-cache from 11.1.3 to 11.1.5

Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for file-entry-cache since your current version.


Updates flat-cache from 6.1.22 to 6.1.23

Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for flat-cache since your current version.


Updates flatted from 3.4.2 to 3.4.4

Commits

Updates fs-extra from 11.3.5 to 11.4.0

Changelog

Sourced from fs-extra's changelog.

11.4.0 / 2026-07-23

  • Proper EEXIST error when trying to create a symlink and the dest already exists as a broken symlink (#925, #1076)

11.3.6 / 2026-06-29

  • Fix handling of symlinked destination ancestors in copy/move methods (#1071, #1073)
  • Docs typo fixed (#1074)
Commits

Updates immutable from 5.1.6 to 5.1.9

Release notes

Sourced from immutable's releases.

v5.1.9

What's Changed

Full Changelog: immutable-js/immutable-js@v5.1.8...v5.1.9

v5.1.8

What's Changed

Full Changelog: immutable-js/immutable-js@v5.1.7...v5.1.8

v5.1.7

What's Changed

internal

New Contributors

Full Changelog: immutable-js/immutable-js@v5.1.6...v5.1.7

Changelog

Sourced from immutable's changelog.

5.1.9

  • fix(List): a List grown past 32 elements while all its values are undefined no longer reads those values back as null (affected get, iteration, toArray, equals and hashCode)

5.1.8

4.3.9

5.1.7

  • fix(Repeat): lastIndexOf returned size instead of size - 1 by @​chatman-media in immutable-js/immutable-js#2227. Fixes CVE CVE-2026-29063
  • fix(IndexedCollection): has(index) on a lazy Seq of unknown size now checks index existence instead of searching for a value equal to the index #2203
  • [TypeScript]: reduce/reduceRight without an initial value now infer the result type from the collection's values when the reducer returns a value (e.g. list.reduce((a, b) => a + b) infers number), matching Array#reduce. Previously an explicit type argument was required. #2205
Commits
  • 329f7a6 5.1.9
  • 21fabd9 changelog
  • 009164f Merge pull request #2235 from immutable-js/fix/avoid-null-when-setsize33
  • 5b65bfb fix(List): preserve undefined values when grown past 32 elements
  • 50bf39e Update CHANGELOG.md for versions 5.1.8 and 4.3.9
  • 6496539 5.1.8
  • 808a83a Merge commit from fork
  • e51d49f perf(Map): index large hash-collision buckets for faster lookups
  • 25c58b0 fix typescript in tests
  • a1a1ee4 Merge commit from fork
  • Additional commits viewable in compare view

Updates is-plain-object from 5.0.0 to 5.1.0

Release notes

Sourced from is-plain-object's releases.

v5.1.0

This release makes is-plain-object friendlier for TypeScript users. The exported function is now a type guard, so successful checks narrow values to plain-object records, and the package export map now points TypeScript directly to the bundled declarations.

Behind the scenes, the project has also received a thorough refresh: clearer documentation, simpler tests, an up-to-date Rollup build, GitHub Actions CI across supported Node.js versions, and secure automated npm publishing.

There are no runtime API changes in this release.

Thank you

Thank you to @​RebeccaStevens and @​jcwillox for improving the TypeScript experience. Their contributions made this release better for everyone.

Full changelog: jonschlinkert/is-plain-object@v5.0.0...v5.1.0

Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for is-plain-object since your current version.

Install script changes

This version modifies prepare script that runs during installation. Review the package contents before updating.


Updates own-keys from 1.0.1 to 1.0.2

Changelog

Sourced from own-keys's changelog.

v1.0.2 - 2026-07-21

Commits

  • [Fix] preserve own-key insertion order when the platform's key enumeration does not 29950ec
  • [Dev Deps] update @arethetypeswrong/cli, @ljharb/eslint-config, @ljharb/tsconfig, @types/eslint, @types/has-property-descriptors, auto-changelog, eslint, evalmd, npmignore, tape 431250c
  • [Deps] update get-intrinsic d1c3396
  • [types] fix an error TS v6 ignores but v7 fails on ae0c7fe
  • [readme] replace runkit CI badge with shields.io check-runs badge 5caf6ed
Commits
  • 20620eb v1.0.2
  • d1c3396 [Deps] update get-intrinsic
  • 431250c [Dev Deps] update @arethetypeswrong/cli, @ljharb/eslint-config, `@ljharb/...
  • 29950ec [Fix] preserve own-key insertion order when the platform's key enumeration do...
  • ae0c7fe [types] fix an error TS v6 ignores but v7 fails on
  • 5caf6ed [readme] replace runkit CI badge with shields.io check-runs badge
  • See full diff in compare view

Updates postcss-selector-parser from 7.1.4 to 7.1.5

Release notes

Sourced from postcss-selector-parser's releases.

7.1.5

  • fix: don't treat a non-prefix token before | as a namespace (#324 by @​spokodev)
  • fix: preserve whitespace before a * namespace in attribute selectors (#325 by @​spokodev)
  • fix: TypeError on unclosed [, ( and trailing | (#330 by @​theRizwan)
Changelog

Sourced from postcss-selector-parser's changelog.

7.1.5 - 2026-08-07

  • fix: don't treat a non-prefix token before | as a namespace (#324 by @​spokodev)
  • fix: preserve whitespace before a * namespace in attribute selectors (#325 by @​spokodev)
  • fix: TypeError on unclosed [, ( and trailing | (#330 by @​theRizwan)
Commits
  • e33e9bc 7.1.5
  • 6f4e6c1 fix: TypeError on unclosed [, ( and trailing | (#330)
  • 4d8437f fix: preserve whitespace before a * namespace in attribute selectors (#325)
  • e2f9029 fix: don't treat a non-prefix token before | as a namespace (#324)
  • dd50ee1 chore(deps-dev): bump postcss from 8.5.18 to 8.5.23 (#331)
  • 7e3abb2 chore(deps-dev): bump postcss from 8.5.15 to 8.5.18 (#328)
  • See full diff in compare view

Updates postcss from 8.5.15 to 8.5.26

Release notes

Sourced from postcss's releases.

8.5.26

  • Fixed list.split() regression (by @​lazerg).
  • Track symlinks in path protection in source map loading (by @​drengir1).

8.5.25

  • Fixed 8.5.17 visitor regression.
  • Fixed list.split() for non-string values (by @​amir-rezaei).

8.5.24

  • Preserve the BOM after the processing (by @​hdimer).

8.5.23

  • Do not load source map without opts.from for security reasons.

8.5.22

8.5.21

8.5.20

8.5.19

  • Fixed cleaning before for new nodes inserted to Root (by @​MahinAnowar).

8.5.18

  • Restricted loading previous source maps file to the opts.from folder for security reasons (use unsafeMap: true to disable the check).

8.5.17

  • Fixed Maximum call stack size exceeded error.
  • Fixed Prototype hijacking for postcss.fromJSON().
  • Fixed Input#origin() for unmapped end position (by @​chatman-media).

8.5.16

Changelog

Sourced from postcss's changelog.

8.5.26

  • Fixed list.split() regression (by @​lazerg).
  • Track symlinks in path protection in source map loading (by @​drengir1).

8.5.25

  • Fixed 8.5.17 visitor regression.
  • Fixed list.split() for non-string values (by @​amir-rezaei).

8.5.24

  • Preserve the BOM after the processing (by @​hdimer).

8.5.23

  • Do not load source map without opts.from for security reasons.

8.5.22

8.5.21

8.5.20

8.5.19

  • Fixed cleaning before for new nodes inserted to Root (by @​MahinAnowar).

8.5.18

  • Restricted loading previous source maps file to the opts.from folder for security reasons (use unsafeMap: true to disable the check).

8.5.17

  • Fixed Maximum call stack size exceeded error.
  • Fixed Prototype hijacking for postcss.fromJSON().
  • Fixed Input#origin() for unmapped end position (by @​chatman-media).

8.5.16

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for postcss since your current version.


Updates read-cache from 1.0.0 to 1.0.2

Release notes

Sourced from read-cache's releases.

v1.0.2

This patch release removes the pify dependency and uses the Promise support already available in supported Node.js versions.

The public API and behavior remain unchanged, while installs now include one fewer dependency.

Full changelog: TrySound/read-cache@v1.0.1...v1.0.2

v1.0.1

What's Changed

Full Changelog: TrySound/read-cache@v1.0.0...v1.0.1

Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for read-cache since your current version.


Updates shell-quote from 1.8.4 to 1.10.0

Changelog

Sourced from shell-quote's changelog.

v1.10.0 - 2026-07-10

Merged

Commits

  • [Fix] parse: match nested ${...} braces so nested parameter expansion is consumed as one substitution c0842c8
  • [Tests] parse: pin single-quote literalness and unmatched-quote handling a0d03e3
  • [readme] remove the space in js code fences so evalmd evaluates them 2116fa3
  • [Tests] quote: pin conservative escaping of =, @, ^, ,, :, ! (#11) 1c36f3f
  • [readme] document that quote outputs POSIX quoting, not cmd.exe/PowerShell 100e96e
  • [readme] document parse's supported parameter-expansion subset e1c75cd
  • [Fix] parse: a backslash inside single quotes must not escape the closing quote 5d460a3
  • [readme] fix stale example outputs 2de86f5
  • [Tests] quote: pin that a backslash with whitespace is not doubled in single quotes (#14) 190e236
  • [readme] quote: use output verbatim; do not re-quote it (#11) 1b36468
  • [Refactor] parse: fix swapped SINGLE_QUOTE/DOUBLE_QUOTE variable names 801af5c
  • [types] fix an error TS v6 ignores but v7 fails on 59bbf8b
  • [Dev Deps] update @arethetypeswrong/cli, evalmd a04d475
  • [Dev Deps] update @arethetypeswrong/ci, eslint d390f9a
  • [Tests] quote: the tilde test escapes every ~, not just a leading one (#9) 617d119

v1.9.0 - 2026-06-24

Commits

…pdates

Bumps the dependencies group with 19 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [sass](https://github.com/sass/dart-sass) | `1.101.0` | `1.103.1` |
| [@cacheable/memory](https://github.com/jaredwray/cacheable/tree/HEAD/packages/cacheable) | `2.0.9` | `2.2.0` |
| [@cacheable/utils](https://github.com/jaredwray/cacheable/tree/HEAD/packages/utils) | `2.4.1` | `2.5.0` |
| [@csstools/css-syntax-patches-for-csstree](https://github.com/csstools/postcss-plugins/tree/HEAD/packages/css-syntax-patches-for-csstree) | `1.1.5` | `1.1.12` |
| [@parcel/watcher](https://github.com/parcel-bundler/watcher) | `2.5.6` | `2.6.0` |
| [cacheable](https://github.com/jaredwray/cacheable/tree/HEAD/packages/cacheable) | `2.3.5` | `2.5.0` |
| [colord](https://github.com/omgovich/colord) | `2.9.3` | `2.10.0` |
| [es-to-primitive](https://github.com/ljharb/es-to-primitive) | `1.3.1` | `1.3.4` |
| [fastq](https://github.com/mcollina/fastq) | `1.20.1` | `1.20.3` |
| [file-entry-cache](https://github.com/jaredwray/cacheable/tree/HEAD/packages/file-entry-cache) | `11.1.3` | `11.1.5` |
| [flatted](https://github.com/WebReflection/flatted) | `3.4.2` | `3.4.4` |
| [fs-extra](https://github.com/jprichardson/node-fs-extra) | `11.3.5` | `11.4.0` |
| [immutable](https://github.com/immutable-js/immutable-js) | `5.1.6` | `5.1.9` |
| [is-plain-object](https://github.com/jonschlinkert/is-plain-object) | `5.0.0` | `5.1.0` |
| [own-keys](https://github.com/ljharb/own-keys) | `1.0.1` | `1.0.2` |
| [postcss-selector-parser](https://github.com/postcss/postcss-selector-parser) | `7.1.4` | `7.1.5` |
| [postcss](https://github.com/postcss/postcss) | `8.5.15` | `8.5.26` |
| [read-cache](https://github.com/TrySound/read-cache) | `1.0.0` | `1.0.2` |
| [shell-quote](https://github.com/ljharb/shell-quote) | `1.8.4` | `1.10.0` |



Updates `sass` from 1.101.0 to 1.103.1
- [Release notes](https://github.com/sass/dart-sass/releases)
- [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md)
- [Commits](sass/dart-sass@1.101.0...1.103.1)

Updates `@cacheable/memory` from 2.0.9 to 2.2.0
- [Release notes](https://github.com/jaredwray/cacheable/releases)
- [Commits](https://github.com/jaredwray/cacheable/commits/2.2.0/packages/cacheable)

Updates `@cacheable/utils` from 2.4.1 to 2.5.0
- [Release notes](https://github.com/jaredwray/cacheable/releases)
- [Commits](https://github.com/jaredwray/cacheable/commits/2.5.0/packages/utils)

Updates `@csstools/css-syntax-patches-for-csstree` from 1.1.5 to 1.1.12
- [Changelog](https://github.com/csstools/postcss-plugins/blob/main/packages/css-syntax-patches-for-csstree/CHANGELOG.md)
- [Commits](https://github.com/csstools/postcss-plugins/commits/HEAD/packages/css-syntax-patches-for-csstree)

Updates `@parcel/watcher` from 2.5.6 to 2.6.0
- [Release notes](https://github.com/parcel-bundler/watcher/releases)
- [Commits](parcel-bundler/watcher@v2.5.6...v2.6.0)

Updates `cacheable` from 2.3.5 to 2.5.0
- [Release notes](https://github.com/jaredwray/cacheable/releases)
- [Commits](https://github.com/jaredwray/cacheable/commits/2.5.0/packages/cacheable)

Updates `colord` from 2.9.3 to 2.10.0
- [Release notes](https://github.com/omgovich/colord/releases)
- [Changelog](https://github.com/omgovich/colord/blob/master/CHANGELOG.md)
- [Commits](https://github.com/omgovich/colord/commits/v2.10)

Updates `es-to-primitive` from 1.3.1 to 1.3.4
- [Changelog](https://github.com/ljharb/es-to-primitive/blob/main/CHANGELOG.md)
- [Commits](ljharb/es-to-primitive@v1.3.1...v1.3.4)

Updates `fastq` from 1.20.1 to 1.20.3
- [Release notes](https://github.com/mcollina/fastq/releases)
- [Commits](mcollina/fastq@v1.20.1...v1.20.3)

Updates `file-entry-cache` from 11.1.3 to 11.1.5
- [Release notes](https://github.com/jaredwray/cacheable/releases)
- [Commits](https://github.com/jaredwray/cacheable/commits/HEAD/packages/file-entry-cache)

Updates `flat-cache` from 6.1.22 to 6.1.23
- [Release notes](https://github.com/jaredwray/cacheable/releases)
- [Commits](https://github.com/jaredwray/cacheable/commits/HEAD/packages/flat-cache)

Updates `flatted` from 3.4.2 to 3.4.4
- [Commits](WebReflection/flatted@v3.4.2...v3.4.4)

Updates `fs-extra` from 11.3.5 to 11.4.0
- [Changelog](https://github.com/jprichardson/node-fs-extra/blob/master/CHANGELOG.md)
- [Commits](jprichardson/node-fs-extra@11.3.5...11.4.0)

Updates `immutable` from 5.1.6 to 5.1.9
- [Release notes](https://github.com/immutable-js/immutable-js/releases)
- [Changelog](https://github.com/immutable-js/immutable-js/blob/main/CHANGELOG.md)
- [Commits](immutable-js/immutable-js@v5.1.6...v5.1.9)

Updates `is-plain-object` from 5.0.0 to 5.1.0
- [Release notes](https://github.com/jonschlinkert/is-plain-object/releases)
- [Commits](jonschlinkert/is-plain-object@v5.0.0...v5.1.0)

Updates `own-keys` from 1.0.1 to 1.0.2
- [Changelog](https://github.com/ljharb/own-keys/blob/main/CHANGELOG.md)
- [Commits](ljharb/own-keys@v1.0.1...v1.0.2)

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

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

Updates `read-cache` from 1.0.0 to 1.0.2
- [Release notes](https://github.com/TrySound/read-cache/releases)
- [Commits](TrySound/read-cache@v1.0.0...v1.0.2)

Updates `shell-quote` from 1.8.4 to 1.10.0
- [Changelog](https://github.com/ljharb/shell-quote/blob/main/CHANGELOG.md)
- [Commits](ljharb/shell-quote@v1.8.4...v1.10.0)

---
updated-dependencies:
- dependency-name: sass
  dependency-version: 1.103.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@cacheable/memory"
  dependency-version: 2.2.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@cacheable/utils"
  dependency-version: 2.5.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@csstools/css-syntax-patches-for-csstree"
  dependency-version: 1.1.12
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@parcel/watcher"
  dependency-version: 2.6.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: cacheable
  dependency-version: 2.5.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: colord
  dependency-version: 2.10.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: es-to-primitive
  dependency-version: 1.3.4
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: fastq
  dependency-version: 1.20.3
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: file-entry-cache
  dependency-version: 11.1.5
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: flat-cache
  dependency-version: 6.1.23
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: flatted
  dependency-version: 3.4.4
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: fs-extra
  dependency-version: 11.4.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: immutable
  dependency-version: 5.1.9
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: is-plain-object
  dependency-version: 5.1.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: own-keys
  dependency-version: 1.0.2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: postcss-selector-parser
  dependency-version: 7.1.5
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: postcss
  dependency-version: 8.5.26
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: read-cache
  dependency-version: 1.0.2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: shell-quote
  dependency-version: 1.10.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github

dependabot Bot commented on behalf of github Sep 1, 2026

Copy link
Copy Markdown
Contributor Author

Labels

The following labels could not be found: automated, dependencies. Please create them before Dependabot can add them to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

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.

0 participants