Bring over updates for 0.14.1 release
Update changelog for 0.14.1 (cherry picked from commitaaf8f870cb
) Update readme for 0.14.1 (cherry picked from commitc2dde8df0b
) 0.14.1 blog post (cherry picked from commit6e2450e8f2
) Update website for 0.14.1 (cherry picked from commitf0782e2b2e
)
This commit is contained in:
parent
a65a4851c6
commit
ee06df1ac5
21
CHANGELOG.md
21
CHANGELOG.md
|
@ -1,4 +1,23 @@
|
||||||
## 0.14 (October 7, 2015)
|
## 0.14.1 (October 28, 2015)
|
||||||
|
|
||||||
|
### React DOM
|
||||||
|
- Fixed bug where events wouldn't fire in old browsers when using React in development mode
|
||||||
|
- Fixed bug preventing use of `dangerouslySetInnerHTML` with Closure Compiler Advanced mode
|
||||||
|
- Added support for `srcLang`, `default`, and `kind` attributes for `<track>` elements
|
||||||
|
- Added support for `color` attribute
|
||||||
|
- Ensured legacy `.props` access on DOM nodes is updated on re-renders
|
||||||
|
|
||||||
|
### React TestUtils Add-on
|
||||||
|
- Fixed `scryRenderedDOMComponentsWithClass` so it works with SVG
|
||||||
|
|
||||||
|
### React CSSTransitionGroup Add-on
|
||||||
|
- Fix bug preventing `0` to be used as a timeout value
|
||||||
|
|
||||||
|
### React on Bower
|
||||||
|
- Added `react-dom.js` to `main` to improve compatibility with tooling
|
||||||
|
|
||||||
|
|
||||||
|
## 0.14.0 (October 7, 2015)
|
||||||
|
|
||||||
### Major changes
|
### Major changes
|
||||||
|
|
||||||
|
|
|
@ -37,12 +37,12 @@ The fastest way to get started is to serve JavaScript from the CDN (also availab
|
||||||
|
|
||||||
```html
|
```html
|
||||||
<!-- The core React library -->
|
<!-- The core React library -->
|
||||||
<script src="https://fb.me/react-0.14.0.js"></script>
|
<script src="https://fb.me/react-0.14.1.js"></script>
|
||||||
<!-- The ReactDOM Library -->
|
<!-- The ReactDOM Library -->
|
||||||
<script src="https://fb.me/react-dom-0.14.0.js"></script>
|
<script src="https://fb.me/react-dom-0.14.1.js"></script>
|
||||||
```
|
```
|
||||||
|
|
||||||
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.
|
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.
|
||||||
|
|
||||||
If you'd like to use [bower](http://bower.io), it's as easy as:
|
If you'd like to use [bower](http://bower.io), it's as easy as:
|
||||||
|
|
||||||
|
|
|
@ -36,4 +36,4 @@ sass:
|
||||||
sass_dir: _css
|
sass_dir: _css
|
||||||
gems:
|
gems:
|
||||||
- jekyll-redirect-from
|
- jekyll-redirect-from
|
||||||
react_version: 0.14.0-alpha
|
react_version: 0.14.1
|
||||||
|
|
|
@ -0,0 +1,40 @@
|
||||||
|
---
|
||||||
|
title: "React v0.14.1"
|
||||||
|
author: zpao
|
||||||
|
---
|
||||||
|
|
||||||
|
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!
|
||||||
|
|
||||||
|
The release is now available for download:
|
||||||
|
|
||||||
|
* **React**
|
||||||
|
Dev build with warnings: <https://fb.me/react-0.14.1.js>
|
||||||
|
Minified build for production: <https://fb.me/react-0.14.1.min.js>
|
||||||
|
* **React with Add-Ons**
|
||||||
|
Dev build with warnings: <https://fb.me/react-with-addons-0.14.1.js>
|
||||||
|
Minified build for production: <https://fb.me/react-with-addons-0.14.1.min.js>
|
||||||
|
* **React DOM** (include React in the page before React DOM)
|
||||||
|
Dev build with warnings: <https://fb.me/react-dom-0.14.1.js>
|
||||||
|
Minified build for production: <https://fb.me/react-dom-0.14.1.min.js>
|
||||||
|
|
||||||
|
We've also published version `0.14.1` of the `react`, `react-dom`, and addons packages on npm and the `react` package on bower.
|
||||||
|
|
||||||
|
- - -
|
||||||
|
|
||||||
|
## Changelog
|
||||||
|
|
||||||
|
### React DOM
|
||||||
|
- Fixed bug where events wouldn't fire in old browsers when using React in development mode
|
||||||
|
- Fixed bug preventing use of `dangerouslySetInnerHTML` with Closure Compiler Advanced mode
|
||||||
|
- Added support for `srcLang`, `default`, and `kind` attributes for `<track>` elements
|
||||||
|
- Added support for `color` attribute
|
||||||
|
- Ensured legacy `.props` access on DOM nodes is updated on re-renders
|
||||||
|
|
||||||
|
### React TestUtils Add-on
|
||||||
|
- Fixed `scryRenderedDOMComponentsWithClass` so it works with SVG
|
||||||
|
|
||||||
|
### React CSSTransitionGroup Add-on
|
||||||
|
- Fix bug preventing `0` to be used as a timeout value
|
||||||
|
|
||||||
|
### React on Bower
|
||||||
|
- Added `react-dom.js` to `main` to improve compatibility with tooling
|
Binary file not shown.
|
@ -1,5 +1,5 @@
|
||||||
/**
|
/**
|
||||||
* ReactDOM v0.14.0
|
* ReactDOM v0.14.1
|
||||||
*
|
*
|
||||||
* Copyright 2013-2015, Facebook, Inc.
|
* Copyright 2013-2015, Facebook, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue