Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps-dev): bump the development-dependencies group across 1 directory with 8 updates #580

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 1, 2025

Bumps the development-dependencies group with 8 updates in the /sass-js directory:

Package From To
autoprefixer 10.4.20 10.4.21
nodemon 3.1.7 3.1.9
postcss 8.4.47 8.5.3
postcss-cli 11.0.0 11.0.1
sass 1.79.4 1.86.1
sirv-cli 2.0.2 3.0.1
stylelint 16.9.0 16.17.0
stylelint-config-twbs-bootstrap 15.0.0 16.0.0

Updates autoprefixer from 10.4.20 to 10.4.21

Release notes

Sourced from autoprefixer's releases.

10.4.21

Changelog

Sourced from autoprefixer's changelog.

10.4.21

Commits

Updates nodemon from 3.1.7 to 3.1.9

Release notes

Sourced from nodemon's releases.

v3.1.9

3.1.9 (2024-12-13)

Bug Fixes

  • maintain backward support for exitcrash (9c9de6e)

v3.1.8

3.1.8 (2024-12-13)

Bug Fixes

Commits

Updates postcss from 8.4.47 to 8.5.3

Release notes

Sourced from postcss's releases.

8.5.3

8.5.2

8.5.1

8.5 “Duke Alloces”

PostCSS 8.5 brought API to work better with non-CSS sources like HTML, Vue.js/Svelte sources or CSS-in-JS.

@​romainmenke during his work on Stylelint added Input#document in additional to Input#css.

root.source.input.document //=> "<p>Hello</p>
                           //    <style>
                           //    p {
                           //      color: green;
                           //    }
                           //    </style>"
root.source.input.css      //=> "p {
                           //      color: green;
                           //    }"

Thanks to Sponsors

This release was possible thanks to our community.

If your company wants to support the sustainability of front-end infrastructure or wants to give some love to PostCSS, you can join our supporters by:

8.4.49

8.4.48

  • Fixed position calculation in error/warnings methods (by @​romainmenke).
Changelog

Sourced from postcss's changelog.

8.5.3

8.5.2

8.5.1

8.5 “Duke Alloces”

  • Added Input#document for sources like CSS-in-JS or HTML (by @​romainmenke).

8.4.49

8.4.48

  • Fixed position calculation in error/warnings methods (by @​romainmenke).
Commits

Updates postcss-cli from 11.0.0 to 11.0.1

Changelog

Sourced from postcss-cli's changelog.

11.0.1 / 2025-03-12

  • Update and minimize dependencies
Commits

Updates sass from 1.79.4 to 1.86.1

Release notes

Sourced from sass's releases.

Dart Sass 1.86.1

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

Changes

  • Improve the performance of file: URL case canonicalization on Windows and Mac OS.

See the full changelog for changes in earlier releases.

Dart Sass 1.86.0

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

Changes

  • Add support for % as an expression in its own right. It will still be parsed as the modulo operator when between two other expressions, but in any other context it will be an expression whose value is the unquoted string %.

  • Consider attr() to be a special number function that can be used as a channel in color functions.

  • Deprecate user-defined functions named type() so that we can eventually support the new CSS type() function.

Dart API

  • Increase the minimum Dart SDK to 3.6.0.

See the full changelog for changes in earlier releases.

Dart Sass 1.85.1

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

Changes

  • Fix a bug where global Sass functions whose names overlap with CSS math functions could incorrectly be treated as CSS math functions even though they used Sass-only features, causing compilation failures. For example, round(-$var / 2) previously threw an error but now works as intended.

See the full changelog for changes in earlier releases.

Dart Sass 1.85.0

To install Sass 1.85.0, 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.86.1

  • Improve the performance of file: URL case canonicalization on Windows and Mac OS.

