react_on_rails 11.0.2 → 11.0.3
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -1
- data/lib/react_on_rails/react_on_rails_helper.rb +1 -1
- data/lib/react_on_rails/version.rb +1 -1
- data/package.json +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5616765e73089b791e60e49c47a99c4217ae4e47
|
|
4
|
+
data.tar.gz: d6895eb29b7b04697c80f07a28ea47b716a6b1ea
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7a03e79ec545f01d2cf7568f9cf403b1e53f88d9a3d6697d47b84005235f5c3d374c122264d7b8572d2b4da8c9a73a1f0955bdd4dae61adf6b7133b1861a5c5e
|
|
7
|
+
data.tar.gz: 0f210aa98d8eef9c46f31d406006f959925eb5ce0ceb09a5853088137db99d9eaa5a2dfa7d82e7fcbdab31d66d09f5c697981b0b719a5a586ca1abb9ed9521c3
|
data/CHANGELOG.md
CHANGED
|
@@ -10,7 +10,13 @@ Changes since last non-beta release.
|
|
|
10
10
|
|
|
11
11
|
*Please add entries here for your pull requests that are not yet released.*
|
|
12
12
|
|
|
13
|
+
### [11.0.3] - 2018-04-24
|
|
14
|
+
|
|
15
|
+
#### Fixed
|
|
16
|
+
- 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).
|
|
17
|
+
|
|
13
18
|
### [11.0.2] - 2018-04-24
|
|
19
|
+
|
|
14
20
|
#### Fixed
|
|
15
21
|
- 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).
|
|
16
22
|
|
|
@@ -738,7 +744,10 @@ Best done with Object destructing:
|
|
|
738
744
|
##### Fixed
|
|
739
745
|
- Fix several generator related issues.
|
|
740
746
|
|
|
741
|
-
[Unreleased]: https://github.com/shakacode/react_on_rails/compare/11.0.
|
|
747
|
+
[Unreleased]: https://github.com/shakacode/react_on_rails/compare/11.0.3...master
|
|
748
|
+
[11.0.3]: https://github.com/shakacode/react_on_rails/compare/11.0.2...11.0.3
|
|
749
|
+
[11.0.2]: https://github.com/shakacode/react_on_rails/compare/11.0.1...11.0.2
|
|
750
|
+
[11.0.1]: https://github.com/shakacode/react_on_rails/compare/11.0.0...11.0.1
|
|
742
751
|
[11.0.0]: https://github.com/shakacode/react_on_rails/compare/10.1.4...11.0.0
|
|
743
752
|
[10.1.4]: https://github.com/shakacode/react_on_rails/compare/10.1.3...10.1.4
|
|
744
753
|
[10.1.3]: https://github.com/shakacode/react_on_rails/compare/10.1.2...10.1.3
|
|
@@ -142,7 +142,7 @@ module ReactOnRails
|
|
|
142
142
|
if server_rendered_html.is_a?(Hash)
|
|
143
143
|
build_react_component_result_for_server_rendered_hash(
|
|
144
144
|
server_rendered_html: server_rendered_html,
|
|
145
|
-
component_specification_tag: internal_result[
|
|
145
|
+
component_specification_tag: internal_result[:tag],
|
|
146
146
|
console_script: console_script,
|
|
147
147
|
render_options: internal_result[:render_options]
|
|
148
148
|
)
|
data/package.json
CHANGED