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

chore(deps): update dependency postcss-custom-properties to v13 #25

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

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Nov 20, 2022

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
postcss-custom-properties (source) ^12.1.8 -> ^13.3.10 age adoption passing confidence

Release Notes

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

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

September 18, 2023

  • Improve performance

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);
}

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 becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


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

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/postcss-custom-properties-13.x branch from 62243ef to 5574160 Compare March 17, 2023 02:03
@renovate renovate bot force-pushed the renovate/postcss-custom-properties-13.x branch 2 times, most recently from 352a65f to 37ae35c Compare June 1, 2023 17:26
@renovate renovate bot force-pushed the renovate/postcss-custom-properties-13.x branch from 37ae35c to 1b355e0 Compare July 3, 2023 23:26
@renovate renovate bot force-pushed the renovate/postcss-custom-properties-13.x branch from 1b355e0 to 47f9024 Compare July 25, 2023 08:40
@renovate renovate bot force-pushed the renovate/postcss-custom-properties-13.x branch 2 times, most recently from 429b5c8 to 840a473 Compare September 25, 2023 05:08
@renovate renovate bot force-pushed the renovate/postcss-custom-properties-13.x branch from 840a473 to d5db8d0 Compare December 16, 2023 05:38
@renovate renovate bot force-pushed the renovate/postcss-custom-properties-13.x branch from d5db8d0 to 989be4e Compare January 1, 2024 02:52
@renovate renovate bot force-pushed the renovate/postcss-custom-properties-13.x branch from 989be4e to d9b1855 Compare February 20, 2024 05:18
@renovate renovate bot force-pushed the renovate/postcss-custom-properties-13.x branch from d9b1855 to 4ad651f Compare March 14, 2024 05:51
@renovate renovate bot force-pushed the renovate/postcss-custom-properties-13.x branch from 4ad651f to cad02b9 Compare April 14, 2024 05:43
@renovate renovate bot force-pushed the renovate/postcss-custom-properties-13.x branch from cad02b9 to 6d45c57 Compare April 22, 2024 21:00
@renovate renovate bot force-pushed the renovate/postcss-custom-properties-13.x branch from 6d45c57 to d7dae25 Compare May 4, 2024 17:52
@renovate renovate bot force-pushed the renovate/postcss-custom-properties-13.x branch from d7dae25 to e10e099 Compare May 5, 2024 08:39
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants