react_on_rails 8.0.6.rc.0 → 8.0.6.rc.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1c6ee3fc28399227e4cc5532139be23ac8c5e43e
4
- data.tar.gz: c0d9e7e3e583e303deda8ad4e7d04b8ad4003b05
3
+ metadata.gz: 9da98617bcf3ae42007c264ce473ba41a19213bc
4
+ data.tar.gz: b340b887abb64d37142dcca88746faab4f5ecfef
5
5
  SHA512:
6
- metadata.gz: df70573337317bd8d3eee9971124b94155874b201b884e71d3b4022f6044225694216804fa4c63e62a427b9d7e78811107ab9b4b59ee0e46c055998924bf9249
7
- data.tar.gz: 78ff3efaf3fe64c773376469426ebbef7b23022d7f9b4f9c93060e3fdfa899daca3f0e273e00c37ec2aa8f80bed35e846a05d4c33dfc2df1fd684d0322033625
6
+ metadata.gz: ae2dcc5ba53467bf4f8b17f9b08862c0049d8cfdb694b38a8dcf3a370c50c9d79578b087a2e1b78602195d3e4d948f1a80f9657be7a21263f940effa37fc54da
7
+ data.tar.gz: 5f7d8006d44c0f3f8cd71b7ad5d9b3bc384b566b857b59d9992505b80a5466df959ca24fe9a5b207120d562e959c114dfec34eccd8e6cb6b217d9e30bd7e1da8
@@ -10,7 +10,7 @@ Changes since last non-beta release.
10
10
 
11
11
  ### [8.0.6]
12
12
  #### fixed
13
- - 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).
13
+ - 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.
14
14
  - 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)
15
15
  - 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).
16
16
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ReactOnRails
4
- VERSION = "8.0.6.rc.0"
4
+ VERSION = "8.0.6.rc.1"
5
5
  end
@@ -36,7 +36,8 @@ module ReactOnRails
36
36
  " gem: #{gem_version}\n" \
37
37
  " node package: #{node_package_version.raw}\n" \
38
38
  "Ensure the installed version of the gem is the same as the version of \n"\
39
- "your installed node package."
39
+ "your installed node package.\n"\
40
+ "Run `cd client && yarn add react-on-rails`"
40
41
  raise msg
41
42
  end
42
43
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-on-rails",
3
- "version": "8.0.6-rc.0",
3
+ "version": "8.0.6-rc.1",
4
4
  "description": "react-on-rails JavaScript for react_on_rails Ruby gem",
5
5
  "main": "node_package/lib/ReactOnRails.js",
6
6
  "directories": {
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: react_on_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 8.0.6.rc.0
4
+ version: 8.0.6.rc.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Justin Gordon