Skip to content
This repository was archived by the owner on Oct 12, 2018. It is now read-only.

Update dependency autoprefixer to v7.2.6#4

Merged
m1guelpf merged 1 commit intomasterfrom
renovate/autoprefixer-7.x
Mar 6, 2018
Merged

Update dependency autoprefixer to v7.2.6#4
m1guelpf merged 1 commit intomasterfrom
renovate/autoprefixer-7.x

Conversation

@renovate
Copy link
Copy Markdown

@renovate renovate Bot commented Mar 6, 2018

This Pull Request updates dependency autoprefixer from v7.1.6 to v7.2.6

Release Notes

v7.2.0

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: 30px auto 30px;
  grid-template-columns: 1fr 3fr;
  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).

v7.2.1

  • Fix IE and other old JS runtimes support.

v7.2.2

  • Fix _autoprefixerDisabled is undefined issue.

v7.2.3

  • Fix grid-template-areas in @media (by Evgeny Petukhov).

v7.2.4

  • Fix IE 10 support.

v7.2.5

  • Fix multiple prefixes in declaration value.

v7.2.6

  • Fix -ms- prefix for grid cells with same grid-area (by Evgeny Petukhov).

Commits

v7.2.0

  • 5857d6a Provide a default file path for info() output (#932)
  • aa55b76 Add Node.js 8 to Travis CI
  • 4effadc Update dependencies
  • 178547b Clean up code
  • 9a523b5 Do not prefix modern animation-direction values
  • 1d3ef1c Add partial grid-area support, improve grid-row and grid-column support (#938)
  • 713a019 Clean up code
  • 1f3bae6 Update dependencies
  • 84f1f0f Add code coverage, tests of initializing and remove not used code (#928)
  • 903102e Add support for grid-template shorthand
  • ac2eb81 Merge branch 'master' into master
  • 7c5ec6d Clean up grid hacks
  • 36f44e8 Update dependencies
  • 0d33752 Use ESLint CI instead of ESLint
  • eb11f02 Add warnings for old radial syntax
  • d5801a6 Improve test coverage
  • 83de1e8 Remove unsupported Grid warning
  • 1cb2b6b Add autoprefixer-info CLI tool
  • 01c5385 Copy bin scripts to build directory
  • 7d22d1f Update Size Limit
  • 79b48cf Add missing semicolons (#946)
  • 8eb8403 Update dependencies
  • f460f38 Fix Jest warning
  • 08a0db0 Add grid-template-areas support (#948)
  • 151f84f Clean up code
  • c3ef200 Fix grid-template-areas warning
  • 842b392 Release 7.2 version

v7.2.1

v7.2.2

  • 462f05c Reduce size & make animation check a little faster (#949)
  • 0072163 Fix strange issue by stacktrace
  • 93e12e8 Update dependencies
  • fe8ec43 Fix Size Limit warning
  • c8a69e2 Release 7.2.2 version

v7.2.3

v7.2.4

  • 9c52095 More clear disabling docs
  • fe3c73d Add IE 10 support to build
  • 67c1008 Remove unnecessary dependency
  • 868c765 Update dependencies
  • 555f957 Update AUTHORS
  • b37588f Use Jest 22
  • 2b4a829 Remove unnecessary browserlist config from package.json
  • f75818a Delete development sections from build package.json
  • 3e47707 Fix for IE 9/10 in class which use extends (#963)
  • b3e6129 Update PostCSS
  • 588f910 Update Browserslist
  • d641594 Release 7.2.4 version

v7.2.5

v7.2.6

  • 5d94aec Add missing space in `autoprefixer -info` CLI docs (#978)
  • 312dfff Don't require sub-files in postcss (#981)
  • 15a54ab Fix Browserslist config name
  • aaecf3b [grid-template-areas] Repetitive grid-area declarations (#983)
  • ba05148 Update dependencies
  • e1feb33 Release 7.2.6 version

This PR has been generated by Renovate Bot.

@m1guelpf m1guelpf merged commit 9bf3d93 into master Mar 6, 2018
@m1guelpf m1guelpf deleted the renovate/autoprefixer-7.x branch March 6, 2018 20:39
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

CSS-Grid wrong ms prop values w/ media queries

2 participants