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

chore(deps): update dependency autoprefixer to v9.3.1 - autoclosed #84

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 13, 2018

This PR contains the following updates:

Package Type Update Change References
autoprefixer devDependencies minor 9.1.0 -> 9.3.1 source

Release Notes

postcss/autoprefixer

v9.3.1

Compare Source

  • Fix Grid prefixes with repeat() value (by Bogdan Dolin).

v9.3.0

Compare Source

Coat of Arms of Oklahoma

Autoprefixer 9.3 brings place-self support for Grid Layout

place-self

@​Dan503 and @​bogdan0083 found a way to impement support for another Grid property

.grid > .center {
  place-self: center;
}
.grid > .center {
  -ms-grid-row-align: center;
  -ms-grid-column-align: center;
  place-self: center;
}

Other Changes

@​Dan503 and @​bogdan0083 also detected and fixed issue with Grid row/column span inheritance.

v9.2.1

Compare Source

  • Fix broken AST.

v9.2.0

Compare Source

Coat of Arms of Omsk

Autoprefixer 9.2 brings many new improvements for -ms- prefixes for Grid Layout.

New Ways to Enable/Disable Grid Layout

In previous versions, you had needed to pass grid: true to enable prefixes for Grid Layout. But not all users have access to Autoprefixer options. CodePen, Create Reat App or Angular CLI doesn’t allow you to do it.

In Autoprefixer 9.2 @​fanich37 added special control comments:

/* autoprefixer grid: on */
.grid {
    display: grid;
    grid-gap: 33px;
    grid-template:
        "head head  head" 1fr
        "nav  main  main" minmax(100px, 1fr)
        "nav  foot  foot" 2fr /
        1fr   100px 1fr;
}

.non-ie .grid {
    /* autoprefixer grid: off */
    …
}

Autoprefixer doesn’t support Grid properties and values with auto. In 9.2 it will ignore whole @supports content if it contains these Grid properties:

@​supports (grid-auto-rows: 100px) {
    /* Autoprefixer will not show Grid warnings and will not add prefixes here */
}

Smarter grid-area

Autoprefixer supports grid-template even if it was not in IE Grid spec.

But in 9.2 @​bogdan0083 really improve it according to @​Dan503 idea. Now Autoprefixer supports even overriding grid-template.

/* autoprefixer grid: on */
.grid {
    display: grid;
    grid-template:
        "nav  main" minmax(100px, 1fr)
        "nav  foot" 2fr /
        100px 1fr;
}

.grid.no-menu {
    grid-template:
        "main" minmax(100px, 1fr)
        "foot" 2fr
}

Other Changes

v9.1.5

Compare Source

  • Remove @babel/register from dependencies.

v9.1.4

Compare Source

  • Use Babel 7.

v9.1.3

Compare Source

  • Sort properties in autoprefixer --info alphabetically.
  • Fix old Firefox gradient prefix.

v9.1.2

Compare Source

  • Fix autoprefixer --info in new Node.js.

v9.1.1

Compare Source

  • Retain grid-gap through @media (by Bogdan Dolin).
  • Fix grid-template and @media (by Bogdan Dolin).
  • Fix Grid areas searching error (by Bogdan Dolin).
  • Fix span X Grid prefix (by Bogdan Dolin).
  • Fix docs (by Eduard Kyvenko).

Renovate configuration

📅 Schedule: At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

♻️ Rebasing: Whenever PR becomes conflicted, or if you modify the PR title to begin with "rebase!".

🔕 Ignore: Close this PR and you won't be reminded about this update again.


This PR has been generated by Renovate Bot. View repository job log here.

@coveralls
Copy link

coveralls commented Aug 13, 2018

Coverage Status

Coverage increased (+1.5%) to 39.088% when pulling 418b53d on renovate/autoprefixer-9.x into 142e80e on master.

@renovate renovate bot force-pushed the renovate/autoprefixer-9.x branch from be2ce5b to 709c0fd Compare August 19, 2018 19:00
@renovate renovate bot changed the title chore(deps): update dependency autoprefixer to v9.1.1 chore(deps): update dependency autoprefixer to v9.1.2 Aug 19, 2018
@renovate renovate bot force-pushed the renovate/autoprefixer-9.x branch from 709c0fd to 515ecf6 Compare August 22, 2018 07:55
@renovate renovate bot changed the title chore(deps): update dependency autoprefixer to v9.1.2 chore(deps): update dependency autoprefixer to v9.1.3 Aug 22, 2018
@renovate renovate bot changed the title chore(deps): update dependency autoprefixer to v9.1.3 chore(deps): update dependency autoprefixer to v9.1.4 Sep 4, 2018
@renovate renovate bot force-pushed the renovate/autoprefixer-9.x branch from 515ecf6 to 0176ac3 Compare September 4, 2018 07:06
@renovate renovate bot changed the title chore(deps): update dependency autoprefixer to v9.1.4 chore(deps): update dependency autoprefixer to v9.1.5 Sep 4, 2018
@renovate renovate bot force-pushed the renovate/autoprefixer-9.x branch from 0176ac3 to 9381b63 Compare September 4, 2018 11:20
@renovate renovate bot changed the title chore(deps): update dependency autoprefixer to v9.1.5 chore(deps): update dependency autoprefixer to v9.2.0 Oct 14, 2018
@renovate renovate bot force-pushed the renovate/autoprefixer-9.x branch 2 times, most recently from 903476e to 40adf17 Compare October 17, 2018 04:51
@renovate renovate bot changed the title chore(deps): update dependency autoprefixer to v9.2.0 chore(deps): update dependency autoprefixer to v9.2.1 Oct 17, 2018
@renovate renovate bot changed the title chore(deps): update dependency autoprefixer to v9.2.1 chore(deps): update dependency autoprefixer to v9.3.1 Oct 24, 2018
@renovate renovate bot force-pushed the renovate/autoprefixer-9.x branch from 40adf17 to 418b53d Compare October 24, 2018 13:14
@renovate renovate bot changed the title chore(deps): update dependency autoprefixer to v9.3.1 chore(deps): update dependency autoprefixer to v9.3.1 - autoclosed Nov 12, 2018
@renovate renovate bot closed this Nov 12, 2018
@renovate renovate bot deleted the renovate/autoprefixer-9.x branch November 12, 2018 09:11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants