Recent Commits to dart-sass:main

  • 24/11/2025 19:14

    Bump protoc_plugin from 23.0.0 to 24.0.0 (#2677)

    Bump protoc_plugin from 23.0.0 to 24.0.0 (#2677)
    
    Bumps [protoc_plugin](https://github.com/google/protobuf.dart) from 23.0.0 to 24.0.0.
    - [Release notes](https://github.com/google/protobuf.dart/releases)
    - [Commits](https://github.com/google/protobuf.dart/compare/protoc_plugin-v23.0.0...protoc_plugin-v24.0.0)
    
    ---
    updated-dependencies:
    - dependency-name: protoc_plugin
      dependency-version: 24.0.0
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • 24/11/2025 19:14

    Bump jest-extended from 6.0.0 to 7.0.0 in /pkg/sass-parser (#2678)

    Bump jest-extended from 6.0.0 to 7.0.0 in /pkg/sass-parser (#2678)
    
    Bumps [jest-extended](https://github.com/jest-community/jest-extended) from 6.0.0 to 7.0.0.
    - [Release notes](https://github.com/jest-community/jest-extended/releases)
    - [Changelog](https://github.com/jest-community/jest-extended/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/jest-community/jest-extended/compare/v6.0.0...v7.0.0)
    
    ---
    updated-dependencies:
    - dependency-name: jest-extended
      dependency-version: 7.0.0
      dependency-type: direct:development
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • 24/11/2025 19:13

    Bump actions/checkout from 5 to 6 (#2685)

    Bump actions/checkout from 5 to 6 (#2685)
    
    Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6.
    - [Release notes](https://github.com/actions/checkout/releases)
    - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/actions/checkout/compare/v5...v6)
    
    ---
    updated-dependencies:
    - dependency-name: actions/checkout
      dependency-version: '6'
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • 24/11/2025 19:12

    Bump actions/checkout from 5 to 6 in /.github/util/initialize (#2686)

    Bump actions/checkout from 5 to 6 in /.github/util/initialize (#2686)
    
    Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6.
    - [Release notes](https://github.com/actions/checkout/releases)
    - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/actions/checkout/compare/v5...v6)
    
    ---
    updated-dependencies:
    - dependency-name: actions/checkout
      dependency-version: '6'
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • 19/11/2025 19:54

    Mention obsolete deprecation fix in all API surfaces (#2683)

    Mention obsolete deprecation fix in all API surfaces (#2683)
  • 19/11/2025 19:04

    Update pubspec/changelog for sass/embedded-host-node#399 (#2682)

    Update pubspec/changelog for sass/embedded-host-node#399 (#2682)
    
    See sass/embedded-host-node#398
  • 19/11/2025 18:57

    --fatal-deprecation excludes obsolete Deprecations (#2671)

    --fatal-deprecation excludes obsolete Deprecations (#2671)
    
    Using `--fatal-deprecation 1.92.0` would emit: "Warning: mixed-decls
    deprecation is obsolete, so does not need to be made fatal".
    This commit avoids these warnings by excluding obsolete deprecations.
    See also #2647
    
    Co-authored-by: Jennifer Thakar <jathak@google.com>
  • 17/11/2025 22:22

    Pass --provenance to `npm publish` (#2681)

    Pass --provenance to `npm publish` (#2681)
    
    As suggested by https://github.com/npm/cli/issues/8730#issuecomment-3538909998
  • 11/11/2025 18:17

    Update the repository URL for JS packages (#2679)

    Update the repository URL for JS packages (#2679)
    
    This has to match the repo it's published from or npm's new publishing
    workflow will complain.
  • 10/11/2025 19:51

    Parse selectors in the sass-parser package (#2670)

    Parse selectors in the sass-parser package (#2670)
    
    This adds a separate "interpolated selector" AST that parallels the
    existing selector AST, but includes the interpolation that's present
    in the source files. This AST isn't used by the Sass implementation
    itself; it's just made available so that tools can gracefully interact
    with selectors as an AST in unevaluated Sass files.
  • 10/11/2025 17:47

    Add support for plain-CSS `@function` rules (#2655)

    Add support for plain-CSS `@function` rules (#2655)
    
    See #2197
  • 05/11/2025 19:23

    Track offsets instead of locations in InterpolationMap (#2674)

    Track offsets instead of locations in InterpolationMap (#2674)
    
    This is semantically identical, but a little more efficient and easier
    to construct in situations without actual `SourceLocation`s.
  • 05/11/2025 19:23

    Add a separate `StylesheetParser.interpolatedStringToken()` method (#…

    Add a separate `StylesheetParser.interpolatedStringToken()` method (#2675)
    
    Unlike `StringExpression.asInterpolation()`, this ensures that the
    text between interpolated expressions exactly matches the text in the
    original document.
  • 05/11/2025 19:09

    Make sure all source spans use interpolation maps (#2673)

    Make sure all source spans use interpolation maps (#2673)
    
    `Scanner.spanFrom` doesn't respect Sass's `InterpolationMap`, so this
    changes all span accesses to go through `Parser.spanFrom` and
    `Parser.spanFromPosition`.
  • 03/11/2025 20:36

    Update release workflows to support npm trusted publshing (#2669)

    Update release workflows to support npm trusted publshing (#2669)
  • 03/11/2025 19:02

    Bump actions/download-artifact from 5 to 6 (#2664)

    Bump actions/download-artifact from 5 to 6 (#2664)
    
    Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 5 to 6.
    - [Release notes](https://github.com/actions/download-artifact/releases)
    - [Commits](https://github.com/actions/download-artifact/compare/v5...v6)
    
    ---
    updated-dependencies:
    - dependency-name: actions/download-artifact
      dependency-version: '6'
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • 03/11/2025 19:01

    Bump actions/upload-artifact from 4 to 5 (#2665)

    Bump actions/upload-artifact from 4 to 5 (#2665)
    
    Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 5.
    - [Release notes](https://github.com/actions/upload-artifact/releases)
    - [Commits](https://github.com/actions/upload-artifact/compare/v4...v5)
    
    ---
    updated-dependencies:
    - dependency-name: actions/upload-artifact
      dependency-version: '5'
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

Log in