autoprefixer 9.4.9 → 9.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +17 -0
- package/README.md +240 -246
- package/data/prefixes.js +14 -2
- package/lib/autoprefixer.js +19 -3
- package/lib/hacks/backdrop-filter.js +37 -0
- package/lib/hacks/background-clip.js +1 -5
- package/lib/hacks/border-radius.js +2 -5
- package/lib/hacks/cross-fade.js +2 -2
- package/lib/hacks/flex.js +2 -2
- package/lib/hacks/gradient.js +6 -6
- package/lib/hacks/mask-composite.js +106 -0
- package/lib/prefixer.js +4 -6
- package/lib/prefixes.js +4 -2
- package/lib/processor.js +5 -0
- package/lib/resolution.js +4 -4
- package/lib/supports.js +4 -4
- package/lib/value.js +2 -2
- package/package.json +8 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,23 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
This project adheres to [Semantic Versioning](http://semver.org/).
|
|
3
3
|
|
|
4
|
+
## 9.6 “Nunc id vides, nunc ne vides”
|
|
5
|
+
* Show warning about Browserslist config on `browser` option.
|
|
6
|
+
* Add warning-less `overrideBrowserslist` option.
|
|
7
|
+
* Add `text-orientation` support.
|
|
8
|
+
* Add `min-resolution: 2x` alias support.
|
|
9
|
+
* Add `.github/CONTRIBUTING.md` (by Juan Martin Marco).
|
|
10
|
+
|
|
11
|
+
## 9.5.1
|
|
12
|
+
* Fix `backdrop-filter` for Edge (by Oleh Aloshkin).
|
|
13
|
+
* Fix `min-resolution` media query support in Firefox < 16.
|
|
14
|
+
|
|
15
|
+
## 9.5 “Draco dormiens nunquam titillandus”
|
|
16
|
+
* Add `mask-composite` support (by Semen Levenson).
|
|
17
|
+
|
|
18
|
+
## 9.4.10
|
|
19
|
+
* Add warning for named Grid rows.
|
|
20
|
+
|
|
4
21
|
## 9.4.9
|
|
5
22
|
* Fix `grid-template` and `@media` case (by Bogdan Dolin).
|
|
6
23
|
|