Skip to content

Releases: postcss/autoprefixer

9.6.2

14 Oct 07:56
@ai ai
9.6.2
Compare
Choose a tag to compare
  • Fix false Replace fill to stretch warning.

9.6.1

05 Jul 21:28
@ai ai
9.6.1
Compare
Choose a tag to compare
  • Fix -webkit-line-clamp truncating multi-line text support.

9.6 “Nunc id vides, nunc ne vides”

03 Jun 18:48
@ai ai
9.6.0
Compare
Choose a tag to compare

Unseen University coat of arms by Damien Tonkin

Autoprefixer 9.6 marked browsers option as deprecated and added text-orientation and @media (min-resolution: 2x) support.

We added the “Sponsor” button to your repository. You can support Autoprefixer and other open source projects important for your business by Tidelift.

Browsers

Autoprefixer adds prefixes only for target browsers, browsers which is support on your project.

Initially, Autoprefixer had the browsers option to set target browsers. But we found that many tools need target browsers too. postcss-preset-env and babel-preset-env use them to add only actual polyfills, postcss-normalize uses them to add only necessary CSS reset rules, plugins for ESLint and Stylelint will warn you if some of the target browsers doesn’t support your code.

This is why we created Browserslist config file. It is a single config for all tools.

A lot of users still uses the browsers option. We understand them; it is hard to change old practice. Unfortunately, using the browsers option creates many problems. For instance, you can miss that your build tool has own Autoprefixer inside. It will cut your prefixes because it will not know about your target browsers.

This is why, in 9.6, we decided to deprecate the browsers option. Autoprefixer will show a warning on this option. In the next 10.0 release, we will drop this option. This is how you can migrate:

  1. Create browserslist key with an array in package.json.

  2. Copy queries from the browsers option. If you have browsers: [“last 1 version”, “not dead”], then you need:

       "browserslist": [
         "last 1 version",
         "not dead"
       ]

HiDPI Media Query

We all need to support HiDPI/retina screen now. Autoprefixer supports specific media query for HiDPI screens:

.image {
  background-image: url(image@1x.png);
}
@media (min-resolution: 2dppx) {
  .image {
    background-image: url(image@2x.png);
  }
}
.image {
  background-image: url(image@1x.png);
}
@media (-webkit-min-device-pixel-ratio: 2),
       (-o-min-device-pixel-ratio: 2/1),
       (min-resolution: 2dppx) {
  .image {
    background-image: url(image@2x.png);
  }
}

Bug we found that CSS Values 4 spec added x alias for dppx.

Autoprefixer 9.6 supports @media (min-resolution: 2x) shortcut. Note, that Autoprefixer will not convert it to 2dppx. Autoprefixer adds only prefixes. Use postcss-preset-env to add polyfills.

Other

9.5.1

07 Apr 16:22
@ai ai
9.5.1
Compare
Choose a tag to compare
  • Fix backdrop-filter for Edge (by @AleshaOleg).
  • Fix min-resolution media query support in Firefox < 16.

9.5 “Draco dormiens nunquam titillandus”

14 Mar 18:21
@ai ai
9.5.0
Compare
Choose a tag to compare

Coat of Arms of Hogwarts

Autoprefixer 9.5 brings mask-composite support.

a {
  mask-composite: add;
}
b {
  mask: url(intersect.png) intersect, url(exclude.png);
}
a {
  -webkit-mask-composite: source-over;
          mask-composite: add;
}
b {
  -webkit-mask: url(intersect.png), url(exclude.png);
  -webkit-mask-composite: source-in, xor;
          mask: url(intersect.png) intersect, url(exclude.png);
}

Thanks to @semeleven for implementation and @iamvdo for suggestion.

9.4.10

05 Mar 01:31
@ai ai
9.4.10
Compare
Choose a tag to compare
  • Add warning for named Grid rows.

9.4.9

25 Feb 03:45
@ai ai
9.4.9
Compare
Choose a tag to compare

9.4.8

20 Feb 00:44
@ai ai
9.4.8
Compare
Choose a tag to compare
  • Fix calc() support in Grid gap.

9.4.7

28 Jan 20:08
@ai ai
9.4.7
Compare
Choose a tag to compare
  • Fix infinite loop on mismatched parents.

9.4.6

21 Jan 12:39
@ai ai
9.4.6
Compare
Choose a tag to compare