From b151e7fd3b4316b999ab84ec6ef49d497364b891 Mon Sep 17 00:00:00 2001 From: Dan Abramov Date: Tue, 5 Apr 2016 00:49:07 +0100 Subject: [PATCH 1/2] Remove 15 RC1 changelog entry that was fixed in 0.14 --- docs/_posts/2016-03-07-react-v15-rc1.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/_posts/2016-03-07-react-v15-rc1.md b/docs/_posts/2016-03-07-react-v15-rc1.md index 3eb8fb296f..932ae09887 100644 --- a/docs/_posts/2016-03-07-react-v15-rc1.md +++ b/docs/_posts/2016-03-07-react-v15-rc1.md @@ -87,7 +87,6 @@ Each of these changes will continue to work as before with a new warning until t ### Notable bug fixes - Fixed multiple small memory leaks -- Click events are handled by React DOM more reliably in mobile browsers, particularly in Mobile Safari. - Input events are handled more reliably in IE 10 and IE 11; spurious events no longer fire when using a placeholder. - React DOM now supports the `cite` and `profile` HTML attributes. - React DOM now supports the `onAnimationStart`, `onAnimationEnd`, `onAnimationIteration`, `onTransitionEnd`, and `onInvalid` events. Support for `onLoad` has been added to `object` elements. From 67ff7104a105e2c52942b91fdb8d4d8b8ea504ff Mon Sep 17 00:00:00 2001 From: Dan Abramov Date: Tue, 5 Apr 2016 01:32:38 +0100 Subject: [PATCH 2/2] Remove another 0.14 changelog entry for 15 RC1 release notes --- docs/_posts/2016-03-07-react-v15-rc1.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/_posts/2016-03-07-react-v15-rc1.md b/docs/_posts/2016-03-07-react-v15-rc1.md index 932ae09887..85a054ead7 100644 --- a/docs/_posts/2016-03-07-react-v15-rc1.md +++ b/docs/_posts/2016-03-07-react-v15-rc1.md @@ -90,6 +90,5 @@ Each of these changes will continue to work as before with a new warning until t - Input events are handled more reliably in IE 10 and IE 11; spurious events no longer fire when using a placeholder. - React DOM now supports the `cite` and `profile` HTML attributes. - React DOM now supports the `onAnimationStart`, `onAnimationEnd`, `onAnimationIteration`, `onTransitionEnd`, and `onInvalid` events. Support for `onLoad` has been added to `object` elements. -- Add-Ons: ReactTransitionGroup now correctly handles multiple nodes being removed simultaneously. - `Object.is` is used in a number of places to compare values, which leads to fewer false positives, especially involving `NaN`. In particular, this affects the `shallowCompare` add-on. - React DOM now defaults to using DOM attributes instead of properties, which fixes a few edge case bugs. Additionally the nullification of values (ex: `href={null}`) now results in the forceful removal, no longer trying to set to the default value used by browsers in the absence of a value.