react_on_rails 11.3.0 → 11.3.1.beta.0

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
  SHA256:
3
- metadata.gz: 0bb16eb9dbe881e26404d0348b398cbf8fe74cc635b070830444b590b603b680
4
- data.tar.gz: ff2fc0cde5a0a74959a6539ffec333f5350c913de8d14fe8650d3b9980a3d8c5
3
+ metadata.gz: fac1458d15f951224259dc1408c2950af8914d7dbc9529220a01a3e2665add94
4
+ data.tar.gz: d8b5e6d03dbc89385892b8e22db377c8639c8fe15d466db802c86d762f0cee39
5
5
  SHA512:
6
- metadata.gz: 0c868503c83f7af1b8cf3c2a6a297b045606cb26eaec5580d07ac1567e8d768071720cd5f7c497c576113cd78d0a70bfc677be125d54840b49480766c4662b47
7
- data.tar.gz: 8dcaf2739c09a9689782a7a3e0f58036b86b88ce01092369e58296fc6235ffac4f18df3f8f19ead5db5d21c8ba53860da789d0b59994b220e96935d0fe39c904
6
+ metadata.gz: c44ef75d3c44f87ee3be8037136fc11154a59fcaae31d223446a7e50621a4773955de4f61f36d7d2e062bb49ca60c771ce853278b21197d4c7842c1162bfb71f
7
+ data.tar.gz: ed423208f616c125bf8ff20e42a522ca9107df7f04cb7181815dc422886b066147c766804e2d58f1051604902186fdce05929237b17e5056cca1cdcaf96131fe
@@ -4,8 +4,6 @@ language: ruby
4
4
 
5
5
  rvm:
6
6
  # Rails 5 requires 2.2
7
- - 2.3.8
8
- - 2.4.5
9
7
  - 2.5.3
10
8
  - 2.6.0
11
9
  - 2.2.10
@@ -15,6 +15,22 @@ Please follow the recommendations outlined at [keepachangelog.com](http://keepac
15
15
  Changes since last non-beta release.
16
16
 
17
17
  *Please add entries here for your pull requests that are not yet released.*
18
+ ### [11.3.1] - 2020-10-01
19
+ #### Fixed
20
+ Update the init per backport of 12.0.3. [PR 1331](https://github.com/shakacode/react_on_rails/pull/1331)
21
+ by [justin808](https://github.com/justin808).
22
+
23
+ * Should fix issue 1330.
24
+ * Component not loading in Chrome, DOMContentLoaded not called.
25
+ * https://github.com/shakacode/react_on_rails/issues/1330
26
+
27
+ So long as the document is not loading, we can assume:
28
+ The document has finished loading and the document has been parsed
29
+ but sub-resources such as images, stylesheets and frames are still loading.
30
+ If lazy asynch loading is used, such as with loadable-components, then the init
31
+ function will install some handler that will properly know when to do hyrdation.
32
+
33
+
18
34
  ### [11.3.0] - 2019-04-20
19
35
  #### Added
20
36
  - Added method for retrieving any option from `render_options` [PR 1213](https://github.com/shakacode/react_on_rails/pull/1213)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ReactOnRails
4
- VERSION = "11.3.0".freeze
4
+ VERSION = "11.3.1.beta.0".freeze
5
5
  end
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-on-rails",
3
- "version": "11.3.0",
3
+ "version": "11.3.1-beta.0",
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,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: react_on_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 11.3.0
4
+ version: 11.3.1.beta.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Justin Gordon
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-05-25 00:00:00.000000000 Z
11
+ date: 2020-10-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable
@@ -513,12 +513,11 @@ required_ruby_version: !ruby/object:Gem::Requirement
513
513
  version: 2.1.0
514
514
  required_rubygems_version: !ruby/object:Gem::Requirement
515
515
  requirements:
516
- - - ">="
516
+ - - ">"
517
517
  - !ruby/object:Gem::Version
518
- version: '0'
518
+ version: 1.3.1
519
519
  requirements: []
520
- rubyforge_project:
521
- rubygems_version: 2.7.9
520
+ rubygems_version: 3.0.3
522
521
  signing_key:
523
522
  specification_version: 4
524
523
  summary: Rails with react server rendering with webpack.