Skip to content

Commit 56eab4b

Browse files
committed
1.10.0
1 parent 33c1aaf commit 56eab4b

File tree

3 files changed

+23
-2
lines changed

3 files changed

+23
-2
lines changed

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,26 @@
88

99
#### Bug Fixes
1010

11+
## 1.10.0 (October 6, 2016)
12+
13+
#### Breaking Changes
14+
15+
- Alias `window = this;` has been removed from the default server rendering JavaScript to improve detection of the server rendering environment. To get the old behavior, you can add the alias in your own server rendering code. #615
16+
17+
#### New Features
18+
19+
- Calling `setTimeout` or `clearTimeout` in server rendering will raise an informative error because they aren't supported #618
20+
- `prerender:` options will be passed to server renderer methods #641
21+
- `react_component(..., camelize_props:)` option will override the application default #642, #645
22+
- Ship with React.js 15.4.1 #646
23+
24+
#### Deprecation
25+
26+
#### Bug Fixes
27+
28+
- use `['default']` accessor to support old JavaScript versions #619
29+
- `react_component` with a block will correctly render the content inside the `div`
30+
1131
## 1.9.0 (October 6, 2016)
1232

1333
#### Breaking Changes

VERSIONS.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ You can control what version of React.js (and JSXTransformer) is used by `react-
99

1010
| Gem | React.js |
1111
|----------|----------|
12-
| master | 15.3.0 |
12+
| master | 15.4.1 |
13+
| 1.10.0 | 15.4.1 |
1314
| 1.9.0 | 15.3.0 |
1415
| 1.8.2 | 15.3.0 |
1516
| 1.8.1 | 15.2.1 |

lib/react/rails/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ module React
22
module Rails
33
# If you change this, make sure to update VERSIONS.md
44
# And the version hint in README.md, if needed
5-
VERSION = "1.9.0"
5+
VERSION = "1.10.0"
66
end
77
end

0 commit comments

Comments
 (0)