Skip to content

chore(deps): update dependency postcss-custom-properties to v14 #123

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

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

Conversation

stackable-bot
Copy link
Contributor

This PR contains the following updates:

Package Type Update Change
postcss-custom-properties (source) devDependencies major ^11 -> ^14.0.0

Release Notes

csstools/postcss-plugins (postcss-custom-properties)

v14.0.4

Compare Source

November 1, 2024

v14.0.3

Compare Source

October 23, 2024

v14.0.2

Compare Source

October 10, 2024

v14.0.1

Compare Source

August 18, 2024

v14.0.0

Compare Source

August 3, 2024

v13.3.12

Compare Source

July 6, 2024

v13.3.11

Compare Source

June 29, 2024

v13.3.10

Compare Source

May 4, 2024

v13.3.9

Compare Source

May 4, 2024

v13.3.8

Compare Source

April 22, 2024

v13.3.7

Compare Source

April 11, 2024

  • Improve handling of cross references between computed values of custom properties

v13.3.6

Compare Source

March 13, 2024

v13.3.5

Compare Source

February 19, 2024

v13.3.4

Compare Source

December 31, 2023

v13.3.3

Compare Source

December 15, 2023

v13.3.2

Compare Source

September 24, 2023

v13.3.1

Compare Source

July 6, 2024

v13.3.0

Compare Source

July 24, 2023

v13.2.1

Compare Source

July 3, 2023

v13.2.0

Compare Source

June 1, 2023

  • Do not generate fallback values when the rule is wrapped in @supports (top: var(--f)).

v13.1.5

Compare Source

April 10, 2023

  • Updated @csstools/css-tokenizer to 2.1.1 (patch)
  • Updated @csstools/css-parser-algorithms to 2.1.1 (patch)
  • Updated @csstools/cascade-layer-name-parser to 1.0.2 (patch)

v13.1.4

Compare Source

February 21, 2023

  • Fixed: exception on chained variable declarations.

v13.1.3

Compare Source

February 8, 2023

  • Fixed: exception on missing variables.

v13.1.2

Compare Source

February 7, 2023

  • Do not apply fallback values when these contain unresolvable custom properties.

v13.1.1

Compare Source

January 28, 2023

  • Improve types declaration in package.json

v13.1.0

Compare Source

January 24, 2023

  • Added: Support for Cascade Layers.
  • Improve plugin performance (port of fixes in v12.1.11)

v13.0.0

Compare Source

November 14, 2022

  • Updated: Support for Node v14+ (major).
  • Removed : importFrom feature (breaking).
  • Removed : exportTo feature (breaking).
  • Added support for local custom property declarations.
.example {
	--a-value: 20px;
	margin: var(--a-value);
}

/* becomes */

.example {
	--a-value: 20px;
	margin: 20px;
	margin: var(--a-value);
}

v12.1.11

Compare Source

December 1, 2022

  • Improve plugin performance

v12.1.10

Compare Source

October 20, 2022

  • Fix how preserve: false interacts with logic around duplicate code (see 12.1.9).
:root {
	--my-order: 1;
}

.foo {
	order: 1;
	order: var(--my-order);
}

/* With `preserve: false` : */

.foo {
	order: 1;
}

v12.1.9

Compare Source

September 14, 2022

  • Prevent duplicate code generation.
.foo {
	order: 1;
	order: var(--my-order, 1);
}

/* becomes */

.foo {
	order: 1;
- 	order: 1;
	order: var(--my-order, 1);
}

v12.1.8

Compare Source

June 10, 2022

  • Remove some unneeded regular expressions.

v12.1.7

Compare Source

April 8, 2022

  • Fix racing condition that could happen when using other async PostCSS plugins (#​331)

v12.1.6

Compare Source

April 5, 2022

  • Fix var() fallback value downgrades with value lists.

v12.1.5

Compare Source

March 19, 2022

  • Add deprecation notice for importFrom and exportTo

see the discussion

v12.1.4

Compare Source

January 31, 2022

  • Fix .mjs in importFrom when using export default
  • Fix .mjs in importFrom on Windows

v12.1.3

Compare Source

January 17, 2022

  • Reset plugin state after each process. It is now safe to use the plugin multiple times for different processes or when watching.

v12.1.2

Compare Source

January 12, 2022

  • Fix TypeScript transpilation.
  • Avoid throwing errors on unexpected option objects.

v12.1.1

Compare Source

December 1, 2022

  • Improve plugin performance

v12.1.0

Compare Source

January 12, 2022

  • Add overrideImportFromWithRoot option
  • Allow .mjs in importFrom
  • Converted to TypeScript
  • Correct typings for plugin options
  • Fix unicode support in custom property names

v12.0.4

Compare Source

January 7, 2022

  • Fixed an issue that was causing synchronous mode to not being able to pick and transform properties that were added as part of the PostCSS flow. (#​132)

v12.0.3

Compare Source

v12.0.2

Compare Source

January 2, 2022

  • Removed Sourcemaps from package tarball.
  • Moved CLI to CLI Package. See announcement.

v12.0.1

Compare Source

December 16, 2021

  • Changed: now uses postcss-value-parser for parsing.
  • Updated: documentation

v12.0.0

Compare Source

September 17, 2021

  • Updated: Support for PostCS 8+ (major).
  • Updated: Support for Node 12+ (major).

Configuration

📅 Schedule: Branch creation - "" in timezone Europe/Berlin, Automerge - At any time (no schedule defined).

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

Rebasing: Whenever PR becomes conflicted, 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 has been generated by Renovate Bot.

| datasource | package                   | from   | to     |
| ---------- | ------------------------- | ------ | ------ |
| npm        | postcss-custom-properties | 11.0.0 | 14.0.4 |
@stackable-bot stackable-bot added the dependencies Pull requests that update a dependency file label Mar 24, 2025
@stackable-bot stackable-bot requested a review from a team March 24, 2025 13:16
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant