CAAPIM / webpack-config

Extensible configuration for Webpack projects at CA
MIT License
0 stars 5 forks source link

An in-range update of autoprefixer is breaking the build 🚨 #78

Open greenkeeper[bot] opened 7 years ago

greenkeeper[bot] commented 7 years ago

Version 7.1.3 of autoprefixer just got published.

Branch Build failing 🚨
Dependency autoprefixer
Current Version 7.1.2
Type dependency

This version is covered by your current version range and after updating it in your project the build failed.

autoprefixer is a direct dependency of this project this is very likely breaking your project right now. If other packages depend on you it’s very likely also breaking them. I recommend you give this issue a very high priority. I’m sure you can resolve this :muscle:

Status Details - ❌ **continuous-integration/travis-ci/push** The Travis CI build failed [Details](https://travis-ci.org/CAAPIM/webpack-config/builds/269067897?utm_source=github_status&utm_medium=notification)

Not sure how things should work exactly? There is a collection of [frequently asked questions](https://greenkeeper.io/faq.html) and of course you may always [ask my humans](https://github.com/greenkeeperio/greenkeeper/issues/new).

Your Greenkeeper Bot :palm_tree:

greenkeeper[bot] commented 7 years ago

After pinning to 7.1.2 your tests are still failing. The reported issue might not affect your project. These imprecisions are caused by inconsistent test results.

greenkeeper[bot] commented 7 years ago

Version 7.1.4 just got published.

Your tests are still failing with this version. Compare the changes 🚨

greenkeeper[bot] commented 7 years ago

Version 7.1.5 just got published.

Your tests are still failing with this version. Compare the changes 🚨

Release Notes 7.1.5
  • Fix ::placeholder prefix for Edge.
  • Fix inherit/initial/unset values for flex-direction.
  • Fix RegExp usage in gradients (by @YetAnotherMinion).
greenkeeper[bot] commented 7 years ago

Version 7.1.6 just got published.

Your tests are still failing with this version. Compare the changes 🚨

Release Notes 7.1.6
  • Add warning for using browserslist option instead of browsers.
  • Add warning for multiple control comments in the same scope.
  • Fix Invalid array length error during indent changes.
greenkeeper[bot] commented 6 years ago

Version 7.2.0 just got published.

Your tests are still failing with this version. Compare the changes 🚨

Release Notes 7.2 “Ordem e Progresso”

Coat of arms of Brazil

Autoprefixer 7.2 brings better Grid support for IE
and autoprefixer-info CLI tool.

Grid Layout

With grid: true option Autoprefixer adds -ms- prefixes to Grid Layout properties. But this feature was very limited.

In 7.0 we dramatically improved Grid support for IE. @Alex7Kom added grid-area and improved grid-row and grid-column support. @evgeny-petukhov added grid-template-areas and grid-template support.

Even this complex emoji example will work with new Autoprefixer (output):

body {
    display: grid;
    grid-template-rows: auto 300px;
    grid-template-columns: 3fr 1fr;
    grid-template-areas: "🎩 🎩"
                         "🍔 📰"
                         "👞 👞";
}
header {
    grid-area: 🎩;
}
nav {
    grid-area: 🍔;
}
main {
    grid-area: 📰;
}
footer {
    grid-area: 👞;
}

Just don’t forget to set grid: true option:

auoprefixer({ grid: true })

Info CLI Tool

Autoprefixer 7.2 ships with new CLI tool to check which browsers are selected and which properties will be prefixed.

Just go to your project directory and run npx autoprefixer-info:

Browsers:
  Edge: 16

These browsers account for 0.04% of all users globally

At-Rules:
  @viewport: ms

Selectors:
  ::placeholder: ms

Properties:
  user-select: ms
  hyphens: ms
  appearance: webkit
  scroll-snap-type: ms
  scroll-snap-coordinate: ms
  scroll-snap-destination: ms
  scroll-snap-points-x: ms
  scroll-snap-points-y: ms
  flow-into: ms
  flow-from: ms
  region-fragment: ms
  text-spacing: ms

Also, @pdokas added default value (current working dir) for from option in autoprefixer.info().

Other Changes

  • Add wrong radial-gradient properties warning.
  • Do not prefix reverse animation direction.
  • Improve test coverage (by @Semigradsky).
greenkeeper[bot] commented 6 years ago

Version 7.2.1 just got published.

Your tests are still failing with this version. Compare the changes 🚨

Release Notes 7.2.1
  • Fix IE and other old JS runtimes support.
greenkeeper[bot] commented 6 years ago

Version 7.2.2 just got published.

Your tests are still failing with this version. Compare the changes 🚨

Release Notes 7.2.2
  • Fix _autoprefixerDisabled is undefined issue.
greenkeeper[bot] commented 6 years ago

Version 7.2.3 just got published.

Your tests are still failing with this version. Compare the changes 🚨

Release Notes 7.2.3
greenkeeper[bot] commented 6 years ago

Version 7.2.4 just got published.

Your tests are still failing with this version. Compare the changes 🚨

Release Notes 7.2.4

Fix IE 10 support

greenkeeper[bot] commented 6 years ago

Version 7.2.5 just got published.

Your tests are still failing with this version. Compare the changes 🚨

Release Notes 7.2.5
  • Fix multiple prefixes in declaration value.