Skip to content

Commit af28c5c

Browse files
committed
Update Changelog & Readme for 15.3.2
(cherry picked from commit 8c7bbbf) Fix formatting of 15.3.2 changelog (cherry picked from commit c2388bf)
1 parent 2ec2d8f commit af28c5c

File tree

2 files changed

+28
-3
lines changed

2 files changed

+28
-3
lines changed

Diff for: CHANGELOG.md

+25
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,28 @@
1+
## 15.3.2 (September 19, 2016)
2+
3+
### React
4+
- Remove plain object warning from React.createElement & React.cloneElement. ([@spudly](https://github.com/spudly) in [#7724](https://github.com/facebook/react/pull/7724))
5+
6+
### React DOM
7+
- Add `playsInline` to supported HTML attributes. ([@reaperhulk](https://github.com/reaperhulk) in [#7519](https://github.com/facebook/react/pull/7519))
8+
- Add `as` to supported HTML attributes. ([@kevinslin](https://github.com/kevinslin) in [#7582](https://github.com/facebook/react/pull/7582))
9+
- Improve DOM nesting validation warning about whitespace. ([@spicyj](https://github.com/spicyj) in [#7515](https://github.com/facebook/react/pull/7515))
10+
- Avoid "Member not found" exception in IE10 when calling `preventDefault()` in Synthetic Events. ([@g-palmer](https://github.com/g-palmer) in [#7411](https://github.com/facebook/react/pull/7411))
11+
- Fix memory leak in `onSelect` implementation. ([@AgtLucas](https://github.com/AgtLucas) in [#7533](https://github.com/facebook/react/pull/7533))
12+
- Improve robustness of `document.documentMode` checks to handle Google Tag Manager. ([@SchleyB](https://github.com/SchleyB) in [#7594](https://github.com/facebook/react/pull/7594))
13+
- Add more cases to controlled inputs warning. ([@marcin-mazurek](https://github.com/marcin-mazurek) in [#7544](https://github.com/facebook/react/pull/7544))
14+
- Handle case of popup blockers overriding `document.createEvent`. ([@Andarist](https://github.com/Andarist) in [#7621](https://github.com/facebook/react/pull/7621))
15+
- Fix issue with `dangerouslySetInnerHTML` and SVG in Internet Explorer. ([@zpao](https://github.com/zpao) in [#7618](https://github.com/facebook/react/pull/7618))
16+
- Improve handling of Japanese IME on Internet Explorer. ([@msmania](https://github.com/msmania) in [#7107](https://github.com/facebook/react/pull/7107))
17+
18+
### React Test Renderer
19+
- Support error boundaries. ([@millermedeiros](https://github.com/millermedeiros) in [#7558](https://github.com/facebook/react/pull/7558), [#7569](https://github.com/facebook/react/pull/7569), [#7619](https://github.com/facebook/react/pull/7619))
20+
- Skip null ref warning. ([@Aweary](https://github.com/Aweary) in [#7658](https://github.com/facebook/react/pull/7658))
21+
22+
### React Perf Add-on
23+
- Ensure lifecycle timers are stopped on errors. ([@gaearon](https://github.com/gaearon) in [#7548](https://github.com/facebook/react/pull/7548))
24+
25+
126
## 15.3.1 (August 19, 2016)
227

328
### React

Diff for: README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@ The fastest way to get started is to serve JavaScript from a CDN. We're using [u
3535

3636
```html
3737
<!-- The core React library -->
38-
<script src="https://unpkg.com/[email protected].1/dist/react.js"></script>
38+
<script src="https://unpkg.com/[email protected].2/dist/react.js"></script>
3939
<!-- The ReactDOM Library -->
40-
<script src="https://unpkg.com/[email protected].1/dist/react-dom.js"></script>
40+
<script src="https://unpkg.com/[email protected].2/dist/react-dom.js"></script>
4141
```
4242

43-
We've also built a [starter kit](https://facebook.github.io/react/downloads/react-15.3.1.zip) which might be useful if this is your first time using React. It includes a webpage with an example of using React with live code.
43+
We've also built a [starter kit](https://facebook.github.io/react/downloads/react-15.3.2.zip) which might be useful if this is your first time using React. It includes a webpage with an example of using React with live code.
4444

4545
If you'd like to use [bower](http://bower.io), it's as easy as:
4646

0 commit comments

Comments
 (0)