Skip to content

Commit

Permalink
Bring over updates for 0.14.1 release
Browse files Browse the repository at this point in the history
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)
  • Loading branch information
zpao committed Oct 28, 2015
1 parent a65a485 commit ee06df1
Show file tree
Hide file tree
Showing 7 changed files with 425 additions and 342 deletions.
21 changes: 20 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,12 @@ The fastest way to get started is to serve JavaScript from the CDN (also availab

```html
<!-- 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 -->
<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:

Expand Down
2 changes: 1 addition & 1 deletion docs/_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ sass:
sass_dir: _css
gems:
- jekyll-redirect-from
react_version: 0.14.0-alpha
react_version: 0.14.1
40 changes: 40 additions & 0 deletions docs/_posts/2015-10-28-react-v0.14.1.md
Original file line number Diff line number Diff line change
@@ -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 added docs/downloads/react-0.14.1.zip
Binary file not shown.
2 changes: 1 addition & 1 deletion docs/js/react-dom.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* ReactDOM v0.14.0
* ReactDOM v0.14.1
*
* Copyright 2013-2015, Facebook, Inc.
* All rights reserved.
Expand Down
Loading

0 comments on commit ee06df1

Please sign in to comment.