Skip to content

Conversation

ghost
Copy link

@ghost ghost commented Apr 17, 2018

Overview

The following dependencies have been updated by dependencies.io:

  • yarn.lock was updated (including 4 updated direct dependencies)

Details

yarn.lock

24 transitive dependencies were updated, 0 were added, and 0 removed. View the git diff for more details about exactly what changed.

The following 4 direct dependencies were updated:

autoprefixer was updated from 8.2.0 to 8.3.0

8.3.0 Seal of the City of Pittsburgh

Autoprefixer 8.3 adds @media support for grid-template and fixes gradient direction warning.

Media and Grid Layout

evgeny-petukhov continues his great work for Grid Layout support in Autoprefixer.

Now he improved @media support. Now this CSS will work in IE:

body {
    grid-template:
        [header-left] "head head" 30px [header-right]
        [main-left]   "nav  main" 1fr  [main-right]
        [footer-left] "nav  foot" 30px [footer-right]
        / 120px repeat(4, 250px 10px);
}

header {
    grid-area: head;
}

main {
    grid-area: main;
}

footer {
    grid-area: footer;
}

media (min-width: 1000px) {
    body {
        grid-template:
            [header-left] "head" 30px [header-right]
            [main-left]   "main" 1fr  [main-right]
            [footer-left] "footer" 30px [footer-right]
            / 1fr;
    }
}

Don’t forget that Autoprefixer inserts Grid Layout prefixes only if you set grid: true option.

Gradient Warning

radium-v found that Autoprefixer show warning even if cover is outside of radial-gradient.

a {
    background: radial-gradient(#fff, transparent) 0 0 / cover no-repeat #f0f;
}

kotfire improve old direction detection and fix this issue.

postcss-loader was updated from 2.1.3 to 2.1.4

We didn't find any content for 2.1.4. Feel free to open an issue at https://github.com/dependencies-io/support to suggest any improvements.

react was updated from 16.3.1 to 16.3.2

16.3.2

React

  • Improve the error message when passing null or undefined to React.cloneElement. (nicolevy in #12534)

React DOM

  • Fix an IE crash in development when using <StrictMode>. (bvaughn in #12546)
  • Fix labels in User Timing measurements for new component types. (bvaughn in #12609)
  • Improve the warning about wrong component type casing. (nicolevy in #12533)
  • Improve general performance in development mode. (gaearon in #12537)
  • Improve performance of the experimental unstable_observedBits API with nesting. (gaearon in #12543)

React Test Renderer

react-dom was updated from 16.3.1 to 16.3.2

16.3.2

React

  • Improve the error message when passing null or undefined to React.cloneElement. (nicolevy in #12534)

React DOM

  • Fix an IE crash in development when using <StrictMode>. (bvaughn in #12546)
  • Fix labels in User Timing measurements for new component types. (bvaughn in #12609)
  • Improve the warning about wrong component type casing. (nicolevy in #12533)
  • Improve general performance in development mode. (gaearon in #12537)
  • Improve performance of the experimental unstable_observedBits API with nesting. (gaearon in #12543)

React Test Renderer

@ghost ghost added the dependencies label Apr 17, 2018
@ghost ghost mentioned this pull request Apr 17, 2018
@ghost ghost closed this Apr 18, 2018
@ghost
Copy link
Author

ghost commented Apr 18, 2018

This PR has been automatically closed in favor of #62.

@ghost ghost deleted the deps/update-fc495588 branch April 18, 2018 16:10
This pull request was closed.
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.

1 participant