react_on_rails 11.0.5 → 13.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.circleci/config.yml +338 -0
- data/.eslintignore +2 -1
- data/.eslintrc +32 -3
- data/.github/FUNDING.yml +1 -0
- data/.github/ISSUE_TEMPLATE/bug_report.md +23 -0
- data/.github/ISSUE_TEMPLATE/feature_request.md +20 -0
- data/.github/PULL_REQUEST_TEMPLATE.md +19 -0
- data/.github/workflows/lint-js-and-ruby.yml +54 -0
- data/.github/workflows/main.yml +183 -0
- data/.github/workflows/package-js-tests.yml +35 -0
- data/.github/workflows/rspec-package-specs.yml +46 -0
- data/.gitignore +3 -4
- data/.prettierignore +14 -0
- data/.prettierrc +20 -0
- data/.rubocop.yml +76 -34
- data/.travis.yml +15 -22
- data/CHANGELOG.md +443 -55
- data/CONTRIBUTING.md +62 -80
- data/Gemfile +1 -35
- data/Gemfile.development_dependencies +50 -0
- data/KUDOS.md +4 -1
- data/{docs/LICENSE.md → LICENSE.md} +1 -1
- data/NEWS.md +14 -4
- data/REACT-ON-RAILS-PRO-LICENSE +95 -0
- data/README.md +107 -802
- data/Rakefile +1 -8
- data/SUMMARY.md +51 -29
- data/book.json +5 -5
- data/docs/{basics/generator.md → additional-details/generator-details.md} +5 -13
- data/docs/{basics/installation-overview.md → additional-details/manual-installation-overview.md} +9 -14
- data/docs/{basics → additional-details}/migrating-from-react-rails.md +1 -1
- data/docs/additional-details/recommended-project-structure.md +69 -0
- data/docs/additional-details/tips-for-usage-with-sp6.md +15 -0
- data/docs/additional-details/upgrade-webpacker-v3-to-v4.md +10 -0
- data/docs/api/javascript-api.md +35 -6
- data/docs/api/redux-store-api.md +102 -0
- data/docs/api/view-helpers-api.md +133 -0
- data/docs/contributor-info/errors-with-hooks.md +45 -0
- data/docs/contributor-info/linters.md +5 -6
- data/docs/contributor-info/pull-requests.md +42 -0
- data/docs/contributor-info/releasing.md +1 -1
- data/docs/deployment/heroku-deployment.md +39 -0
- data/docs/getting-started.md +196 -0
- data/docs/guides/client-vs-server-rendering.md +27 -0
- data/docs/guides/configuration.md +289 -0
- data/docs/guides/deployment.md +5 -0
- data/docs/guides/file-system-based-automated-bundle-generation.md +197 -0
- data/docs/guides/hmr-and-hot-reloading-with-the-webpack-dev-server.md +104 -0
- data/docs/guides/how-react-on-rails-works.md +44 -0
- data/docs/guides/how-to-conditionally-server-render-based-on-device-type.md +40 -0
- data/docs/guides/how-to-use-different-files-for-client-and-server-rendering.md +98 -0
- data/docs/guides/i18n.md +87 -0
- data/docs/guides/installation-into-an-existing-rails-app.md +66 -0
- data/docs/guides/minitest-configuration.md +31 -0
- data/docs/guides/rails-webpacker-react-integration-options.md +213 -0
- data/docs/guides/react-on-rails-overview.md +29 -0
- data/docs/guides/react-server-rendering.md +32 -0
- data/docs/guides/render-functions-and-railscontext.md +205 -0
- data/docs/guides/rspec-configuration.md +73 -0
- data/docs/guides/tutorial.md +371 -0
- data/docs/{basics → guides}/upgrading-react-on-rails.md +126 -3
- data/docs/guides/webpack-configuration.md +42 -0
- data/docs/home.md +23 -0
- data/docs/javascript/asset-pipeline.md +12 -0
- data/docs/{additional-reading → javascript}/code-splitting.md +21 -11
- data/docs/javascript/converting-from-custom-webpack-config-to-rails-webpacker-config.md +10 -0
- data/docs/javascript/credits.md +10 -0
- data/docs/{additional-reading → javascript}/images.md +5 -6
- data/docs/javascript/react-helmet.md +100 -0
- data/docs/javascript/react-router.md +90 -0
- data/docs/{additional-reading → javascript}/server-rendering-tips.md +15 -12
- data/docs/javascript/troubleshooting-when-using-shakapacker.md +77 -0
- data/docs/{additional-reading → javascript}/webpack.md +2 -2
- data/docs/misc/articles.md +20 -0
- data/docs/misc/doctrine.md +5 -6
- data/docs/outdated/deferred-rendering.md +39 -0
- data/docs/{additional-reading → outdated}/rails-assets-relative-paths.md +4 -4
- data/docs/{additional-reading → outdated}/rails-assets.md +12 -20
- data/docs/{misc → outdated}/rails3.md +2 -2
- data/docs/rails/convert-rails-5-api-only-app.md +19 -0
- data/docs/rails/rails-engine-integration.md +32 -0
- data/docs/{additional-reading → rails}/rails_view_rendering_from_inline_javascript.md +2 -1
- data/docs/{additional-reading → rails}/turbolinks.md +13 -1
- data/docs/react-on-rails-pro/react-on-rails-pro.md +43 -0
- data/docs/testimonials/hvmn.md +25 -0
- data/docs/testimonials/resortpass.md +13 -0
- data/docs/testimonials/testimonials.md +28 -0
- data/jest.config.js +4 -0
- data/lib/generators/USAGE +1 -1
- data/lib/generators/react_on_rails/adapt_for_older_shakapacker_generator.rb +41 -0
- data/lib/generators/react_on_rails/base_generator.rb +55 -43
- data/lib/generators/react_on_rails/bin/dev +30 -0
- data/lib/generators/react_on_rails/bin/dev-static +30 -0
- data/lib/generators/react_on_rails/dev_tests_generator.rb +4 -3
- data/lib/generators/react_on_rails/generator_helper.rb +8 -6
- data/lib/generators/react_on_rails/generator_messages.rb +40 -0
- data/lib/generators/react_on_rails/install_generator.rb +37 -0
- data/lib/generators/react_on_rails/templates/.eslintrc +3 -1
- data/lib/generators/react_on_rails/templates/base/base/Procfile.dev +4 -6
- data/lib/generators/react_on_rails/templates/base/base/Procfile.dev-static +9 -0
- data/lib/generators/react_on_rails/templates/base/base/app/javascript/bundles/HelloWorld/components/HelloWorld.jsx +21 -40
- data/lib/generators/react_on_rails/templates/base/base/app/javascript/bundles/HelloWorld/components/HelloWorld.module.css +4 -0
- data/lib/generators/react_on_rails/templates/base/base/app/javascript/bundles/HelloWorld/components/HelloWorldServer.js +5 -0
- data/lib/generators/react_on_rails/templates/base/base/app/javascript/packs/server-bundle.js +8 -0
- data/lib/generators/react_on_rails/templates/base/base/app/views/layouts/hello_world.html.erb +2 -1
- data/lib/generators/react_on_rails/templates/base/base/babel.config.js.tt +32 -0
- data/lib/generators/react_on_rails/templates/base/base/config/initializers/react_on_rails.rb +20 -4
- data/lib/generators/react_on_rails/templates/base/base/config/shakapacker.yml +62 -0
- data/lib/generators/react_on_rails/templates/base/base/config/webpack/clientWebpackConfig.js.tt +17 -0
- data/lib/generators/react_on_rails/templates/base/base/config/webpack/commonWebpackConfig.js.tt +17 -0
- data/lib/generators/react_on_rails/templates/base/base/config/webpack/development.js.tt +25 -0
- data/lib/generators/react_on_rails/templates/base/base/config/webpack/production.js.tt +9 -0
- data/lib/generators/react_on_rails/templates/base/base/config/webpack/serverWebpackConfig.js.tt +117 -0
- data/lib/generators/react_on_rails/templates/base/base/config/webpack/test.js.tt +9 -0
- data/lib/generators/react_on_rails/templates/base/base/config/webpack/webpack.config.js.tt +15 -0
- data/lib/generators/react_on_rails/templates/base/base/config/webpack/webpackConfig.js.tt +36 -0
- data/lib/generators/react_on_rails/templates/dev_tests/spec/rails_helper.rb +8 -2
- data/lib/generators/react_on_rails/templates/dev_tests/spec/simplecov_helper.rb +1 -1
- data/lib/generators/react_on_rails/templates/dev_tests/spec/{features → system}/hello_world_spec.rb +2 -2
- data/lib/generators/react_on_rails/templates/redux/base/app/javascript/bundles/HelloWorld/components/HelloWorld.jsx +6 -9
- data/lib/generators/react_on_rails/templates/redux/base/app/javascript/bundles/HelloWorld/store/helloWorldStore.js +1 -3
- data/lib/react_on_rails/configuration.rb +198 -145
- data/lib/react_on_rails/error.rb +2 -0
- data/lib/react_on_rails/git_utils.rb +5 -3
- data/lib/react_on_rails/{react_on_rails_helper.rb → helper.rb} +201 -190
- data/lib/react_on_rails/json_output.rb +1 -1
- data/lib/react_on_rails/json_parse_error.rb +28 -0
- data/lib/react_on_rails/locales/base.rb +169 -0
- data/lib/react_on_rails/locales/to_js.rb +33 -0
- data/lib/react_on_rails/locales/to_json.rb +23 -0
- data/lib/react_on_rails/packs_generator.rb +234 -0
- data/lib/react_on_rails/prerender_error.rb +35 -27
- data/lib/react_on_rails/react_component/render_options.rb +64 -9
- data/lib/react_on_rails/server_rendering_js_code.rb +55 -0
- data/lib/react_on_rails/server_rendering_pool/ruby_embedded_java_script.rb +126 -76
- data/lib/react_on_rails/server_rendering_pool.rb +0 -1
- data/lib/react_on_rails/test_helper/ensure_assets_compiled.rb +9 -8
- data/lib/react_on_rails/test_helper/webpack_assets_compiler.rb +17 -0
- data/lib/react_on_rails/test_helper/webpack_assets_status_checker.rb +13 -12
- data/lib/react_on_rails/test_helper.rb +24 -3
- data/lib/react_on_rails/utils.rb +94 -25
- data/lib/react_on_rails/version.rb +1 -1
- data/lib/react_on_rails/version_checker.rb +5 -1
- data/lib/react_on_rails/version_syntax_converter.rb +14 -12
- data/lib/react_on_rails/webpacker_utils.rb +105 -5
- data/lib/react_on_rails.rb +8 -2
- data/lib/tasks/assets.rake +28 -60
- data/lib/tasks/generate_packs.rake +11 -0
- data/lib/tasks/locale.rake +5 -4
- data/package-scripts.yml +49 -0
- data/package.json +52 -47
- data/rakelib/docker.rake +0 -5
- data/rakelib/dummy_apps.rake +5 -8
- data/rakelib/example_type.rb +12 -3
- data/rakelib/examples.rake +5 -4
- data/rakelib/lint.rake +5 -16
- data/rakelib/node_package.rake +2 -2
- data/rakelib/release.rake +37 -23
- data/rakelib/run_rspec.rake +16 -44
- data/rakelib/task_helpers.rb +16 -4
- data/react_on_rails.gemspec +6 -22
- data/tsconfig.json +14 -0
- data/webpackConfigLoader.js +5 -4
- data/yarn.lock +5935 -3106
- metadata +122 -272
- data/Gemfile.rails32 +0 -74
- data/docs/additional-reading/asset-pipeline.md +0 -20
- data/docs/additional-reading/babel.md +0 -5
- data/docs/additional-reading/caching-and-performance.md +0 -4
- data/docs/additional-reading/heroku-deployment.md +0 -92
- data/docs/additional-reading/hot-reloading-rails-development.md +0 -57
- data/docs/additional-reading/node-server-rendering.md +0 -5
- data/docs/additional-reading/rails-engine-integration.md +0 -34
- data/docs/additional-reading/react-helmet.md +0 -80
- data/docs/additional-reading/react-router.md +0 -113
- data/docs/additional-reading/recommended-project-structure.md +0 -49
- data/docs/additional-reading/rspec-configuration.md +0 -56
- data/docs/additional-reading/webpack-dev-server.md +0 -15
- data/docs/api/ruby-api-hot-reload-view-helpers.md +0 -44
- data/docs/api/ruby-api.md +0 -8
- data/docs/basics/configuration.md +0 -163
- data/docs/basics/i18n.md +0 -77
- data/docs/tutorial.md +0 -220
- data/lib/generators/react_on_rails/templates/base/base/Procfile.dev-server +0 -12
- data/lib/react_on_rails/assets_precompile.rb +0 -150
- data/lib/react_on_rails/locales_to_js.rb +0 -134
- data/ruby-lint.yml +0 -25
- /data/docs/{additional-reading → additional-details}/updating-dependencies.md +0 -0
- /data/docs/{additional-reading → deployment}/elastic-beanstalk.md +0 -0
- /data/docs/{additional-reading → javascript}/angular-js-integration-migration.md +0 -0
- /data/docs/{additional-reading → javascript}/capistrano-deployment.md +0 -0
- /data/docs/{additional-reading → javascript}/foreman-issues.md +0 -0
- /data/docs/{additional-reading → javascript}/node-dependencies-and-npm.md +0 -0
- /data/docs/{additional-reading → javascript}/react-and-redux.md +0 -0
- /data/docs/{additional-reading → javascript}/troubleshooting-when-using-webpacker.md +0 -0
- /data/docs/{additional-reading → javascript}/webpack-v1-notes.md +0 -0
- /data/docs/{coding-style → misc}/style.md +0 -0
- /data/docs/{additional-reading → misc}/tips.md +0 -0
data/CHANGELOG.md
CHANGED
@@ -1,18 +1,364 @@
|
|
1
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.
|
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 the next version.
|
3
3
|
|
4
|
-
|
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
5
|
|
6
|
-
|
6
|
+
## Want to Save Time Updating?
|
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).
|
7
8
|
|
8
|
-
|
9
|
-
|
9
|
+
We specialize in helping companies quickly and efficiently update client-side dependencies, allowing developers to focus on features and bug fixes rather than addressing tech-debt from old dependencies. ShakaCode also maintains Shakapacker, the successor to Webpacker.
|
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 the last non-beta release.
|
10
17
|
|
11
18
|
*Please add entries here for your pull requests that are not yet released.*
|
19
|
+
### [13.4.0] - 2023-07-30
|
20
|
+
#### Fixed
|
21
|
+
- Fixed Pack Generation logic during `assets:precompile` if `auto_load_bundle` is `false` & `components_subdirectory` is not set. [PR 1567](https://github.com/shakacode/react_on_rails/pull/1545) by [blackjack26](https://github.com/blackjack26) & [judahmeek](https://github.com/judahmeek).
|
22
|
+
|
23
|
+
#### Improved
|
24
|
+
- Improved performance by removing an unnecessary JS eval from Ruby. [PR 1544](https://github.com/shakacode/react_on_rails/pull/1544) by [wyattades](https://github.com/wyattades).
|
25
|
+
|
26
|
+
#### Added
|
27
|
+
- Added support for Shakapacker 7 in install generator [PR 1548](https://github.com/shakacode/react_on_rails/pull/1548) by [ahangarha](https://github.com/ahangarha).
|
28
|
+
|
29
|
+
#### Changed
|
30
|
+
- Throw error when attempting to redefine ReactOnRails. [PR 1562](https://github.com/shakacode/react_on_rails/pull/1562) by [rubenochiavone](https://github.com/rubenochiavone).
|
31
|
+
- Prevent generating FS-based packs when `component_subdirectory` configuration is not present. [PR 1567](https://github.com/shakacode/react_on_rails/pull/1567) by [blackjack26](https://github.com/blackjack26).
|
32
|
+
- Removed a requirement for autoloaded pack files to be generated as part of CI or deployment separate from initial Shakapacker bundling. [PR 1545](https://github.com/shakacode/react_on_rails/pull/1545) by [judahmeek](https://github.com/judahmeek).
|
33
|
+
|
34
|
+
|
35
|
+
### [13.3.5] - 2023-05-31
|
36
|
+
#### Fixed
|
37
|
+
- Fixed race condition where a react component could attempt to initialize before it had been registered. [PR 1540](https://github.com/shakacode/react_on_rails/pull/1540) by [judahmeek](https://github.com/judahmeek).
|
38
|
+
|
39
|
+
### [13.3.4] - 2023-05-23
|
40
|
+
|
41
|
+
#### Added
|
42
|
+
- Improved functionality of Filesystem-based pack generation & auto-bundling. Added `make_generated_server_bundle_the_entrypoint` configuration key. [PR 1531](https://github.com/shakacode/react_on_rails/pull/1531) by [judahmeek](https://github.com/judahmeek).
|
43
|
+
|
44
|
+
#### Removed
|
45
|
+
- Removed unneeded `HMR=true` from `Procfile.dev` in install template [PR 1537](https://github.com/shakacode/react_on_rails/pull/1537) by [ahangarha](https://github.com/ahangarha).
|
46
|
+
|
47
|
+
### [13.3.3] - 2023-03-21
|
48
|
+
|
49
|
+
#### Fixed
|
50
|
+
- Fixed bug regarding loading FS-based packs. [PR 1527](https://github.com/shakacode/react_on_rails/pull/1527) by [judahmeek](https://github.com/judahmeek).
|
51
|
+
|
52
|
+
### [13.3.2] - 2023-02-24
|
53
|
+
|
54
|
+
#### Fixed
|
55
|
+
- Fixed the bug in `bin/dev` and `bin/dev-static` scripts by using `system` instead of `exec` and remove option to pass arguments [PR 1519](https://github.com/shakacode/react_on_rails/pull/1519) by [ahangarha](https://github.com/ahangarha).
|
56
|
+
|
57
|
+
### [13.3.1] - 2023-01-30
|
58
|
+
#### Added
|
59
|
+
- Optimized `ReactOnRails::TestHelper`'s RSpec integration using `when_first_matching_example_defined`. [PR 1496](https://github.com/shakacode/react_on_rails/pull/1496) by [mcls](https://github.com/mcls).
|
60
|
+
|
61
|
+
#### Fixed
|
62
|
+
- Fixed bug regarding FS-based packs generation. [PR 1515](https://github.com/shakacode/react_on_rails/pull/1515) by [pulkitkkr](https://github.com/pulkitkkr).
|
63
|
+
|
64
|
+
### [13.3.0] - 2023-01-29
|
65
|
+
#### Fixed
|
66
|
+
- Fixed pack not found warning while using `react_component` and `react_component_hash` helpers, even when corresponding chunks are present. [PR 1511](https://github.com/shakacode/react_on_rails/pull/1511) by [pulkitkkr](https://github.com/pulkitkkr).
|
67
|
+
- Fixed FS-based packs generation functionality to trigger pack generation on the creation of a new react component inside `components_subdirectory`. [PR 1506](https://github.com/shakacode/react_on_rails/pull/1506) by [pulkitkkr](https://github.com/pulkitkkr).
|
68
|
+
- Upgrade several JS dependencies to fix security issues. [PR 1514](https://github.com/shakacode/react_on_rails/pull/1514) by [ahangarha](https://github.com/ahangarha).
|
69
|
+
|
70
|
+
#### Added
|
71
|
+
- Added `./bin/dev` and `./bin/dev-static` executables to ease and standardize running the dev server. [PR 1491](https://github.com/shakacode/react_on_rails/pull/1491) by [ahangarha](https://github.com/ahangarha).
|
72
|
+
|
73
|
+
### [13.2.0] - 2022-12-23
|
74
|
+
|
75
|
+
#### Fixed
|
76
|
+
- Fix reactOnRailsPageUnloaded when there is no component on the page. Important for apps using both hotwire and react_on_rails. [PR 1498](https://github.com/shakacode/react_on_rails/pull/1498) by [NhanHo](https://github.com/NhanHo).
|
77
|
+
- Fixing wrong type. The throwIfMissing param of getStore should be optional as it defaults to true. [PR 1480](https://github.com/shakacode/react_on_rails/pull/1480) by [wouldntsavezion](https://github.com/wouldntsavezion).
|
78
|
+
|
79
|
+
#### Added
|
80
|
+
- Exposed `reactHydrateOrRender` utility via [PR 1481](https://github.com/shakacode/react_on_rails/pull/1481) by [vaukalak](https://github.com/vaukalak).
|
81
|
+
|
82
|
+
### [13.1.0] - 2022-08-20
|
83
|
+
|
84
|
+
#### Improved
|
85
|
+
- Removed addition of `mini_racer` gem by default. [PR 1453](https://github.com/shakacode/react_on_rails/pull/1453) by [vtamara](https://github.com/vtamara) and [tomdracz](https://github.com/tomdracz).
|
86
|
+
|
87
|
+
Using `mini_racer` makes most sense when deploying or building in environments that do not have Javascript runtime present. Since `react_on_rails` requires Node.js, there's no reason to override `ExecJS` runtime with `mini_racer`.
|
88
|
+
|
89
|
+
To migrate this change, remove `mini_racer` gem from your `Gemfile` and test your app for correct behaviour. You can continue using `mini_racer` and it will be still picked as the default `ExecJS` runtime, if present in your app `Gemfile`.
|
90
|
+
|
91
|
+
- Upgraded the example test app in `spec/dummy` to React 18. [PR 1463](https://github.com/shakacode/react_on_rails/pull/1463) by [alexeyr](https://github.com/alexeyr).
|
92
|
+
|
93
|
+
- Added file-system-based automatic bundle generation feature. [PR 1455](https://github.com/shakacode/react_on_rails/pull/1455) by [pulkitkkr](https://github.com/pulkitkkr).
|
94
|
+
|
95
|
+
#### Fixed
|
96
|
+
- Correctly unmount roots under React 18. [PR 1466](https://github.com/shakacode/react_on_rails/pull/1466) by [alexeyr](https://github.com/alexeyr).
|
97
|
+
|
98
|
+
- Fixed the `You are importing hydrateRoot from "react-dom" [...] You should instead import it from "react-dom/client"` warning under React 18 ([#1441](https://github.com/shakacode/react_on_rails/issues/1441)). [PR 1460](https://github.com/shakacode/react_on_rails/pull/1460) by [alexeyr](https://github.com/alexeyr).
|
99
|
+
|
100
|
+
In exchange, you may see a warning like this when building using any version of React below 18:
|
101
|
+
```
|
102
|
+
WARNING in ./node_modules/react-on-rails/node_package/lib/reactHydrateOrRender.js19:25-52
|
103
|
+
Module not found: Error: Can't resolve 'react-dom/client' in '/home/runner/work/react_on_rails/react_on_rails/spec/dummy/node_modules/react-on-rails/node_package/lib'
|
104
|
+
@ ./node_modules/react-on-rails/node_package/lib/ReactOnRails.js 34:45-78
|
105
|
+
@ ./client/app/packs/client-bundle.js 5:0-42 32:0-23 35:0-21 59:0-26
|
106
|
+
```
|
107
|
+
It can be safely [suppressed](https://webpack.js.org/configuration/other-options/#ignorewarnings) in your Webpack configuration.
|
108
|
+
|
109
|
+
### [13.0.2] - 2022-03-09
|
110
|
+
#### Fixed
|
111
|
+
- 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).
|
112
|
+
|
113
|
+
### [13.0.1] - 2022-02-09
|
114
|
+
#### Improved
|
115
|
+
- Updated the default generator. [PR 1431](https://github.com/shakacode/react_on_rails/pull/1431) by [justin808](https://github.com/justin808).
|
116
|
+
|
117
|
+
### [13.0.0] - 2022-02-08
|
118
|
+
#### Breaking
|
119
|
+
- Removed webpacker as a dependency. Add gem Shakapacker to your project, and update your package.json to also use shakapacker.
|
120
|
+
|
121
|
+
#### Fixed
|
122
|
+
- Proper throwing of exceptions.
|
123
|
+
- Default configuration better handles test env.
|
124
|
+
|
125
|
+
### [12.6.0] - 2022-01-22
|
126
|
+
|
127
|
+
#### Added
|
128
|
+
- 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).
|
129
|
+
|
130
|
+
### [12.5.2] - 2021-12-29
|
131
|
+
#### Fixed
|
132
|
+
- 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).
|
133
|
+
|
134
|
+
### [12.5.1] - 2021-12-27
|
135
|
+
|
136
|
+
#### Fixed
|
137
|
+
- 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).
|
138
|
+
|
139
|
+
### [12.5.0] - 2021-12-26
|
140
|
+
|
141
|
+
#### Added
|
142
|
+
- 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).
|
143
|
+
- 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).
|
144
|
+
- Supports Rails 7.
|
145
|
+
|
146
|
+
#### Changed
|
147
|
+
- 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).
|
148
|
+
- Minimimum required Ruby is 2.7 to match lastest rails/webpacker.
|
149
|
+
|
150
|
+
### [12.4.0] - 2021-09-22
|
151
|
+
#### Added
|
152
|
+
- ScoutAPM tracing support for server rendering [PR 1379](https://github.com/shakacode/react_on_rails/pull/1379) by [justin808](https://github.com/justin808).
|
153
|
+
|
154
|
+
- 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)!
|
155
|
+
|
156
|
+
- 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)
|
157
|
+
|
158
|
+
### [12.3.0] - 2021-07-26
|
159
|
+
#### Added
|
160
|
+
- 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).
|
161
|
+
|
162
|
+
To configure turbo the following option can be set:
|
163
|
+
`ReactOnRails.setOptions({ turbo: true })`
|
164
|
+
|
165
|
+
### [12.2.0] - 2021-03-25
|
166
|
+
#### Added
|
167
|
+
- Ability to configure server react rendering to throw rather than just logging the error. Useful for
|
168
|
+
React on Rails Pro Node rendering [PR 1365](https://github.com/shakacode/react_on_rails/pull/1365) by [justin808](https://github.com/justin808).
|
169
|
+
|
170
|
+
### [12.1.0] - 2021-03-23
|
171
|
+
#### Added
|
172
|
+
- 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).
|
173
|
+
|
174
|
+
#### Fixed
|
175
|
+
- 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).
|
176
|
+
|
177
|
+
### [12.0.4] - 2020-11-14
|
178
|
+
#### Fixed
|
179
|
+
- 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).
|
180
|
+
|
181
|
+
### [12.0.3] - 2020-09-20
|
182
|
+
#### Fixed
|
183
|
+
- Async script loading optimizes page load speed. With this fix, a bundle
|
184
|
+
can be loaded "async" and a handler function can determine when to hydrate.
|
185
|
+
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).
|
186
|
+
[PR 1327](https://github.com/shakacode/react_on_rails/pull/1327) by [justin808](https://github.com/justin808).
|
187
|
+
Loadable-Components is supported by [React on Rails Pro](https://www.shakacode.com/react-on-rails-pro).
|
188
|
+
|
189
|
+
### [12.0.2] - 2020-07-09
|
190
|
+
#### Fixed
|
191
|
+
- Remove dependency upon Redux for Typescript types. [PR 1323](https://github.com/shakacode/react_on_rails/pull/1323) by [justin808](https://github.com/justin808).
|
192
|
+
|
193
|
+
### [12.0.1] - 2020-07-09
|
194
|
+
#### Fixed
|
195
|
+
- 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).
|
196
|
+
|
197
|
+
### [12.0.0] - 2020-07-08
|
198
|
+
For upgrade instructions, see [docs/guides/upgrading-react-on-rails.md](https://www.shakacode.com/react-on-rails/docs/guides/upgrading-react-on-rails).
|
199
|
+
|
200
|
+
#### Major Improvements
|
201
|
+
1. **React Hooks Support** for top level components
|
202
|
+
2. **Typescript bindings**
|
203
|
+
3. **rails/webpacker** "just works" with React on Rails by default.
|
204
|
+
4. i18n support for generating a JSON file rather than a JS file.
|
205
|
+
|
206
|
+
#### BREAKING CHANGE
|
207
|
+
In order to solve the issues regarding React Hooks compatibility, the number of parameters
|
208
|
+
for functions is used to determine if you have a generator function that will get invoked to
|
209
|
+
return a React component, or you are registering a functional React component. Alternately, you can
|
210
|
+
set JavaScript property `renderFunction` on the function for which you want to return to be
|
211
|
+
invoked to return the React component. In that case, you won't need to pass any unused params.
|
212
|
+
[PR 1268](https://github.com/shakacode/react_on_rails/pull/1268) by [justin808](https://github.com/justin808)
|
213
|
+
|
214
|
+
See [docs/guides/upgrading-react-on-rails](https://www.shakacode.com/react-on-rails/docs/guides/upgrading-react-on-rails#upgrading-to-v12)
|
215
|
+
for details.
|
216
|
+
|
217
|
+
#### Other Updates
|
218
|
+
* `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.
|
219
|
+
* Changed the precompile task to use the rails/webpacker one by default
|
220
|
+
* Updated generators to use React hooks
|
221
|
+
* Requires the use of rails/webpacker view helpers
|
222
|
+
* If the webpacker webpack config files exist, then React on Rails will not override the default
|
223
|
+
assets:precompile setup by rails/webpacker. If you are not using the rails/webpacker setup for webpack,
|
224
|
+
then be sure to remove the JS files inside of config/webpack, like `config/webpack/production.js.`
|
225
|
+
* Removed **env_javascript_include_tag** and **env_stylesheet_link_tag** as these are replaced by view helpers
|
226
|
+
from rails/webpacker
|
227
|
+
* Removal of support for old Rubies and Rails.
|
228
|
+
* Removal of config.symlink_non_digested_assets_regex as it's no longer needed with rails/webpacker.
|
229
|
+
If any business needs this, we can move the code to a separate gem.
|
230
|
+
* Added configuration option `same_bundle_for_client_and_server` with default `false` because
|
231
|
+
|
232
|
+
1. Production applications would typically have a server bundle that differs from the client bundle
|
233
|
+
2. This change only affects trying to use HMR with react_on_rails with rails/webpacker.
|
234
|
+
|
235
|
+
The previous behavior was to always go to the webpack-dev-server for the server bundle if the
|
236
|
+
webpack-dev-server was running _and_ the server bundle was found in the `manifest.json`.
|
237
|
+
|
238
|
+
If you are using the **same bundle for client and server rendering**, then set this configuration option
|
239
|
+
to `true`. By [justin808](https://github.com/shakacode/react_on_rails/pull/1240).
|
240
|
+
|
241
|
+
* Added support to export locales in JSON format. New option added `i18n_output_format` which allows to
|
242
|
+
specify locales format either `JSON` or `JS`. **`JSON` format is now the default.**
|
243
|
+
|
244
|
+
**Use this config setting to get the old behavior: config.i18n_output_format = 'js'**
|
245
|
+
|
246
|
+
[PR 1271](https://github.com/shakacode/react_on_rails/pull/1271) by [ashgaliyev](https://github.com/ashgaliyev).
|
247
|
+
|
248
|
+
- 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).
|
249
|
+
- 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).
|
250
|
+
|
251
|
+
### [11.3.0] - 2019-05-24
|
252
|
+
#### Added
|
253
|
+
- Added method for retrieving any option from `render_options` [PR 1213](https://github.com/shakacode/react_on_rails/pull/1213)
|
254
|
+
by [ashgaliyev](https://github.com/ashgaliyev).
|
255
|
+
|
256
|
+
- html_options has an option for 'tag' to set the html tag name like this: `html_options: { tag: "span" }`.
|
257
|
+
[PR 1208](https://github.com/shakacode/react_on_rails/pull/1208) by [tahsin352](https://github.com/tahsin352).
|
258
|
+
|
259
|
+
### [11.2.2] - 2018-12-24
|
260
|
+
#### Improved
|
261
|
+
- rails_context can more easily be called from controller methods. The mandatory param of server_side has been made optional.
|
262
|
+
|
263
|
+
### [11.2.1] - 2018-12-06
|
264
|
+
## MIGRATION for v11.2
|
265
|
+
- If using **React on Rails Pro**, upgrade react_on_rails_pro to a version >= 1.3.
|
266
|
+
|
267
|
+
#### Improved
|
268
|
+
- 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).
|
269
|
+
|
270
|
+
- 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).
|
271
|
+
|
272
|
+
#### Changed
|
273
|
+
- Changed the default for:
|
274
|
+
```rb
|
275
|
+
config.raise_on_prerender_error = Rails.env.development?
|
276
|
+
```
|
277
|
+
|
278
|
+
Thus, developers will need to fix server rendering errors before continuing.
|
279
|
+
[PR 1145](https://github.com/shakacode/react_on_rails/pull/1145) by [justin808](https://github.com/justin808).
|
280
|
+
|
281
|
+
### 11.2.0 - 2018-12-06
|
282
|
+
Do not use. Unpublished. Caused by an issue with the release script.
|
283
|
+
|
284
|
+
### [11.1.8] - 2018-10-14
|
285
|
+
|
286
|
+
#### Improved
|
287
|
+
- 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).
|
288
|
+
|
289
|
+
### [11.1.7] - 2018-10-10
|
290
|
+
#### Fixed
|
291
|
+
- Fixed bug where intl parsing would fail when trying to parse integers or blank entries. by [sepehr500](https://github.com/sepehr500)
|
292
|
+
|
293
|
+
### [11.1.6] - 2018-10-05
|
294
|
+
#### Fixed
|
295
|
+
- 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).
|
296
|
+
|
297
|
+
### [11.1.5] - 2018-10-03
|
298
|
+
#### Fixed
|
299
|
+
- 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).
|
300
|
+
|
301
|
+
### [11.1.4] - 2018-09-12
|
302
|
+
|
303
|
+
#### Fixed
|
304
|
+
- Ignore Arrays in Rails i18n yml files. [PR 1129](https://github.com/shakacode/react_on_rails/pull/1129) by [vcarel](https://github.com/vcarel).
|
305
|
+
- 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).
|
306
|
+
- Upgrade Babel version to 7 [PR 1141](https://github.com/shakacode/react_on_rails/pull/1141) by [Ryunosuke Sato](https://github.com/tricknotes).
|
307
|
+
|
308
|
+
### [11.1.3] - 2018-08-26
|
309
|
+
|
310
|
+
#### Fixed
|
311
|
+
- 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).
|
312
|
+
- Add support for webpacker 4 prereleases. [PR 1134](https://github.com/shakacode/react_on_rails/pull/1134) by [Judahmeek](https://github.com/Judahmeek))
|
313
|
+
|
314
|
+
### [11.1.2] - 2018-08-18
|
315
|
+
|
316
|
+
#### Fixed
|
317
|
+
- Tests now properly exit if the config.build_test_command fails!
|
318
|
+
- Source path for project using Webpacker would default to "app/javascript" even if when the node_modules
|
319
|
+
directory was set to "client". Fix now makes the configuration of this crystal clear.
|
320
|
+
- renamed method RenderOptions.has_random_dom_id? to RenderOptions.random_dom_id? for rubocop rule.
|
321
|
+
[PR 1133](https://github.com/shakacode/react_on_rails/pull/1133) by [justin808](https://github.com/justin808)
|
322
|
+
|
323
|
+
### [11.1.1] - 2018-08-09
|
324
|
+
#### Fixed
|
325
|
+
- `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).
|
326
|
+
|
327
|
+
### [11.1.0] - 2018-08-07
|
328
|
+
#### Added
|
329
|
+
- 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)
|
330
|
+
* Added configuration option random_dom_id
|
331
|
+
* Added method RenderOptions has_random_dom_id?
|
332
|
+
#### Fixed
|
333
|
+
- Fix invalid warn directive. [PR 1123](https://github.com/shakacode/react_on_rails/pull/1123) by [mustangostang](https://github.com/mustangostang).
|
334
|
+
|
335
|
+
### [11.0.10] - 2018-07-22
|
336
|
+
#### Fixed
|
337
|
+
- 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).
|
338
|
+
- Properly clearing hydrated stores when server rendering. [PR 1120](https://github.com/shakacode/react_on_rails/pull/1120) by [squadette](https://github.com/squadette).
|
339
|
+
|
340
|
+
### [11.0.9] - 2018-06-24
|
341
|
+
- 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).
|
12
342
|
|
343
|
+
### [11.0.8] - 2018-06-15
|
344
|
+
#### Fixed
|
345
|
+
- 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).
|
346
|
+
- 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).
|
347
|
+
- Fix test helper determination of stale assets. [PR 1093](https://github.com/shakacode/react_on_rails/pull/1093) by [justin808](https://github.com/justin808).
|
348
|
+
|
349
|
+
#### Changed
|
350
|
+
- 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).
|
351
|
+
|
352
|
+
### [11.0.7] - 2018-05-16
|
353
|
+
#### Fixed
|
354
|
+
- Fix npm publshing. [PR 1090](https://github.com/shakacode/react_on_rails/pull/1090) by [justin808](https://github.com/justin808).
|
355
|
+
|
356
|
+
### [11.0.6] - 2018-05-15
|
13
357
|
#### Changed
|
358
|
+
- 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).
|
14
359
|
|
15
360
|
### [11.0.5] - 2018-05-11
|
361
|
+
#### Changed
|
16
362
|
- More detailed errors for Honeybadger and Sentry. [PR 1081](https://github.com/shakacode/react_on_rails/pull/1081) by [justin808](https://github.com/justin808).
|
17
363
|
|
18
364
|
### [11.0.4] - 2018-05-3
|
@@ -51,7 +397,7 @@ Changes since last non-beta release.
|
|
51
397
|
|
52
398
|
#### Enhancements: Better Error Messages, Support for React on Rails Pro
|
53
399
|
- Tracing (debugging) options are simplified with a single `config.trace` setting that defaults to true for development and false otherwise.
|
54
|
-
- 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.
|
400
|
+
- 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.
|
55
401
|
- Errors raised are of type ReactOnRailsError, so you can see they came from React on Rails for debugging.
|
56
402
|
- Removed ReactOnRails::Utils.server_bundle_file_name and ReactOnRails::Utils.bundle_file_name.
|
57
403
|
- No longer logging the `railsContext` when server logging.
|
@@ -134,7 +480,7 @@ Updated React on Rails to depend on [rails/webpacker](https://github.com/rails/w
|
|
134
480
|
|
135
481
|
|
136
482
|
#### 9.0 from 8.x. Upgrade Instructions
|
137
|
-
Moved to [our documentation](docs/
|
483
|
+
Moved to [our documentation](https://www.shakacode.com/react-on-rails/docs/guides/upgrading-react-on-rails#upgrading-to-version-9).
|
138
484
|
|
139
485
|
### [8.0.7] - 2017-08-16
|
140
486
|
#### Fixed
|
@@ -147,7 +493,7 @@ Moved to [our documentation](docs/basics/upgrading-react-on-rails.md#upgrading-t
|
|
147
493
|
- 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).
|
148
494
|
|
149
495
|
## [8.0.5] - 2017-07-04
|
150
|
-
|
496
|
+
#### Fixed
|
151
497
|
- 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).
|
152
498
|
- Remove contentBase deprecation warning message. [#878](https://github.com/shakacode/react_on_rails/pull/878) by [ened ](https://github.com/ened).
|
153
499
|
- 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).
|
@@ -156,11 +502,11 @@ Moved to [our documentation](docs/basics/upgrading-react-on-rails.md#upgrading-t
|
|
156
502
|
*Note: 8.0.4 skipped.*
|
157
503
|
|
158
504
|
## [8.0.3] - 2017-06-19
|
159
|
-
|
505
|
+
#### Fixed
|
160
506
|
- 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)
|
161
507
|
|
162
508
|
## [8.0.2] - 2017-06-04
|
163
|
-
|
509
|
+
#### Fixed
|
164
510
|
- Any failure in webpack to build test files quits tests.
|
165
511
|
- Fixed a Ruby 2.4 potential crash which could cause a crash due to pathname change in Ruby 2.4.
|
166
512
|
- CI Improvements:
|
@@ -171,7 +517,7 @@ Moved to [our documentation](docs/basics/upgrading-react-on-rails.md#upgrading-t
|
|
171
517
|
- [#862](https://github.com/shakacode/react_on_rails/pull/862) by [justin808](https://github.com/justin808)
|
172
518
|
|
173
519
|
## [8.0.1] - 2017-05-30
|
174
|
-
|
520
|
+
#### Fixed
|
175
521
|
- Generator no longer modifies `assets.rb`. [#859](https://github.com/shakacode/react_on_rails/pull/859) by [justin808](https://github.com/justin808)
|
176
522
|
|
177
523
|
## [8.0.0] - 2017-05-29
|
@@ -184,21 +530,21 @@ Moved to [our documentation](docs/basics/upgrading-react-on-rails.md#upgrading-t
|
|
184
530
|
- For a simple example of the webpacker_lite setup, run the basic generator.
|
185
531
|
|
186
532
|
## [8.0.0-beta.3] - 2017-05-27
|
187
|
-
|
533
|
+
#### Changed
|
188
534
|
- 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)
|
189
535
|
- 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)
|
190
536
|
|
191
537
|
## [8.0.0-beta.2] - 2017-05-08
|
192
538
|
|
193
|
-
|
539
|
+
#### Changed
|
194
540
|
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).
|
195
541
|
|
196
542
|
## [8.0.0-beta.1] - 2017-05-03
|
197
543
|
|
198
|
-
|
544
|
+
#### Added
|
199
545
|
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).
|
200
546
|
|
201
|
-
|
547
|
+
#### Changed
|
202
548
|
Breaking change is that the default value of symlink_non_digested_assets_regex has changed from this
|
203
549
|
old value to nil. This is a breaking change if you didn't have this value set in your
|
204
550
|
config/initializers/react_on_rails.rb file and you need this because you're using webpack's CSS
|
@@ -218,65 +564,65 @@ Same as 7.0.1.
|
|
218
564
|
*Accidental release of beta gem here*
|
219
565
|
|
220
566
|
## [7.0.1] - 2017-04-27
|
221
|
-
|
567
|
+
#### Fixed
|
222
568
|
- 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)
|
223
569
|
|
224
570
|
## [7.0.0] - 2017-04-25
|
225
|
-
|
571
|
+
#### Changed
|
226
572
|
- 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)
|
227
573
|
|
228
|
-
|
574
|
+
#### Fixed
|
229
575
|
- 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)
|
230
576
|
|
231
577
|
## [6.10.1] - 2017-04-23
|
232
|
-
|
578
|
+
#### Fixed
|
233
579
|
- 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).
|
234
580
|
|
235
581
|
## [6.10.0] - 2017-04-13
|
236
582
|
|
237
|
-
|
583
|
+
#### Added
|
238
584
|
- 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).
|
239
585
|
|
240
|
-
|
586
|
+
#### Fixed
|
241
587
|
- 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).
|
242
588
|
|
243
589
|
## [6.9.3] - 2017-04-03
|
244
590
|
|
245
|
-
|
591
|
+
#### Fixed
|
246
592
|
- 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).
|
247
593
|
|
248
594
|
## [6.9.2] - 2017-04-02
|
249
595
|
|
250
|
-
|
596
|
+
#### Changed
|
251
597
|
- 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).
|
252
598
|
|
253
|
-
|
599
|
+
#### Fixed
|
254
600
|
- Remove pretty formatting of JSON in development. [#789](https://github.com/shakacode/react_on_rails/pull/789) by [justin808](https://github.com/justin808)
|
255
601
|
- Clear hydrated stores with each server rendered block. [#785](https://github.com/shakacode/react_on_rails/pull/785) by [udovenko](https://github.com/udovenko)
|
256
602
|
|
257
603
|
## [6.9.1] - 2017-03-30
|
258
604
|
|
259
|
-
|
605
|
+
#### Fixed
|
260
606
|
- Fixes Crash in Development for String Props. [#784](https://github.com/shakacode/react_on_rails/issues/784) by [justin808](https://github.com/justin808).
|
261
607
|
|
262
608
|
## [6.9.0] - 2017-03-29
|
263
609
|
|
264
|
-
|
610
|
+
#### Fixed
|
265
611
|
- Fixed error in the release script. [#767](https://github.com/shakacode/react_on_rails/issues/767) by [isolo](https://github.com/isolo).
|
266
612
|
|
267
|
-
|
613
|
+
#### Changed
|
268
614
|
- 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).
|
269
615
|
|
270
|
-
|
616
|
+
#### Added
|
271
617
|
- 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.
|
272
618
|
[#777](https://github.com/shakacode/react_on_rails/pull/777) by [danijel](https://github.com/danijel).
|
273
619
|
|
274
620
|
## [6.8.2] - 2017-03-24
|
275
|
-
|
621
|
+
#### Fixed
|
276
622
|
- 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).
|
277
623
|
|
278
624
|
## [6.8.1] - 2017-03-21
|
279
|
-
|
625
|
+
#### Fixed
|
280
626
|
- 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).
|
281
627
|
|
282
628
|
## [6.8.0] - 2017-03-06
|
@@ -284,7 +630,7 @@ Same as 7.0.1.
|
|
284
630
|
- 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).
|
285
631
|
|
286
632
|
## [6.7.2] - 2017-03-05
|
287
|
-
|
633
|
+
#### Improved
|
288
634
|
- 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).
|
289
635
|
|
290
636
|
## [6.7.1] - 2017-02-28
|
@@ -292,7 +638,7 @@ No changes other than a test fix.
|
|
292
638
|
|
293
639
|
## [6.7.0] - 2017-02-28
|
294
640
|
|
295
|
-
|
641
|
+
#### IMPORTANT
|
296
642
|
- 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:
|
297
643
|
|
298
644
|
```
|
@@ -305,32 +651,32 @@ Commenting out this line addresses the issue:
|
|
305
651
|
config.i18n_dir = Rails.root.join("client", "app", "libs", "i18n")
|
306
652
|
```
|
307
653
|
|
308
|
-
|
654
|
+
#### Added
|
309
655
|
- 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).
|
310
656
|
|
311
|
-
|
657
|
+
#### Fixed
|
312
658
|
- 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).
|
313
659
|
- Fix spec failing due to duplicate component. [#734](https://github.com/shakacode/react_on_rails/pull/734) by [hrishimittal](https://github.com/hrishimittal).
|
314
660
|
|
315
661
|
## [6.6.0] - 2017-02-18
|
316
|
-
|
662
|
+
#### Added
|
317
663
|
- Switched to yarn! [#715](https://github.com/shakacode/react_on_rails/pull/715) by [squadette](https://github.com/squadette).
|
318
664
|
|
319
665
|
## [6.5.1] - 2017-02-11
|
320
|
-
|
666
|
+
#### Fixed
|
321
667
|
- Allow using gem without sprockets. [#671](https://github.com/shakacode/react_on_rails/pull/671) by [fc-arny](https://github.com/fc-arny).
|
322
668
|
- 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).
|
323
669
|
- Small formatting fix for errors [#703](https://github.com/shakacode/react_on_rails/pull/703) by [justin808](https://github.com/justin808).
|
324
670
|
|
325
671
|
## [6.5.0] - 2017-01-31
|
326
|
-
|
672
|
+
#### Added
|
327
673
|
- 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).
|
328
674
|
|
329
|
-
|
675
|
+
#### Fixed
|
330
676
|
- Fix incorrect "this" references of Node.js SSR [#690](https://github.com/shakacode/react_on_rails/issues/689) by [nostophilia](https://github.com/nostophilia).
|
331
677
|
|
332
678
|
## [6.4.2] - 2017-01-17
|
333
|
-
|
679
|
+
#### Fixed
|
334
680
|
- 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).
|
335
681
|
|
336
682
|
## [6.4.1] - 2017-1-17
|
@@ -338,17 +684,17 @@ No changes.
|
|
338
684
|
|
339
685
|
## [6.4.0] - 2017-1-12
|
340
686
|
|
341
|
-
|
687
|
+
#### Possible Breaking Change
|
342
688
|
- 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.
|
343
689
|
|
344
|
-
|
690
|
+
#### Fixed
|
345
691
|
- Removed foreman as a dependency. [#678](https://github.com/shakacode/react_on_rails/pull/678) by [x2es](https://github.com/x2es).
|
346
692
|
|
347
|
-
|
693
|
+
#### Added
|
348
694
|
- 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).
|
349
695
|
|
350
696
|
## [6.3.5] - 2017-1-6
|
351
|
-
|
697
|
+
#### Fixed
|
352
698
|
- 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).
|
353
699
|
|
354
700
|
## [6.3.4] - 2016-12-25
|
@@ -484,7 +830,7 @@ Here is the addition to the generated config file:
|
|
484
830
|
## [5.2.0] - 2016-04-08
|
485
831
|
##### Added
|
486
832
|
- 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).
|
487
|
-
- 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://
|
833
|
+
- 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)
|
488
834
|
|
489
835
|
##### Removed
|
490
836
|
- Generator removals to simplify installer. See [#364](https://github.com/shakacode/react_on_rails/pull/364) by [jbhatab](https://github.com/jbhatab).
|
@@ -617,11 +963,11 @@ All 5.1.0 changes can be found in [#362](https://github.com/shakacode/react_on_r
|
|
617
963
|
<%= react_component("ReduxSharedStoreApp", props: {}, prerender: false, trace: true) %>
|
618
964
|
```
|
619
965
|
You'll get a deprecation message to change this.
|
620
|
-
- 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://
|
966
|
+
- 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).
|
621
967
|
- 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).
|
622
968
|
|
623
969
|
##### Migration Steps v2 to v3
|
624
|
-
- [spec/dummy/spec/rails_helper.rb](https://github.com/shakacode/react_on_rails/blob/master/spec
|
970
|
+
- 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`:
|
625
971
|
```ruby
|
626
972
|
RSpec.configure do |config|
|
627
973
|
# Ensure that if we are running js tests, we are using latest webpack assets
|
@@ -637,7 +983,7 @@ RSpec.configure do |config|
|
|
637
983
|
|
638
984
|
## [2.2.0] - 2016-01-29
|
639
985
|
##### Added
|
640
|
-
- New JavaScript API for debugging TurboLinks issues. Be sure to see [turbolinks docs](
|
986
|
+
- 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).
|
641
987
|
|
642
988
|
## [2.1.1] - 2016-01-28
|
643
989
|
|
@@ -646,21 +992,21 @@ RSpec.configure do |config|
|
|
646
992
|
|
647
993
|
##### Added
|
648
994
|
- `ReactOnRails.render` returns a virtualDomElement Reference to your React component's backing instance. See [#234](https://github.com/shakacode/react_on_rails/pull/234).
|
649
|
-
- `debug_turbolinks` helper for debugging turbolinks issues. See [turbolinks](
|
995
|
+
- `debug_turbolinks` helper for debugging turbolinks issues. See [turbolinks](https://www.shakacode.com/react-on-rails/docs/rails/turbolinks).
|
650
996
|
- Enhanced regression testing for non-turbolinks apps. Runs all tests for dummy app with turbolinks both disabled and enabled.
|
651
997
|
|
652
998
|
## [2.1.0] - 2016-01-26
|
653
999
|
##### Added
|
654
|
-
- 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](
|
655
|
-
- Added [migration guide](https://
|
656
|
-
- Added [React on Rails Doctrine](docs/doctrine
|
1000
|
+
- 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)
|
1001
|
+
- 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)
|
1002
|
+
- 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)
|
657
1003
|
- 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)
|
658
1004
|
|
659
1005
|
##### Changed
|
660
1006
|
- Changed message when running the dev (a.k.a. "express" server). [#227](https://github.com/shakacode/react_on_rails/commit/543ae70254d0c7b477e2c92af86f40746e58a431)
|
661
1007
|
|
662
1008
|
##### Fixed
|
663
|
-
- 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
|
1009
|
+
- 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)
|
664
1010
|
- Fixed issue with already initialized constant warning appearing when starting a Rails server [#226](https://github.com/shakacode/react_on_rails/pull/226)
|
665
1011
|
- Fixed to make backwards compatible with Ruby v2.0 and updated all Ruby and Node dependencies.
|
666
1012
|
|
@@ -756,9 +1102,51 @@ Best done with Object destructing:
|
|
756
1102
|
- Turbolinks support.
|
757
1103
|
|
758
1104
|
##### Fixed
|
759
|
-
- Fix several generator
|
760
|
-
|
761
|
-
[Unreleased]: https://github.com/shakacode/react_on_rails/compare/
|
1105
|
+
- Fix several generator-related issues.
|
1106
|
+
|
1107
|
+
[Unreleased]: https://github.com/shakacode/react_on_rails/compare/13.4.0...master
|
1108
|
+
[13.4.0]: https://github.com/shakacode/react_on_rails/compare/13.3.5...13.4.0
|
1109
|
+
[13.3.5]: https://github.com/shakacode/react_on_rails/compare/13.3.4...13.3.5
|
1110
|
+
[13.3.4]: https://github.com/shakacode/react_on_rails/compare/13.3.3...13.3.4
|
1111
|
+
[13.3.3]: https://github.com/shakacode/react_on_rails/compare/13.3.2...13.3.3
|
1112
|
+
[13.3.2]: https://github.com/shakacode/react_on_rails/compare/13.3.1...13.3.2
|
1113
|
+
[13.3.1]: https://github.com/shakacode/react_on_rails/compare/13.3.0...13.3.1
|
1114
|
+
[13.3.0]: https://github.com/shakacode/react_on_rails/compare/13.2.0...13.3.0
|
1115
|
+
[13.2.0]: https://github.com/shakacode/react_on_rails/compare/13.1.0...13.2.0
|
1116
|
+
[13.1.0]: https://github.com/shakacode/react_on_rails/compare/13.0.2...13.1.0
|
1117
|
+
[13.0.2]: https://github.com/shakacode/react_on_rails/compare/13.0.1...13.0.2
|
1118
|
+
[13.0.1]: https://github.com/shakacode/react_on_rails/compare/13.0.0...13.0.1
|
1119
|
+
[13.0.0]: https://github.com/shakacode/react_on_rails/compare/12.6.0...13.0.0
|
1120
|
+
[12.6.0]: https://github.com/shakacode/react_on_rails/compare/12.5.2...12.6.0
|
1121
|
+
[12.5.2]: https://github.com/shakacode/react_on_rails/compare/12.5.1...12.5.2
|
1122
|
+
[12.5.1]: https://github.com/shakacode/react_on_rails/compare/12.5.0...12.5.1
|
1123
|
+
[12.5.0]: https://github.com/shakacode/react_on_rails/compare/12.4.0...12.5.0
|
1124
|
+
[12.4.0]: https://github.com/shakacode/react_on_rails/compare/12.3.0...12.4.0
|
1125
|
+
[12.3.0]: https://github.com/shakacode/react_on_rails/compare/12.2.0...12.3.0
|
1126
|
+
[12.2.0]: https://github.com/shakacode/react_on_rails/compare/12.1.0...12.2.0
|
1127
|
+
[12.1.0]: https://github.com/shakacode/react_on_rails/compare/12.0.4...12.1.0
|
1128
|
+
[12.0.4]: https://github.com/shakacode/react_on_rails/compare/12.0.3...12.0.4
|
1129
|
+
[12.0.3]: https://github.com/shakacode/react_on_rails/compare/12.0.2...12.0.3
|
1130
|
+
[12.0.2]: https://github.com/shakacode/react_on_rails/compare/12.0.1...12.0.2
|
1131
|
+
[12.0.1]: https://github.com/shakacode/react_on_rails/compare/12.0.0...12.0.1
|
1132
|
+
[12.0.0]: https://github.com/shakacode/react_on_rails/compare/11.3.0...12.0.0
|
1133
|
+
[11.3.0]: https://github.com/shakacode/react_on_rails/compare/11.2.2...11.3.0
|
1134
|
+
[11.2.2]: https://github.com/shakacode/react_on_rails/compare/11.2.1...11.2.2
|
1135
|
+
[11.2.1]: https://github.com/shakacode/react_on_rails/compare/11.1.8...11.2.1
|
1136
|
+
[11.1.8]: https://github.com/shakacode/react_on_rails/compare/11.1.7...11.1.8
|
1137
|
+
[11.1.7]: https://github.com/shakacode/react_on_rails/compare/11.1.6...11.1.7
|
1138
|
+
[11.1.6]: https://github.com/shakacode/react_on_rails/compare/11.1.5...11.1.6
|
1139
|
+
[11.1.5]: https://github.com/shakacode/react_on_rails/compare/11.1.4...11.1.5
|
1140
|
+
[11.1.4]: https://github.com/shakacode/react_on_rails/compare/11.1.3...11.1.4
|
1141
|
+
[11.1.3]: https://github.com/shakacode/react_on_rails/compare/11.1.2...11.1.3
|
1142
|
+
[11.1.2]: https://github.com/shakacode/react_on_rails/compare/11.1.1...11.1.2
|
1143
|
+
[11.1.1]: https://github.com/shakacode/react_on_rails/compare/11.1.0...11.1.1
|
1144
|
+
[11.1.0]: https://github.com/shakacode/react_on_rails/compare/11.0.10...11.1.0
|
1145
|
+
[11.0.10]: https://github.com/shakacode/react_on_rails/compare/11.0.9...11.0.10
|
1146
|
+
[11.0.9]: https://github.com/shakacode/react_on_rails/compare/11.0.8...11.0.9
|
1147
|
+
[11.0.8]: https://github.com/shakacode/react_on_rails/compare/11.0.7...11.0.8
|
1148
|
+
[11.0.7]: https://github.com/shakacode/react_on_rails/compare/11.0.6...11.0.7
|
1149
|
+
[11.0.6]: https://github.com/shakacode/react_on_rails/compare/11.0.5...11.0.6
|
762
1150
|
[11.0.5]: https://github.com/shakacode/react_on_rails/compare/11.0.4...11.0.5
|
763
1151
|
[11.0.4]: https://github.com/shakacode/react_on_rails/compare/11.0.3...11.0.4
|
764
1152
|
[11.0.3]: https://github.com/shakacode/react_on_rails/compare/11.0.2...11.0.3
|