dalen / puppetexplorer

Puppet web interface written in CoffeeScript using AngularJS
demo.puppetexplorer.io
Other
412 stars 43 forks source link

Bump react from 16.5.2 to 16.6.3 #544

Closed dependabot-preview[bot] closed 5 years ago

dependabot-preview[bot] commented 5 years ago

Bumps react from 16.5.2 to 16.6.3.

Release notes *Sourced from [react's releases](https://github.com/facebook/react/releases).* > ## v16.6.3 > ## 16.6.3 (November 12, 2018) > > ### React DOM > > * Fix bugs in `Suspense` and `lazy`. ([[**acdlite**](https://github.com/acdlite)](https://github.com/acdlite) in [#14133](https://github-redirect.dependabot.com/facebook/react/pull/14133), [#14157](https://github-redirect.dependabot.com/facebook/react/pull/14157), and [#14164](https://github-redirect.dependabot.com/facebook/react/pull/14164)) > * Fix highlighting of `React.memo` updates in React DevTools. ([[**bvaughn**](https://github.com/bvaughn)](https://github.com/bvaughn) in [#14141](https://github-redirect.dependabot.com/facebook/react/pull/14141)) > * Fix interaction of Suspense with the React Profiler. ([[**bvaughn**](https://github.com/bvaughn)](https://github.com/bvaughn) in [#14065](https://github-redirect.dependabot.com/facebook/react/pull/14065)) > * Fix a false positive warning when using Suspense. ([[**acdlite**](https://github.com/acdlite)](https://github.com/acdlite) in [#14158](https://github-redirect.dependabot.com/facebook/react/pull/14158)) > > ### React DOM Server > > * Fix incorrect sharing of context state between `renderToNodeStream()` calls. ([[**sebmarkbage**](https://github.com/sebmarkbage)](https://github.com/sebmarkbage) in [#14182](https://github-redirect.dependabot.com/facebook/react/pull/14182)) > * Add a warning about incorrect usage of the context API. ([[**trueadm**](https://github.com/trueadm)](https://github.com/trueadm) in [#14033](https://github-redirect.dependabot.com/facebook/react/pull/14033)) > > ## v16.6.1 > ## 16.6.1 (November 6, 2018) > > ### React DOM > > * Fallback should not remount every time a promise resolves. ([[**acdlite**](https://github.com/acdlite)](https://github.com/acdlite) in [#14083](https://github-redirect.dependabot.com/facebook/react/pull/14083)) > * Fix bug where Suspense keeps showing fallback even after everything finishes loading. ([[**acdlite**](https://github.com/acdlite)](https://github.com/acdlite) in [#14083](https://github-redirect.dependabot.com/facebook/react/pull/14083)) > * Fix unresolved default props in lifecycle methods of a lazy component. ([[**gaearon**](https://github.com/gaearon)](https://github.com/gaearon) in [#14112](https://github-redirect.dependabot.com/facebook/react/pull/14112)) > * Fix bug when recovering from an error thrown during complete phase. ([[**gaearon**](https://github.com/gaearon)](https://github.com/gaearon) in [#14104](https://github-redirect.dependabot.com/facebook/react/pull/14104)) > > ### Scheduler (Experimental) > > * Switch from deadline object to `shouldYield` API. ([[**acdlite**](https://github.com/acdlite)](https://github.com/acdlite) in [#14025](https://github-redirect.dependabot.com/facebook/react/pull/14025)) > > ## v16.6.0 > ## 16.6.0 (October 23, 2018) > > ### React > > * Add `React.memo()` as an alternative to `PureComponent` for functions. ([[**acdlite**](https://github.com/acdlite)](https://github.com/acdlite) in [#13748](https://github-redirect.dependabot.com/facebook/react/pull/13748)) > * Add `React.lazy()` for code splitting components. ([[**acdlite**](https://github.com/acdlite)](https://github.com/acdlite) in [#13885](https://github-redirect.dependabot.com/facebook/react/pull/13885)) > * `React.StrictMode` now warns about legacy context API. ([[**bvaughn**](https://github.com/bvaughn)](https://github.com/bvaughn) in [#13760](https://github-redirect.dependabot.com/facebook/react/pull/13760)) > * `React.StrictMode` now warns about `findDOMNode`. ([[**sebmarkbage**](https://github.com/sebmarkbage)](https://github.com/sebmarkbage) in [#13841](https://github-redirect.dependabot.com/facebook/react/pull/13841)) > * Rename `unstable_AsyncMode` to `unstable_ConcurrentMode`. ([[**trueadm**](https://github.com/trueadm)](https://github.com/trueadm) in [#13732](https://github-redirect.dependabot.com/facebook/react/pull/13732)) > * Rename `unstable_Placeholder` to `Suspense`, and `delayMs` to `maxDuration`. ([[**gaearon**](https://github.com/gaearon)](https://github.com/gaearon) in [#13799](https://github-redirect.dependabot.com/facebook/react/pull/13799) and [[**sebmarkbage**](https://github.com/sebmarkbage)](https://github.com/sebmarkbage) in [#13922](https://github-redirect.dependabot.com/facebook/react/pull/13922)) > > ### React DOM > > * Add `contextType` as a more ergonomic way to subscribe to context from a class. ([[**bvaughn**](https://github.com/bvaughn)](https://github.com/bvaughn) in [#13728](https://github-redirect.dependabot.com/facebook/react/pull/13728)) > * Add `getDerivedStateFromError` lifecycle method for catching errors in a future asynchronous server-side renderer. ([[**bvaughn**](https://github.com/bvaughn)](https://github.com/bvaughn) in [#13746](https://github-redirect.dependabot.com/facebook/react/pull/13746)) > * Warn when `` is used instead of ``. ([[**trueadm**](https://github.com/trueadm)](https://github.com/trueadm) in [#13829](https://github-redirect.dependabot.com/facebook/react/pull/13829)) > * Fix gray overlay on iOS Safari. ([[**philipp-spiess**](https://github.com/philipp-spiess)](https://github.com/philipp-spiess) in [#13778](https://github-redirect.dependabot.com/facebook/react/pull/13778)) > * Fix a bug caused by overwriting `window.event` in development. ([[**sergei-startsev**](https://github.com/sergei-startsev)](https://github.com/sergei-startsev) in [#13697](https://github-redirect.dependabot.com/facebook/react/pull/13697)) > > ### React DOM Server > ... (truncated)
Changelog *Sourced from [react's changelog](https://github.com/facebook/react/blob/master/CHANGELOG.md).* > ## 16.6.3 (November 12, 2018) > > ### React DOM > > * Fix bugs in `Suspense` and `lazy`. ([[**acdlite**](https://github.com/acdlite)](https://github.com/acdlite) in [#14133](https://github-redirect.dependabot.com/facebook/react/pull/14133), [#14157](https://github-redirect.dependabot.com/facebook/react/pull/14157), and [#14164](https://github-redirect.dependabot.com/facebook/react/pull/14164)) > * Fix highlighting of `React.memo` updates in React DevTools. ([[**bvaughn**](https://github.com/bvaughn)](https://github.com/bvaughn) in [#14141](https://github-redirect.dependabot.com/facebook/react/pull/14141)) > * Fix interaction of Suspense with the React Profiler. ([[**bvaughn**](https://github.com/bvaughn)](https://github.com/bvaughn) in [#14065](https://github-redirect.dependabot.com/facebook/react/pull/14065)) > * Fix a false positive warning when using Suspense. ([[**acdlite**](https://github.com/acdlite)](https://github.com/acdlite) in [#14158](https://github-redirect.dependabot.com/facebook/react/pull/14158)) > > ### React DOM Server > > * Fix incorrect sharing of context state between `renderToNodeStream()` calls. ([[**sebmarkbage**](https://github.com/sebmarkbage)](https://github.com/sebmarkbage) in [#14182](https://github-redirect.dependabot.com/facebook/react/pull/14182)) > * Add a warning about incorrect usage of the context API. ([[**trueadm**](https://github.com/trueadm)](https://github.com/trueadm) in [#14033](https://github-redirect.dependabot.com/facebook/react/pull/14033)) > > ## 16.6.2 (November 12, 2018) > > This release was published in a broken state and should be skipped. > > ## 16.6.1 (November 6, 2018) > > ### React DOM > > * Fallback should not remount every time a promise resolves. ([[**acdlite**](https://github.com/acdlite)](https://github.com/acdlite) in [#14083](https://github-redirect.dependabot.com/facebook/react/pull/14083)) > * Fix bug where Suspense keeps showing fallback even after everything finishes loading. ([[**acdlite**](https://github.com/acdlite)](https://github.com/acdlite) in [#14083](https://github-redirect.dependabot.com/facebook/react/pull/14083)) > * Fix unresolved default props in lifecycle methods of a lazy component. ([[**gaearon**](https://github.com/gaearon)](https://github.com/gaearon) in [#14112](https://github-redirect.dependabot.com/facebook/react/pull/14112)) > * Fix bug when recovering from an error thrown during complete phase. ([[**gaearon**](https://github.com/gaearon)](https://github.com/gaearon) in [#14104](https://github-redirect.dependabot.com/facebook/react/pull/14104)) > > ### Scheduler (Experimental) > > * Switch from deadline object to `shouldYield` API. ([[**acdlite**](https://github.com/acdlite)](https://github.com/acdlite) in [#14025](https://github-redirect.dependabot.com/facebook/react/pull/14025)) > > > ## 16.6.0 (October 23, 2018) > > ### React > > * Add `React.memo()` as an alternative to `PureComponent` for functions. ([[**acdlite**](https://github.com/acdlite)](https://github.com/acdlite) in [#13748](https://github-redirect.dependabot.com/facebook/react/pull/13748)) > * Add `React.lazy()` for code splitting components. ([[**acdlite**](https://github.com/acdlite)](https://github.com/acdlite) in [#13885](https://github-redirect.dependabot.com/facebook/react/pull/13885)) > * `React.StrictMode` now warns about legacy context API. ([[**bvaughn**](https://github.com/bvaughn)](https://github.com/bvaughn) in [#13760](https://github-redirect.dependabot.com/facebook/react/pull/13760)) > * `React.StrictMode` now warns about `findDOMNode`. ([[**sebmarkbage**](https://github.com/sebmarkbage)](https://github.com/sebmarkbage) in [#13841](https://github-redirect.dependabot.com/facebook/react/pull/13841)) > * Rename `unstable_AsyncMode` to `unstable_ConcurrentMode`. ([[**trueadm**](https://github.com/trueadm)](https://github.com/trueadm) in [#13732](https://github-redirect.dependabot.com/facebook/react/pull/13732)) > * Rename `unstable_Placeholder` to `Suspense`, and `delayMs` to `maxDuration`. ([[**gaearon**](https://github.com/gaearon)](https://github.com/gaearon) in [#13799](https://github-redirect.dependabot.com/facebook/react/pull/13799) and [[**sebmarkbage**](https://github.com/sebmarkbage)](https://github.com/sebmarkbage) in [#13922](https://github-redirect.dependabot.com/facebook/react/pull/13922)) > > ### React DOM > > * Add `contextType` as a more ergonomic way to subscribe to context from a class. ([[**bvaughn**](https://github.com/bvaughn)](https://github.com/bvaughn) in [#13728](https://github-redirect.dependabot.com/facebook/react/pull/13728)) > * Add `getDerivedStateFromError` lifecycle method for catching errors in a future asynchronous server-side renderer. ([[**bvaughn**](https://github.com/bvaughn)](https://github.com/bvaughn) in [#13746](https://github-redirect.dependabot.com/facebook/react/pull/13746)) > * Warn when `` is used instead of ``. ([[**trueadm**](https://github.com/trueadm)](https://github.com/trueadm) in [#13829](https://github-redirect.dependabot.com/facebook/react/pull/13829)) > * Fix gray overlay on iOS Safari. ([[**philipp-spiess**](https://github.com/philipp-spiess)](https://github.com/philipp-spiess) in [#13778](https://github-redirect.dependabot.com/facebook/react/pull/13778)) > * Fix a bug caused by overwriting `window.event` in development. ([[**sergei-startsev**](https://github.com/sergei-startsev)](https://github.com/sergei-startsev) in [#13697](https://github-redirect.dependabot.com/facebook/react/pull/13697)) > ... (truncated)
Commits - [`0c756fb`](https://github.com/facebook/react/commit/0c756fb33f091cb87afa38fade048ad15a4a2466) Update error codes - [`6c22b6c`](https://github.com/facebook/react/commit/6c22b6cad9ed2c69b3393d332baf07b49b1888ec) fix typo - [`b545546`](https://github.com/facebook/react/commit/b545546ccbe056e35c6be9c938561df643cc3950) Use unique thread ID for each partial render to access Context ([#14182](https://github-redirect.dependabot.com/facebook/react/issues/14182)) - [`d5e1bf0`](https://github.com/facebook/react/commit/d5e1bf07d086e4fc1998653331adecddcd0f5274) Renamed outdated schedule/tracing referecnes ([#14177](https://github-redirect.dependabot.com/facebook/react/issues/14177)) - [`2dd4ba1`](https://github.com/facebook/react/commit/2dd4ba11e08c7dcd6c4b347db069ed326b5485f6) ESlint -> ESLint - [`9cc631a`](https://github.com/facebook/react/commit/9cc631a539a33fdadcba2902b87975acbcd58402) Don't run danger on bad build ([#14143](https://github-redirect.dependabot.com/facebook/react/issues/14143)) - [`1034e26`](https://github.com/facebook/react/commit/1034e26fe5e42ba07492a736da7bdf5bf2108bc6) Fix typos ([#14124](https://github-redirect.dependabot.com/facebook/react/issues/14124)) - [`5618da4`](https://github.com/facebook/react/commit/5618da49d8cb9cdb6c623446bbd2c504ee6c0422) Fix comment typo ([#14156](https://github-redirect.dependabot.com/facebook/react/issues/14156)) - [`9fb9199`](https://github.com/facebook/react/commit/9fb91994557ab9b47e23307aa8914d0504905f56) Add global to ESLint plugin bundle config - [`c174f85`](https://github.com/facebook/react/commit/c174f8592436db5b0dee416a53d3af231d3e443c) Add fb build of ESLint plugin ([#14165](https://github-redirect.dependabot.com/facebook/react/issues/14165)) - Additional commits viewable in [compare view](https://github.com/facebook/react/compare/v16.5.2...v16.6.3)


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 will not automatically merge this PR because it includes a minor update to a production dependency.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge - `@dependabot reopen` will reopen this PR if it is closed - `@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 these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Automerge options (never/patch/minor, and dev/runtime dependencies) - Pull request limits (per update run and/or open at any time) - 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.
dependabot-preview[bot] commented 5 years ago

Superseded by #550.