Skip to content

Commit ee06df1

Browse files
committed
Bring over updates for 0.14.1 release
Update changelog for 0.14.1 (cherry picked from commit aaf8f87) Update readme for 0.14.1 (cherry picked from commit c2dde8d) 0.14.1 blog post (cherry picked from commit 6e2450e) Update website for 0.14.1 (cherry picked from commit f0782e2)
1 parent a65a485 commit ee06df1

File tree

7 files changed

+425
-342
lines changed

7 files changed

+425
-342
lines changed

CHANGELOG.md

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,23 @@
1-
## 0.14 (October 7, 2015)
1+
## 0.14.1 (October 28, 2015)
2+
3+
### React DOM
4+
- Fixed bug where events wouldn't fire in old browsers when using React in development mode
5+
- Fixed bug preventing use of `dangerouslySetInnerHTML` with Closure Compiler Advanced mode
6+
- Added support for `srcLang`, `default`, and `kind` attributes for `<track>` elements
7+
- Added support for `color` attribute
8+
- Ensured legacy `.props` access on DOM nodes is updated on re-renders
9+
10+
### React TestUtils Add-on
11+
- Fixed `scryRenderedDOMComponentsWithClass` so it works with SVG
12+
13+
### React CSSTransitionGroup Add-on
14+
- Fix bug preventing `0` to be used as a timeout value
15+
16+
### React on Bower
17+
- Added `react-dom.js` to `main` to improve compatibility with tooling
18+
19+
20+
## 0.14.0 (October 7, 2015)
221

322
### Major changes
423

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,12 @@ The fastest way to get started is to serve JavaScript from the CDN (also availab
3737

3838
```html
3939
<!-- The core React library -->
40-
<script src="https://fb.me/react-0.14.0.js"></script>
40+
<script src="https://fb.me/react-0.14.1.js"></script>
4141
<!-- The ReactDOM Library -->
42-
<script src="https://fb.me/react-dom-0.14.0.js"></script>
42+
<script src="https://fb.me/react-dom-0.14.1.js"></script>
4343
```
4444

45-
We've also built a [starter kit](https://facebook.github.io/react/downloads/react-0.14.0.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.
45+
We've also built a [starter kit](https://facebook.github.io/react/downloads/react-0.14.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.
4646

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

docs/_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@ sass:
3636
sass_dir: _css
3737
gems:
3838
- jekyll-redirect-from
39-
react_version: 0.14.0-alpha
39+
react_version: 0.14.1
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
---
2+
title: "React v0.14.1"
3+
author: zpao
4+
---
5+
6+
After a couple weeks of having more people use v0.14, we're ready to ship a patch release addressing a few issues. Thanks to everybody who has reported issues and written patches!
7+
8+
The release is now available for download:
9+
10+
* **React**
11+
Dev build with warnings: <https://fb.me/react-0.14.1.js>
12+
Minified build for production: <https://fb.me/react-0.14.1.min.js>
13+
* **React with Add-Ons**
14+
Dev build with warnings: <https://fb.me/react-with-addons-0.14.1.js>
15+
Minified build for production: <https://fb.me/react-with-addons-0.14.1.min.js>
16+
* **React DOM** (include React in the page before React DOM)
17+
Dev build with warnings: <https://fb.me/react-dom-0.14.1.js>
18+
Minified build for production: <https://fb.me/react-dom-0.14.1.min.js>
19+
20+
We've also published version `0.14.1` of the `react`, `react-dom`, and addons packages on npm and the `react` package on bower.
21+
22+
- - -
23+
24+
## Changelog
25+
26+
### React DOM
27+
- Fixed bug where events wouldn't fire in old browsers when using React in development mode
28+
- Fixed bug preventing use of `dangerouslySetInnerHTML` with Closure Compiler Advanced mode
29+
- Added support for `srcLang`, `default`, and `kind` attributes for `<track>` elements
30+
- Added support for `color` attribute
31+
- Ensured legacy `.props` access on DOM nodes is updated on re-renders
32+
33+
### React TestUtils Add-on
34+
- Fixed `scryRenderedDOMComponentsWithClass` so it works with SVG
35+
36+
### React CSSTransitionGroup Add-on
37+
- Fix bug preventing `0` to be used as a timeout value
38+
39+
### React on Bower
40+
- Added `react-dom.js` to `main` to improve compatibility with tooling

docs/downloads/react-0.14.1.zip

491 KB
Binary file not shown.

docs/js/react-dom.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* ReactDOM v0.14.0
2+
* ReactDOM v0.14.1
33
*
44
* Copyright 2013-2015, Facebook, Inc.
55
* All rights reserved.

0 commit comments

Comments
 (0)