Skip to content

Files

Latest commit

cea1018 · Apr 19, 2025

History

History
335 lines (194 loc) · 17.5 KB

File metadata and controls

335 lines (194 loc) · 17.5 KB

Changes to PostCSS Color Functional Notation

7.0.9

April 19, 2025

7.0.8

February 23, 2025

7.0.7

December 27, 2024

7.0.6

November 11, 2024

7.0.5

November 1, 2024

7.0.4

October 23, 2024

7.0.3

October 10, 2024

7.0.2

August 18, 2024

7.0.1

August 14, 2024

7.0.0

August 3, 2024

6.0.14

July 7, 2024

6.0.13

July 6, 2024

6.0.12

June 29, 2024

6.0.11

May 4, 2024

6.0.10

May 4, 2024

6.0.9

April 21, 2024

6.0.8

March 31, 2024

6.0.7

March 17, 2024

6.0.6

March 13, 2024

6.0.5

February 19, 2024

6.0.4

December 31, 2023

6.0.3

December 15, 2023

6.0.2

October 9, 2023

6.0.1

September 18, 2023

6.0.0

July 3, 2023

5.1.0

June 1, 2023

  • Added @csstools/postcss-progressive-custom-properties for improved support of custom properties.
  • Updated @csstools/postcss-progressive-custom-properties to 2.3.0 (minor)

5.0.2

February 6, 2023

  • Reduce the amount of duplicate fallback CSS.

5.0.1

January 28, 2023

  • Improve types declaration in package.json

5.0.0

January 24, 2023

  • Updated: Support for Node v14+ (major).

4.2.4

July 8, 2022

  • Fix case insensitive matching.

4.2.3

May 19, 2022

  • Handle modern channel values in legacy notation (comma separated)
.color {
  color: rgba(0, 255, 0, 50%);
}

/* becomes */

.color {
  color: rgba(0, 255, 0, 0.5);
}

4.2.2

February 5, 2022

  • Improved es module and commonjs compatibility

4.2.1

January 2, 2022

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

4.2.0

December 27, 2021

  • Added: support for Alpha value as the fourth argument in comma separated values notation.

4.1.0

December 15, 2021

  • Added: support for Alpha value as a CSS variable in rgb() and rgba().

4.0.2

December 13, 2021

  • Changed: now uses postcss-value-parser for parsing.
  • Updated: documentation
  • Added: support for CSS variables with preserve: true option.

4.0.1

November 18, 2021

  • Added: Safeguards against postcss-values-parser potentially throwing an error.
  • Updated: postcss-value-parser to 6.0.1 (patch)

4.0.0

September 17, 2021

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

3.0.2

April 25, 2020

  • Updated: Publish

3.0.1

April 25, 2020

  • Updated: Using walkType to evade walker bug in postcss-values-parser

3.0.0

April 25, 2020

  • Updated: Support for Node 10+
  • Updated: postcss to 7.0.27 (patch)
  • Updated: postcss-values-parser to 3.2.0 (minor)

2.0.1

September 18, 2018

  • Updated: PostCSS Values Parser 2 (patch for this project)

2.0.0

September 17, 2018

  • Updated: Support for PostCSS v7+
  • Updated: Support for Node 6+

1.0.2

July 13, 2018

  • Fixed: Poorly detected hsl() and rgb() now resolve correctly

1.0.1

May 11, 2018

  • Fixed: A non-percentage 0 works alongside other percentages

1.0.0

May 7, 2018

  • Initial version