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 react to v16.4.1 #48

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

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Mar 24, 2018

This Pull Request updates dependency react from v16.2.0 to v16.4.1

This PR also includes an upgrade to the corresponding @​types/react package.

Release Notes

v16.4.1

Compare Source

React
  • You can now assign propTypes to components returned by React.ForwardRef. ([@​bvaughn] in #​12911)
React DOM
  • Fix a crash when the input type changes from some other types to text. ([@​spirosikmd] in #​12135)
  • Fix a crash in IE11 when restoring focus to an SVG element. ([@​ThaddeusJiang] in #​12996)
  • Fix a range input not updating in some cases. ([@​Illu] in #​12939)
  • Fix input validation triggering unnecessarily in Firefox. ([@​nhunzaker] in #​12925)
  • Fix an incorrect event.target value for the onChange event in IE9. ([@​nhunzaker] in #​12976)
  • Fix a false positive error when returning an empty <React.Fragment /> from a component. ([@​philipp-spiess] in #​12966)
React DOM Server
  • Fix an incorrect value being provided by new context API. ([@​ericsoderberghp] in #​12985, [@​gaearon] in #​13019)
React Test Renderer
  • Allow multiple root children in test renderer traversal API. ([@​gaearon] in #​13017)
  • Fix getDerivedStateFromProps() in the shallow renderer to not discard the pending state. ([@​fatfisz] in #​13030)

v16.4.0

Compare Source

React
  • Add a new experimental React.unstable_Profiler component for measuring performance. ([@​bvaughn] in #​12745)
React DOM
  • Add support for the Pointer Events specification. ([@​philipp-spiess] in #​12507)
  • Properly call getDerivedStateFromProps() regardless of the reason for re-rendering. ([@​acdlite] in #​12600 and #​12802)
  • Fix a bug that prevented context propagation in some cases. ([@​gaearon] in #​12708)
  • Fix re-rendering of components using forwardRef() on a deeper setState(). ([@​gaearon] in #​12690)
  • Fix some attributes incorrectly getting removed from custom element nodes. ([@​airamrguez] in #​12702)
  • Fix context providers to not bail out on children if there's a legacy context provider above. ([@​gaearon] in #​12586)
  • Add the ability to specify propTypes on a context provider component. ([@​nicolevy] in #​12658)
  • Fix a false positive warning when using react-lifecycles-compat in <StrictMode>. ([@​bvaughn] in #​12644)
  • Warn when the forwardRef() render function has propTypes or defaultProps. ([@​bvaughn] in #​12644)
  • Improve how forwardRef() and context consumers are displayed in the component stack. ([@​sophiebits] in #​12777)
  • Change internal event names. This can break third-party packages that rely on React internals in unsupported ways. ([@​philipp-spiess] in #​12629)
React Test Renderer
  • Fix the getDerivedStateFromProps() support to match the new React DOM behavior. ([@​koba04] in #​12676)
  • Fix a testInstance.parent crash when the parent is a fragment or another special node. ([@​gaearon] in #​12813)
  • forwardRef() components are now discoverable by the test renderer traversal methods. ([@​gaearon] in #​12725)
  • Shallow renderer now ignores setState() updaters that return null or undefined. ([@​koba04] in #​12756)
React ART
  • Fix reading context provided from the tree managed by React DOM. ([@​acdlite] in #​12779)
React Call Return (Experimental)
  • This experiment was deleted because it was affecting the bundle size and the API wasn't good enough. It's likely to come back in the future in some other form. ([@​gaearon] in #​12820)
React Reconciler (Experimental)

v16.3.2

Compare Source

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
  • Add a UMD build. ([@​bvaughn] in #​12594)

v16.3.1

Compare Source

React
  • Fix a false positive warning in IE11 when using Fragment. ([@​heikkilamarko] in #​12504)
  • Prefix a private API. ([@​Andarist] in #​12501)
  • Improve the warning when calling setState() in constructor. ([@​gaearon] in #​12532)
React DOM
  • Fix getDerivedStateFromProps() not getting applied in some cases. ([@​acdlite] in #​12528)
  • Fix a performance regression in development mode. ([@​gaearon] in #​12510)
  • Fix error handling bugs in development mode. ([@​gaearon] and [@​acdlite] in #​12508)
  • Improve user timing API messages for profiling. ([@​flarnie] in #​12384)
Create Subscription
  • Set the package version to be in sync with React releases. ([@​bvaughn] in #​12526)
  • Add a peer dependency on React 16.3+. ([@​NMinhNguyen] in #​12496)

v16.3.0

Compare Source

React
  • Add a new officially supported context API. ([@​acdlite] in #​11818)
  • Add a new React.createRef() API as an ergonomic alternative to callback refs. ([@​trueadm] in #​12162)
  • Add a new React.forwardRef() API to let components forward their refs to a child. ([@​bvaughn] in #​12346)
  • Fix a false positive warning in IE11 when using React.Fragment. ([@​XaveScor] in #​11823)
  • Replace React.unstable_AsyncComponent with React.unstable_AsyncMode. ([@​acdlite] in #​12117)
  • Improve the error message when calling setState() on an unmounted component. ([@​sophiebits] in #​12347)
React DOM
  • Add a new getDerivedStateFromProps() lifecycle and UNSAFE_ aliases for the legacy lifecycles. ([@​bvaughn] in #​12028)
  • Add a new getSnapshotBeforeUpdate() lifecycle. ([@​bvaughn] in #​12404)
  • Add a new <React.StrictMode> wrapper to help prepare apps for async rendering. ([@​bvaughn] in #​12083)
  • Add support for onLoad and onError events on the <link> tag. ([@​roderickhsiao] in #​11825)
  • Add support for noModule boolean attribute on the <script> tag. ([@​aweary] in #​11900)
  • Fix minor DOM input bugs in IE and Safari. ([@​nhunzaker] in #​11534)
  • Correctly detect Ctrl + Enter in onKeyPress in more browsers. ([@​nstraub] in #​10514)
  • Fix containing elements getting focused on SSR markup mismatch. ([@​koba04] in #​11737)
  • Fix value and defaultValue to ignore Symbol values. ([@​nhunzaker] in #​11741)
  • Fix refs to class components not getting cleaned up when the attribute is removed. ([@​bvaughn] in #​12178)
  • Fix an IE/Edge issue when rendering inputs into a different window. ([@​M-ZubairAhmed] in #​11870)
  • Throw with a meaningful message if the component runs after jsdom has been destroyed. ([@​gaearon] in #​11677)
  • Don't crash if there is a global variable called opera with a null value. [@​alisherdavronov] in #​11854)
  • Don't check for old versions of Opera. ([@​skiritsis] in #​11921)
  • Deduplicate warning messages about <option selected>. ([@​watadarkstar] in #​11821)
  • Deduplicate warning messages about invalid callback. ([@​yenshih] in #​11833)
  • Deprecate ReactDOM.unstable_createPortal() in favor of ReactDOM.createPortal(). ([@​prometheansacrifice] in #​11747)
  • Don't emit User Timing entries for context types. ([@​abhaynikam] in #​12250)
  • Improve the error message when context consumer child isn't a function. ([@​raunofreiberg] in #​12267)
  • Improve the error message when adding a ref to a functional component. ([@​skiritsis] in #​11782)
React DOM Server
  • Prevent an infinite loop when attempting to render portals with SSR. ([@​gaearon] in #​11709)
  • Warn if a class doesn't extend React.Component. ([@​wyze] in #​11993)
  • Fix an issue with this.state of different components getting mixed up. ([@​sophiebits] in #​12323)
  • Provide a better message when component type is undefined. ([@​HeroProtagonist] in #​11966)


This PR has been generated by Renovate Bot.

@renovate renovate bot force-pushed the renovate/react-16.x branch from 172c6d0 to a9d2978 Compare March 27, 2018 19:10
@renovate renovate bot changed the title chore(deps): update dependency @types/react to v16.0.41 chore(deps): update dependency @types/react to v16.1.0 Mar 27, 2018
@renovate renovate bot force-pushed the renovate/react-16.x branch from a9d2978 to 0574b2b Compare March 29, 2018 20:46
@renovate renovate bot changed the title chore(deps): update dependency @types/react to v16.1.0 fix(deps): update dependency react to v16.3.0 Mar 29, 2018
@renovate renovate bot force-pushed the renovate/react-16.x branch 6 times, most recently from bb443a0 to 1bffc06 Compare April 4, 2018 01:06
@renovate renovate bot changed the title fix(deps): update dependency react to v16.3.0 fix(deps): update dependency react to v16.3.1 Apr 4, 2018
@renovate renovate bot force-pushed the renovate/react-16.x branch 2 times, most recently from a4c7f28 to a026dd1 Compare April 9, 2018 21:51
@renovate renovate bot changed the title fix(deps): update dependency react to v16.3.1 chore(deps): update dependency react to v16.3.1 Apr 10, 2018
@renovate renovate bot force-pushed the renovate/react-16.x branch 6 times, most recently from 2b57729 to e54d821 Compare April 16, 2018 15:37
@renovate renovate bot changed the title chore(deps): update dependency react to v16.3.1 chore(deps): update dependency react to v16.3.2 Apr 16, 2018
@renovate renovate bot force-pushed the renovate/react-16.x branch from e54d821 to a3ed2e4 Compare April 19, 2018 18:28
@renovate renovate bot force-pushed the renovate/react-16.x branch from a3ed2e4 to 943f744 Compare April 27, 2018 05:49
@renovate renovate bot force-pushed the renovate/react-16.x branch from 943f744 to 9c55e93 Compare May 8, 2018 17:12
@renovate renovate bot changed the title chore(deps): update dependency react to v16.3.2 Update dependency react to v16.3.2 May 9, 2018
@renovate renovate bot changed the title Update dependency react to v16.3.2 chore(deps): update dependency react to v16.3.2 May 9, 2018
@renovate renovate bot force-pushed the renovate/react-16.x branch from 9c55e93 to 03960ba Compare May 24, 2018 00:45
@renovate renovate bot changed the title chore(deps): update dependency react to v16.3.2 chore(deps): update dependency react to v16.4.0 May 24, 2018
@renovate renovate bot force-pushed the renovate/react-16.x branch 2 times, most recently from 4c457b6 to e114575 Compare June 1, 2018 04:19
@renovate renovate bot force-pushed the renovate/react-16.x branch 2 times, most recently from 9bfb8c7 to 89272d5 Compare June 14, 2018 01:27
@renovate renovate bot changed the title chore(deps): update dependency react to v16.4.0 chore(deps): update dependency react to v16.4.1 Jun 14, 2018
@renovate renovate bot force-pushed the renovate/react-16.x branch 3 times, most recently from 6ed0fbd to 49b9f67 Compare June 20, 2018 03:21
@renovate renovate bot force-pushed the renovate/react-16.x branch 4 times, most recently from 31defb0 to a6747c0 Compare June 29, 2018 06:26
@renovate renovate bot force-pushed the renovate/react-16.x branch from a6747c0 to 4367c9a Compare June 30, 2018 06:24
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.

1 participant