react_on_rails 6.3.3 → 6.3.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d1147c015c743e085201d4ad3f0b78abce841901
4
- data.tar.gz: 96e20221ddd6595e5de6cd0b159056a8ca5f5b19
3
+ metadata.gz: cdf328f519e9f58be94e6c0cfc441c07c7d0ed37
4
+ data.tar.gz: da9fe3cf93222d58cee045b45a03c9fcf0c9a827
5
5
  SHA512:
6
- metadata.gz: a4b272797bcaac4c82ef4720acce5ab14b0198934291547766ee257e22dbd7737bc08e3b48559f32c1e7e031b6fa92f3fdc5789613991a2516dfdfe61bd8724e
7
- data.tar.gz: 41b5b8240e0ed87f1f7273d812d8b023442e3b594beb42af25ab1a9ba8d1c3ae8b3de3266d3c9f7aaeb4ce203fad5ff77a946d2cacc71bd6257d09bdfd3467c7
6
+ metadata.gz: 3695855319d53a1735fe3e4ef93bf14d3d77c1038b1ab380aaa15943eb529e2815b9bc0bed7cc889f1eed3ef6fb413be1cc6b0bb1b48d36690f3bf966b499fff
7
+ data.tar.gz: e757cfc7ae9be398f430188db0434cdafc97f886d5d2cd379637c503c8e2746791e691a40a988c44663fdcdafe0bffacb216f44659c0374119021bcb0714608f
@@ -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
- ##### Changed
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.3...master
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
@@ -1,4 +1,4 @@
1
1
  # frozen_string_literal: true
2
2
  module ReactOnRails
3
- VERSION = "6.3.3".freeze
3
+ VERSION = "6.3.4".freeze
4
4
  end
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-on-rails",
3
- "version": "6.3.3",
3
+ "version": "6.3.4",
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: 6.3.3
4
+ version: 6.3.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Justin Gordon