Skip to content

Conversation

@ghost
Copy link

@ghost ghost commented Apr 18, 2018

Overview

The following dependencies have been updated by dependencies.io:

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

Details

yarn.lock

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

The following 5 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

webpack was updated from 4.5.0 to 4.6.0

4.6.0

Features

  • improve stats output alignment
  • improve stats text output when all exports are used
  • add webpackPrefetch/webpackPreload magic comments to import()
  • add stats.entrypoints[].children and stats.entrypoints[].childAssets to stats json
  • add prefetched/preloaded chunks and assets to stats text output
  • Performance improvements

Bugfixes

  • Escape chunk ids for target: "webworker"
  • fix this to undefined ESM replacement in function default values
  • new require(...) is weird, but now behaves like in node.js
  • fix behavior of export * from "commonjs" with partial override
  • fixed build time output in current locale in stats text output
  • fixed ChunkModuleIdRangePlugin and add tests
  • avoid race condition when using the loadModule loader API
  • fix default value of output.globalObject in target: "node-webkit"
  • fix a bug with loadModules and dependencies in these modules
  • fix hot.accept parser plugin to allow defined values as argument
  • print unknown size when size is unknown
  • fix a bug where some chunks were missing in the "single" runtime chunk
  • fix cloning of optimization configuration

Internal changes

  • Set up infrastructure for linting typings with TypeScript

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

ghost commented Apr 19, 2018

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

@ghost ghost deleted the deps/update-8b8eb99e branch April 19, 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