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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c4ceab3e6c98e9d83250df14711e2932e2ec9feb
4
- data.tar.gz: 2ef9724b55f5296b870794a47ef529be1b785951
3
+ metadata.gz: 5616765e73089b791e60e49c47a99c4217ae4e47
4
+ data.tar.gz: d6895eb29b7b04697c80f07a28ea47b716a6b1ea
5
5
  SHA512:
6
- metadata.gz: 9d545d0b69a72504df5e572bf2501fe03399141cb84f2f4a9eba6a397b92c0a9e386f9d94a1cd9bb39450f8f41b1e3c1ec99319508dc74d7aee5b77fa4d89039
7
- data.tar.gz: 9f8f5b89a3b71e61491ae7343162b2f2b8adc94ebb64ebbaf33242187c3058b0408de3d5274d1688ec4f561295ac526d6f6c965cfc0385a518d86d23baa59d6e
6
+ metadata.gz: 7a03e79ec545f01d2cf7568f9cf403b1e53f88d9a3d6697d47b84005235f5c3d374c122264d7b8572d2b4da8c9a73a1f0955bdd4dae61adf6b7133b1861a5c5e
7
+ data.tar.gz: 0f210aa98d8eef9c46f31d406006f959925eb5ce0ceb09a5853088137db99d9eaa5a2dfa7d82e7fcbdab31d66d09f5c697981b0b719a5a586ca1abb9ed9521c3
@@ -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.0...master
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["tag"],
145
+ component_specification_tag: internal_result[:tag],
146
146
  console_script: console_script,
147
147
  render_options: internal_result[:render_options]
148
148
  )
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ReactOnRails
4
- VERSION = "11.0.2".freeze
4
+ VERSION = "11.0.3".freeze
5
5
  end
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-on-rails",
3
- "version": "11.0.2",
3
+ "version": "11.0.3",
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: 11.0.2
4
+ version: 11.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Justin Gordon