Skip to content
This repository has been archived by the owner on May 17, 2019. It is now read-only.

Update react monorepo packages to v16.3.1 #310

Merged
merged 1 commit into from
Apr 5, 2018

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 29, 2018

This Pull Request renovates the package group "react monorepo".

Release Notes

facebook/react

v16.3.0

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)

v16.3.1

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)

Commits

facebook/react

v16.3.0

  • c2c3c0cFix build script to handle react-is (no peer deps) (#​12471)
  • 488ad5aFix typo in create-subscription readme
  • c1b21a7Added DEV warning if getSnapshotBeforeUpdate is defined as a static method (#​12475)
  • 268a3f6Add unstable APIs for async rendering to test renderer (#​12478)
  • c44665eFix bug when fatal error is thrown as a result of batch.commit (#​12480)
  • 7a833dasetState() in componentDidMount() should flush synchronously even with createBatch() (#​12466)
  • 5855e9fImprove warning message for setState-on-unmounted (#​12347)
  • 15e3dffDon't bail out on referential equality of Consumer's props.children function (#​12470)
  • 125dd16Update user timing to record the timeout deadline with 'waiting' events (#​12479)
  • 96fe3b1Add React.isValidElementType() (#​12483)
  • 53fdc19Updated react-is README to show new isValidElementType()
  • 8650d2aDisable createRoot for open source builds (#​12486)
  • 6294b67unstable_createRoot (#​12487)
  • b2379d4Updating package versions for release 16.3.0
  • 9778873Updating dependencies for react-noop-renderer
  • 8e3d94fUpdate bundle sizes for 16.3.0 release

v16.3.1

  • 2c3f5fbAdd React 16.3.0 changelog (#​12488)
  • 4304475Fix links
  • 18ba36dMove context API in Changelog to "React" section
  • 59b3905Fix method name in changelog
  • fa8e678Change create-subscription's peerDep on react to ^16.3.0 (#​12496)
  • 0c80977Validate React.Fragment props without Map. (#​12504)
  • 59dac9dFix DEV performance regression by avoiding Object.assign on Fibers (#​12510)
  • 6b99c6fAdd missing changelog item
  • 7a27ebdUpdate user timing to record when we are about to commit (#​12384)
  • 4ccf58aFix context stack misalignment caused by error replay (#​12508)
  • 6f2ea73Extract throw to separate function so performUnitOfWork does not deopt (#​12521)
  • ba245f6Prefix _context property on returned ReactContext from createContext - it's private (#​12501)
  • eb6e752Bumped create-subscription package version (#​12526)
  • da4e855Remove @​providesModule in www bundles (#​12529)
  • 0f2f90bgetDerivedStateFrom{Props,Catch} should update updateQueue.baseState (#​12528)
  • 36c2939Improve not-yet-mounted setState warning (#​12531)
  • a2cc3c3Follow up: make new warning less wordy (#​12532)
  • 2279843Updating yarn.lock file for 16.3.1 release
  • 787b343Updating package versions for release 16.3.1
  • dc05957Update bundle sizes for 16.3.1 release
  • b15b165Changelog for 16.3.1

This PR has been generated by Renovate Bot.

@renovate renovate bot force-pushed the renovate/react-monorepo branch from 6d683cc to a478205 Compare April 4, 2018 01:20
@renovate renovate bot changed the title Update react monorepo packages to v16.3.0 Update react monorepo packages to v16.3.1 Apr 4, 2018
@KevinGrandon
Copy link
Contributor

!merge

@old-fusion-bot old-fusion-bot bot merged commit 5a95b9a into master Apr 5, 2018
@renovate renovate bot deleted the renovate/react-monorepo branch April 5, 2018 00:37
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants