Skip to content

Commit c0686b1

Browse files
committed
1.6.2
1 parent 4087f9c commit c0686b1

File tree

3 files changed

+8
-55
lines changed

3 files changed

+8
-55
lines changed

CHANGELOG.md

Lines changed: 6 additions & 54 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,19 @@
88

99
#### Bug Fixes
1010

11-
## 1.6.1 (February 28, 2016)
11+
## 1.6.2 (February 28, 2016)
1212

13-
#### Breaking Changes
13+
#### Bug Fixes
14+
15+
- Fix Server Rendering for Rails 3.2 #487
16+
17+
## 1.6.1 (February 28, 2016)
1418

1519
#### New Features
1620

1721
- UJS can mount and unmount a component by ID (not only the component's children) #466
1822
- Support Turbolinks 5 #475
1923

20-
#### Deprecation
21-
2224
#### Bug Fixes
2325

2426
- Support nested arrays with `camelize_props` #480
@@ -27,16 +29,12 @@
2729

2830
## 1.6.0 (February 4, 2016)
2931

30-
#### Breaking Changes
31-
3232
#### New Features
3333

3434
- Individual add-ons can be included in a bundle with sprockets require directives. #457
3535
- Support `sprockets-rails` 3 #430
3636
- Update to React 0.14.6
3737

38-
#### Deprecation
39-
4038
#### Bug Fixes
4139

4240
- Fix install generator when `//= require`s are malformed #463
@@ -46,123 +44,77 @@
4644

4745
## 1.5.0 (November 25, 2015)
4846

49-
#### Breaking Changes
50-
5147
#### New Features
5248

5349
- Update to React 0.14.3 #412
5450
- `config.react.camelize_props = true` will camelize `react_component` prop keys #409
5551

56-
#### Deprecation
57-
5852
#### Bug Fixes
5953

6054
- Fix chained `.es6` file names with JSX processor #411
6155
- Don't insert `// =require`s multiple times #398
6256

6357
## 1.4.2 (November 5, 2015)
6458

65-
#### Breaking Changes
66-
6759
#### New Features
6860

6961
- Component generator `--coffee` option #387
7062
- Support Sprockets 4 with a JSX processor #385
7163

72-
#### Deprecation
73-
7464
#### Bug Fixes
7565

7666
- Support custom attributes when rendering from controller #384
7767

7868
## 1.4.1 (October 23, 2015)
7969

80-
#### Breaking Changes
81-
82-
#### New Features
83-
84-
#### Deprecation
85-
8670
#### Bug Fixes
8771

8872
- Minify & optimize the production build of React.js #380
8973

9074
## 1.4.0 (October 22, 2015)
9175

92-
#### Breaking Changes
93-
9476
#### New Features
9577

9678
- Include React.js 0.14
9779

98-
#### Deprecation
99-
100-
#### Bug Fixes
101-
10280
## 1.3.3 (October 21, 2015)
10381

104-
#### Breaking Changes
105-
106-
#### New Features
107-
108-
#### Deprecation
109-
11082
#### Bug Fixes
11183

11284
- Also support React 0.14 in `unmountComponents` #372
11385
- Use a fallback view helper in case a Rails controller wasn't used #375
11486

11587
## 1.3.2 (October 13, 2015)
11688

117-
#### Breaking Changes
118-
11989
#### New Features
12090

12191
- The UJS can mount and unmount components within a given DOM node #358
12292
- Support dropped-in React 0.14 in UJS #366
12393

124-
#### Deprecation
125-
126-
#### Bug Fixes
127-
12894
## 1.3.1 (September 18, 2015)
12995

130-
#### Breaking Changes
131-
132-
#### New Features
133-
134-
#### Deprecation
135-
13696
#### Bug Fixes
13797

13898
- Use controller lifecycle hooks for view helper (tests don't run middlewares) #356
13999

140100
## 1.3.0 (September 15, 2015)
141101

142-
#### Breaking Changes
143-
144102
#### New Features
145103

146104
- Render components directly from the controller with `render component: ...` #329
147105
- Provide a custom view helper with `config.react.view_helper_implementation` #346
148106

149-
#### Deprecation
150-
151107
#### Bug Fixes
152108

153109
- Allow `react-rails` configs to be set in initializers #347
154110

155111
## 1.2.0 (August 19, 2015)
156112

157-
#### Breaking Changes
158-
159113
#### New Features
160114

161115
- Support `--es6` option in component generator #332
162116
- Support Sprockets 3 #322
163117

164-
#### Deprecation
165-
166118
#### Bug Fixes
167119

168120
- Don't bother unmounting components `onBeforeUnload` #318

VERSIONS.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ You can control what version of React.js (and JSXTransformer) is used by `react-
1010
| Gem | React.js |
1111
|----------|----------|
1212
| master | 0.14.6 |
13+
| 1.6.2 | 0.14.6 |
1314
| 1.6.1 | 0.14.6 |
1415
| 1.6.0 | 0.14.6 |
1516
| 1.5.0 | 0.14.3 |

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.6.1'
5+
VERSION = '1.6.2'
66
end
77
end

0 commit comments

Comments
 (0)