Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 10, 2026

Bumps the npm-minor group with 5 updates in the / directory:

Package From To
video.js 8.23.4 8.23.6
esbuild 0.27.1 0.27.3
esbuild-sass-plugin 3.3.1 3.6.0
eslint-plugin-compat 6.0.2 6.1.0
stylelint-no-unsupported-browser-features 8.0.5 8.1.1

Updates video.js from 8.23.4 to 8.23.6

Release notes

Sourced from video.js's releases.

v8.23.6

8.23.6 (2025-11-14)

Bug Fixes

  • revert minor change to test trusted publishing workflow e2e sans npm token in release.yml (f3de5f3)

netlify preview for this version

v8.23.5

8.23.5 (2025-11-14)

Bug Fixes

  • minor change to test trusted publishing workflow e2e (836d8cb)

Documentation

  • Clarify copyright and project stewardship (#9104) (20f8d76)

netlify preview for this version

Changelog

Sourced from video.js's changelog.

8.23.6 (2025-11-14)

Bug Fixes

  • revert minor change to test trusted publishing workflow e2e sans npm token in release.yml (f3de5f3)

8.23.5 (2025-11-14)

Bug Fixes

  • minor change to test trusted publishing workflow e2e (836d8cb)

Documentation

  • Clarify copyright and project stewardship (#9104) (20f8d76)

Commits
  • e5b3905 8.23.6
  • f3de5f3 fix: revert minor change to test trusted publishing workflow e2e sans npm tok...
  • d24abca 8.23.5
  • 836d8cb fix: minor change to test trusted publishing workflow e2e
  • 20f8d76 docs: Clarify copyright and project stewardship (#9104)
  • See full diff in compare view

Updates esbuild from 0.27.1 to 0.27.3

Release notes

Sourced from esbuild's releases.

v0.27.3

  • Preserve URL fragments in data URLs (#4370)

    Consider the following HTML, CSS, and SVG:

    • index.html:

      <!DOCTYPE html>
      <html>
        <head><link rel="stylesheet" href="icons.css"></head>
        <body><div class="triangle"></div></body>
      </html>
    • icons.css:

      .triangle {
        width: 10px;
        height: 10px;
        background: currentColor;
        clip-path: url(./triangle.svg#x);
      }
    • triangle.svg:

      <svg xmlns="http://www.w3.org/2000/svg">
        <defs>
          <clipPath id="x">
            <path d="M0 0H10V10Z"/>
          </clipPath>
        </defs>
      </svg>

    The CSS uses a URL fragment (the #x) to reference the clipPath element in the SVG file. Previously esbuild's CSS bundler didn't preserve the URL fragment when bundling the SVG using the dataurl loader, which broke the bundled CSS. With this release, esbuild will now preserve the URL fragment in the bundled CSS:

    /* icons.css */
    .triangle {
      width: 10px;
      height: 10px;
      background: currentColor;
      clip-path: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg"><defs><clipPath id="x"><path d="M0 0H10V10Z"/></clipPath></defs></svg>#x');
    }

... (truncated)

Changelog

Sourced from esbuild's changelog.

0.27.3

  • Preserve URL fragments in data URLs (#4370)

    Consider the following HTML, CSS, and SVG:

    • index.html:

      <!DOCTYPE html>
      <html>
        <head><link rel="stylesheet" href="icons.css"></head>
        <body><div class="triangle"></div></body>
      </html>
    • icons.css:

      .triangle {
        width: 10px;
        height: 10px;
        background: currentColor;
        clip-path: url(./triangle.svg#x);
      }
    • triangle.svg:

      <svg xmlns="http://www.w3.org/2000/svg">
        <defs>
          <clipPath id="x">
            <path d="M0 0H10V10Z"/>
          </clipPath>
        </defs>
      </svg>

    The CSS uses a URL fragment (the #x) to reference the clipPath element in the SVG file. Previously esbuild's CSS bundler didn't preserve the URL fragment when bundling the SVG using the dataurl loader, which broke the bundled CSS. With this release, esbuild will now preserve the URL fragment in the bundled CSS:

    /* icons.css */
    .triangle {
      width: 10px;
      height: 10px;
      background: currentColor;
      clip-path: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg"><defs><clipPath id="x"><path d="M0 0H10V10Z"/></clipPath></defs></svg>#x');
    }

... (truncated)

Commits
  • 9129e00 publish 0.27.3 to npm
  • e20e411 small fix to release notes
  • 0dc0f2d fix #4322: parse and print CSS @scope rules
  • 55fe391 update firefox css gradient support
  • 2c35297 update gradient lowering transform
  • 9209e44 Update Go to 1.25.7 (#4388)
  • e8d861b close #4374: compat table for the using feature
  • 19b8887 no longer need williamkapke/node-compat-table
  • 7e44218 the kangax/compat-table repo moved to a new url
  • 23b9338 run make update-compat-table
  • Additional commits viewable in compare view

Updates esbuild-sass-plugin from 3.3.1 to 3.6.0

Release notes

Sourced from esbuild-sass-plugin's releases.

v3.5.0

Thanks to @​mattlewis92 for fixing css chunk prefix clashes when using transform and multiple plugins #192

Commits

Updates eslint-plugin-compat from 6.0.2 to 6.1.0

Release notes

Sourced from eslint-plugin-compat's releases.

v6.1.0

6.1.0 (2026-01-23)

Bug Fixes

  • correct event name check in release workflow (1b573c6)
  • fix CI failures and improve test/release workflow separation (#662) (2b62f0e)

Features

Changelog

Sourced from eslint-plugin-compat's changelog.

6.1.0 (2026-01-23)

Bug Fixes

  • correct event name check in release workflow (1b573c6)
  • fix CI failures and improve test/release workflow separation (#662) (2b62f0e)

Features

6.1.0 (2026-01-23)

Bug Fixes

  • correct event name check in release workflow (1b573c6)
  • fix CI failures and improve test/release workflow separation (#662) (2b62f0e)

Features

6.1.0 (2026-01-23)

Bug Fixes

  • correct event name check in release workflow (1b573c6)
  • fix CI failures and improve test/release workflow separation (#662) (2b62f0e)

Features

6.1.0 (2026-01-23)

Bug Fixes

... (truncated)

Commits
  • 6388a9b chore(release): 6.1.0 [skip ci]
  • 2ea37e0 chore(release): 6.1.0 [skip ci]
  • 7583982 chore(release): 6.1.0 [skip ci]
  • 143c181 chore(release): 6.1.0 [skip ci]
  • 1b573c6 fix: correct event name check in release workflow
  • 4c3f730 feat: add ignoreConditionalChecks setting (#676)
  • 2b62f0e fix: fix CI failures and improve test/release workflow separation (#662)
  • ee71626 feat: added support for regexp literal (#644)
  • 8682159 Updates @​mdn/browser-compat-data, browserslist, updates Jest snapshot (#657)
  • ae98059 feat: add semantic-release automation (#661)
  • Additional commits viewable in compare view

Updates sass-embedded from 1.96.0 to 1.97.3

Changelog

Sourced from sass-embedded's changelog.

1.97.3

  • Fix a bug where nesting an at-rule within multiple style rules in plain CSS could cause outer style rules to be omitted.

1.97.2

  • Additional fixes for implicit configuration when nested imports are involved.

1.97.1

  • Fix a bug with the new CSS-style if() syntax where values would be evaluated even if their conditions didn't match.

1.97.0

  • Add support for the display-p3-linear color space.
Commits
  • a9fe912 Update Dart Sass version and release
  • 5b3fcd1 Remove buffer-builder dependency (#416)
  • a0172ee Bump gts from 6.0.2 to 7.0.0 (#407)
  • 8bce3b9 Bump @​types/node from 24.10.4 to 25.0.3 (#410)
  • 2b514fb Update Dart Sass version and release
  • ae27477 Bump @​types/shelljs from 0.8.17 to 0.10.0 (#406)
  • a30805a Update Dart Sass version and release
  • 1100b49 Update Dart Sass version and release
  • cf082c7 Add support for the display-p3-linear color space (#405)
  • See full diff in compare view

Updates stylelint-no-unsupported-browser-features from 8.0.5 to 8.1.1

Release notes

Sourced from stylelint-no-unsupported-browser-features's releases.

v8.1.1

8.1.1 (2026-02-03)

Bug Fixes

Changelog

Sourced from stylelint-no-unsupported-browser-features's changelog.

8.1.1 (2026-02-03)

Bug Fixes

8.1.0 (2026-02-03)

Features

  • add support for Stylelint 17 (f6d4b22)
Commits

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 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-minor group with 5 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [video.js](https://github.com/videojs/video.js) | `8.23.4` | `8.23.6` |
| [esbuild](https://github.com/evanw/esbuild) | `0.27.1` | `0.27.3` |
| [esbuild-sass-plugin](https://github.com/glromeo/esbuild-sass-plugin) | `3.3.1` | `3.6.0` |
| [eslint-plugin-compat](https://github.com/amilajack/eslint-plugin-compat) | `6.0.2` | `6.1.0` |
| [stylelint-no-unsupported-browser-features](https://github.com/RJWadley/stylelint-no-unsupported-browser-features) | `8.0.5` | `8.1.1` |



Updates `video.js` from 8.23.4 to 8.23.6
- [Release notes](https://github.com/videojs/video.js/releases)
- [Changelog](https://github.com/videojs/video.js/blob/main/CHANGELOG.md)
- [Commits](videojs/video.js@v8.23.4...v8.23.6)

Updates `esbuild` from 0.27.1 to 0.27.3
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.27.1...v0.27.3)

Updates `esbuild-sass-plugin` from 3.3.1 to 3.6.0
- [Release notes](https://github.com/glromeo/esbuild-sass-plugin/releases)
- [Commits](https://github.com/glromeo/esbuild-sass-plugin/commits)

Updates `eslint-plugin-compat` from 6.0.2 to 6.1.0
- [Release notes](https://github.com/amilajack/eslint-plugin-compat/releases)
- [Changelog](https://github.com/amilajack/eslint-plugin-compat/blob/main/CHANGELOG.md)
- [Commits](amilajack/eslint-plugin-compat@v6.0.2...v6.1.0)

Updates `sass-embedded` from 1.96.0 to 1.97.3
- [Changelog](https://github.com/sass/embedded-host-node/blob/main/CHANGELOG.md)
- [Commits](sass/embedded-host-node@1.96.0...1.97.3)

Updates `stylelint-no-unsupported-browser-features` from 8.0.5 to 8.1.1
- [Release notes](https://github.com/RJWadley/stylelint-no-unsupported-browser-features/releases)
- [Changelog](https://github.com/RJWadley/stylelint-no-unsupported-browser-features/blob/master/CHANGELOG.md)
- [Commits](RJWadley/stylelint-no-unsupported-browser-features@v8.0.5...v8.1.1)

---
updated-dependencies:
- dependency-name: video.js
  dependency-version: 8.23.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-minor
- dependency-name: esbuild
  dependency-version: 0.27.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-minor
- dependency-name: esbuild-sass-plugin
  dependency-version: 3.6.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-minor
- dependency-name: eslint-plugin-compat
  dependency-version: 6.1.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-minor
- dependency-name: sass-embedded
  dependency-version: 1.97.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-minor
- dependency-name: stylelint-no-unsupported-browser-features
  dependency-version: 8.1.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Feb 10, 2026
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.

0 participants