Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jan 22, 2026

This PR contains the following updates:

Package Change Age Confidence
postcss-licensing 3.0.04.0.0 age confidence
postcss-values-parser 6.0.27.0.0 age confidence

Release Notes

castastrophe/postcss-licensing (postcss-licensing)

v4.0.0

Compare Source

BREAKING CHANGES
  • Upgraded node support from v22 to v24.

Co-authored-by: renovate[bot] <29139614+renovate[bot]@​users.noreply.github.com>

shellscape/postcss-values-parser (postcss-values-parser)

v7.0.0

Compare Source

7.0.0
Highlights
  • Major rewrite: parser now builds on css-tree for correctness and performance.
  • Package is pure ESM and uses exports; no CommonJS output.
  • Walker helpers are exposed via registerWalkers() and can enable walk* methods like walkWords.
Breaking changes
  • ESM‑only: require('postcss-values-parser') is no longer supported. Use import.
  • Node.js 20.19+ required (per engines).
  • Walker helpers aren’t attached by default. If you relied on root.walkWords(...) in v6, call registerWalkers(Container) once to add the walk* methods.
  • Internal AST is compatible but not identical (migrated to css-tree under the hood). Class names like Word, Numeric, Func, etc., remain.
Migration
  • Replace CommonJS with ESM imports.

  • Register walker helpers before using any walk* APIs:

    import { parse, Container, registerWalkers } from 'postcss-values-parser';
    registerWalkers(Container);

    const root = parse('var(--foo)');
    root.walkWords((word) => {
    if (word.isVariable) console.log(word.value);
    });

  • Review docs for updated node shapes and stringifier behavior.

Commits since v6.0.2
  • 58c3ac0 feat!: use css-tree, rewrite package for ESM (#​149) — Andrew Powell
  • 1d367aa docs: update docs for v7 — shellscape
  • c8b1647 chore: add github workflows — shellscape
  • b19c7eb chore: use nvmrc — shellscape
Merged pull requests
  • #​149 use css-tree, rewrite package for ESM — Andrew Powell

Full Changelog: shellscape/postcss-values-parser@v6.0.2...v7.0.0


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added dependencies Pull requests that update a dependency file ready-for-review skip_vrt Add to a PR to skip running VRT (but still pass the action) labels Jan 22, 2026
@renovate renovate bot requested a review from a team January 22, 2026 18:58
@changeset-bot
Copy link

changeset-bot bot commented Jan 22, 2026

⚠️ No Changeset found

Latest commit: 7758b04

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@cdransf cdransf added the do not merge A flag for a branch indicating it should not be merged. label Jan 23, 2026
@renovate renovate bot force-pushed the renovate/spectrum-two-major-postcss-ecosystem branch 2 times, most recently from 6602312 to 1b60186 Compare January 28, 2026 17:03
@renovate renovate bot force-pushed the renovate/spectrum-two-major-postcss-ecosystem branch from 1b60186 to 7758b04 Compare January 28, 2026 17:19
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 do not merge A flag for a branch indicating it should not be merged. ready-for-review skip_vrt Add to a PR to skip running VRT (but still pass the action)

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant