Skip to content

Conversation

@greenkeeper
Copy link

@greenkeeper greenkeeper bot commented Feb 12, 2018

Version 8.0.0 of autoprefixer was just published.

Dependency autoprefixer
Current Version 7.2.6
Type devDependency

The version 8.0.0 is not covered by your current version range.

If you don’t accept this pull request, your project will work just like it did before. However, you might be missing out on a bunch of new features, fixes and/or performance improvements from the dependency update.

It might be worth looking into these changes and trying to get this project onto the latest version of autoprefixer.

If you have a solid test suite and good coverage, a passing build is a strong indicator that you can take advantage of these changes directly by merging the proposed change into your project. If the build fails or you don’t have such unconditional trust in your tests, this branch is a great starting point for you to work on the update.


FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper bot 🌴

greenkeeper bot added a commit that referenced this pull request Mar 3, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented Mar 3, 2018

Version 8.1.0 just got published.

Update to this version instead 🚀

Release Notes 8.1 “Rex, Familia et Ultio”

Kingdom Come: Deliverance logo

Autoprefixer 8.1 brings overscroll-behavior and better Grid support.

Overscroll Behavior

@Malvoz suggested the great idea to polyfill overscroll-behavior for IE 11 and Edge by -ms-scroll-chaining.

.none {
    -ms-scroll-chaining: none;
        overscroll-behavior: none;
}
.contain {
    -ms-scroll-chaining: none;
        overscroll-behavior: contain;
}
.auto {
    -ms-scroll-chaining: chained;
        overscroll-behavior: auto;
}

Note, that overscroll-behavior-x and overscroll-behavior-y are not supported since -ms- property doesn’t have this freedom.

Better Grid Layout

@evgeny-petukhov continues his amazing work and now Autoprefixer polyfills Grid Layout for IE in more cases.

He added grid-template shortcut support and improve support of grid-column-end and grid-row-end.

Grid properties were fixed in @supports. We recommend:

  • To select modern Grid browsers and IE 11: @supports (display: grid).
  • To select only Grid browsers without IE 11: @supports (grid-gap: 0).

Note, that you need grid: true option to Autoprefixer to add -ms- prefixes for Grid Layout.

greenkeeper bot added a commit that referenced this pull request Mar 21, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented Mar 21, 2018

Version 8.2.0 just got published.

Update to this version instead 🚀

Release Notes 8.2 “Ad Astra per Aspera”

The Great Seal of the State of Kansas

Autoprefixer 8.2 brings color-adjust support.

@YozhikM, @soul-wish, and @yuriyalekseyev did a great work. They added new data to Can I Use and implemented a new feature to Autoprefixer.

body {
    -webkit-print-color-adjust: exact;
            color-adjust: exact;
}

greenkeeper bot added a commit that referenced this pull request Apr 16, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented Apr 16, 2018

Version 8.3.0 just got published.

Update to this version instead 🚀

Release Notes 8.3 “Benigno Numine”

Seal of the City of Pittsburgh

Autoprefixer 8.3 adds @media support for grid-template and fixes gradient direction warning.

Media and Grid Layout

@evgeny-petukhov continues his great work for Grid Layout support in Autoprefixer.

Now he improved @media support. Now this CSS will work in IE:

body {
    grid-template:
        [header-left] "head head" 30px [header-right]
        [main-left]   "nav  main" 1fr  [main-right]
        [footer-left] "nav  foot" 30px [footer-right]
        / 120px repeat(4, 250px 10px);
}

header {
grid-area: head;
}

main {
grid-area: main;
}

footer {
grid-area: footer;
}

@media (min-width: 1000px) {
body {
grid-template:
[header-left] "head" 30px [header-right]
[main-left] "main" 1fr [main-right]
[footer-left] "footer" 30px [footer-right]
/ 1fr;
}
}

Don’t forget that Autoprefixer inserts Grid Layout prefixes only if you set grid: true option.

Gradient Warning

@radium-v found that Autoprefixer show warning even if cover is outside of radial-gradient.

