react-on-rails 13.0.2 → 13.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md DELETED
@@ -1,1141 +0,0 @@
1
- # Change Log
2
- All notable changes to this project's source code will be documented in this file. Items under `Unreleased` is upcoming features that will be out in next version. NOTE: major versions of the npm module and the gem must be kept in sync.
3
-
4
- Migration instructions for the major updates can be found [here](https://www.shakacode.com/react-on-rails/docs/guides/upgrading-react-on-rails#upgrading-to-version-9.md). Some smaller migration information can be found here.
5
-
6
- ## Need Help Migrating?
7
- If you would like help in migrating between React on Rails versions or help with implementing server rendering, please contact [justin@shakacode.com](mailto:justin@shakacode.com) for information about our [React on Rails Pro Support Options](https://www.shakacode.com/react-on-rails-pro).
8
-
9
- We specialize in helping companies to quickly and efficiently move from versions before 9 to current. The older versions use the Rails asset pipeline to package client assets. The current and recommended way is to use Webpack 4 for asset preparation. You may also need help migrating from the `rails/webpacker`'s Webpack configuration to a better setup ready for Server Side Rendering.
10
-
11
- ## Contributors
12
- Please follow the recommendations outlined at [keepachangelog.com](http://keepachangelog.com/). Please use the existing headings and styling as a guide, and add a link for the version diff at the bottom of the file. Also, please update the `Unreleased` link to compare to the latest release version.
13
-
14
- ## Versions
15
- ### [Unreleased]
16
- Changes since last non-beta release.
17
-
18
- *Please add entries here for your pull requests that are not yet released.*
19
- ### [13.0.2] - 2022-03-09
20
- #### Fixed
21
- - React 16 doesn't support version property, causing problems loading React on Rails. [PR 1435](https://github.com/shakacode/react_on_rails/pull/1435) by [justin808](https://github.com/justin808).
22
-
23
- ### [13.0.1] - 2022-02-09
24
- #### Improved
25
- - Updated the default generator. [PR 1431](https://github.com/shakacode/react_on_rails/pull/1431) by [justin808](https://github.com/justin808).
26
-
27
- ### [13.0.0] - 2022-02-08
28
- #### Breaking
29
- - Removed webpacker as a dependency. Add gem Shakapacker to your project, and update your package.json to also use shakapacker.
30
-
31
- #### Fixed
32
- - Propper throwing of exceptions.
33
- - Default configuration better handles test env.
34
-
35
- ### [12.6.0] - 2022-01-22
36
-
37
- ### Added
38
- - A `rendering_props_extension` configuration which takes a module with an `adjust_props_for_client_side_hydration` method, which is used to process props differently for server/client if `prerender` is set to `true`. [PR 1413](https://github.com/shakacode/react_on_rails/pull/1413) by [gscarv13](https://github.com/gscarv13) & [judahmeek](https://github.com/judahmeek).
39
-
40
- ### [12.5.2] - 2021-12-29
41
- ### Fixed
42
- - Usage of config.build_production_command for custom command for production builds fixed. [PR 1415](https://github.com/shakacode/react_on_rails/pull/1415) by [judahmeek](https://github.com/judahmeek).
43
-
44
- ### [12.5.1] - 2021-12-27
45
-
46
- ### Fixed
47
- - A fatal server rendering error if running an ReactOnRails >=12.4.0 with ReactOnRails Pro <2.4.0. [PR 1412](https://github.com/shakacode/react_on_rails/pull/1412) by [judahmeek](https://github.com/judahmeek).
48
-
49
- ### [12.5.0] - 2021-12-26
50
-
51
- #### Added
52
- - Support for React 18, including the changed SSR API. [PR 1409](https://github.com/shakacode/react_on_rails/pull/1409) by [kylemellander](https://github.com/kylemellander).
53
- - Added webpack configuration files as part of the generator and updated webpacker to version 6. [PR 1404](https://github.com/shakacode/react_on_rails/pull/1404) by [gscarv13](https://github.com/gscarv13).
54
- - Supports Rails 7.
55
-
56
- #### Changed
57
- - Changed logic of determining the usage of the default rails/webpacker webpack config or a custom command to only check if the config.build_production_command is defined. [PR 1402](https://github.com/shakacode/react_on_rails/pull/1402) by [justin808](https://github.com/justin808) and [gscarv13](https://github.com/gscarv13).
58
- - Minimimum required Ruby is 2.7 to match lastest rails/webpacker.
59
-
60
- ### [12.4.0] - 2021-09-22
61
- #### Added
62
- - ScoutAPM tracing support for server rendering [PR 1379](https://github.com/shakacode/react_on_rails/pull/1379) by [justin808](https://github.com/justin808).
63
-
64
- - Ability to stop React on Rails from modifying or creating the `assets:precompile` task. [PR 1371](https://github.com/shakacode/react_on_rails/pull/1371) by [justin808](https://github.com/justin808). Thanks to [elstgav](https://github.com/elstgav) for [the suggestion](https://github.com/shakacode/react_on_rails/issues/1368)!
65
-
66
- - Ability to stop stubbing of setTimeout, setInterval, & clearTimeout conditional by setting `ReactOnRailsPro.config.include_execjs_polyfills = false` in the React on Rails Pro configuration file. Also, added the ability to have render functions return a promise to be awaited by React on Rails Pro Node Renderer. [PR 1380](https://github.com/shakacode/react_on_rails/pull/1380) by [judahmeek](https://github.com/judahmeek)
67
-
68
- ### [12.3.0] - 2021-07-26
69
- #### Added
70
- - Ability to use with Turbo (@hotwired/turbo), as Turbolinks gets obsolete. [PR 1374](https://github.com/shakacode/react_on_rails/pull/1374) by [pgruener](https://github.com/pgruener) and [PR 1377](https://github.com/shakacode/react_on_rails/pull/1377) by [mdesantis](https://github.com/mdesantis).
71
-
72
- To configure turbo the following option can be set:
73
- `ReactOnRails.setOptions({ turbo: true })`
74
-
75
- ### [12.2.0] - 2021-03-25
76
- #### Added
77
- - Ability to configure server react rendering to throw rather than just logging the error. Useful for
78
- React on Rails Pro Node rendering [PR 1365](https://github.com/shakacode/react_on_rails/pull/1365) by [justin808](https://github.com/justin808).
79
-
80
- ### [12.1.0] - 2021-03-23
81
- #### Added
82
- - Added the ability to assign a module with a `call` method to `config.build_production_command`. See [the configuration docs](https://www.shakacode.com/react-on-rails/docs/guides/configuration). [PR 1362: Accept custom module for config.build_production_command](https://github.com/shakacode/react_on_rails/pull/1362).
83
-
84
- #### Fixed
85
- - Stop setting NODE_ENV value during precompile, as it interferred with rails/webpacker's setting of NODE_ENV to production by default. Fixes [#1334](https://github.com/shakacode/react_on_rails/issues/1334). [PR 1356: Don't set NODE_ENV in assets.rake](https://github.com/shakacode/react_on_rails/pull/1356) by [alexrozanski](https://github.com/alexrozanski).
86
-
87
- ### [12.0.4] - 2020-11-14
88
- #### Fixed
89
- - Install generator now specifies the version. Fixes [React on Rails Generator installs the older npm package #1336](https://github.com/shakacode/react_on_rails/issues/1336). [PR 1338: Fix Generator to use Exact NPM Version](https://github.com/shakacode/react_on_rails/pull/1338) by [justin808](https://github.com/justin808).
90
-
91
- ### [12.0.3] - 2020-09-20
92
- #### Fixed
93
- - Async script loading optimizes page load speed. With this fix, a bundle
94
- can be loaded "async" and a handler function can determine when to hydrate.
95
- For an example of this, see the [docs for loadable-components SSR](https://loadable-components.com/docs/server-side-rendering/#4-add-loadableready-client-side).
96
- [PR 1327](https://github.com/shakacode/react_on_rails/pull/1327) by [justin808](https://github.com/justin808).
97
- Loadable-Components is supported by [React on Rails Pro](https://www.shakacode.com/react-on-rails-pro).
98
-
99
- ### [12.0.2] - 2020-07-09
100
- #### Fixed
101
- - Remove dependency upon Redux for Typescript types. [PR 1323](https://github.com/shakacode/react_on_rails/pull/1323) by [justin808](https://github.com/justin808).
102
-
103
- ### [12.0.1] - 2020-07-09
104
- #### Fixed
105
- - Changed invocation of webpacker:clean to use a very large number of versions so it does not acidentally delete the server-bundle.js. [PR 1306](https://github.com/shakacode/react_on_rails/pull/1306) by By [justin808](https://github.com/justin808).
106
-
107
- ### [12.0.0] - 2020-07-08
108
- For upgrade instructions, see [docs/guides/upgrading-react-on-rails.md](https://www.shakacode.com/react-on-rails/docs/guides/upgrading-react-on-rails).
109
-
110
- #### Major Improvements
111
- 1. **React Hooks Support** for top level components
112
- 2. **Typescript bindings**
113
- 3. **rails/webpacker** "just works" with React on Rails by default.
114
- 4. i18n support for generating a JSON file rather than a JS file.
115
-
116
- #### BREAKING CHANGE
117
- In order to solve the issues regarding React Hooks compatibility, the number of parameters
118
- for functions is used to determine if you have a generator function that will get invoked to
119
- return a React component, or you are registering a functional React component. Alternately, you can
120
- set JavaScript property `renderFunction` on the function for which you want to return to be
121
- invoked to return the React component. In that case, you won't need to pass any unused params.
122
- [PR 1268](https://github.com/shakacode/react_on_rails/pull/1268) by [justin808](https://github.com/justin808)
123
-
124
- See [docs/guides/upgrading-react-on-rails](https://www.shakacode.com/react-on-rails/docs/guides/upgrading-react-on-rails#upgrading-to-v12)
125
- for details.
126
-
127
- #### Other Updates
128
- * `react_on_rails` fully supports `rails/webpacker`. The example test app in `spec/dummy` was recently converted over to use rails/webpacker v4+. It's a good example of how to leverage rails/webpacker's webpack configuration for server-side rendering.
129
- * Changed the precompile task to use the rails/webpacker one by default
130
- * Updated generators to use React hooks
131
- * Requires the use of rails/webpacker view helpers
132
- * If the webpacker webpack config files exist, then React on Rails will not override the default
133
- assets:precompile setup by rails/webpacker. If you are not using the rails/webpacker setup for webpack,
134
- then be sure to remove the JS files inside of config/webpack, like `config/webpack/production.js.`
135
- * Removed **env_javascript_include_tag** and **env_stylesheet_link_tag** as these are replaced by view helpers
136
- from rails/webpacker
137
- * Removal of support for old Rubies and Rails.
138
- * Removal of config.symlink_non_digested_assets_regex as it's no longer needed with rails/webpacker.
139
- If any business needs this, we can move the code to a separate gem.
140
- * Added configuration option `same_bundle_for_client_and_server` with default `false` because
141
-
142
- 1. Production applications would typically have a server bundle that differs from the client bundle
143
- 2. This change only affects trying to use HMR with react_on_rails with rails/webpacker.
144
-
145
- The previous behavior was to always go to the webpack-dev-server for the server bundle if the
146
- webpack-dev-server was running _and_ the server bundle was found in the `manifest.json`.
147
-
148
- If you are using the **same bundle for client and server rendering**, then set this configuration option
149
- to `true`. By [justin808](https://github.com/shakacode/react_on_rails/pull/1240).
150
-
151
- * Added support to export locales in JSON format. New option added `i18n_output_format` which allows to
152
- specify locales format either `JSON` or `JS`. **`JSON` format is now the default.**
153
-
154
- **Use this config setting to get the old behavior: config.i18n_output_format = 'js'**
155
-
156
- [PR 1271](https://github.com/shakacode/react_on_rails/pull/1271) by [ashgaliyev](https://github.com/ashgaliyev).
157
-
158
- - Added Typescript definitions to the Node package. By [justin808](https://github.com/justin808) and [judahmeek](https://github.com/judahmeek) in [PR 1287](https://github.com/shakacode/react_on_rails/pull/1287).
159
- - Removed restriction to keep the server bundle in the same directory with the client bundles. Rails/webpacker 4 has an advanced cleanup that will remove any files in the directory of other webpack files. Removing this restriction allows the server bundle to be created in a sibling directory. By [justin808](https://github.com/shakacode/react_on_rails/pull/1240).
160
-
161
- ### [11.3.0] - 2019-05-24
162
- #### Added
163
- - Added method for retrieving any option from `render_options` [PR 1213](https://github.com/shakacode/react_on_rails/pull/1213)
164
- by [ashgaliyev](https://github.com/ashgaliyev).
165
-
166
- - html_options has an option for 'tag' to set the html tag name like this: `html_options: { tag: "span" }`.
167
- [PR 1208](https://github.com/shakacode/react_on_rails/pull/1208) by [tahsin352](https://github.com/tahsin352).
168
-
169
- ### [11.2.2] - 2018-12-24
170
- #### Improved
171
- - rails_context can more easily be called from controller methods. The mandatory param of server_side has been made optional.
172
-
173
- ### [11.2.1] - 2018-12-06
174
- ## MIGRATION for v11.2
175
- - If using **React on Rails Pro**, upgrade react_on_rails_pro to a version >= 1.3.
176
-
177
- #### Improved
178
- - To support React v16, updated API for manually calling `ReactOnRails.render(name, props, domNodeId, hydrate)`. Added 3rd @param hydrate Pass truthy to update server rendered html. Default is falsey Any truthy values calls hydrate rather than render. [PR 1159](https://github.com/shakacode/react_on_rails/pull/1159) by [justin808](https://github.com/justin808) and [coopersamuel](https://github.com/coopersamuel).
179
-
180
- - Enabled the use of webpack-dev-server with Server-side rendering. [PR 1173](https://github.com/shakacode/react_on_rails/pull/1173) by [justin808](https://github.com/justin808) and [judahmeek](https://github.com/judahmeek).
181
-
182
- #### Changed
183
- - Changed the default for:
184
- ```rb
185
- config.raise_on_prerender_error = Rails.env.development?
186
- ```
187
-
188
- Thus, developers will need to fix server rendering errors before continuing.
189
- [PR 1145](https://github.com/shakacode/react_on_rails/pull/1145) by [justin808](https://github.com/justin808).
190
-
191
- ### 11.2.0 - 2018-12-06
192
- Do not use. Unpublished. Caused by an issue with the release script.
193
-
194
- ### [11.1.8] - 2018-10-14
195
-
196
- #### Improved
197
- - Improved tutorial and support for HMR when using `rails/webpacker` for Webpack configuration. [PR 1156](https://github.com/shakacode/react_on_rails/pull/1156) by [justin808](https://github.com/justin808).
198
-
199
- ### [11.1.7] - 2018-10-10
200
- #### Fixed
201
- - Fixed bug where intl parsing would fail when trying to parse integers or blank entries. by [sepehr500](https://github.com/sepehr500)
202
-
203
- ### [11.1.6] - 2018-10-05
204
- #### Fixed
205
- - Fix client startup invoking render prematurely, **AGAIN**. Fix additional cases of client startup failing during interactive readyState". Closes [issue #1150](https://github.com/shakacode/react_on_rails/issues/1150). [PR 1152](https://github.com/shakacode/react_on_rails/pull/1152) by [rakelley](https://github.com/rakelley).
206
-
207
- ### [11.1.5] - 2018-10-03
208
- #### Fixed
209
- - Fix client startup invoking render prematurely. Closes [issue #1150](https://github.com/shakacode/react_on_rails/issues/1150). [PR 1151](https://github.com/shakacode/react_on_rails/pull/1151) by [rakelley](https://github.com/rakelley).
210
-
211
- ### [11.1.4] - 2018-09-12
212
-
213
- #### Fixed
214
- - Ignore Arrays in Rails i18n yml files. [PR 1129](https://github.com/shakacode/react_on_rails/pull/1129) by [vcarel](https://github.com/vcarel).
215
- - Fix to apply transform-runtime. And work with Babel 6 and 7. (Include revert of [PR 1136](https://github.com/shakacode/react_on_rails/pull/1136)) [PR 1140](https://github.com/shakacode/react_on_rails/pull/1140) by [Ryunosuke Sato](https://github.com/tricknotes).
216
- - Upgrade Babel version to 7 [PR 1141](https://github.com/shakacode/react_on_rails/pull/1141) by [Ryunosuke Sato](https://github.com/tricknotes).
217
-
218
- ### [11.1.3] - 2018-08-26
219
-
220
- #### Fixed
221
- - Don't apply babel-plugin-transform-runtime inside react-on-rails to work with babel 7. [PR 1136](https://github.com/shakacode/react_on_rails/pull/1136) by [Ryunosuke Sato](https://github.com/tricknotes).
222
- - Add support for webpacker 4 prereleases. [PR 1134](https://github.com/shakacode/react_on_rails/pull/1134) by [Judahmeek](https://github.com/Judahmeek))
223
-
224
- ### [11.1.2] - 2018-08-18
225
-
226
- #### Fixed
227
- - Tests now properly exit if the config.build_test_command fails!
228
- - Source path for project using Webpacker would default to "app/javascript" even if when the node_modules
229
- directory was set to "client". Fix now makes the configuration of this crystal clear.
230
- - renamed method RenderOptions.has_random_dom_id? to RenderOptions.random_dom_id? for rubocop rule.
231
- [PR 1133](https://github.com/shakacode/react_on_rails/pull/1133) by [justin808](https://github.com/justin808)
232
-
233
- ### [11.1.1] - 2018-08-09
234
- #### Fixed
235
- - `TRUE` was deprecated in ruby 2.4, using `true` instead. [PR 1128](https://github.com/shakacode/react_on_rails/pull/1128) by [Aguardientico](https://github.com/Aguardientico).
236
-
237
- ### [11.1.0] - 2018-08-07
238
- #### Added
239
- - Add random dom id option. This new global and react_component helper option allows configuring whether or not React on Rails will automatically add a random id to the DOM node ID. [PR 1121](https://github.com/shakacode/react_on_rails/pull/1121) by [justin808](https://github.com/justin808)
240
- * Added configuration option random_dom_id
241
- * Added method RenderOptions has_random_dom_id?
242
- #### Fixed
243
- - Fix invalid warn directive. [PR 1123](https://github.com/shakacode/react_on_rails/pull/1123) by [mustangostang](https://github.com/mustangostang).
244
-
245
- ### [11.0.10] - 2018-07-22
246
- #### Fixed
247
- - Much better logging of rendering errors when there are lots of props. Only the a 1,000 chars are logged, and the center is indicated to be truncated. [PR 1117](https://github.com/shakacode/react_on_rails/pull/1117) and [PR 1118](https://github.com/shakacode/react_on_rails/pull/1118) by [justin808](https://github.com/justin808).
248
- - Properly clearing hydrated stores when server rendering. [PR 1120](https://github.com/shakacode/react_on_rails/pull/1120) by [squadette](https://github.com/squadette).
249
-
250
- ### [11.0.9] - 2018-06-24
251
- - Handle <script async> for Webpack bundle transparently. Closes [issue #290](https://github.com/shakacode/react_on_rails/issues/290) [PR 1099](https://github.com/shakacode/react_on_rails/pull/1099) by [squadette](https://github.com/squadette). Merged in [PR 1107]( https://github.com/shakacode/react_on_rails/pull/1107).
252
-
253
- ### [11.0.8] - 2018-06-15
254
- #### Fixed
255
- - HashWithIndifferent access for props threw if used for props. [PR 1100](https://github.com/shakacode/react_on_rails/pull/1100) by [justin808](https://github.com/justin808).
256
- - Test helper for detecting stale bundles did not properly handle the case of a server-bundle.js without a hash.[PR 1102](https://github.com/shakacode/react_on_rails/pull/1102) by [justin808](https://github.com/justin808).
257
- - Fix test helper determination of stale assets. [PR 1093](https://github.com/shakacode/react_on_rails/pull/1093) by [justin808](https://github.com/justin808).
258
-
259
- #### Changed
260
- - Document how to manually rehydrate XHR-substituted components on client side. [PR 1095](https://github.com/shakacode/react_on_rails/pull/1095) by [hchevalier](https://github.com/hchevalier).
261
-
262
- ### [11.0.7] - 2018-05-16
263
- #### Fixed
264
- - Fix npm publshing. [PR 1090](https://github.com/shakacode/react_on_rails/pull/1090) by [justin808](https://github.com/justin808).
265
-
266
- ### [11.0.6] - 2018-05-15
267
- #### Changed
268
- - Even more detailed errors for Honeybadger and Sentry when there's a JSON parse error on server rendering. [PR 1086](https://github.com/shakacode/react_on_rails/pull/1086) by [justin808](https://github.com/justin808).
269
-
270
- ### [11.0.5] - 2018-05-11
271
- #### Changed
272
- - More detailed errors for Honeybadger and Sentry. [PR 1081](https://github.com/shakacode/react_on_rails/pull/1081) by [justin808](https://github.com/justin808).
273
-
274
- ### [11.0.4] - 2018-05-3
275
-
276
- #### Changed
277
- - Throw if configuration.generated_assets_dir specified, and using webpacker, and if that doesn't match the public_output_path. Otherwise, warn if generated_assets_dir is specified
278
- - Fix the setup for tests for spec/dummy so they automatically rebuild by correctly setting the source_path in the webpacker.yml
279
- - Updated documentation for the testing setup.
280
- - Above in [PR 1072](https://github.com/shakacode/react_on_rails/pull/1072) by [justin808](https://github.com/justin808).
281
- - `react_component_hash` has implicit `prerender: true` because it makes no sense to have react_component_hash not use prerrender. Improved docs on `react_component_hash`. Also, fixed issue where checking gem existence. [PR 1077](https://github.com/shakacode/react_on_rails/pull/1077) by [justin808](https://github.com/justin808).
282
-
283
- ### [11.0.3] - 2018-04-24
284
-
285
- #### Fixed
286
- - Fixed issue with component script initialization when using react_component_hash. [PR 1071](https://github.com/shakacode/react_on_rails/pull/1071) by [jblasco3](https://github.com/jblasco3).
287
-
288
- ### [11.0.2] - 2018-04-24
289
-
290
- #### Fixed
291
- - Server rendering error for React on Rails Pro. [PR 1069](https://github.com/shakacode/react_on_rails/pull/1069) by [justin808](https://github.com/justin808).
292
-
293
- ### [11.0.1] - 2018-04-23
294
-
295
- #### Added
296
- - `react_component` allows logging_on_server specified at the component level. [PR 1068](https://github.com/shakacode/react_on_rails/pull/1068) by [justin808](https://github.com/justin808).
297
-
298
- #### Fixed
299
- - Missing class when throwing some error messages. [PR 1068](https://github.com/shakacode/react_on_rails/pull/1068) by [justin808](https://github.com/justin808).
300
-
301
- ### [11.0.0] - 2018-04-21
302
-
303
- ## MIGRATION for v11
304
- - Unused `server_render_method` was removed from the configuration. If you want to use a custom renderer, contact justin@shakacode.com. We have a custom node rendering solution in production for egghead.io.
305
- - Removed ReactOnRails::Utils.server_bundle_file_name and ReactOnRails::Utils.bundle_file_name. These are part of the performance features of "React on Rails Pro".
306
- - Removed ENV["TRACE_REACT_ON_RAILS"] usage and replacing it with config.trace.
307
-
308
- #### Enhancements: Better Error Messages, Support for React on Rails Pro
309
- - Tracing (debugging) options are simplified with a single `config.trace` setting that defaults to true for development and false otherwise.
310
- - Calls to setTimeout, setInterval, clearTimeout will now always log some message if config.trace is true. Your JavaScript code should not be calling setTimout when server rendering.
311
- - Errors raised are of type ReactOnRailsError, so you can see they came from React on Rails for debugging.
312
- - Removed ReactOnRails::Utils.server_bundle_file_name and ReactOnRails::Utils.bundle_file_name.
313
- - No longer logging the `railsContext` when server logging.
314
- - Rails.env is provided in the default railsContext, as suggested in [issue #697](https://github.com/shakacode/react_on_rails/issues/697).
315
- [PR 1065](https://github.com/shakacode/react_on_rails/pull/1065) by [justin808](https://github.com/justin808).
316
-
317
- #### Fixes
318
- - More exact version checking. We keep the react_on_rails gem and the react-on-rails node package at
319
- the same exact versions so that we can be sure that the interaction between them is precise.
320
- This is so that if a bug is detected after some update, it's critical that
321
- both the gem and the node package get the updates. This change ensures that the package.json specification does not use a
322
- ~ or ^ as reported in [issue #1062](https://github.com/shakacode/react_on_rails/issues/1062). [PR 1063](https://github.com/shakacode/react_on_rails/pull/1063) by [justin808](https://github.com/justin808).
323
- - Sprockets: Now use the most recent manifest when creating symlinks. See [issue #1023](https://github.com/shakacode/react_on_rails/issues/1023). [PR 1064](https://github.com/shakacode/react_on_rails/pull/1064) by [justin808](https://github.com/justin808).
324
-
325
- ### [10.1.4] - 2018-04-11
326
-
327
- #### Fixed
328
- - Changed i18n parsing to convert ruby i18n argument syntax into FormatJS argument syntax. [PR 1046](https://github.com/shakacode/react_on_rails/pull/1046) by [sepehr500](https://github.com/sepehr500).
329
-
330
- - Fixed an issue where the spec compiler check would fail if the project path contained spaces. [PR 1045](https://github.com/shakacode/react_on_rails/pull/1045) by [andrewmarkle](https://github.com/andrewmarkle).
331
-
332
- - Updated the default `build_production_command` that caused production assets to be built with development settings. [PR 1053](https://github.com/shakacode/react_on_rails/pull/1053) by [Roman Kushnir](https://github.com/RKushnir).
333
-
334
- ### [10.1.3] - 2018-02-28
335
- #### Fixed
336
- - Improved error reporting on version mismatches between Javascript and Ruby packages. [PR 1025](https://github.com/shakacode/react_on_rails/pull/1025) by [theJoeBiz](https://github.com/squadette).
337
-
338
- ### [10.1.2] - 2018-02-27
339
- #### Fixed
340
- - Use ReactDOM.hydrate() for hydrating a SSR component if available. ReactDOM.render() has been deprecated for use on SSR components in React 16 and this addresses the warning. [PR 1028](https://github.com/shakacode/react_on_rails/pull/1028) by [theJoeBiz](https://github.com/theJoeBiz).
341
-
342
- ### [10.1.1] - 2018-01-26
343
- #### Fixed
344
- - Fixed issue with server-rendering error handler: [PR 1020](https://github.com/shakacode/react_on_rails/pull/1020) by [jblasco3](https://github.com/jblasco3).
345
-
346
- ### [10.1.0] - 2018-01-23
347
- #### Added
348
- - Added 2 cache helpers: ReactOnRails::Utils.bundle_file_name(bundle_name) and ReactOnRails::Utils.server_bundle_file_name
349
- for easy access to the hashed filenames for use in cache keys. [PR 1018](https://github.com/shakacode/react_on_rails/pull/1018) by [justin808](https://github.com/justin808).
350
-
351
- #### Fixed
352
- - Use redux component in generated redux Hello World example: [PR 1006](https://github.com/shakacode/react_on_rails/pull/1006) by [lewaabahmad](https://github.com/lewaabahmad).
353
- - Fixed `Utils.bundle_js_file_path` generating the incorrect path for `manifest.json` in webpacker projects: [Issue #1011](https://github.com/shakacode/react_on_rails/issues/1011) by [elstgav](https://github.com/elstgav)
354
-
355
- ### [10.0.2] - 2017-11-10
356
- #### Fixed
357
- - Remove unnecessary dependencies from released NPM package: [PR 968](https://github.com/shakacode/react_on_rails/pull/968) by [tricknotes](https://github.com/tricknotes).
358
-
359
- ### [10.0.1] - 2017-10-28
360
- #### Fixed
361
- - Fixed `react_component_hash` functionality in cases of prerendering errors: [PR 960](https://github.com/shakacode/react_on_rails/pull/960) by [Judahmeek](https://github.com/Judahmeek).
362
- - Fix to add missing dependency to run generator spec individually: [PR 962](https://github.com/shakacode/react_on_rails/pull/962) by [tricknotes](https://github.com/tricknotes).
363
- - Fixes check for i18n_dir in LocalesToJs returning false when i18n_dir was set. [PR 899](https://github.com/shakacode/react_on_rails/pull/899) by [hakongit](https://github.com/hakongit).
364
- - Fixed mistake in rubocop comments that led to errors when handling exceptions in ReactOnRails::ServerRendering::Exec [PR 963](https://github.com/shakacode/react_on_rails/pull/963) by [railsme](https://github.com/railsme).
365
- - Fixed and improved I18n directories checks: [PR 967](https://github.com/shakacode/react_on_rails/pull/967) by [railsme](https://github.com/railsme)
366
-
367
- ### [10.0.0] - 2017-10-08
368
- #### Created
369
- - Created `react_component_hash` method for react_helmet support.
370
- #### Deprecated
371
- - Deprecated `react_component` functionality for react_helmet support.
372
- To clarify, the method itself is not deprecated, only certain functionality which has been moved to `react_component_hash`
373
- [PR 951](https://github.com/shakacode/react_on_rails/pull/951) by [Judahmeek](https://github.com/Judahmeek).
374
-
375
- ### [9.0.3] - 2017-09-20
376
- #### Improved
377
- - Improved comments in generated Procfile.dev-server. [PR 940](https://github.com/shakacode/react_on_rails/pull/940) by [justin808](https://github.com/justin808).
378
-
379
- ### [9.0.2] - 2017-09-10
380
- #### Fixed
381
- - Improved post install doc comments for generator. [PR 933](https://github.com/shakacode/react_on_rails/pull/933) by [justin808](https://github.com/justin808).
382
-
383
- ### [9.0.1] - 2017-09-10
384
-
385
- #### Fixed
386
- - Fixes Rails 3.2 compatability issues. [PR 926](https://github.com/shakacode/react_on_rails/pull/926) by [morozovm](https://github.com/morozovm).
387
-
388
- ### [9.0.0] - 2017-09-06
389
- Updated React on Rails to depend on [rails/webpacker](https://github.com/rails/webpacker). [PR 908](https://github.com/shakacode/react_on_rails/pull/908) by [justin808](https://github.com/justin808).
390
-
391
-
392
- #### 9.0 from 8.x. Upgrade Instructions
393
- Moved to [our documentation](https://www.shakacode.com/react-on-rails/docs/guides/upgrading-react-on-rails#upgrading-to-version-9).
394
-
395
- ### [8.0.7] - 2017-08-16
396
- #### Fixed
397
- - Fixes generator bug by keeping blank line at top in case existing .gitignore does not end in a newline. [#916](https://github.com/shakacode/react_on_rails/pull/916) by [justin808](https://github.com/justin808).
398
-
399
- ### [8.0.6] - 2017-07-19
400
- #### Fixed
401
- - Fixes server rendering when using a CDN. Server rendering would try to fetch a file with the "asset_host". This change updates the webpacker_lite dependency to 2.1.0 which has a new helper `pack_path`. [#901](https://github.com/shakacode/react_on_rails/pull/901) by [justin808](https://github.com/justin808). Be sure to update webpacker_lite to 2.1.0.
402
- - The package.json file created by the generator now creates minified javascript production builds by default. This was done by adding the -p flag to webpack on the build:production script. [#895](https://github.com/shakacode/react_on_rails/pull/895) by [serodriguez68 ](https://github.com/serodriguez68)
403
- - Fixes GitUtils.uncommitted_changes? throwing an error when called in an environment without Git, and allows install generator to be run successfully with `--ignore-warnings` [#878](https://github.com/shakacode/react_on_rails/pull/878) by [jasonblalock](https://github.com/jasonblalock).
404
-
405
- ## [8.0.5] - 2017-07-04
406
- ### fixed
407
- - Corrects `devBuild` value for webpack production build from webpackConfigLoader. [#877](https://github.com/shakacode/react_on_rails/pull/877) by [chenqingspring](https://github.com/chenqingspring).
408
- - Remove contentBase deprecation warning message. [#878](https://github.com/shakacode/react_on_rails/pull/878) by [ened ](https://github.com/ened).
409
- - Removes invalid reference to _railsContext in the generated files. [#886](https://github.com/shakacode/react_on_rails/pull/886) by [justin808](https://github.com/justin808).
410
- - All tests run against Rails 5.1.2
411
-
412
- *Note: 8.0.4 skipped.*
413
-
414
- ## [8.0.3] - 2017-06-19
415
- ### Fixed
416
- - Ruby 2.1 issue due to `<<~` as reported in [issue #870](https://github.com/shakacode/react_on_rails/issues/870). [#867](https://github.com/shakacode/react_on_rails/pull/867) by [justin808](https://github.com/justin808)
417
-
418
- ## [8.0.2] - 2017-06-04
419
- ### Fixed
420
- - Any failure in webpack to build test files quits tests.
421
- - Fixed a Ruby 2.4 potential crash which could cause a crash due to pathname change in Ruby 2.4.
422
- - CI Improvements:
423
- - Switched to yarn link and removed relative path install of react-on-rails
424
- - Removed testing of Turbolinks 2
425
- - All tests run against Rails 5.1.1
426
- - Fixed test failures against Ruby 2.4
427
- - [#862](https://github.com/shakacode/react_on_rails/pull/862) by [justin808](https://github.com/justin808)
428
-
429
- ## [8.0.1] - 2017-05-30
430
- ### Fixed
431
- - Generator no longer modifies `assets.rb`. [#859](https://github.com/shakacode/react_on_rails/pull/859) by [justin808](https://github.com/justin808)
432
-
433
- ## [8.0.0] - 2017-05-29
434
- - Generators and full support for [webpacker_lite](https://github.com/shakacode/webpacker_lite)
435
- - No breaking changes to move to 8.0.0 other than the default for this setting changed to nil. If you depended on the default of this setting and are using the asset pipeline (and not webpacker_lite), then add this to your `config/initializers/react_on_rails.rb`:
436
- ```
437
- symlink_non_digested_assets_regex: /\.(png|jpg|jpeg|gif|tiff|woff|ttf|eot|svg|map)/,
438
- ```
439
- - For an example of migration, see: [react-webpack-rails-tutorial PR #395](https://github.com/shakacode/react-webpack-rails-tutorial/pull/395)
440
- - For a simple example of the webpacker_lite setup, run the basic generator.
441
-
442
- ## [8.0.0-beta.3] - 2017-05-27
443
- ### Changed
444
- - Major updates for WebpackerLite 2.0.2. [#844](https://github.com/shakacode/react_on_rails/pull/845) by [justin808](https://github.com/justin808) with help from ](https://github.com/robwise)
445
- - Logging no longer occurs when trace is turned to false. [#845](https://github.com/shakacode/react_on_rails/pull/845) by [conturbo](https://github.com/Conturbo)
446
-
447
- ## [8.0.0-beta.2] - 2017-05-08
448
-
449
- ### Changed
450
- Removed unnecessary values in default paths.yml files for generators. [#834](https://github.com/shakacode/react_on_rails/pull/834) by [justin808](https://github.com/justin808).
451
-
452
- ## [8.0.0-beta.1] - 2017-05-03
453
-
454
- ### Added
455
- Support for WebpackerLite in the generators. [#822](https://github.com/shakacode/react_on_rails/pull/822) by [kaizencodes](https://github.com/kaizencodes) and [justin808](https://github.com/justin808).
456
-
457
- ### Changed
458
- Breaking change is that the default value of symlink_non_digested_assets_regex has changed from this
459
- old value to nil. This is a breaking change if you didn't have this value set in your
460
- config/initializers/react_on_rails.rb file and you need this because you're using webpack's CSS
461
- features and you have not switched to webpacker lite.
462
-
463
- ```
464
- symlink_non_digested_assets_regex: /\.(png|jpg|jpeg|gif|tiff|woff|ttf|eot|svg|map)/,
465
- ```
466
-
467
- ## [7.0.4] - 2017-04-27
468
- - Return empty json when nil in json_safe_and_pretty [#824](https://github.com/shakacode/react_on_rails/pull/824) by [dzirtusss](https://github.com/dzirtusss)
469
-
470
- ## [7.0.3] - 2017-04-27
471
- Same as 7.0.1.
472
-
473
- ## 7.0.2 - 2017-04-27
474
- *Accidental release of beta gem here*
475
-
476
- ## [7.0.1] - 2017-04-27
477
- ### Fixed
478
- - Fix to handle nil values in json_safe_and_pretty [#823](https://github.com/shakacode/react_on_rails/pull/823) by [dzirtusss](https://github.com/dzirtusss)
479
-
480
- ## [7.0.0] - 2017-04-25
481
- ### Changed
482
- - Any version differences in gem and node package for React on Rails throw an error [#821](https://github.com/shakacode/react_on_rails/pull/821) by [justin808](https://github.com/justin808)
483
-
484
- ### Fixed
485
- - Fixes serious performance regression when using String props for rendering. [#821](https://github.com/shakacode/react_on_rails/pull/821) by [justin808](https://github.com/justin808)
486
-
487
- ## [6.10.1] - 2017-04-23
488
- ### Fixed
489
- - Improve json conversion with tests and support for older Rails 3.x. [#787](https://github.com/shakacode/react_on_rails/pull/787) by [cheremukhin23](https://github.com/cheremukhin23) and [Ynote](https://github.com/Ynote).
490
-
491
- ## [6.10.0] - 2017-04-13
492
-
493
- ### Added
494
- - Add an ability to return multiple HTML strings in a `Hash` as a result of `react_component` method call. Allows to build `<head>` contents with [React Helmet](https://github.com/nfl/react-helmet). [#800](https://github.com/shakacode/react_on_rails/pull/800) by [udovenko](https://github.com/udovenko).
495
-
496
- ### Fixed
497
- - Fix PropTypes, createClass deprecation warnings for React 15.5.x. [#804](https://github.com/shakacode/react_on_rails/pull/804) by [udovenko ](https://github.com/udovenko).
498
-
499
- ## [6.9.3] - 2017-04-03
500
-
501
- ### Fixed
502
- - Removed call of to_json on strings when formatting props. [#791](https://github.com/shakacode/react_on_rails/pull/791) by [justin808](https://github.com/justin808).
503
-
504
- ## [6.9.2] - 2017-04-02
505
-
506
- ### Changed
507
- - Update version_checker.rb to `logger.error` rather than `logger.warn` for gem/npm version mismatch. [#788](https://github.com/shakacode/react_on_rails/issues/788) by [justin808](https://github.com/justin808).
508
-
509
- ### Fixed
510
- - Remove pretty formatting of JSON in development. [#789](https://github.com/shakacode/react_on_rails/pull/789) by [justin808](https://github.com/justin808)
511
- - Clear hydrated stores with each server rendered block. [#785](https://github.com/shakacode/react_on_rails/pull/785) by [udovenko](https://github.com/udovenko)
512
-
513
- ## [6.9.1] - 2017-03-30
514
-
515
- ### Fixed
516
- - Fixes Crash in Development for String Props. [#784](https://github.com/shakacode/react_on_rails/issues/784) by [justin808](https://github.com/justin808).
517
-
518
- ## [6.9.0] - 2017-03-29
519
-
520
- ### Fixed
521
- - Fixed error in the release script. [#767](https://github.com/shakacode/react_on_rails/issues/767) by [isolo](https://github.com/isolo).
522
-
523
- ### Changed
524
- - Use <script type="application/json"> for props and store instead of hidden div. [#775] (https://github.com/shakacode/react_on_rails/pull/775) by [cheremukhin23](https://github.com/cheremukhin23).
525
-
526
- ### Added
527
- - Add option to specify i18n_yml_dir in order to include only subset of locale files when generating translations.js & default.js for react-intl.
528
- [#777](https://github.com/shakacode/react_on_rails/pull/777) by [danijel](https://github.com/danijel).
529
-
530
- ## [6.8.2] - 2017-03-24
531
- ### Fixed
532
- - Change webpack output path to absolute and update webpack to version ^2.3.1. [#771](https://github.com/shakacode/react_on_rails/pull/771) by [cheremukhin23](https://github.com/cheremukhin23).
533
-
534
- ## [6.8.1] - 2017-03-21
535
- ### Fixed
536
- - Fixed error "The node you're attempting to unmount was rendered by another copy of React." [#706](https://github.com/shakacode/react_on_rails/issues/706) when navigating to cached page using Turbolinks [#763](https://github.com/shakacode/react_on_rails/pull/763) by [szyablitsky](https://github.com/szyablitsky).
537
-
538
- ## [6.8.0] - 2017-03-06
539
- ## Added
540
- - Converted to Webpack v2 for generators, tests, and all example code. [#742](https://github.com/shakacode/react_on_rails/pull/742) by [justin808](https://github.com/justin808).
541
-
542
- ## [6.7.2] - 2017-03-05
543
- ### Improved
544
- - Improve i18n Integration with a better error message if the value of the i18n directory is invalid. [#748](https://github.com/shakacode/react_on_rails/pull/748) by [justin808](https://github.com/justin808).
545
-
546
- ## [6.7.1] - 2017-02-28
547
- No changes other than a test fix.
548
-
549
- ## [6.7.0] - 2017-02-28
550
-
551
- ### IMPORTANT
552
- - If you installed 6.6.0, you will need to comment out the line matching i18n_dir unless you are using this feature. 6.7.1 will give you an error like:
553
-
554
- ```
555
- Errno::ENOENT: No such file or directory @ rb_sysopen - /tmp/build_1444a5bb9dd16ddb2561c7aff40f0fc7/my-app-816d31e9896edd90cecf1402acd002c724269333/client/app/libs/i18n/translations.js
556
- ```
557
-
558
- Commenting out this line addresses the issue:
559
-
560
- ```
561
- config.i18n_dir = Rails.root.join("client", "app", "libs", "i18n")
562
- ```
563
-
564
- ### Added
565
- - Allow using rake task to generate javascript locale files. The test helper automatically creates the localization files when needed. [#717](https://github.com/shakacode/react_on_rails/pull/717) by [JasonYCHuang](https://github.com/JasonYCHuang).
566
-
567
- ### Fixed
568
- - Upgrade Rails to 4.2.8 to fix security vulnerabilities in 4.2.5. [#735](https://github.com/shakacode/react_on_rails/pull/735) by [hrishimittal](https://github.com/hrishimittal).
569
- - Fix spec failing due to duplicate component. [#734](https://github.com/shakacode/react_on_rails/pull/734) by [hrishimittal](https://github.com/hrishimittal).
570
-
571
- ## [6.6.0] - 2017-02-18
572
- ### Added
573
- - Switched to yarn! [#715](https://github.com/shakacode/react_on_rails/pull/715) by [squadette](https://github.com/squadette).
574
-
575
- ## [6.5.1] - 2017-02-11
576
- ### Fixed
577
- - Allow using gem without sprockets. [#671](https://github.com/shakacode/react_on_rails/pull/671) by [fc-arny](https://github.com/fc-arny).
578
- - Fixed issue [#706](https://github.com/shakacode/react_on_rails/issues/706) with "flickering" components when they are unmounted too early [#709](https://github.com/shakacode/react_on_rails/pull/709) by [szyablitsky](https://github.com/szyablitsky).
579
- - Small formatting fix for errors [#703](https://github.com/shakacode/react_on_rails/pull/703) by [justin808](https://github.com/justin808).
580
-
581
- ## [6.5.0] - 2017-01-31
582
- ### Added
583
- - Allow generator function to return Object with property `renderedHtml` (already could return Object with props `redirectLocation, error`) rather than a React component or a function that returns a React component. One reason to use a generator function is that sometimes in server rendering, specifically with React Router v4, you need to return the result of calling ReactDOMServer.renderToString(element). [#689](https://github.com/shakacode/react_on_rails/issues/689) by [justin808](https://github.com/justin808).
584
-
585
- ### Fixed
586
- - Fix incorrect "this" references of Node.js SSR [#690](https://github.com/shakacode/react_on_rails/issues/689) by [nostophilia](https://github.com/nostophilia).
587
-
588
- ## [6.4.2] - 2017-01-17
589
- ### Fixed
590
- - Added OS detection for install generator, system call for Windows and unit-tests for it. [#666](https://github.com/shakacode/react_on_rails/pull/666) by [GeorgeGorbanev](https://github.com/GeorgeGorbanev).
591
-
592
- ## [6.4.1] - 2017-1-17
593
- No changes.
594
-
595
- ## [6.4.0] - 2017-1-12
596
-
597
- ### Possible Breaking Change
598
- - Since foreman is no longer a dependency of the React on Rails gem, please run `gem install foreman`. If you are using rvm, you may wish to run `rvm @global do gem install foreman` to install foreman for all your gemsets.
599
-
600
- ### Fixed
601
- - Removed foreman as a dependency. [#678](https://github.com/shakacode/react_on_rails/pull/678) by [x2es](https://github.com/x2es).
602
-
603
- ### Added
604
- - Automatically generate __i18n__ javascript files for `react-intl` when the serve starts up. [#642](https://github.com/shakacode/react_on_rails/pull/642) by [JasonYCHuang](https://github.com/JasonYCHuang).
605
-
606
- ## [6.3.5] - 2017-1-6
607
- ### Fixed
608
- - The redux generator now creates a HelloWorld component that uses redux rather than local state. [#669](https://github.com/shakacode/react_on_rails/issues/669) by [justin808](https://github.com/justin808).
609
-
610
- ## [6.3.4] - 2016-12-25
611
- ##### Fixed
612
- - Disable Turbolinks support when not supported. [#650](https://github.com/shakacode/react_on_rails/pull/650) by [ka2n](https://github.com/ka2n).
613
-
614
- ## [6.3.3] - 2016-12-25
615
- ##### Fixed
616
- - By using the hook on `turbolinks:before-visit` to unmount the components, we can ensure that components are unmounted even when Turbolinks cache is disabled. Previously, we used `turbolinks:before-cache` event hook. [#644](https://github.com/shakacode/react_on_rails/pull/644) by [volkanunsal](https://github.com/volkanunsal).
617
- - Added support for Ruby 2.0 [#651](https://github.com/shakacode/react_on_rails/pull/651) by [bbonamin](https://github.com/bbonamin).
618
-
619
- ## [6.3.2] - 2016-12-5
620
- ##### Fixed
621
- - The `react_component` method was raising a `NameError` when `ReactOnRailsHelper` was included in a plain object. [#636](https://github.com/shakacode/react_on_rails/pull/636) by [jtibbertsma](https://github.com/jtibbertsma).
622
- - "Node parse error" for node server rendering. [#641](https://github.com/shakacode/react_on_rails/pull/641) by [alleycat-at-git](https://github.com/alleycat-at-git) and [rocLv](https://github.com/rocLv)
623
- - Better error handling when the react-on-rails node package entry is missing.[#602](https://github.com/shakacode/react_on_rails/pull/602) by [benjiwheeler](https://github.com/benjiwheeler).
624
-
625
- ## [6.3.1] - 2016-11-30
626
- ##### Changed
627
- - Improved generator post-install help messages. [#631](https://github.com/shakacode/react_on_rails/pull/631) by [justin808](https://github.com/justin808).
628
-
629
- ## [6.3.0] - 2016-11-30
630
- ##### Changed
631
- - Modified register API to allow registration of renderers, allowing a user to manually render their app to the DOM. This allows for code splitting and deferred loading. [#581](https://github.com/shakacode/react_on_rails/pull/581) by [jtibbertsma](https://github.com/jtibbertsma).
632
-
633
- - Updated Basic Generator & Linters. Examples are simpler. [#624](https://github.com/shakacode/react_on_rails/pull/624) by [Judahmeek](https://github.com/Judahmeek).
634
-
635
- - Slight improvement to the 'no hydrated stores' error. [#605](https://github.com/shakacode/react_on_rails/pull/605) by [cookiefission](https://github.com/cookiefission).
636
-
637
- - Don't assume ActionMailer is available. [#608](https://github.com/shakacode/react_on_rails/pull/608) by [tuzz](https://github.com/tuzz).
638
-
639
- ## [6.2.1] - 2016-11-19
640
- - Removed unnecesary passing of context in the HelloWorld Container example and basic generator. [#612](https://github.com/shakacode/react_on_rails/pull/612) by [justin808](https://github.com/justin808)
641
-
642
- - Turbolinks 5 bugfix to use `before-cache`, not `before-render`. [#611](https://github.com/shakacode/react_on_rails/pull/611) by [volkanunsal](https://github.com/volkanunsal).
643
-
644
- ## [6.2.0] - 2016-11-19
645
- ##### Changed
646
- - Updated the generator templates to reflect current best practices, especially for the redux version. [#584](https://github.com/shakacode/react_on_rails/pull/584) by [nostophilia](https://github.com/nostophilia).
647
-
648
- ## [6.1.2] - 2016-10-24
649
- ##### Fixed
650
- - Added compatibility with older manifest.yml files produced by Rails 3 Sprockets when symlinking digested assets during precompilation [#566](https://github.com/shakacode/react_on_rails/pull/566) by [etripier](https://github.com/etripier).
651
-
652
- ## [6.1.1] - 2016-09-09
653
- ##### Fixed
654
- - React on Rails was incorrectly failing to create symlinks when a file existed in the location for the new symlink. [#491](https://github.com/shakacode/react_on_rails/pull/541) by [robwise ](https://github.com/robwise) and [justin808](https://github.com/justin808).
655
-
656
- ## [6.1.0] - 2016-08-21
657
-
658
- ##### Added
659
- - Node option for installer added as alternative for server rendering [#469](https://github.com/shakacode/react_on_rails/pull/469) by [jbhatab](https://github.com/jbhatab).
660
- - Server rendering now supports contexts outside of browser rendering, such as ActionMailer templates [#486](https://github.com/shakacode/react_on_rails/pull/486) by [eacaps](https://github.com/eacaps).
661
- - Added authenticityToken() and authenticityHeaders() javascript helpers for easier use when working with CSRF protection tag generated by Rails [#517](https://github.com/shakacode/react_on_rails/pull/517) by [dzirtusss](https://github.com/dzirtusss).
662
- - Updated JavaScript error handling on the client side. Errors in client rendering now pass through to the browser [#521](https://github.com/shakacode/react_on_rails/pull/521) by [dzirtusss](https://github.com/dzirtusss).
663
-
664
- ##### Fixed
665
- - React on Rails now correctly parses single-digit version strings from package.json [#491](https://github.com/shakacode/react_on_rails/pull/491) by [samphilipd ](https://github.com/samphilipd).
666
- - Fixed assets symlinking to correctly use filenames with spaces. Begining in [#510](https://github.com/shakacode/react_on_rails/pull/510), ending in [#513](https://github.com/shakacode/react_on_rails/pull/513) by [dzirtusss](https://github.com/dzirtusss).
667
- - Check encoding of request's original URL and force it to UTF-8 [#527](https://github.com/shakacode/react_on_rails/pull/527) by [lucke84](https://github.com/lucke84)
668
-
669
- ## [6.0.5] - 2016-07-11
670
- ##### Added
671
- - Added better error messages to avoid issues with shared redux stores [#470](https://github.com/shakacode/react_on_rails/pull/470) by by [justin808](https://github.com/justin808).
672
-
673
- ## [6.0.4] - 2016-06-13
674
- ##### Fixed
675
- - Added polyfill for clearTimeout which is used by babel-polyfill [#451](https://github.com/shakacode/react_on_rails/pull/451) by [martyphee](https://github.com/martyphee)
676
-
677
- ## [6.0.3] - 2016-06-07
678
- ##### Fixed
679
- - Added assets symlinking support on Heroku [#446](https://github.com/shakacode/react_on_rails/pull/446) by [Alexey Karasev](https://github.com/alleycat-at-git).
680
-
681
- ## [6.0.2] - 2016-06-06
682
- ##### Fixed
683
- - Fix colisions in ids of DOM nodes generated by `react_component` by indexing in using an UUID rather than an auto-increment value. This means that it should be overriden using the `id` parameter of `react_component` if one wants to generate a predictable id (_e.g._ for testing purpose). See [Issue #437](https://github.com/shakacode/react_on_rails/issues/437). Fixed in [#438](https://github.com/shakacode/react_on_rails/pull/438) by [Michael Baudino](https://github.com/michaelbaudino).
684
-
685
- ## [6.0.1] - 2016-05-27
686
- ##### Fixed
687
- - Allow for older version of manifest.json for older versions of sprockets. See [Issue #435](https://github.com/shakacode/react_on_rails/issues/435). Fixed in [#436](https://github.com/shakacode/react_on_rails/pull/436) by [alleycat-at-git](https://github.com/alleycat-at-git).
688
-
689
- ## [6.0.0] - 2016-05-25
690
- ##### Breaking Changes
691
- - Added automatic compilation of assets at precompile is now done by ReactOnRails. Thus, you don't need to provide your own assets.rake file that does the precompilation.
692
- [#398](https://github.com/shakacode/react_on_rails/pull/398) by [robwise](https://github.com/robwise), [jbhatab](https://github.com/jbhatab), and [justin808](https://github.com/justin808).
693
- - **Migration to v6**
694
- - Do not run the generator again if you've already run it.
695
-
696
- - See [shakacode/react-webpack-rails-tutorial/pull/287](https://github.com/shakacode/react-webpack-rails-tutorial/pull/287) for an example of upgrading from v5.
697
-
698
- - To configure the asset compliation you can either
699
- 1. Specify a `config/react_on_rails` setting for `build_production_command` to be nil to turn this feature off.
700
- 2. Specify the script command you want to run to build your production assets, and remove your assets.rake file.
701
-
702
- - If you are using the ReactOnRails test helper, then you will need to add the 'config.npm_build_test_command' to your config to tell react_on_rails what command to run when you run rspec.
703
-
704
- - See [shakacode/react-webpack-rails-tutorial #287](https://github.com/shakacode/react-webpack-rails-tutorial/pull/287/files) for an upgrade example. The PR has a few comments on the upgrade.
705
-
706
- Here is the addition to the generated config file:
707
- ```ruby
708
- # This configures the script to run to build the production assets by webpack. Set this to nil
709
- # if you don't want react_on_rails building this file for you.
710
- config.build_production_command = "npm run build:production"
711
-
712
- # If you are using the ReactOnRails::TestHelper.configure_rspec_to_compile_assets(config)
713
- # with rspec then this controls what npm command is run
714
- # to automatically refresh your webpack assets on every test run.
715
- config.npm_build_test_command = "npm run build:test"
716
- ```
717
-
718
- ##### Fixed
719
- - Fixed errors when server rendered props contain \u2028 or \u2029 characters [#375](https://github.com/shakacode/react_on_rails/pull/375) by [mariusandra](https://github.com/mariusandra)
720
- - Fixed "too early unmount" which caused problems with Turbolinks 5 not updating the screen [#425](https://github.com/shakacode/react_on_rails/pull/425) by [szyablitsky](https://github.com/szyablitsky)
721
-
722
- ##### Added
723
- - Experimental ability to use node.js process for server rendering. See [#380](https://github.com/shakacode/react_on_rails/pull/380) by [alleycat-at-git](https://github.com/alleycat-at-git).
724
- - Non-digested version of assets in public folder [#413](https://github.com/shakacode/react_on_rails/pull/413) by [alleycat-at-git](https://github.com/alleycat-at-git).
725
- - Cache client/node_modules directory to prevent Heroku from reinstalling all modules from scratch [#324](https://github.com/shakacode/react_on_rails/pull/324) by [modosc](https://github.com/modosc).
726
- - ReactOnRails.reactOnRailsPageLoaded() is exposed in case one needs to call this manually and information on async script loading added. See [#315](https://github.com/shakacode/react_on_rails/pull/315) by [SqueezedLight](https://github.com/SqueezedLight).
727
-
728
- ##### Changed
729
- - [#398](https://github.com/shakacode/react_on_rails/pull/398) by [robwise](https://github.com/robwise), [jbhatab](https://github.com/jbhatab), and [justin808](https://github.com/justin808) contains:
730
- - Only one webpack config is generated for server and client config. Package.json files were changed to reflect this.
731
- - Added npm_build_test_command to allow developers to change what npm command is automatically run from rspec.
732
- - Replace URI with Addressable gem. See [#405](https://github.com/shakacode/react_on_rails/pull/405) by [lucke84](https://github.com/lucke84)
733
-
734
- ##### Removed
735
- - [#398](https://github.com/shakacode/react_on_rails/pull/398) by [robwise](https://github.com/robwise), [jbhatab](https://github.com/jbhatab), and [justin808](https://github.com/justin808) contains:
736
- - Server rendering is no longer an option in the generator and is always accessible.
737
- - Removed lodash, jquery, and loggerMiddleware from the generated code.
738
- - Removed webpack watch check for test helper automatic compilation.
739
-
740
- ## [5.2.0] - 2016-04-08
741
- ##### Added
742
- - Support for React 15.0 to react_on_rails. See [#379](https://github.com/shakacode/react_on_rails/pull/379) by [brucek](https://github.com/brucek).
743
- - Support for Node.js server side rendering. See [#380](https://github.com/shakacode/react_on_rails/pull/380) by [alleycat](https://github.com/alleycat-at-git) and [doc](https://www.shakacode.com/react-on-rails/docs/react-on-rails-pro/react-on-rails-pro#pro-integration-with-nodejs-for-server-rendering)
744
-
745
- ##### Removed
746
- - Generator removals to simplify installer. See [#364](https://github.com/shakacode/react_on_rails/pull/364) by [jbhatab](https://github.com/jbhatab).
747
- - Removed options for heroku, boostrap, and the linters from generator.
748
- - Removed install for the Webpack Dev Server, as we can now do hot reloading with Rails, so the complexity of this feature is not justified. Nevertheless, the setup of React on Rails still supports this setup, just not with the generator.
749
- - Documentation added for removed installer options.
750
-
751
- ## [5.1.1] - 2016-04-04
752
- ##### Fixed
753
- - Security Fixes: Address failure to sanitize console messages when server rendering and displaying in the browser console. See [#366](https://github.com/shakacode/react_on_rails/pull/366) and [#370](https://github.com/shakacode/react_on_rails/pull/370) by [justin808](https://github.com/justin808)
754
-
755
- ##### Added
756
- - railsContext includes the port number and a boolean if the code is being run on the server or client.
757
-
758
- ## [5.1.0] - 2016-04-03
759
- ##### Added
760
- All 5.1.0 changes can be found in [#362](https://github.com/shakacode/react_on_rails/pull/362) by [justin808](https://github.com/justin808).
761
- - Generator enhancements
762
- - Generator adds line to spec/rails_helper.rb so that running specs will ensure assets are compiled.
763
- - Other small changes to the generator including adding necessary npm scripts to allow React on Rails to build assets.
764
- - Npm modules updated for generator.
765
- - Added babel-runtime in to the client/package.json created.
766
- - Server rendering
767
- - Added more diagnostics for server rendering.
768
- - Calls to setTimeout and setInterval are not logged for server rendering unless env TRACE_REACT_ON_RAILS is set to YES.
769
- - Updated all project npm dependencies to latest.
770
- - Update to node 5.10.0 for CI.
771
- - Added babel-runtime as a peer dependency for the npm module.
772
-
773
- ## [5.0.0] - 2016-04-01
774
-
775
- ##### Added
776
- - Added `railsContext`, an object which gets passed always as the second parameter to both react component and redux store generator functions, both for server and client rendering. This provides data like the current locale, the pathname, etc. The data values are customizable by a new configuration called `rendering_extension` where you can create a module with a method called `rendering_extension`. This allows you to add additional values to the Rails Context. Implement one static method called `custom_context(view_context)` and return a Hash. See [#345](https://github.com/shakacode/react_on_rails/pull/345) by [justin808](https://github.com/justin808)
777
-
778
- ##### Changed
779
- - Previously, you could pass arbitrary additional html attributes to react_component. Now, you need to pass them in as a named parameter `html_options` to react_component.
780
-
781
- ##### Breaking Changes
782
- - You must provide named attributes, including `props` for view helper `react_component`. See [this commit](https://github.com/shakacode/react-webpack-rails-tutorial/commit/a97fa90042cbe27be7fd7fa70b5622bfcf9c3673) for an example migration used for [www.reactrails.com](http://www.reactrails.com).
783
-
784
- ## [4.0.3] - 2016-03-17
785
-
786
- ##### Fixed
787
- - `ReactOnRailsHelper#react_component`: Invalid deprecation message when called with only one paramter, the component name.
788
-
789
- ## [4.0.2] - 2016-03-17
790
-
791
- ##### Fixed
792
- - `ReactOnRails::Controller#redux_store`: 2nd parameter changed to a named parameter `props` for consistency.
793
-
794
- ## [4.0.1] - 2016-03-16
795
-
796
- ##### Fixed
797
- - Switched to `heroku buildpacks:set` syntax rather than using a `.buildpacks` file, which is deprecated. See [#319](https://github.com/shakacode/react_on_rails/pull/319) by [esauter5](https://github.com/esauter5). Includes both generator and doc updates.
798
-
799
- ## [4.0.0] - 2016-03-14
800
-
801
- ##### Added
802
- - [spec/dummy](spec/dummy) is a full sample app of React on Rails techniques **including** the hot reloading of assets from Rails!
803
- - Added helpers `env_stylesheet_link_tag` and `env_javascript_include_tag` to support hot reloading Rails. See the [README.md](./README.md) for more details and see the example application in `spec/dummy`. Also see how this is used in the [tutorial: application.html.erb](https://github.com/shakacode/react-webpack-rails-tutorial/blob/master/app%2Fviews%2Flayouts%2Fapplication.html.erb#L6)
804
- - Added optional parameter for ReactOnRails.getStore(name, throwIfMissing = true) so that you can check if a store is defined easily.
805
- - Added controller `module ReactOnRails::Controller`. Adds method `redux_store` to setup redux stores in the view.
806
- - Added option `defer: true` for view helper `redux_store`. This allows the view helper to specify the props for store hydration, yet still render the props at the bottom of the view.
807
- - Added view helper `redux_store_hydration_data` to render the props on the application's layout, near the bottom. This allows for the client hydration data to be parsed after the server rendering, which may result in a faster load time.
808
- - The checker for outdated bundles before running tests will two configuration options: `generated_assets_dir` and `webpack_generated_files`.
809
- - Better support for Turbolinks 5!
810
- - Fixed generator check of uncommitted code for foreign languages. See [#303](https://github.com/shakacode/react_on_rails/pull/303) by [nmatyukov](https://github.com/nmatyukov).
811
- - Added several parameters used for ensuring webpack assets are built for running tests:
812
- - `config.generated_assets_dir`: Directory where your generated webpack assets go. You can have only **one** directory for this.
813
- - `config.webpack_generated_files`: List of files that will get created in the `generated_assets_dir`. The test runner helper will ensure these generated files are newer than any of the files in the client directory.
814
-
815
- ##### Changed
816
- - Generator default for webpack generated assets is now `app/assets/webpack` as we use this for both JavaScript and CSS generated assets.
817
-
818
- ##### Fixed
819
- - The test runner "assets up to date checker" is greatly improved.
820
- - Lots of doc updates!
821
- - Improved the **spec/dummy** sample app so that it supports CSS modules, hot reloading, etc, and it can server as a template for a new ReactOnRails installation.
822
-
823
- ##### Breaking Changes
824
- - Deprecated calling `redux_store(store_name, props)`. The API has changed. Use `redux_store(store_name, props: props, defer: false)` A new option called `defer` allows the rendering of store hydration at the bottom of the your layout. Place `redux_store_hydration_data` on your layout.
825
- - `config.server_bundle_js_file` has changed. The default value is now blank, meaning no server rendering. Addtionally, if you specify the file name, you should not include the path, as that should be specified in the `config.generated_assets_dir`.
826
- - `config.generated_assets_dirs` has been renamed to `config.generated_assets_dir` (singular) and it only takes one directory.
827
-
828
- ## [3.0.6] - 2016-03-01
829
- ##### Fixed
830
- - Improved errors when registered store is not found. See [#301](https://github.com/shakacode/react_on_rails/pull/301) by [justin808](https://github.com/justin808).
831
-
832
- ## [3.0.5] - 2016-02-26
833
- ##### Fixed
834
- - Fixed error in linters rake file for generator. See [#299](https://github.com/shakacode/react_on_rails/pull/299) by [mpugach](https://github.com/mpugach).
835
-
836
- ## [3.0.4] - 2016-02-25
837
- ##### Fixed
838
- - Updated CHANGELOG.md to include contributors for each PR.
839
- - Fixed config.server_bundle_js file value in generator to match generator setting of server rendering. See [#295](https://github.com/shakacode/react_on_rails/pull/295) by [aaronvb](https://github.com/aaronvb).
840
-
841
- ## [3.0.3] - 2016-02-21
842
- ##### Fixed
843
- - Cleaned up code in `spec/dummy` to latest React and Redux APIs. See [#282](https://github.com/shakacode/react_on_rails/pull/282).
844
- - Update generator messages with helpful information. See [#279](https://github.com/shakacode/react_on_rails/pull/279).
845
- - Other small generated comment fixes and doc fixes.
846
-
847
- ## [3.0.2] - 2016-02-15
848
- ##### Fixed
849
- - Fixed missing information in the helpful message after running the base install generator regarding how to run the node server with hot reloading support.
850
-
851
- ## [3.0.1] - 2016-02-15
852
- ##### Fixed
853
- - Fixed several jscs linter issues.
854
-
855
- ## [3.0.0] - 2016-02-15
856
- ##### Fixed
857
- - Fix Bootstrap Sass Append to Gemfile, missing new line. [#262](https://github.com/shakacode/react_on_rails/pull/262).
858
-
859
- ##### Added
860
- - Added helper `redux_store` and associated JavaScript APIs that allow multiple React components to use the same store. Thus, you initialize the store, with props, separately from the components.
861
- - Added forman to gemspec in case new dev does not have it globally installed. [#248](https://github.com/shakacode/react_on_rails/pull/248).
862
- - Support for Turbolinks 5! [#270](https://github.com/shakacode/react_on_rails/pull/270).
863
- - Added better error messages for `ReactOnRails.register()`. [#273](https://github.com/shakacode/react_on_rails/pull/273).
864
-
865
- ##### Breaking Change
866
- - Calls to `react_component` should use a named argument of props. For example, change this:
867
- ```ruby
868
- <%= react_component("ReduxSharedStoreApp", {}, prerender: false, trace: true) %>
869
- ```
870
-
871
- to
872
- ```ruby
873
- <%= react_component("ReduxSharedStoreApp", props: {}, prerender: false, trace: true) %>
874
- ```
875
- You'll get a deprecation message to change this.
876
- - Renamed `ReactOnRails.configure_rspec_to_compile_assets` to `ReactOnRails::TestHelper.configure_rspec_to_compile_assets`. The code has also been optimized to check for whether or not the compiled webpack bundles are up to date or not and will not run if not necessary. If you are using non-standard directories for your generated webpack assets (`app/assets/javascripts/generated` and `app/assets/stylesheets/generated`) or have additional directories you wish the helper to check, you need to update your ReactOnRails configuration accordingly. See [documentation](https://www.shakacode.com/react-on-rails/docs/guides/rspec_configuration) for how to do this. [#253](https://github.com/shakacode/react_on_rails/pull/253).
877
- - You have to call `ReactOnRails.register` to register react components. This was deprecated in v2. [#273](https://github.com/shakacode/react_on_rails/pull/273).
878
-
879
- ##### Migration Steps v2 to v3
880
- - See [these changes of spec/dummy/spec/rails_helper.rb](https://github.com/shakacode/react_on_rails/blob/master/spec/dummy/spec/rails_helper.rb#L36..38) for an example. Add this line to your `rails_helper.rb`:
881
- ```ruby
882
- RSpec.configure do |config|
883
- # Ensure that if we are running js tests, we are using latest webpack assets
884
- ReactOnRails::TestHelper.configure_rspec_to_compile_assets(config)
885
- ```
886
- - Change view helper calls to react_component to use the named param of `props`. See forum post [Using Regexp to update to ReactOnRails v3](http://forum.shakacode.com/t/using-regexp-to-update-to-reactonrails-v3/481).
887
-
888
- ## [2.3.0] - 2016-02-01
889
- ##### Added
890
- - Added polyfills for `setInterval` and `setTimeout` in case other libraries expect these to exist.
891
- - Added much improved debugging for errors in the server JavaScript webpack file.
892
- - See [#244](https://github.com/shakacode/react_on_rails/pull/244/) for these improvements.
893
-
894
- ## [2.2.0] - 2016-01-29
895
- ##### Added
896
- - New JavaScript API for debugging TurboLinks issues. Be sure to see [turbolinks docs](https://www.shakacode.com/react-on-rails/docs/rails/turbolinks). `ReactOnRails.setOptions({ traceTurbolinks: true });`. Removed the file `debug_turbolinks` added in 2.1.1. See [#243](https://github.com/shakacode/react_on_rails/pull/243).
897
-
898
- ## [2.1.1] - 2016-01-28
899
-
900
- ##### Fixed
901
- - Fixed regression where apps that were not using Turbolinks would not render components on page load.
902
-
903
- ##### Added
904
- - `ReactOnRails.render` returns a virtualDomElement Reference to your React component's backing instance. See [#234](https://github.com/shakacode/react_on_rails/pull/234).
905
- - `debug_turbolinks` helper for debugging turbolinks issues. See [turbolinks](https://www.shakacode.com/react-on-rails/docs/rails/turbolinks).
906
- - Enhanced regression testing for non-turbolinks apps. Runs all tests for dummy app with turbolinks both disabled and enabled.
907
-
908
- ## [2.1.0] - 2016-01-26
909
- ##### Added
910
- - Added EnsureAssetsCompiled feature so that you do not accidentally run tests without properly compiling the JavaScript bundles. Add a line to your `rails_helper.rb` file to check that the latest Webpack bundles have been generated prior to running tests that may depend on your client-side code. See [docs](https://www.shakacode.com/react-on-rails/docs/guides/rspec_configuration) for more detailed instructions. [#222](https://github.com/shakacode/react_on_rails/pull/222)
911
- - Added [migration guide](https://www.shakacode.com/react-on-rails/docs/additional-details/migrating-from-react-rails) for migrating from React-Rails. [#219](https://github.com/shakacode/react_on_rails/pull/219)
912
- - Added [React on Rails Doctrine](https://www.shakacode.com/react-on-rails/docs/misc/doctrine) to docs. Discusses the project's motivations, conventions, and principles. [#220](https://github.com/shakacode/react_on_rails/pull/220)
913
- - Added ability to skip `display:none` style in the generated content tag for a component. Some developers may want to disable inline styles for security reasons. See generated config [initializer file](lib/generators/react_on_rails/templates/base/base/config/initializers/react_on_rails.rb#L27) for example on setting `skip_display_none`. [#218](https://github.com/shakacode/react_on_rails/pull/218)
914
-
915
- ##### Changed
916
- - Changed message when running the dev (a.k.a. "express" server). [#227](https://github.com/shakacode/react_on_rails/commit/543ae70254d0c7b477e2c92af86f40746e58a431)
917
-
918
- ##### Fixed
919
- - Fixed handling of Turbolinks. Code was checking that Turbolinks was installed when it was not yet because some setups load Turbolinks after the bundles. The changes to the code will check if Turbolinks is installed after the page loaded event fires. Code was also added to allow easy debugging of Turbolinks, which should be useful when v5 of Turbolinks is released shortly. Details of how to configure Turbolinks with troubleshooting were added to `docs` directory. [#221](https://github.com/shakacode/react_on_rails/pull/221)
920
- - Fixed issue with already initialized constant warning appearing when starting a Rails server [#226](https://github.com/shakacode/react_on_rails/pull/226)
921
- - Fixed to make backwards compatible with Ruby v2.0 and updated all Ruby and Node dependencies.
922
-
923
- ---
924
-
925
- ## [2.0.2]
926
- - Added better messages after generator runs. [#210](https://github.com/shakacode/react_on_rails/pull/210)
927
-
928
- ## [2.0.1]
929
- - Fixed bug with version matching between gem and npm package.
930
-
931
- ## [2.0.0]
932
- - Move JavaScript part of react_on_rails to npm package 'react-on-rails'.
933
- - Converted JavaScript code to ES6! with tests!
934
- - No global namespace pollution. ReactOnRails is the only global added.
935
- - New API. Instead of placing React components on the global namespace, you instead call ReactOnRails.register, passing an object where keys are the names of your components:
936
- ```
937
- import ReactOnRails from 'react-on-rails';
938
- ReactOnRails.register({name: component});
939
- ```
940
- Best done with Object destructing:
941
- ```
942
- import ReactOnRails from 'react-on-rails';
943
- ReactOnRails.register(
944
- {
945
- Component1,
946
- Component2
947
- }
948
- );
949
- ```
950
- Previously, you used
951
- ```
952
- window.Component1 = Component1;
953
- window.Component2 = Component2;
954
- ```
955
- This would pollute the global namespace. See details in the README.md for more information.
956
- - Your jade template for the WebpackDevServer setup should use the new API:
957
- ```
958
- ReactOnRails.render(componentName, props, domNodeId);
959
- ```
960
- such as:
961
- ```
962
- ReactOnRails.render("HelloWorldApp", {name: "Stranger"}, 'app');
963
- ```
964
- - All npm dependency libraries updated. Most notable is going to Babel 6.
965
- - Dropped support for react 0.13.
966
- - JS Linter uses ShakaCode JavaScript style: https://github.com/shakacode/style-guide-javascript
967
- - Generators account these differences.
968
-
969
- ##### Migration Steps v1 to v2
970
- [Example of upgrading](https://github.com/shakacode/react-webpack-rails-tutorial/commit/5b1b8698e8daf0f0b94e987740bc85ee237ef608)
971
-
972
- 1. Update the `react_on_rails` gem.
973
- 2. Remove `//= require react_on_rails` from any files such as `app/assets/javascripts/application.js`. This file comes from npm now.
974
- 3. Search you app for 'generator_function' and remove lines in layouts and rb files that contain it. Determination of a generator function is handled automatically.
975
- 4. Find your files where you registered client and server globals, and use the new ReactOnRails.register syntax. Optionally rename the files `clientRegistration.jsx` and `serverRegistration.jsx` rather than `Globals`.
976
- 5. Update your index.jade to use the new API `ReactOnRails.render("MyApp", !{props}, 'app');`
977
- 6. Update your webpack files per the example commit. Remove globally exposing React and ReactDom, as well as their inclusion in the `entry` section. These are automatically included now.
978
- 7. Run `cd client && npm i --save react-on-rails` to get react-on-rails into your `client/package.json`.
979
- 8. You should also update any other dependencies if possible to match up with the [react-webpack-rails-tutorial](https://github.com/shakacode/react-webpack-rails-tutorial/). This includes updating to Babel 6.
980
- 9. If you want to stick with Babel 5 for a bit, see [Issue #238](https://github.com/shakacode/react_on_rails/issues/238).
981
-
982
- ---
983
-
984
- ## [1.2.2]
985
- ##### Fixed
986
- - Missing Lodash from generated package.json [#175](https://github.com/shakacode/react_on_rails/pull/175)
987
- - Rails 3.2 could not run generators [#182](https://github.com/shakacode/react_on_rails/pull/182)
988
- - Better placement of jquery_ujs dependency [#171](https://github.com/shakacode/react_on_rails/pull/171)
989
- - Add more detailed description when adding --help option to generator [#161](https://github.com/shakacode/react_on_rails/pull/161)
990
- - Lots of better docs.
991
-
992
- ## [1.2.0]
993
- ##### Added
994
- - Support `--skip-bootstrap` or `-b` option for generator.
995
- - Create examples tasks to test generated example apps.
996
-
997
- ##### Fixed
998
- - Fix non-server rendering configuration issues.
999
- - Fix application.js incorrect overwritten issue.
1000
- - Fix Gemfile dependencies.
1001
- - Fix several generator issues.
1002
-
1003
- ##### Removed
1004
- - Removed templates/client folder.
1005
-
1006
- ---
1007
-
1008
- ## [1.1.1] - 2015-11-28
1009
- ##### Added
1010
- - Support for React Router.
1011
- - Error and redirect handling.
1012
- - Turbolinks support.
1013
-
1014
- ##### Fixed
1015
- - Fix several generator related issues.
1016
-
1017
- [Unreleased]: https://github.com/shakacode/react_on_rails/compare/13.0.1...master
1018
- [13.0.1]: https://github.com/shakacode/react_on_rails/compare/13.0.0...13.0.1
1019
- [13.0.0]: https://github.com/shakacode/react_on_rails/compare/12.6.0...13.0.0
1020
- [12.6.0]: https://github.com/shakacode/react_on_rails/compare/12.5.2...12.6.0
1021
- [12.5.2]: https://github.com/shakacode/react_on_rails/compare/12.5.1...12.5.2
1022
- [12.5.1]: https://github.com/shakacode/react_on_rails/compare/12.5.0...12.5.1
1023
- [12.5.0]: https://github.com/shakacode/react_on_rails/compare/12.4.0...12.5.0
1024
- [12.4.0]: https://github.com/shakacode/react_on_rails/compare/12.3.0...12.4.0
1025
- [12.3.0]: https://github.com/shakacode/react_on_rails/compare/12.2.0...12.3.0
1026
- [12.2.0]: https://github.com/shakacode/react_on_rails/compare/12.1.0...12.2.0
1027
- [12.1.0]: https://github.com/shakacode/react_on_rails/compare/12.0.4...12.1.0
1028
- [12.0.4]: https://github.com/shakacode/react_on_rails/compare/12.0.3...12.0.4
1029
- [12.0.3]: https://github.com/shakacode/react_on_rails/compare/12.0.2...12.0.3
1030
- [12.0.2]: https://github.com/shakacode/react_on_rails/compare/12.0.1...12.0.2
1031
- [12.0.1]: https://github.com/shakacode/react_on_rails/compare/12.0.0...12.0.1
1032
- [12.0.0]: https://github.com/shakacode/react_on_rails/compare/11.3.0...12.0.0
1033
- [11.3.0]: https://github.com/shakacode/react_on_rails/compare/11.2.2...11.3.0
1034
- [11.2.2]: https://github.com/shakacode/react_on_rails/compare/11.2.1...11.2.2
1035
- [11.2.1]: https://github.com/shakacode/react_on_rails/compare/11.1.8...11.2.1
1036
- [11.1.8]: https://github.com/shakacode/react_on_rails/compare/11.1.7...11.1.8
1037
- [11.1.7]: https://github.com/shakacode/react_on_rails/compare/11.1.6...11.1.7
1038
- [11.1.6]: https://github.com/shakacode/react_on_rails/compare/11.1.5...11.1.6
1039
- [11.1.5]: https://github.com/shakacode/react_on_rails/compare/11.1.4...11.1.5
1040
- [11.1.4]: https://github.com/shakacode/react_on_rails/compare/11.1.3...11.1.4
1041
- [11.1.3]: https://github.com/shakacode/react_on_rails/compare/11.1.2...11.1.3
1042
- [11.1.2]: https://github.com/shakacode/react_on_rails/compare/11.1.1...11.1.2
1043
- [11.1.1]: https://github.com/shakacode/react_on_rails/compare/11.1.0...11.1.1
1044
- [11.1.0]: https://github.com/shakacode/react_on_rails/compare/11.0.10...11.1.0
1045
- [11.0.10]: https://github.com/shakacode/react_on_rails/compare/11.0.9...11.0.10
1046
- [11.0.9]: https://github.com/shakacode/react_on_rails/compare/11.0.8...11.0.9
1047
- [11.0.8]: https://github.com/shakacode/react_on_rails/compare/11.0.7...11.0.8
1048
- [11.0.7]: https://github.com/shakacode/react_on_rails/compare/11.0.6...11.0.7
1049
- [11.0.6]: https://github.com/shakacode/react_on_rails/compare/11.0.5...11.0.6
1050
- [11.0.5]: https://github.com/shakacode/react_on_rails/compare/11.0.4...11.0.5
1051
- [11.0.4]: https://github.com/shakacode/react_on_rails/compare/11.0.3...11.0.4
1052
- [11.0.3]: https://github.com/shakacode/react_on_rails/compare/11.0.2...11.0.3
1053
- [11.0.2]: https://github.com/shakacode/react_on_rails/compare/11.0.1...11.0.2
1054
- [11.0.1]: https://github.com/shakacode/react_on_rails/compare/11.0.0...11.0.1
1055
- [11.0.0]: https://github.com/shakacode/react_on_rails/compare/10.1.4...11.0.0
1056
- [10.1.4]: https://github.com/shakacode/react_on_rails/compare/10.1.3...10.1.4
1057
- [10.1.3]: https://github.com/shakacode/react_on_rails/compare/10.1.2...10.1.3
1058
- [10.1.2]: https://github.com/shakacode/react_on_rails/compare/10.1.1...10.1.2
1059
- [10.1.1]: https://github.com/shakacode/react_on_rails/compare/10.1.0...10.1.1
1060
- [10.1.0]: https://github.com/shakacode/react_on_rails/compare/10.0.2...10.1.0
1061
- [10.0.2]: https://github.com/shakacode/react_on_rails/compare/10.0.1...10.0.2
1062
- [10.0.1]: https://github.com/shakacode/react_on_rails/compare/10.0.0...10.0.1
1063
- [10.0.0]: https://github.com/shakacode/react_on_rails/compare/9.0.3...10.0.0
1064
- [9.0.3]: https://github.com/shakacode/react_on_rails/compare/9.0.2...9.0.3
1065
- [9.0.2]: https://github.com/shakacode/react_on_rails/compare/9.0.1...9.0.2
1066
- [9.0.1]: https://github.com/shakacode/react_on_rails/compare/9.0.0...9.0.1
1067
- [9.0.0]: https://github.com/shakacode/react_on_rails/compare/8.0.7...9.0.0
1068
- [8.0.7]: https://github.com/shakacode/react_on_rails/compare/8.0.6...8.0.7
1069
- [8.0.6]: https://github.com/shakacode/react_on_rails/compare/8.0.5...8.0.6
1070
- [8.0.5]: https://github.com/shakacode/react_on_rails/compare/8.0.3...8.0.5
1071
- [8.0.3]: https://github.com/shakacode/react_on_rails/compare/8.0.2...8.0.3
1072
- [8.0.2]: https://github.com/shakacode/react_on_rails/compare/8.0.1...8.0.2
1073
- [8.0.1]: https://github.com/shakacode/react_on_rails/compare/8.0.0...8.0.1
1074
- [8.0.0]: https://github.com/shakacode/react_on_rails/compare/7.0.4...8.0.0
1075
- [8.0.0-beta.3]: https://github.com/shakacode/react_on_rails/compare/8.0.0-beta.2...8.0.0-beta.3
1076
- [8.0.0-beta.2]: https://github.com/shakacode/react_on_rails/compare/8.0.0-beta.1...8.0.0-beta.2
1077
- [8.0.0-beta.1]: https://github.com/shakacode/react_on_rails/compare/7.0.4...8.0.0-beta.1
1078
- [7.0.4]: https://github.com/shakacode/react_on_rails/compare/7.0.3...7.0.4
1079
- [7.0.3]: https://github.com/shakacode/react_on_rails/compare/7.0.1...7.0.3
1080
- [7.0.1]: https://github.com/shakacode/react_on_rails/compare/7.0.0...7.0.1
1081
- [7.0.0]: https://github.com/shakacode/react_on_rails/compare/6.10.1...7.0.0
1082
- [6.10.1]: https://github.com/shakacode/react_on_rails/compare/6.10.0...6.10.1
1083
- [6.10.0]: https://github.com/shakacode/react_on_rails/compare/6.9.3...6.10.0
1084
- [6.9.3]: https://github.com/shakacode/react_on_rails/compare/6.9.1...6.9.3
1085
- [6.9.2]: https://github.com/shakacode/react_on_rails/compare/6.9.1...6.9.2
1086
- [6.9.1]: https://github.com/shakacode/react_on_rails/compare/6.8.2...6.9.1
1087
- [6.9.0]: https://github.com/shakacode/react_on_rails/compare/6.8.2...6.9.0
1088
- [6.8.2]: https://github.com/shakacode/react_on_rails/compare/6.8.1...6.8.2
1089
- [6.8.1]: https://github.com/shakacode/react_on_rails/compare/6.8.0...6.8.1
1090
- [6.8.0]: https://github.com/shakacode/react_on_rails/compare/6.7.2...6.8.0
1091
- [6.7.2]: https://github.com/shakacode/react_on_rails/compare/6.7.1...6.7.2
1092
- [6.7.1]: https://github.com/shakacode/react_on_rails/compare/6.7.0...6.7.1
1093
- [6.7.0]: https://github.com/shakacode/react_on_rails/compare/6.6.0...6.7.0
1094
- [6.6.0]: https://github.com/shakacode/react_on_rails/compare/6.5.1...6.6.0
1095
- [6.5.1]: https://github.com/shakacode/react_on_rails/compare/6.5.0...6.5.1
1096
- [6.5.0]: https://github.com/shakacode/react_on_rails/compare/6.4.2...6.5.0
1097
- [6.4.2]: https://github.com/shakacode/react_on_rails/compare/6.4.1...6.4.2
1098
- [6.4.1]: https://github.com/shakacode/react_on_rails/compare/6.4.0...6.4.1
1099
- [6.4.0]: https://github.com/shakacode/react_on_rails/compare/6.3.5...6.4.0
1100
- [6.3.5]: https://github.com/shakacode/react_on_rails/compare/6.3.4...6.3.5
1101
- [6.3.4]: https://github.com/shakacode/react_on_rails/compare/6.3.3...6.3.4
1102
- [6.3.3]: https://github.com/shakacode/react_on_rails/compare/6.3.2...6.3.3
1103
- [6.3.2]: https://github.com/shakacode/react_on_rails/compare/6.3.1...6.3.2
1104
- [6.3.1]: https://github.com/shakacode/react_on_rails/compare/6.3.0...6.3.1
1105
- [6.3.0]: https://github.com/shakacode/react_on_rails/compare/6.2.1...6.3.0
1106
- [6.2.1]: https://github.com/shakacode/react_on_rails/compare/6.2.0...6.2.1
1107
- [6.2.0]: https://github.com/shakacode/react_on_rails/compare/6.1.2...6.2.0
1108
- [6.1.2]: https://github.com/shakacode/react_on_rails/compare/6.1.1...6.1.2
1109
- [6.1.1]: https://github.com/shakacode/react_on_rails/compare/6.1.0...6.1.1
1110
- [6.1.0]: https://github.com/shakacode/react_on_rails/compare/6.0.5...6.1.0
1111
- [6.0.5]: https://github.com/shakacode/react_on_rails/compare/6.0.4...6.0.5
1112
- [6.0.4]: https://github.com/shakacode/react_on_rails/compare/6.0.3...6.0.4
1113
- [6.0.3]: https://github.com/shakacode/react_on_rails/compare/6.0.2...6.0.3
1114
- [6.0.2]: https://github.com/shakacode/react_on_rails/compare/6.0.1...6.0.2
1115
- [6.0.1]: https://github.com/shakacode/react_on_rails/compare/6.0.0...6.0.1
1116
- [6.0.0]: https://github.com/shakacode/react_on_rails/compare/5.2.0...6.0.0
1117
- [5.2.0]: https://github.com/shakacode/react_on_rails/compare/5.1.1...5.2.0
1118
- [5.1.1]: https://github.com/shakacode/react_on_rails/compare/5.1.0...5.1.1
1119
- [5.1.0]: https://github.com/shakacode/react_on_rails/compare/5.0.0...5.1.0
1120
- [5.0.0]: https://github.com/shakacode/react_on_rails/compare/4.0.3...5.0.0
1121
- [4.0.3]: https://github.com/shakacode/react_on_rails/compare/4.0.2...4.0.3
1122
- [4.0.2]: https://github.com/shakacode/react_on_rails/compare/4.0.1...4.0.2
1123
- [4.0.1]: https://github.com/shakacode/react_on_rails/compare/4.0.0...4.0.1
1124
- [4.0.0]: https://github.com/shakacode/react_on_rails/compare/3.0.6...4.0.0
1125
- [3.0.6]: https://github.com/shakacode/react_on_rails/compare/3.0.5...3.0.6
1126
- [3.0.5]: https://github.com/shakacode/react_on_rails/compare/3.0.4...3.0.5
1127
- [3.0.4]: https://github.com/shakacode/react_on_rails/compare/3.0.3...3.0.4
1128
- [3.0.3]: https://github.com/shakacode/react_on_rails/compare/3.0.2...3.0.3
1129
- [3.0.2]: https://github.com/shakacode/react_on_rails/compare/3.0.1...3.0.2
1130
- [3.0.1]: https://github.com/shakacode/react_on_rails/compare/3.0.0...3.0.1
1131
- [3.0.0]: https://github.com/shakacode/react_on_rails/compare/2.3.0...3.0.0
1132
- [2.3.0]: https://github.com/shakacode/react_on_rails/compare/2.2.0...2.3.0
1133
- [2.2.0]: https://github.com/shakacode/react_on_rails/compare/2.1.1...2.2.0
1134
- [2.1.1]: https://github.com/shakacode/react_on_rails/compare/v2.1.0...2.1.1
1135
- [2.1.0]: https://github.com/shakacode/react_on_rails/compare/v2.0.2...v2.1.0
1136
- [2.0.2]: https://github.com/shakacode/react_on_rails/compare/v2.0.1...v2.0.2
1137
- [2.0.1]: https://github.com/shakacode/react_on_rails/compare/v2.0.0...v2.0.1
1138
- [2.0.0]: https://github.com/shakacode/react_on_rails/compare/v1.2.2...v2.0.0
1139
- [1.2.2]: https://github.com/shakacode/react_on_rails/compare/v1.2.0...v1.2.2
1140
- [1.2.0]: https://github.com/shakacode/react_on_rails/compare/v1.1.0...v1.2.0
1141
- [1.1.1]: https://github.com/shakacode/react_on_rails/compare/v1.1.1...v1.0.0