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 +4 -4
- data/.travis.yml +0 -2
- data/CHANGELOG.md +16 -0
- data/lib/react_on_rails/version.rb +1 -1
- data/package.json +1 -1
- metadata +5 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fac1458d15f951224259dc1408c2950af8914d7dbc9529220a01a3e2665add94
|
4
|
+
data.tar.gz: d8b5e6d03dbc89385892b8e22db377c8639c8fe15d466db802c86d762f0cee39
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c44ef75d3c44f87ee3be8037136fc11154a59fcaae31d223446a7e50621a4773955de4f61f36d7d2e062bb49ca60c771ce853278b21197d4c7842c1162bfb71f
|
7
|
+
data.tar.gz: ed423208f616c125bf8ff20e42a522ca9107df7f04cb7181815dc422886b066147c766804e2d58f1051604902186fdce05929237b17e5056cca1cdcaf96131fe
|
data/.travis.yml
CHANGED
data/CHANGELOG.md
CHANGED
@@ -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)
|
data/package.json
CHANGED
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:
|
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:
|
518
|
+
version: 1.3.1
|
519
519
|
requirements: []
|
520
|
-
|
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.
|