Skip to content
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

Bump autoprefixer from 7.1.6 to 8.5.0 #684

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

dependabot-preview[bot]
Copy link

Bumps autoprefixer from 7.1.6 to 8.5.0.

Release notes

Sourced from autoprefixer's releases.

8.5 “Muito Nobre e Sempre Leal”


Coat of arms of Lisbon

Autoprefixer 8.5 brings grid-gap support and fix radial-gradient.

Grid Gap

evgeny-petukhov continues his amazing work of adding CSS Grid Layout support to Autoprefixer.

Now he brought grid-gap. It is amazing work since IE 11 has gaps support in -ms- grids.

To add grid-gap support for IE 11 Autoprefixer adds addition grid cells. Unfortunately, it will work only if you have grid-template in the same rule with grid-gap. We had big discussion with a community about these limits.

.page {
    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;
}

Set postcss-gap-properties before Autoprefixer if you want to use new gap property.

Radial Gradients

Old 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 circle closest-corner. We fixed it after BaliBalo report.

.mask {
    -webkit-mask-image: -webkit-radial-gradient(100% 50%, circle closest-corner, black, white);
            mask-image: radial-gradient(circle closest-corner at 100% 50%, black, white);
}

8.4.1

  • Fix working in old PostCSS versions (by Diablohu).

8.4 “Non in aves, sed in angues”

Bludor family coat of arms

Autoprefixer 8.4 brings new control comment to ignore next line.

... (truncated)
Changelog

Sourced from autoprefixer's changelog.

Change Log

This project adheres to Semantic Versioning.

8.5 “Muito Nobre e Sempre Leal”

  • Add grid-gap support (by Evgeny Petukhov).
  • Fix radial gradients direction fix.
  • Fix docs (by Phani Kandula and Huáng Jùnliàng).

8.4.1

  • Fix working in old PostCSS versions (by Diablohu).

8.4 “Non in aves, sed in angues”

  • Add /* autoprefixer: ignore next */ control comment (by Pavel Vostrikov).

8.3 “Benigno Numine”

  • Add [**media**](https://github.com/media) support to grid-template (by Evgeny Petukhov).
  • Fix radial-gradient direction warning (by Gustavo Real).

8.2 “Ad Astra per Aspera”

  • Add color-adjust (by Sergey Lysenko, Stanislav Botev, and Yuriy Alekseyev).

8.1 “Rex, Familia et Ultio”

  • Add overscroll-behavior support.
  • Add grid-template shortcut support (by Evgeny Petukhov).
  • Add better grid-column-end and grid-row-end support (by Evgeny Petukhov).
  • Fix Grid properties support in [**supports**](https://github.com/supports).

8.0 “Excelsior”

  • Use Browserslist 3.0.
  • Rename autoprefixer-info CLI tool to autoprefixer --info.
  • Remove break-* to page-break-* conversion for Firefox.

7.2.6

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

7.2.5

  • Fix multiple prefixes in declaration value.

7.2.4

  • Fix IE 10 support.

7.2.3

  • Fix grid-template-areas in [**media**](https://github.com/media) (by Evgeny Petukhov).

7.2.2

  • Fix _autoprefixerDisabled is undefined issue.

7.2.1

  • Fix IE and other old JS runtimes support.
... (truncated)
Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot ignore this [patch|minor|major] version will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
  • @dependabot use (this|these) label[s] will set the current labels as the default for future PRs for this repo and language
  • @dependabot use (this|these) reviewer[s] will set the current reviewers as the default for future PRs for this repo and language
  • @dependabot use (this|these) assignee[s] will set the current assignees as the default for future PRs for this repo and language

Additionally, you can set the following in your Dependabot dashboard:

  • Update frequency (including time of day and day of week)
  • Automerge options (never/patch/minor, and dev/runtime dependencies)
  • Out-of-range updates (receive only lockfile updates, if desired)
  • Security updates (receive only security updates, if desired)

Finally, you can contact us by mentioning @dependabot.

Bumps [autoprefixer](https://github.com/postcss/autoprefixer) from 7.1.6 to 8.5.0.
- [Release notes](https://github.com/postcss/autoprefixer/releases)
- [Changelog](https://github.com/postcss/autoprefixer/blob/master/CHANGELOG.md)
- [Commits](postcss/autoprefixer@7.1.6...8.5.0)

Signed-off-by: dependabot[bot] <support@dependabot.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant