Travix-International / travix-ui-kit

[DEPRECATED] Travix UI Components' repository.
https://travix-international.github.io/travix-ui-kit/
MIT License
8 stars 10 forks source link

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

Open greenkeeper[bot] opened 7 years ago

greenkeeper[bot] commented 7 years ago

Version 7.1.6 of autoprefixer was just published.

Branch Build failing 🚨
Dependency autoprefixer
Current Version 7.1.5
Type devDependency

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

autoprefixer is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details - ❌ **continuous-integration/travis-ci/push** The Travis CI build failed [Details](https://travis-ci.org/Travix-International/travix-ui-kit/builds/290970933?utm_source=github_status&utm_medium=notification)

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.
FAQ and help There is a collection of [frequently asked questions](https://greenkeeper.io/faq.html). If those don’t help, you can always [ask the humans behind Greenkeeper](https://github.com/greenkeeperio/greenkeeper/issues/new).

Your Greenkeeper Bot :palm_tree:

greenkeeper[bot] commented 7 years ago

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

greenkeeper[bot] commented 6 years ago

Version 7.2.0 just got published.

Your tests are passing again with this version. Explicitly upgrade to this version 🚀

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 passing again with this version. Explicitly upgrade to this version 🚀

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 passing again with this version. Explicitly upgrade to this version 🚀

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 passing again with this version. Explicitly upgrade to this version 🚀

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 passing again with this version. Explicitly upgrade to this version 🚀

Release Notes 7.2.5
  • Fix multiple prefixes in declaration value.