Skip to content

Commit 1e1f02a

Browse files
committed
Merge pull request #2724 from zpao/release-0.12.2
Release 0.12.2
2 parents b02db22 + 6c5cb72 commit 1e1f02a

21 files changed

+141
-46
lines changed

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
## 0.12.2 (December 18, 2014)
2+
3+
### React Core
4+
5+
* Added support for more HTML attributes: `formAction`, `formEncType`, `formMethod`, `formTarget`, `marginHeight`, `marginWidth`
6+
* Added `strokeOpacity` to the list of unitless CSS properties
7+
* Removed trailing commas (allows npm module to be bundled and used in IE8)
8+
* Fixed bug resulting in error when passing `undefined` to `React.createElement` - now there is a useful warning
9+
10+
### React Tools
11+
12+
* JSX-related transforms now always use double quotes for props and `displayName`
13+
14+
115
## 0.12.1 (November 18, 2014)
216

317
### React Tools

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 the CDN (also availab
3535

3636
```html
3737
<!-- The core React library -->
38-
<script src="http://fb.me/react-0.12.1.js"></script>
38+
<script src="http://fb.me/react-0.12.2.js"></script>
3939
<!-- In-browser JSX transformer, remove when pre-compiling JSX. -->
40-
<script src="http://fb.me/JSXTransformer-0.12.1.js"></script>
40+
<script src="http://fb.me/JSXTransformer-0.12.2.js"></script>
4141
```
4242

43-
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.
4444

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

docs/_config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,4 @@ sass:
3434
sass_dir: _css
3535
gems:
3636
- jekyll-redirect-from
37-
react_version: 0.12.1
37+
react_version: 0.12.2

docs/_js/jsx-compiler.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ var CompilerPlayground = React.createClass({
3737
</label>
3838
</div>
3939
);
40-
},
40+
}
4141
});
4242
React.render(
4343
<CompilerPlayground />,
+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
---
2+
title: React v0.12.2
3+
author: Paul O’Shannessy
4+
---
5+
6+
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`
37+

docs/docs/ref-04-tags-and-attributes.md

+7-6
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,13 @@ accept acceptCharset accessKey action allowFullScreen allowTransparency alt
5656
async autoComplete autoPlay cellPadding cellSpacing charSet checked classID
5757
className cols colSpan content contentEditable contextMenu controls coords
5858
crossOrigin data dateTime defer dir disabled download draggable encType form
59-
formNoValidate frameBorder height hidden href hrefLang htmlFor httpEquiv icon
60-
id label lang list loop manifest max maxLength media mediaGroup method min
61-
multiple muted name noValidate open pattern placeholder poster preload
62-
radioGroup readOnly rel required role rows rowSpan sandbox scope scrolling
63-
seamless selected shape size sizes span spellCheck src srcDoc srcSet start step
64-
style tabIndex target title type useMap value width wmode
59+
formAction formEncType formMethod formNoValidate formTarget frameBorder height
60+
hidden href hrefLang htmlFor httpEquiv icon id label lang list loop manifest
61+
marginHeight marginWidth max maxLength media mediaGroup method min multiple
62+
muted name noValidate open pattern placeholder poster preload radioGroup
63+
readOnly rel required role rows rowSpan sandbox scope scrolling seamless
64+
selected shape size sizes span spellCheck src srcDoc srcSet start step style
65+
tabIndex target title type useMap value width wmode
6566
```
6667

6768
In addition, the following non-standard attributes are supported:

docs/downloads/react-0.12.2.zip

885 KB
Binary file not shown.

docs/tips/06-style-props-value-px.md

+1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ Sometimes you _do_ want to keep the CSS properties unitless. Here's a list of pr
2929
- `opacity`
3030
- `order`
3131
- `orphans`
32+
- `strokeOpacity`
3233
- `widows`
3334
- `zIndex`
3435
- `zoom`

examples/basic-commonjs/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
"description": "Basic example of using React with CommonJS",
44
"main": "index.js",
55
"devDependencies": {
6-
"envify": "~1.2.1",
7-
"react": "~0.10.0",
8-
"reactify": "~0.13.1",
9-
"browserify": "~3.44.2"
6+
"browserify": "^6.3.3",
7+
"envify": "^3.2.0",
8+
"react": "^0.12.0",
9+
"reactify": "^0.17.1"
1010
},
1111
"scripts": {
1212
"build": "browserify --debug --transform reactify index.js > bundle.js"

npm-react/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "react",
33
"description": "React is a JavaScript library for building user interfaces.",
4-
"version": "0.12.1",
4+
"version": "0.12.2",
55
"keywords": [
66
"react"
77
],

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "react-tools",
33
"description": "A set of complementary tools to React, including the JSX transformer.",
4-
"version": "0.12.1",
4+
"version": "0.12.2",
55
"keywords": [
66
"react",
77
"jsx",

src/browser/ui/React.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,6 @@ if (__DEV__) {
179179

180180
// Version exists only in the open-source version of React, not in Facebook's
181181
// internal version.
182-
React.version = '0.12.1';
182+
React.version = '0.12.2';
183183

184184
module.exports = React;

src/browser/ui/dom/CSSProperty.js

+5-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
*/
1717
var isUnitlessNumber = {
1818
columnCount: true,
19-
fillOpacity: true,
2019
flex: true,
2120
flexGrow: true,
2221
flexShrink: true,
@@ -28,7 +27,11 @@ var isUnitlessNumber = {
2827
orphans: true,
2928
widows: true,
3029
zIndex: true,
31-
zoom: true
30+
zoom: true,
31+
32+
// SVG-related properties
33+
fillOpacity: true,
34+
strokeOpacity: true
3235
};
3336

3437
/**

src/browser/ui/dom/HTMLDOMPropertyConfig.js

+6
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,11 @@ var HTMLDOMPropertyConfig = {
8888
draggable: null,
8989
encType: null,
9090
form: MUST_USE_ATTRIBUTE,
91+
formAction: MUST_USE_ATTRIBUTE,
92+
formEncType: MUST_USE_ATTRIBUTE,
93+
formMethod: MUST_USE_ATTRIBUTE,
9194
formNoValidate: HAS_BOOLEAN_VALUE,
95+
formTarget: MUST_USE_ATTRIBUTE,
9296
frameBorder: MUST_USE_ATTRIBUTE,
9397
height: MUST_USE_ATTRIBUTE,
9498
hidden: MUST_USE_ATTRIBUTE | HAS_BOOLEAN_VALUE,
@@ -103,6 +107,8 @@ var HTMLDOMPropertyConfig = {
103107
list: MUST_USE_ATTRIBUTE,
104108
loop: MUST_USE_PROPERTY | HAS_BOOLEAN_VALUE,
105109
manifest: MUST_USE_ATTRIBUTE,
110+
marginHeight: null,
111+
marginWidth: null,
106112
max: null,
107113
maxLength: MUST_USE_ATTRIBUTE,
108114
media: MUST_USE_ATTRIBUTE,

src/core/ReactElement.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ ReactElement.createElement = function(type, config, children) {
174174
}
175175

176176
// Resolve default props
177-
if (type.defaultProps) {
177+
if (type && type.defaultProps) {
178178
var defaultProps = type.defaultProps;
179179
for (propName in defaultProps) {
180180
if (typeof props[propName] === 'undefined') {

src/core/ReactElementValidator.js

+28-16
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ var ReactPropTypeLocations = require('ReactPropTypeLocations');
2323
var ReactCurrentOwner = require('ReactCurrentOwner');
2424

2525
var monitorCodeUse = require('monitorCodeUse');
26+
var warning = require('warning');
2627

2728
/**
2829
* Warn if there's no key explicitly set on dynamic arrays of children or
@@ -220,6 +221,15 @@ function checkPropTypes(componentName, propTypes, props, location) {
220221
var ReactElementValidator = {
221222

222223
createElement: function(type, props, children) {
224+
// We warn in this case but don't throw. We expect the element creation to
225+
// succeed and there will likely be errors in render.
226+
warning(
227+
type != null,
228+
'React.createElement: type should not be null or undefined. It should ' +
229+
'be a string (for DOM elements) or a ReactClass (for composite ' +
230+
'components).'
231+
);
232+
223233
var element = ReactElement.createElement.apply(this, arguments);
224234

225235
// The result can be nullish if a mock or a custom function is used.
@@ -232,22 +242,24 @@ var ReactElementValidator = {
232242
validateChildKeys(arguments[i], type);
233243
}
234244

235-
var name = type.displayName;
236-
if (type.propTypes) {
237-
checkPropTypes(
238-
name,
239-
type.propTypes,
240-
element.props,
241-
ReactPropTypeLocations.prop
242-
);
243-
}
244-
if (type.contextTypes) {
245-
checkPropTypes(
246-
name,
247-
type.contextTypes,
248-
element._context,
249-
ReactPropTypeLocations.context
250-
);
245+
if (type) {
246+
var name = type.displayName;
247+
if (type.propTypes) {
248+
checkPropTypes(
249+
name,
250+
type.propTypes,
251+
element.props,
252+
ReactPropTypeLocations.prop
253+
);
254+
}
255+
if (type.contextTypes) {
256+
checkPropTypes(
257+
name,
258+
type.contextTypes,
259+
element._context,
260+
ReactPropTypeLocations.context
261+
);
262+
}
251263
}
252264
return element;
253265
},

src/core/ReactNativeComponent.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ function createInstanceForTag(tag, props, parentType) {
6363

6464
var ReactNativeComponent = {
6565
createInstanceForTag: createInstanceForTag,
66-
injection: ReactNativeComponentInjection,
66+
injection: ReactNativeComponentInjection
6767
};
6868

6969
module.exports = ReactNativeComponent;

src/core/__tests__/ReactCompositeComponent-test.js

+21
Original file line numberDiff line numberDiff line change
@@ -1483,4 +1483,25 @@ describe('ReactCompositeComponent', function() {
14831483
);
14841484
});
14851485

1486+
it('gives a helpful error when passing null or undefined', function() {
1487+
spyOn(console, 'warn');
1488+
React.createElement(undefined);
1489+
React.createElement(null);
1490+
expect(console.warn.calls.length).toBe(2);
1491+
expect(console.warn.calls[0].args[0]).toBe(
1492+
'Warning: React.createElement: type should not be null or undefined. ' +
1493+
'It should be a string (for DOM elements) or a ReactClass (for ' +
1494+
'composite components).'
1495+
);
1496+
expect(console.warn.calls[1].args[0]).toBe(
1497+
'Warning: React.createElement: type should not be null or undefined. ' +
1498+
'It should be a string (for DOM elements) or a ReactClass (for ' +
1499+
'composite components).'
1500+
);
1501+
React.createElement('div');
1502+
expect(console.warn.calls.length).toBe(2);
1503+
1504+
expect(() => React.createElement(undefined)).not.toThrow()
1505+
});
1506+
14861507
});

vendor/fbtransform/transforms/__tests__/react-displayName-test.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ describe('react displayName jsx', function() {
2424
var code = [
2525
'"use strict";',
2626
'var Whateva = React.createClass({',
27-
' displayName: \'Whateva\',',
27+
' displayName: "Whateva",',
2828
' render: function() {',
2929
' return null;',
3030
' }',
@@ -34,7 +34,7 @@ describe('react displayName jsx', function() {
3434
var result = [
3535
'"use strict";',
3636
'var Whateva = React.createClass({',
37-
' displayName: \'Whateva\',',
37+
' displayName: "Whateva",',
3838
' render: function() {',
3939
' return null;',
4040
' }',
@@ -54,7 +54,7 @@ describe('react displayName jsx', function() {
5454
].join('\n');
5555

5656
var result = [
57-
'var Component = React.createClass({displayName: \'Component\',',
57+
'var Component = React.createClass({displayName: "Component",',
5858
' render: function() {',
5959
' return null;',
6060
' }',
@@ -76,7 +76,7 @@ describe('react displayName jsx', function() {
7676

7777
var result = [
7878
'var Component;',
79-
'Component = React.createClass({displayName: \'Component\',',
79+
'Component = React.createClass({displayName: "Component",',
8080
' render: function() {',
8181
' return null;',
8282
' }',
@@ -96,7 +96,7 @@ describe('react displayName jsx', function() {
9696
].join('\n');
9797

9898
var result = [
99-
'exports.Component = React.createClass({displayName: \'Component\',',
99+
'exports.Component = React.createClass({displayName: "Component",',
100100
' render: function() {',
101101
' return null;',
102102
' }',
@@ -119,7 +119,7 @@ describe('react displayName jsx', function() {
119119

120120
var result = [
121121
'exports = {',
122-
' Component: React.createClass({displayName: \'Component\',',
122+
' Component: React.createClass({displayName: "Component",',
123123
' render: function() {',
124124
' return null;',
125125
' }',

vendor/fbtransform/transforms/reactDisplayName.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ function addDisplayName(displayName, object, state) {
3333

3434
if (safe) {
3535
utils.catchup(object['arguments'][0].range[0] + 1, state);
36-
utils.append("displayName: '" + displayName + "',", state);
36+
utils.append('displayName: "' + displayName + '",', state);
3737
}
3838
}
3939
}

vendor/fbtransform/transforms/xjs.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ function renderXJSExpressionContainer(traverse, object, isLast, path, state) {
231231
function quoteAttrName(attr) {
232232
// Quote invalid JS identifiers.
233233
if (!/^[a-z_$][a-z\d_$]*$/i.test(attr)) {
234-
return "'" + attr + "'";
234+
return '"' + attr + '"';
235235
}
236236
return attr;
237237
}

0 commit comments

Comments
 (0)