| 1 | # Changes to PostCSS Double Position Gradients
|
|---|
| 2 |
|
|---|
| 3 | ### 3.1.2 (July 8, 2022)
|
|---|
| 4 |
|
|---|
| 5 | - Fix case insensitive matching.
|
|---|
| 6 |
|
|---|
| 7 | ### 3.1.1 (March 7, 2022)
|
|---|
| 8 |
|
|---|
| 9 | - Add typescript support
|
|---|
| 10 | - Fix color functions.
|
|---|
| 11 | - Fix `at` keyword with `at 20px 20px` being interpreted as a double position color stop.
|
|---|
| 12 |
|
|---|
| 13 | ### 3.1.0 (February 15, 2022)
|
|---|
| 14 |
|
|---|
| 15 | - Ignore values in relevant `@supports` rules.
|
|---|
| 16 | - Support double position gradients in Custom Properties.
|
|---|
| 17 |
|
|---|
| 18 | ```css
|
|---|
| 19 | @supports (order: linear-gradient(90deg, black 25% 50%, blue 50% 75%)) {
|
|---|
| 20 | .support {
|
|---|
| 21 | /* is not processed */
|
|---|
| 22 | order: linear-gradient(90deg, black 25% 50%, blue 50% 75%);
|
|---|
| 23 | }
|
|---|
| 24 | }
|
|---|
| 25 | ```
|
|---|
| 26 |
|
|---|
| 27 | ### 3.0.5 (February 5, 2022)
|
|---|
| 28 |
|
|---|
| 29 | - Improved `es module` and `commonjs` compatibility
|
|---|
| 30 |
|
|---|
| 31 | ### 3.0.4 (January 2, 2022)
|
|---|
| 32 |
|
|---|
| 33 | - Removed Sourcemaps from package tarball.
|
|---|
| 34 | - Moved CLI to CLI Package. See [announcement](https://github.com/csstools/postcss-plugins/discussions/121).
|
|---|
| 35 |
|
|---|
| 36 | ### 3.0.3 (December 14, 2021)
|
|---|
| 37 |
|
|---|
| 38 | - Fixed: infinite loop in complex gradients.
|
|---|
| 39 |
|
|---|
| 40 | ### 3.0.2 (December 13, 2021)
|
|---|
| 41 |
|
|---|
| 42 | - Changed: now uses `postcss-value-parser` for parsing.
|
|---|
| 43 | - Updated: documentation
|
|---|
| 44 |
|
|---|
| 45 | ### 3.0.1 (November 18, 2021)
|
|---|
| 46 |
|
|---|
| 47 | - Added: Safeguards against postcss-values-parser potentially throwing an error.
|
|---|
| 48 |
|
|---|
| 49 | - Fixed: Issue with some gradients creating an infinite loop.
|
|---|
| 50 |
|
|---|
| 51 | - Updated: `postcss-value-parser` to 6.0.1 (patch)
|
|---|
| 52 | - Updated: `eslint` to 8.2.0 (major)
|
|---|
| 53 | - Updated: `postcss` to 8.3.11 (patch)
|
|---|
| 54 |
|
|---|
| 55 | - Removed: yarn.lock is no longer version controlled
|
|---|
| 56 |
|
|---|
| 57 | ### 3.0.0 (September 17, 2021)
|
|---|
| 58 |
|
|---|
| 59 | - Updated: Support for PostCS 8+ (major).
|
|---|
| 60 | - Updated: Support for Node 12+ (major).
|
|---|
| 61 |
|
|---|
| 62 | ### 2.0.0 (April 25, 2020)
|
|---|
| 63 |
|
|---|
| 64 | - Updated: `postcss` to 7.0.27 (patch)
|
|---|
| 65 | - Updated: `postcss-value-parser` to 3.2.1 (major)
|
|---|
| 66 | - Updated: Support for Node 10+ (major)
|
|---|
| 67 |
|
|---|
| 68 | ### 1.0.0 (October 28, 2018)
|
|---|
| 69 |
|
|---|
| 70 | - Initial version
|
|---|