You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixes#290, transparently handling <script async> tag. If the document was already loaded,
the DOMContentLoaded event handler no longer fires, so we just execute it directly, the
same way as jQuery does in $.ready().
Co-authored-by: Alexey Makhotkin
Copy file name to clipboardExpand all lines: CHANGELOG.md
+8-7
Original file line number
Diff line number
Diff line change
@@ -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 <scriptasync> 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:
0 commit comments