1.86.0

  • Add support for % as an expression in its own right. It will still be parsed as the modulo operator when between two other expressions, but in any other context it will be an expression whose value is the unquoted string %.

  • Consider attr() to be a special number function that can be used as a channel in color functions.

  • Deprecate user-defined functions named type() so that we can eventually support the new CSS type() function.

Dart API

  • Increase the minimum Dart SDK to 3.6.0.

1.85.1

  • Fix a bug where global Sass functions whose names overlap with CSS math functions could incorrectly be treated as CSS math functions even though they used Sass-only features, causing compilation failures. For example, round(-$var / 2) previously threw an error but now works as intended.

1.85.0

  • No longer fully trim redundant selectors generated by @extend. This caused unacceptable performance issues for certain heavy users of @extend. We'll try to find a more performant way to accomplish it in the future.

1.84.0

  • Allow newlines in whitespace in the indented syntax.

  • Potentially breaking bug fix: Selectors with unmatched brackets now always produce a parser error. Previously, some edge cases like [foo#{"]:is(bar"}) {a: b} would compile without error, but this was an unintentional bug.

  • Fix a bug in which various Color Level 4 functions weren't allowed in plain CSS.

  • Fix the error message for @extend without a selector and possibly other parsing edge-cases in contexts that allow interpolation.

Embedded Host

... (truncated)

Commits
  • cee843b Improve case canonicalization performance (#2552)
  • bce1f4c Merge pull request #2547 from ntkme/gh-cli-release
  • 6a9fb83 Generate artifact attestation
  • ef8f3c4 Replace an external github action with github cli
  • c6706e7 Add support for % as a stand-alone expression (#2540)
  • 3ddbb38 Bump typedoc from 0.27.9 to 0.28.0 in /pkg/sass-parser (#2546)
  • e6589fe Add support for parsing variable expressions (#2541)
  • 2680d5f Add support for parsing unary operations (#2538)
  • 734e9de Use union types rather than base classes for Sass nodes (#2537)
  • 0d3ea25 Add support for the supports() function (#2535)
  • Additional commits viewable in compare view

Updates sirv-cli from 2.0.2 to 3.0.1

Release notes

Sourced from sirv-cli's releases.

v3.0.1

Patches

  • (sirv): ensure "types" field points to real file (#169) Thank you @​bluwy

  • (sirv-cli): ensure PORT is used if available (#165, #164) When string, always chose a random port. Thank you @​pixeldrew


Full Changelog: lukeed/sirv@v3.0.0...v3.0.1

v3.0.0

Breaking

  • Now requires Node 18+ : c7d2479,
  • Added exports map for native ESM support: c7d2479

Features

  • Added node: prefix for explicit native imports, which unlocks Deno support (#163): 912af6f Thank you @​karimfromjordan

Patches

  • Add separate CJS and ESM definitions: 982fcc8 Previously CJS types were wrong/incompatible.

Chores

  • (sirv-cli) Upgrade get-port to 5.1.1 for TS definitions: e5e0826
  • Write tests in native ESM: 2f36733
  • (CI): Add Node 20 to matrix: 9ca1cbc

Full Changelog: lukeed/sirv@v2.0.4...v3.0.0

v2.0.4

Patches


Full Changelog: lukeed/sirv@v2.0.3...v2.0.4

... (truncated)

Commits

Updates stylelint from 16.9.0 to 16.17.0

Release notes

Sourced from stylelint's releases.

16.17.0

16.16.0

16.15.0

... (truncated)

Changelog

Sourced from stylelint's changelog.

16.17.0 - 2025-03-26

It adds 1 new rule, support for languageOptions to 2 rules, 1 option to a rule, the --compute-edit-info CLI flag (along with support for EditInfo in 3 rules), and fixes 1 bug. EditInfo is useful for automated fixing tools and editor integrations.

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.

16.15.0 - 2025-02-28

It adds 1 new rule, a languageOptions configuration property for configuring some of the new rules added in 16.13.0, regex support to 1 option and support for computing EditInfo to 6 rules. It fixes 9 bugs, including 2 with the tap reporter.

... (truncated)

Commits

Updates stylelint-config-twbs-bootstrap from 15.0.0 to 16.0.0

Release notes

Sourced from stylelint-config-twbs-bootstrap's releases.

v16.0.0

What's Changed

  • Update dependencies

Full Changelog: twbs/stylelint-config-twbs-bootstrap@v15.1.0...v16.0.0

v15.1.0

What's Changed

Full Changelog: twbs/stylelint-config-twbs-bootstrap@v15.0.0...v15.1.0

Commits
  • 283a6ba 16.0.0
  • ddcd997 Fix stylelint peerDependency
  • 99f067a Update minor dependencies
  • 5276dda Bump the development-dependencies group across 1 directory with 2 updates (#291)
  • 58b8db3 Bump the development-dependencies group across 1 directory with 2 updates (#286)
  • 6a12870 Update eslint
  • d1eb906 Bump the production-dependencies group with 2 updates (#282)
  • 9b0f833 Bump the development-dependencies group with 2 updates (#283)
  • 897d5e3 Bump cross-spawn from 7.0.3 to 7.0.6 in the npm_and_yarn group (#281)
  • c884390 Bump the production-dependencies group with 2 updates (#279)
  • Additional commits viewable in compare view

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

…ectory with 8 updates

Bumps the development-dependencies group with 8 updates in the /sass-js directory:

| Package | From | To |
| --- | --- | --- |
| [autoprefixer](https://github.com/postcss/autoprefixer) | `10.4.20` | `10.4.21` |
| [nodemon](https://github.com/remy/nodemon) | `3.1.7` | `3.1.9` |
| [postcss](https://github.com/postcss/postcss) | `8.4.47` | `8.5.3` |
| [postcss-cli](https://github.com/postcss/postcss-cli) | `11.0.0` | `11.0.1` |
| [sass](https://github.com/sass/dart-sass) | `1.79.4` | `1.86.1` |
| [sirv-cli](https://github.com/lukeed/sirv) | `2.0.2` | `3.0.1` |
| [stylelint](https://github.com/stylelint/stylelint) | `16.9.0` | `16.17.0` |
| [stylelint-config-twbs-bootstrap](https://github.com/twbs/stylelint-config-twbs-bootstrap) | `15.0.0` | `16.0.0` |



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

Updates `nodemon` from 3.1.7 to 3.1.9
- [Release notes](https://github.com/remy/nodemon/releases)
- [Commits](remy/nodemon@v3.1.7...v3.1.9)

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

Updates `postcss-cli` from 11.0.0 to 11.0.1
- [Release notes](https://github.com/postcss/postcss-cli/releases)
- [Changelog](https://github.com/postcss/postcss-cli/blob/master/CHANGELOG.md)
- [Commits](postcss/postcss-cli@11.0.0...11.0.1)

Updates `sass` from 1.79.4 to 1.86.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.79.4...1.86.1)

Updates `sirv-cli` from 2.0.2 to 3.0.1
- [Release notes](https://github.com/lukeed/sirv/releases)
- [Commits](lukeed/sirv@v2.0.2...v3.0.1)

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

Updates `stylelint-config-twbs-bootstrap` from 15.0.0 to 16.0.0
- [Release notes](https://github.com/twbs/stylelint-config-twbs-bootstrap/releases)
- [Commits](twbs/stylelint-config-twbs-bootstrap@v15.0.0...v16.0.0)

---
updated-dependencies:
- dependency-name: autoprefixer
  dependency-version: 10.4.21
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: nodemon
  dependency-version: 3.1.9
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: postcss
  dependency-version: 8.5.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: postcss-cli
  dependency-version: 11.0.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: sass
  dependency-version: 1.86.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: sirv-cli
  dependency-version: 3.0.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: stylelint
  dependency-version: 16.17.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: stylelint-config-twbs-bootstrap
  dependency-version: 16.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants