react_on_rails 6.3.3 → 6.3.4
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 +7 -2
- 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: cdf328f519e9f58be94e6c0cfc441c07c7d0ed37
|
|
4
|
+
data.tar.gz: da9fe3cf93222d58cee045b45a03c9fcf0c9a827
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3695855319d53a1735fe3e4ef93bf14d3d77c1038b1ab380aaa15943eb529e2815b9bc0bed7cc889f1eed3ef6fb413be1cc6b0bb1b48d36690f3bf966b499fff
|
|
7
|
+
data.tar.gz: e757cfc7ae9be398f430188db0434cdafc97f886d5d2cd379637c503c8e2746791e691a40a988c44663fdcdafe0bffacb216f44659c0374119021bcb0714608f
|
data/CHANGELOG.md
CHANGED
|
@@ -6,8 +6,12 @@ Contributors: please follow the recommendations outlined at [keepachangelog.com]
|
|
|
6
6
|
## [Unreleased]
|
|
7
7
|
*Please add entries here for your pull requests.*
|
|
8
8
|
|
|
9
|
+
## [6.3.4] - 2016-12-25
|
|
10
|
+
##### Fixed
|
|
11
|
+
- Disable Turbolinks support when not supported. [#650](https://github.com/shakacode/react_on_rails/pull/650) by [ka2n](https://github.com/ka2n).
|
|
12
|
+
|
|
9
13
|
## [6.3.3] - 2016-12-25
|
|
10
|
-
#####
|
|
14
|
+
##### Fixed
|
|
11
15
|
- By using the hook on `turbolinks:before-visit` to unmount the components, we can ensure that components are unmounted even when Turbolinks cache is disabled. Previously, we used `turbolinks:before-cache` event hook. [#644](https://github.com/shakacode/react_on_rails/pull/644) by [volkanunsal](https://github.com/volkanunsal).
|
|
12
16
|
- Added support for Ruby 2.0 [#651](https://github.com/shakacode/react_on_rails/pull/651) by [bbonamin](https://github.com/bbonamin).
|
|
13
17
|
|
|
@@ -409,7 +413,8 @@ Best done with Object destructing:
|
|
|
409
413
|
##### Fixed
|
|
410
414
|
- Fix several generator related issues.
|
|
411
415
|
|
|
412
|
-
[Unreleased]: https://github.com/shakacode/react_on_rails/compare/6.3.
|
|
416
|
+
[Unreleased]: https://github.com/shakacode/react_on_rails/compare/6.3.4...master
|
|
417
|
+
[6.3.4]: https://github.com/shakacode/react_on_rails/compare/6.3.3...6.3.4
|
|
413
418
|
[6.3.3]: https://github.com/shakacode/react_on_rails/compare/6.3.2...6.3.3
|
|
414
419
|
[6.3.2]: https://github.com/shakacode/react_on_rails/compare/6.3.1...6.3.2
|
|
415
420
|
[6.3.1]: https://github.com/shakacode/react_on_rails/compare/6.3.0...6.3.1
|
data/package.json
CHANGED