Skip to content

Bump postcss-values-parser from 6.0.2 to 8.0.0#223

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/postcss-values-parser-8.0.0
Open

Bump postcss-values-parser from 6.0.2 to 8.0.0#223
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/postcss-values-parser-8.0.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github May 31, 2026

Copy link
Copy Markdown
Contributor

Bumps postcss-values-parser from 6.0.2 to 8.0.0.

Release notes

Sourced from postcss-values-parser's releases.

v7.0.0

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

Commits

Dependabot compatibility score

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 this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [postcss-values-parser](https://github.com/shellscape/postcss-values-parser) from 6.0.2 to 8.0.0.
- [Release notes](https://github.com/shellscape/postcss-values-parser/releases)
- [Commits](shellscape/postcss-values-parser@v6.0.2...v8.0.0)

---
updated-dependencies:
- dependency-name: postcss-values-parser
  dependency-version: 8.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
...

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 major labels May 31, 2026
Copilot AI review requested due to automatic review settings May 31, 2026 10:02
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file major javascript Pull requests that update javascript code labels May 31, 2026

Copilot AI left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copilot encountered an error and was unable to review this pull request. You can try again by re-requesting a review.

@skyscanner-dependabot

Copy link
Copy Markdown

By approving this PR, you are confirming that you have adequately and effectively reviewed this change.

Searchable Hashes
  • e5a7be81339253359a816483dabad9b1
  • c459db4cad6722791193e5acdc698d20

The above information was added by dependabot-augmentor.

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 major

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant