react_on_rails 11.0.8 → 11.0.9

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
  SHA256:
3
- metadata.gz: 5ed7b1fbb2464837b56060e72a7496e347e4da42218d09256e11b2e30c24e43b
4
- data.tar.gz: fb7122bd0af170552379b15faeb3bdacd989f8121e7995dd975d9554bd948d93
3
+ metadata.gz: d4c8e8a304c80572a9df447d0d1cd3bffe2e12eb2c6080658d2dd16ae326c321
4
+ data.tar.gz: '009ce332e8c55c225a3359662b543219dcb245d43fcf68072f4e7563ad1f3c99'
5
5
  SHA512:
6
- metadata.gz: 2f2cca7b17bf7c7f53d338a51fa01e28bb131712fdba019e058e481993d178995710ef42e3cc063f8617184695abaf1dc444f6161e5ee8a92ed04f4e042a27ed
7
- data.tar.gz: ebf4448a0ad4316ecc89d893f6a52eecbd23ec62b55ea7e4a615ff15c7c20fabe1964e84224fda00328348e832555ce1dd78ae3782ffd9ee7d0514fdca9adb17
6
+ metadata.gz: f53c929fa58e78fcf6c3182c287e24526ff748b97e7659386aace7eb6bcbdc17dc8f068a6e2fc84f47a868505360593ec9af8d2568c204c451519851da697253
7
+ data.tar.gz: 0db66e49e9a9b1d9bd44f71c10b52ad4f7468de64478e4113f863f20477445d3e559c4bc6e4c1aa405c447530579cd964d6b959f9f031dbf282fee7065d05553
@@ -9,23 +9,24 @@ See [Upgrading React on Rails](./docs/basics/upgrading-react-on-rails.md) for mo
9
9
  Changes since last non-beta release.
10
10
 
11
11
  *Please add entries here for your pull requests that are not yet released.*
12
- ### [11.0.9] - 2018-05-22
12
+
13
+ ### [11.0.9] - 2018-06-24
14
+ - Handle <script async> for Webpack bundle transparently. Closes [issue #290](https://github.com/shakacode/react_on_rails/issues/290) [PR 1099](https://github.com/shakacode/react_on_rails/pull/1099) by [squadette](https://github.com/squadette).
15
+
16
+ ### [11.0.8] - 2018-06-15
13
17
  #### Fixed
14
18
  - HashWithIndifferent access for props threw if used for props. [PR 1100](https://github.com/shakacode/react_on_rails/pull/1100) by [justin808](https://github.com/justin808).
15
19
  - Test helper for detecting stale bundles did not properly handle the case of a server-bundle.js without a hash.[PR 1102](https://github.com/shakacode/react_on_rails/pull/1102) by [justin808](https://github.com/justin808).
16
-
17
- ### [11.0.8] - 2018-05-22
18
- #### Fixed
19
20
  - Fix test helper determination of stale assets. [PR 1093](https://github.com/shakacode/react_on_rails/pull/1093) by [justin808](https://github.com/justin808).
20
21
 
21
22
  #### Changed
22
23
  - Document how to manually rehydrate XHR-substituted components on client side. [PR 1095](https://github.com/shakacode/react_on_rails/pull/1095) by [hchevalier](https://github.com/hchevalier).
23
24
 
24
- ### [11.0.7] - 2018-05-11
25
+ ### [11.0.7] - 2018-05-16
25
26
  #### Fixed
26
27
  - Fix npm publshing. [PR 1090](https://github.com/shakacode/react_on_rails/pull/1090) by [justin808](https://github.com/justin808).
27
28
 
28
- ### [11.0.6] - 2018-05-11
29
+ ### [11.0.6] - 2018-05-15
29
30
  #### Changed
30
31
  - Even more detailed errors for Honeybadger and Sentry when there's a JSON parse error on server rendering. [PR 1086](https://github.com/shakacode/react_on_rails/pull/1086) by [justin808](https://github.com/justin808).
31
32
 
@@ -777,7 +778,7 @@ Best done with Object destructing:
777
778
  - Fix several generator related issues.
778
779
 
779
780
  [Unreleased]: https://github.com/shakacode/react_on_rails/compare/11.0.9...master
780
- [11.0.8]: https://github.com/shakacode/react_on_rails/compare/11.0.8...11.0.9
781
+ [11.0.9]: https://github.com/shakacode/react_on_rails/compare/11.0.8...11.0.9
781
782
  [11.0.8]: https://github.com/shakacode/react_on_rails/compare/11.0.7...11.0.8
782
783
  [11.0.7]: https://github.com/shakacode/react_on_rails/compare/11.0.6...11.0.7
783
784
  [11.0.6]: https://github.com/shakacode/react_on_rails/compare/11.0.5...11.0.6
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ReactOnRails
4
- VERSION = "11.0.8".freeze
4
+ VERSION = "11.0.9".freeze
5
5
  end
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-on-rails",
3
- "version": "11.0.8",
3
+ "version": "11.0.9",
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.0.8
4
+ version: 11.0.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Justin Gordon
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-06-15 00:00:00.000000000 Z
11
+ date: 2018-06-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable