angular-material-extensions / calendar

Angular responsive calendar built with material design for desktop and mobile
MIT License
21 stars 5 forks source link

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

Open greenkeeper[bot] opened 5 years ago

greenkeeper[bot] commented 5 years ago

The devDependency autoprefixer was updated from 9.3.1 to 9.4.0.

🚨 View failing branch.

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 could not complete due to an error ([Details](https://travis-ci.org/angular-material-extensions/calendar/builds/462683775?utm_source=github_status&utm_medium=notification)).

Release Notes for 9.4 “Advance Australia”

Coat of Arms of Australia

Autoprefixer 9.4.0 brings limited autoplacement support to the IE CSS Grid.

Grid Autoplacement

If the grid option is set to "autoplace", limited autoplacement support is now added to the Autoprefixer CSS Grid translations. You can also use the /* autoprefixer grid: autoplace */ control comment to enable autoplacement directly in your CSS.

In order to use the new autoplacement feature, you must define both rows and columns when declaring the grid template.

/* Input CSS */

/* autoprefixer grid: autoplace */

.autoplacement-example {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    grid-gap: 20px;
}
/* Output CSS */

/* autoprefixer grid: autoplace */

.autoplacement-example {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto 20px auto;
  grid-template-rows: auto auto;
  grid-gap: 20px;
}

.autoplacement-example > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.autoplacement-example > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}

.autoplacement-example > *:nth-child(3) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}

.autoplacement-example > *:nth-child(4) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}

Autoplacement support in Autoprefixer is currently very limited in what it can do. Please read the Grid Autoplacement support in IE section before using this new feature.

Thanks to @bogdan0083 for implementing the new feature, @Dan503 for documenting it, and @evandiamond for coming up with the initial idea.

Other Changes

  • Remove some unnecessary warnings for Grid (by @fanich37).
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 5 years ago

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

greenkeeper[bot] commented 5 years ago

Your tests are still failing with this version. Compare changes

greenkeeper[bot] commented 5 years ago

Your tests are still failing with this version. Compare changes

Release Notes for 9.4.2
  • Fix Grid autoplacement warning.
greenkeeper[bot] commented 5 years ago

Your tests are still failing with this version. Compare changes

Release Notes for 9.4.3
  • Add warning to force flex-start instead of start (by @aduh95).
  • Fix docs (by @coliff).
greenkeeper[bot] commented 5 years ago

Your tests are still failing with this version. Compare changes

Release Notes for 9.4.4
  • Use direction value for -ms-writing-mode (by @webschik).
  • Fix warning text (by @zzzzBov).
greenkeeper[bot] commented 5 years ago

Your tests are still failing with this version. Compare changes

Release Notes for 9.4.5
  • Fix text-decoration-skip-ink support.
greenkeeper[bot] commented 5 years ago

Your tests are still failing with this version. Compare changes

Release Notes for 9.4.8
  • Fix calc() support in Grid gap.
greenkeeper[bot] commented 5 years ago

Your tests are still failing with this version. Compare changes

Release Notes for 9.4.9
greenkeeper[bot] commented 5 years ago

Your tests are still failing with this version. Compare changes

Release Notes for 9.4.10
  • Add warning for named Grid rows.
greenkeeper[bot] commented 5 years ago

Your tests are still failing with this version. Compare changes

Release Notes for 9.5 “Draco dormiens nunquam titillandus”

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.

greenkeeper[bot] commented 5 years ago

Your tests are still failing with this version. Compare changes

Release Notes for 9.5.1
  • Fix backdrop-filter for Edge (by @AleshaOleg).
  • Fix min-resolution media query support in Firefox < 16.
greenkeeper[bot] commented 5 years ago

Your tests are still failing with this version. Compare changes

greenkeeper[bot] commented 4 years ago

Your tests are still failing with this version. Compare changes

greenkeeper[bot] commented 4 years ago

Your tests are still failing with this version. Compare changes

greenkeeper[bot] commented 4 years ago

Your tests are still failing with this version. Compare changes

greenkeeper[bot] commented 4 years ago

Your tests are still failing with this version. Compare changes

Release Notes for 9.6.5
greenkeeper[bot] commented 4 years ago

Your tests are still failing with this version. Compare changes

greenkeeper[bot] commented 4 years ago

Your tests are still failing with this version. Compare changes

greenkeeper[bot] commented 4 years ago

Your tests are still failing with this version. Compare changes

Release Notes for 9.7.2
  • Add -ms-user-select: element support.
  • Add funding link for npm fund.
greenkeeper[bot] commented 4 years ago

Your tests are still failing with this version. Compare changes

Release Notes for 9.7.3
  • Fix compatibility with PostCSS Modules.
greenkeeper[bot] commented 4 years ago

Your tests are still failing with this version. Compare changes

Release Notes for 9.7.4
greenkeeper[bot] commented 4 years ago

Your tests are still failing with this version. Compare changes

Release Notes for 9.7.5
  • Fix -webkit-stretch support.