a {
    background: radial-gradient(#fff, transparent) 0 0 / cover no-repeat #f0f;
}

@kotfire improve old direction detection and fix this issue.

greenkeeper bot added a commit that referenced this pull request Apr 28, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented Apr 28, 2018

Version 8.4.1 just got published.

Update to this version instead 🚀

Release Notes 8.4.1
  • Fix working in old PostCSS versions (by @Diablohu).

greenkeeper bot added a commit that referenced this pull request May 13, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented May 13, 2018

Version 8.5.0 just got published.

Update to this version instead 🚀

Release Notes 8.5 “Muito Nobre e Sempre Leal”


Coat of arms of Lisbon

Autoprefixer 8.5 brings grid-gap support and fix radial-gradient.

Grid Gap

@evgeny-petukhov continues his amazing work of adding CSS Grid Layout support to Autoprefixer.

Now he brought grid-gap. It is amazing work since IE 11 has gaps support in -ms- grids.

To add grid-gap support for IE 11 Autoprefixer adds addition grid cells. Unfortunately, it will work only if you have grid-template in the same rule with grid-gap. We had big discussion with a community about these limits.

.page {
    grid-gap: 33px;
    -ms-grid-rows: 1fr 33px minmax(100px, 1fr) 33px 2fr;
    -ms-grid-columns: 1fr 33px 100px 33px 1fr;
    grid-template:
        "head head  head" 1fr
        "nav  main  main" minmax(100px, 1fr)
        "nav  foot  foot" 2fr /
        1fr   100px 1fr;
}

Set postcss-gap-properties before Autoprefixer if you want to use new gap property.

Radial Gradients

Old gradients with prefixes used a different direction syntax. Autoprefixer converts direction to old syntax (or warn you to rewrite direction from old to new syntax).

But it has an issue with extent keywords like circle closest-corner. We fixed it after @BaliBalo report.

.mask {
    -webkit-mask-image: -webkit-radial-gradient(100% 50%, circle closest-corner, black, white);
            mask-image: radial-gradient(circle closest-corner at 100% 50%, black, white);
}

greenkeeper bot added a commit that referenced this pull request May 25, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented May 25, 2018

Version 8.5.1 just got published.

Update to this version instead 🚀

Release Notes 8.5.1
  • Remove unnecessary warning on -webkit-fill-available.

greenkeeper bot added a commit that referenced this pull request Jun 2, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented Jun 2, 2018

Version 8.6.0 just got published.

Update to this version instead 🚀

Release Notes 8.6 “Follow Reason”

Emblem of the Grand Lodge of Massachusetts

Autoprefixer 8.6 brings gap property support and two values support for grid-gap/gap.

Grid Gap

CSSWG renamed grid-gap property to gap.

@yepninja added gap support with 2 values support.

Grid layout code bellow will work even in IE if you pass grid: true option to Autoprefixer:

.main {
    gap: 10px 20px;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas: "head head head"
                         "nav main main"
                         "nav foot foot";
}

Other Changes

greenkeeper bot added a commit that referenced this pull request Jun 7, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented Jun 7, 2018

Version 8.6.1 just got published.

Update to this version instead 🚀

Release Notes 8.6.1
  • Fix grid-template with media queries (by @yepninja)

greenkeeper bot added a commit that referenced this pull request Jun 9, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented Jun 9, 2018

Version 8.6.2 just got published.

Update to this version instead 🚀

Release Notes 8.6.2
  • Fix error during adding Grid prefixes in @media (by @yepninja).

greenkeeper bot added a commit that referenced this pull request Jun 18, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented Jun 18, 2018

Version 8.6.3 just got published.

Update to this version instead 🚀

Release Notes 8.6.3
  • Add warnings for unsupported Grid features.
  • Add warnings about wrong Grid properties.
  • Add note about grid option for grid properties in autoprefixer --info.

greenkeeper bot added a commit that referenced this pull request Jun 26, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented Jun 26, 2018

Version 8.6.4 just got published.

Update to this version instead 🚀

Release Notes 8.6.4
  • Fix stretch prefix in Chrome >= 46.

greenkeeper bot added a commit that referenced this pull request Jul 6, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented Jul 6, 2018

Version 8.6.5 just got published.

Update to this version instead 🚀

Release Notes 8.6.5
  • Do not show Grid warnings if IE was not selected

greenkeeper bot added a commit that referenced this pull request Jul 16, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented Jul 16, 2018

Version 9.0.0 just got published.

Update to this version instead 🚀

Release Notes 9.0 “A Mari Usque Ad Mare”

This is a good article. Follow the link for more information.
Arms of Canada

Autoprefixer 9.0 brings Browserslist 4.0 and drops Node.js 4 support.

Breaking Changes

We removed Node.js 4 and Node.js 9 support since it doesn’t have security updates anymore.

We removed IE and “dead” browsers (without security updates) from Babel’s targets:

last 2 version
not dead
not Explorer 11
not ExplorerMobile 11
node 10
node 8
node 6

Autoprefixer Rails 9.0 dropped the RubyRacer and Sprockets 3 support.

Browserslist 4.0

Autoprefixer 9.0 uses Browserslist 4.0 to get your target browsers.

Now you use Browserslist to specify Node.js versions. Babel 7 will use Browserslist config as well.

Also, Browserslist 4.0 will warn you if you didn’t update Can I Use DB for last than 6 month.

PostCSS 7.0

Autoprefixer 9.0 uses PostCSS 7.0

greenkeeper bot added a commit that referenced this pull request Jul 21, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented Jul 21, 2018

Version 9.0.1 just got published.

Update to this version instead 🚀

Release Notes 9.0.1
  • Fix nested at-rules in Grid prefixes (by @ivandata)

greenkeeper bot added a commit that referenced this pull request Apr 7, 2019
@greenkeeper
Copy link
Author

greenkeeper bot commented Apr 7, 2019

  • The devDependency autoprefixer was updated from 7.2.6 to 9.5.1.

Update to this version instead 🚀

Release Notes for 9.5.1
  • Fix backdrop-filter for Edge (by @AleshaOleg).
  • Fix min-resolution media query support in Firefox < 16.

greenkeeper bot added a commit that referenced this pull request Jun 3, 2019
@greenkeeper
Copy link
Author

greenkeeper bot commented Jun 3, 2019

  • The devDependency autoprefixer was updated from 7.2.6 to 9.6.0.

Update to this version instead 🚀

greenkeeper bot added a commit that referenced this pull request Jul 5, 2019
@greenkeeper
Copy link
Author

greenkeeper bot commented Jul 5, 2019

  • The devDependency autoprefixer was updated from 7.2.6 to 9.6.1.

Update to this version instead 🚀

greenkeeper bot added a commit that referenced this pull request Oct 5, 2019
@greenkeeper
Copy link
Author

greenkeeper bot commented Oct 5, 2019

  • The devDependency autoprefixer was updated from 7.2.6 to 9.6.2.

Update to this version instead 🚀

greenkeeper bot added a commit that referenced this pull request Oct 5, 2019
@greenkeeper
Copy link
Author

greenkeeper bot commented Oct 5, 2019

  • The devDependency autoprefixer was updated from 7.2.6 to 9.6.3.

Update to this version instead 🚀

greenkeeper bot added a commit that referenced this pull request Oct 5, 2019
@greenkeeper
Copy link
Author

greenkeeper bot commented Oct 5, 2019

  • The devDependency autoprefixer was updated from 7.2.6 to 9.6.4.

Update to this version instead 🚀

greenkeeper bot added a commit that referenced this pull request Oct 14, 2019
@greenkeeper
Copy link
Author

greenkeeper bot commented Oct 14, 2019

  • The devDependency autoprefixer was updated from 7.2.6 to 9.6.5.

Update to this version instead 🚀

greenkeeper bot added a commit that referenced this pull request Oct 24, 2019
@greenkeeper
Copy link
Author

greenkeeper bot commented Oct 24, 2019

  • The devDependency autoprefixer was updated from 7.2.6 to 9.7.0.

Update to this version instead 🚀

greenkeeper bot added a commit that referenced this pull request Nov 1, 2019
@greenkeeper
Copy link
Author

greenkeeper bot commented Nov 1, 2019

  • The devDependency autoprefixer was updated from 7.2.6 to 9.7.1.

Update to this version instead 🚀

greenkeeper bot added a commit that referenced this pull request Nov 19, 2019
@greenkeeper
Copy link
Author

greenkeeper bot commented Nov 19, 2019

  • The devDependency autoprefixer was updated from 7.2.6 to 9.7.2.

Update to this version instead 🚀

greenkeeper bot added a commit that referenced this pull request Nov 30, 2019
@greenkeeper
Copy link
Author

greenkeeper bot commented Nov 30, 2019

  • The devDependency autoprefixer was updated from 7.2.6 to 9.7.3.

Update to this version instead 🚀

greenkeeper bot added a commit that referenced this pull request Jan 16, 2020
@greenkeeper
Copy link
Author

greenkeeper bot commented Jan 16, 2020

  • The devDependency autoprefixer was updated from 7.2.6 to 9.7.4.

Update to this version instead 🚀

greenkeeper bot added a commit that referenced this pull request Mar 24, 2020
@greenkeeper
Copy link
Author

greenkeeper bot commented Mar 24, 2020

  • The devDependency autoprefixer was updated from 7.2.6 to 9.7.5.

Update to this version instead 🚀

greenkeeper bot added a commit that referenced this pull request Apr 6, 2020
@greenkeeper
Copy link
Author

greenkeeper bot commented Apr 6, 2020

  • The devDependency autoprefixer was updated from 7.2.6 to 9.7.6.

Update to this version instead 🚀

greenkeeper bot added a commit that referenced this pull request May 17, 2020
@greenkeeper
Copy link
Author

greenkeeper bot commented May 17, 2020


🚨 Reminder! Less than one month left to migrate your repositories over to Snyk before Greenkeeper says goodbye on June 3rd! 💜 🚚💨 💚

Find out how to migrate to Snyk at greenkeeper.io


  • The devDependency autoprefixer was updated from 7.2.6 to 9.8.0.

Update to this version instead 🚀

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant