-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update autoprefixer to the latest version 🚀 #339
base: master
Are you sure you want to change the base?
Conversation
Version 8.1.0 just got published.Update to this version instead 🚀 Release Notes8.1 “Rex, Familia et Ultio”Autoprefixer 8.1 brings Overscroll Behavior@Malvoz suggested the great idea to polyfill .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 Better Grid Layout@evgeny-petukhov continues his amazing work and now Autoprefixer polyfills Grid Layout for IE in more cases. He added Grid properties were fixed in
Note, that you need |
Version 8.2.0 just got published.Update to this version instead 🚀 Release Notes8.2 “Ad Astra per Aspera”Autoprefixer 8.2 brings @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; } |
Version 8.3.0 just got published.Update to this version instead 🚀 Release Notes8.3 “Benigno Numine”Autoprefixer 8.3 adds Media and Grid Layout@evgeny-petukhov continues his great work for Grid Layout support in Autoprefixer. Now he improved 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); } Don’t forget that Autoprefixer inserts Grid Layout prefixes only if you set Gradient Warning@radium-v found that Autoprefixer show warning even if a { background: radial-gradient(#fff, transparent) 0 0 / cover no-repeat #f0f; } @kotfire improve old direction detection and fix this issue. |
Version 8.4.0 just got published.Update to this version instead 🚀 Release Notes8.4 “Non in aves, sed in angues”Autoprefixer 8.4 brings new control comment to ignore next line. @vostrik implemented the @levin-du’s idea of having control comment to disable only next property/rule: .logo { /* autoprefixer: ignore next */ user-select: none; /* ← ignored */ mask: url(mask.jpg); /* ← will be prefixed */ } |
Version 8.4.1 just got published.Update to this version instead 🚀 Release Notes8.4.1
|
Version 8.5.0 just got published.Update to this version instead 🚀 Release Notes8.5 “Muito Nobre e Sempre Leal”Autoprefixer 8.5 brings Grid Gap@evgeny-petukhov continues his amazing work of adding CSS Grid Layout support to Autoprefixer. Now he bringed To add .a-shortcut { 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; } Radial GradientsOld 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 .mask { -webkit-mask-image: -webkit-radial-gradient(100% 50%, circle closest-corner, #000, transparent); mask-image: radial-gradient(circle closest-corner at 100% 50%, #000, transparent); } |
Version 8.5.1 just got published.Update to this version instead 🚀 Release Notes8.5.1
|
Version 8.6.0 just got published.Update to this version instead 🚀 Release Notes8.6 “Follow Reason”Autoprefixer 8.6 brings Grid GapCSSWG renamed @yepninja added Grid layout code bellow will work even in IE if you pass .main { gap: 10px 20px; grid-template-columns: 1fr 1fr 1fr; grid-template-areas: "head head head" "nav main main" "nav foot foot"; } Other Changes
|
Version 8.6.1 just got published.Update to this version instead 🚀 Release Notes8.6.1
|
Version 8.6.2 just got published.Update to this version instead 🚀 Release Notes8.6.2
|
Version 8.6.3 just got published.Update to this version instead 🚀 Release Notes8.6.3
|
Version 8.6.4 just got published.Update to this version instead 🚀 Release Notes8.6.4
|
Version 8.6.5 just got published.Update to this version instead 🚀 Release Notes8.6.5
|
Version 9.0.0 just got published.Update to this version instead 🚀 Release Notes9.0 “A Mari Usque Ad Mare”Autoprefixer 9.0 brings Browserslist 4.0 and drops Node.js 4 support. Breaking ChangesWe 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:
Autoprefixer Rails 9.0 dropped the RubyRacer and Sprockets 3 support. Browserslist 4.0Autoprefixer 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.0Autoprefixer 9.0 uses PostCSS 7.0 |
Version 9.0.1 just got published.Update to this version instead 🚀 Release Notes9.0.1
|
Version 9.0.2 just got published.Update to this version instead 🚀 Release Notes9.0.2
|
Version 9.1.0 just got published.Update to this version instead 🚀 Release Notes9.1 “Equality before the law”Autoprefixer 9.1 brings Background Clip
.title { background: linear-gradient(yellow, red); -webkit-background-clip: text; background-clip: text; } Note, that Edge expect Grid Layout Fix@bogdan0083 fixed an issue when media-query override some |
Version 9.1.1 just got published.Update to this version instead 🚀 Release Notes9.1.1
|
Version 9.1.2 just got published.Update to this version instead 🚀 Release Notes9.1.2
|
Version 9.1.4 just got published.Update to this version instead 🚀 Release Notes9.1.4
|
Version 9.1.5 just got published.Update to this version instead 🚀 Release Notes9.1.5
|
Version 8.0.0 of autoprefixer was just published.
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 🌴