Skip to content

Commit 1d7ea35

Browse files
committed
v0.13 RC blog post
Note: we need to manually specify date in these files so that the sort order is correct (2 posts on the same day). Otherwise it will just be ABC order, which is wrong. Closes: facebook#3256 (cherry picked from commit 63146e1)
1 parent 4d90b9b commit 1d7ea35

File tree

2 files changed

+79
-0
lines changed

2 files changed

+79
-0
lines changed
Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
---
2+
title: "React v0.13 RC"
3+
author: Paul O'Shannessy
4+
date: 2015-02-24 14:00
5+
---
6+
7+
Over the weekend we pushed out our first (and hopefully only) release candidate for React v0.13!
8+
9+
We've talked a little bit about the changes that are coming. The splashiest of these changes is support for ES6 Classes. You can read more about this in [our beta announcement](/react/blog/2015/01/27/react-v0.13.0-beta-1.html). We're really excited about this! Sebastian also posted earlier this morning about [some of the other changes coming focused around ReactElement](/react/blog/2015/02/24/streamlining-react-elements.html). The changes we've been working on there will hopefully enable lots of improvements to performance and developer experience.
10+
11+
12+
The release candidate is available for download:
13+
14+
* **React**
15+
Dev build with warnings: <http://fb.me/react-0.13.0-rc1.js>
16+
Minified build for production: <http://fb.me/react-0.13.0-rc1.min.js>
17+
* **React with Add-Ons**
18+
Dev build with warnings: <http://fb.me/react-with-addons-0.13.0-rc1.js>
19+
Minified build for production: <http://fb.me/react-with-addons-0.13.0-rc1.min.js>
20+
* **In-Browser JSX transformer**
21+
<http://fb.me/JSXTransformer-0.13.0-rc1.js>
22+
23+
We've also published version `0.13.0-rc1` of the `react` and `react-tools` packages on npm and the `react` package on bower.
24+
25+
- - -
26+
27+
## Changelog
28+
29+
### React Core
30+
31+
#### Breaking Changes
32+
33+
* Mutating `props` after an element is created is deprecated and will cause warnings in development mode; future versions of React will incorporate performance optimizations assuming that props aren't mutated
34+
* Static methods (defined in `statics`) are no longer autobound to the component class
35+
* `ref` resolution order has changed slightly such that a ref to a component is available immediately after its `componentDidMount` method is called; this change should be observable only if your component calls a parent component's callback within your `componentDidMount`, which is an anti-pattern and should be avoided regardless
36+
* Calls to `setState` in life-cycle methods are now always batched and therefore asynchronous. Previously the first call on the first mount was synchronous.
37+
* `setState` and `forceUpdate` on an unmounted component now warns instead of throwing. That avoids a possible race condition with Promises.
38+
* Access to most internal properties has been completely removed, including `this._pendingState` and `this._rootNodeID`.
39+
40+
#### New Features
41+
42+
* Support for using ES6 classes to build React components; see the [v0.13.0 beta 1 notes](http://facebook.github.io/react/blog/2015/01/27/react-v0.13.0-beta-1.html) for details
43+
* Added new top-level API `React.findDOMNode(component)`, which should be used in place of `component.getDOMNode()`. The base class for ES6-based components will not have `getDOMNode`. This change will enable some more patterns moving forward.
44+
* New `ref` style, allowing a callback to be used in place of a name: `<Photo ref={(c) => this._photo = c} />` allows you to reference the component with `this._photo` (as opposed to `ref="photo"` which gives `this.refs.photo`)
45+
* `this.setState()` can now take a function as the first argument for transactional state updates, such as `this.setState((state, props) => ({count: state.count + 1}));` -- this means that you no longer need to use this._pendingState, which is now gone.
46+
* Support for iterators and immutable-js sequences as children
47+
48+
#### Deprecations
49+
50+
* `ComponentClass.type` is deprecated. Just use `ComponentClass` (usually as `element.type === ComponentClass`)
51+
* Some methods that are available on `createClass`-based components are removed or deprecated from ES6 classes (for example, `getDOMNode`, `setProps`, `replaceState`).
52+
53+
54+
### React with Add-Ons
55+
56+
#### Deprecations
57+
58+
* `React.addons.classSet` is now deprecated. This functionality can be replaced with several freely available modules. [classnames](https://www.npmjs.com/package/classnames) is one such module.
59+
60+
61+
### React Tools
62+
63+
#### Breaking Changes
64+
65+
* When transforming ES6 syntax, `class` methods are no longer enumerable by default, which requires `Object.defineProperty`; if you support browsers such as IE8, you can pass `--target es3` to mirror the old behavior
66+
67+
#### New Features
68+
69+
* `--target` option is available on the jsx command, allowing users to specify and ECMAScript version to target.
70+
* `es5` is the default.
71+
* `es3` restored the previous default behavior. An additional transform is added here to ensure the use of reserved words as properties is safe (eg `this.static` will become `this['static']` for IE8 compatibility).
72+
* The transform for the call spread operator has also been enabled.
73+
74+
75+
### JSX
76+
77+
#### Breaking Changes
78+
* A change was made to how some JSX was parsed, specifically around the use of `>` or `}` when inside an element. Previously it would be treated as a string but now it will be treated as a parse error. We will be releasing a standalone executable to find and fix potential issues in your JSX code.

docs/_posts/2015-02-24-streamlining-react-elements.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
title: "Streamlining React Elements"
33
author: Sebastian Markbåge
4+
date: 2015-02-24 11:00
45
---
56

67
React v0.13 is right around the corner and so we wanted to discuss some upcoming changes to ReactElement. In particular, we added several warnings to some esoteric use cases of ReactElement. There are no runtime behavior changes for ReactElement - we're adding these warnings in the hope that we can change some behavior in v0.14 if the changes are valuable to the community.

0 commit comments

Comments
 (0)