-
Notifications
You must be signed in to change notification settings - Fork 0
Update react monorepo #11
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
Open
renovate
wants to merge
1
commit into
master
Choose a base branch
from
renovate/react-monorepo
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
0d22bc7 to
0dc4ab7
Compare
ba88dfb to
76ff108
Compare
76ff108 to
0316f2f
Compare
0316f2f to
fd9c437
Compare
b8af3e4 to
cd23d1a
Compare
1cee65d to
52ed11d
Compare
52ed11d to
8a9490d
Compare
882f3aa to
fe95940
Compare
36e40cc to
f121e14
Compare
f121e14 to
3b688b1
Compare
8dd6de8 to
c91b104
Compare
c91b104 to
3089696
Compare
5e76893 to
dd3ce7f
Compare
871d7c0 to
99b9c8b
Compare
99b9c8b to
4d39eb2
Compare
4d39eb2 to
827c28d
Compare
827c28d to
854acfb
Compare
23209f9 to
30b3a8f
Compare
30b3a8f to
1f0a297
Compare
04880ef to
ddeba1c
Compare
ddeba1c to
7df70d7
Compare
7df70d7 to
7594acb
Compare
7594acb to
75154c7
Compare
75154c7 to
5fd7934
Compare
5fd7934 to
ae5d63a
Compare
ae5d63a to
3de6f35
Compare
3de6f35 to
ec61f7a
Compare
ec61f7a to
fd5c3ac
Compare
1b879bf to
1f35a4e
Compare
1f35a4e to
e7ba8d1
Compare
e7ba8d1 to
5f43cad
Compare
5f43cad to
f0fc39c
Compare
f0fc39c to
e3e7e3f
Compare
e3e7e3f to
2cdd1f5
Compare
2cdd1f5 to
0ec8d79
Compare
7336613 to
ff7dc0d
Compare
ff7dc0d to
2e04ce3
Compare
2e04ce3 to
0f2145c
Compare
0f2145c to
d60033e
Compare
d60033e to
8530893
Compare
8530893 to
9487466
Compare
9487466 to
6514c24
Compare
6514c24 to
bdbe9e3
Compare
bdbe9e3 to
4f127c7
Compare
4f127c7 to
f111964
Compare
f111964 to
d909251
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
16.9.35->16.14.6816.9.8->16.9.25^0.13.3->^0.14.016.13.0->16.14.016.13.1->16.14.0^0.12.2->^0.14.016.13.0->16.14.016.13.1->16.14.0Release Notes
facebook/react (react)
v0.14.10React
v0.14.8Compare Source
React
v0.14.7Compare Source
React
<option>tags when usingdangerouslySetInnerHTMLReact TestUtils Add-on
setStateincomponentWillMountwhen using shallow renderingv0.14.6Compare Source
React
fbjsdependency to pick up change affecting handling of undefined document.v0.14.5Compare Source
React
v0.14.4Compare Source
React
React DOM
autoCapitalizeandautoCorrectprops are now set as attributes in the DOM instead of properties to improve cross-browser compatibility<select>elements not handling updates properlyReact Perf Add-on
.printDOM()v0.14.3Compare Source
React DOM
nonceattribute for<script>and<style>elementsreversedattribute for<ol>elementsReact TestUtils Add-on
React CSSTransitionGroup Add-on
React on Bower
react-dom-server.jsto exposerenderToStringandrenderToStaticMarkupfor usage in the browserv0.14.2Compare Source
React DOM
integrityattributechildrenprop being coerced to a string for custom elements, which was not the desired behaviorreactfromdependenciestopeerDependenciesto match expectations and align withreact-addons-*packagesv0.14.1Compare Source
React
v0.14.0Compare Source
Major changes
reactpackage into two:reactandreact-dom. This paves the way to writing components that can be shared between the web version of React and React Native. This means you will need to include both files and some functions have been moved fromReacttoReactDOM.react-addons-clone-with-props,react-addons-create-fragment,react-addons-css-transition-group,react-addons-linked-state-mixin,react-addons-perf,react-addons-pure-render-mixin,react-addons-shallow-compare,react-addons-test-utils,react-addons-transition-group,react-addons-update,ReactDOM.unstable_batchedUpdates).props) which returns a JSX element, and this function may be used as a component.getDOMNode()to get the underlying DOM node. Starting with this release, a ref to a DOM component is the actual DOM node. Note that refs to custom (user-defined) components work exactly as before; only the built-in DOM components are affected by this change.Breaking changes
React.initializeTouchEventsis no longer necessary and has been removed completely. Touch events now work automatically.TestUtils.findAllInRenderedTreeand related helpers are no longer able to take a DOM component, only a custom component.propsobject is now frozen, so mutating props after creating a component element is no longer supported. In most cases,React.cloneElementshould be used instead. This change makes your components easier to reason about and enables the compiler optimizations mentioned above.createFragmenthelper to migrate, which now returns an array.classSethas been removed. Use classnames instead.classinstead ofclassName.Deprecations
this.getDOMNode()is now deprecated andReactDOM.findDOMNode(this)can be used instead. Note that in the common case,findDOMNodeis now unnecessary since a ref to the DOM component is now the actual DOM node.setPropsandreplacePropsare now deprecated. Instead, call ReactDOM.render again at the top level with the new props.React.Componentin order to enable stateless function components. The ES3 module pattern will continue to work.styleobject between renders has been deprecated. This mirrors our change to freeze thepropsobject.cloneWithPropsis now deprecated. UseReact.cloneElementinstead (unlikecloneWithProps,cloneElementdoes not mergeclassNameorstyleautomatically; you can merge them manually if needed).CSSTransitionGroupwill no longer listen to transition events. Instead, you should specify transition durations manually using props such astransitionEnterTimeout={500}.Notable enhancements
React.Children.toArraywhich takes a nested children object and returns a flat array with keys assigned to each child. This helper makes it easier to manipulate collections of children in yourrendermethods, especially if you want to reorder or slicethis.props.childrenbefore passing it down. In addition,React.Children.mapnow returns plain arrays too.console.errorinstead ofconsole.warnfor warnings so that browsers show a full stack trace in the console. (Our warnings appear when you use patterns that will break in future releases and for code that is likely to behave unexpectedly, so we do consider our warnings to be “must-fix” errors.)Symbolin browsers that support it, in order to ensure that React never considers untrusted JSON to be a valid element. If this extra security protection is important to you, you should add aSymbolpolyfill for older browsers, such as the one included by Babel’s polyfill.capture,challenge,inputMode,is,keyParams,keyType,minLength,summary,wrap. It also now supports these non-standard attributes:autoSave,results,security.xlinkActuate,xlinkArcrole,xlinkHref,xlinkRole,xlinkShow,xlinkTitle,xlinkType,xmlBase,xmlLang,xmlSpace.imageSVG tag is now supported by React DOM.is="..."attribute).audioandvideotags:onAbort,onCanPlay,onCanPlayThrough,onDurationChange,onEmptied,onEncrypted,onEnded,onError,onLoadedData,onLoadedMetadata,onLoadStart,onPause,onPlay,onPlaying,onProgress,onRateChange,onSeeked,onSeeking,onStalled,onSuspend,onTimeUpdate,onVolumeChange,onWaiting.shallowCompareadd-on has been added as a migration path forPureRenderMixinin ES6 classes.CSSTransitionGroupcan now use custom class names instead of appending-enter-activeor similar to the transition name.New helpful warnings
document.bodydirectly as the container toReactDOM.rendernow gives a warning as doing so can cause problems with browser extensions that modify the DOM.Notable bug fixes
<option>elements with multiple text children properly and renders<select>elements on the server with the correct option selected.React.createElement('DIV')) no longer causes problems, though we continue to recommend lowercase for consistency with the JSX tag name convention (lowercase names refer to built-in components, capitalized names refer to custom components).animationIterationCount,boxOrdinalGroup,flexOrder,tabSize,stopOpacity.Simulate.mouseEnterandSimulate.mouseLeavenow work.React Tools / Babel
Breaking Changes
react-toolspackage andJSXTransformer.jsbrowser file have been deprecated. You can continue using version0.13.3of both, but we no longer support them and recommend migrating to Babel, which has built-in support for React and JSX.New Features
optimisation.react.inlineElementstransform converts JSX elements to object literals like{type: 'div', props: ...}instead of calls toReact.createElement. This should only be enabled in production, since it disables some development warnings/checks.optimisation.react.constantElementstransform hoists element creation to the top level for subtrees that are fully static, which reduces calls toReact.createElementand the resulting allocations. More importantly, it tells React that the subtree hasn’t changed so React can completely skip it when reconciling. This should only be enabled in production, since it disables some development warnings/checks.Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.