You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We've also built a [starter kit](http://facebook.github.io/react/downloads/react-0.12.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](http://facebook.github.io/react/downloads/react-0.12.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.
44
44
45
45
If you'd like to use [bower](http://bower.io), it's as easy as:
We just shipped React v0.12.2, bringing the 0.12 branch up to date with a few small fixes that landed in master over the past 2 months.
7
+
8
+
You may have noticed that we did not do an announcement for v0.12.1. That release was snuck out in anticipation of [Flow](http://flowtype.org/), with only transform-related changes. Namely we added a flag to the `jsx` executable which allowed you to safely transform Flow-based code to vanilla JS. If you didn't update for that release, you can safely skip it and move directly to v0.12.2.
9
+
10
+
The release is available for download from the CDN:
11
+
12
+
***React**
13
+
Dev build with warnings: <http://fb.me/react-0.12.2.js>
14
+
Minified build for production: <http://fb.me/react-0.12.2.min.js>
15
+
***React with Add-Ons**
16
+
Dev build with warnings: <http://fb.me/react-with-addons-0.12.2.js>
17
+
Minified build for production: <http://fb.me/react-with-addons-0.12.2.min.js>
18
+
***In-Browser JSX transformer**
19
+
<http://fb.me/JSXTransformer-0.12.2.js>
20
+
21
+
We've also published version `0.12.2` of the `react` and `react-tools` packages on npm and the `react` package on bower. `0.12.1` is also available in the same locations if need those.
22
+
23
+
Please try these builds out and [file an issue on GitHub](https://github.com/facebook/react/issues/new) if you see anything awry.
24
+
25
+
## Changelog
26
+
27
+
### React Core
28
+
29
+
* Added support for more HTML attributes: `formAction`, `formEncType`, `formMethod`, `formTarget`, `marginHeight`, `marginWidth`
30
+
* Added `strokeOpacity` to the list of unitless CSS properties
31
+
* Removed trailing commas (allows npm module to be bundled and used in IE8)
32
+
* Fixed bug resulting in error when passing `undefined` to `React.createElement` - now there is a useful warning
33
+
34
+
### React Tools
35
+
36
+
* JSX-related transforms now always use double quotes for props and `displayName`
0 commit comments