react-on-rails
Advanced tools
Comparing version 6.5.0 to 6.5.1
@@ -9,2 +9,8 @@ # Change Log | ||
## [6.5.1] - 2017-02-11 | ||
### Fixed | ||
- Allow using gem without sprockets. [#671](https://github.com/shakacode/react_on_rails/pull/671) by [fc-arny](https://github.com/fc-arny). | ||
- Fixed issue [#706](https://github.com/shakacode/react_on_rails/issues/706) with "flickering" components when they are unmounted too early [#709](https://github.com/shakacode/react_on_rails/pull/709) by [szyablitsky](https://github.com/szyablitsky). | ||
- Small formatting fix for errors [#703](https://github.com/shakacode/react_on_rails/pull/703) by [justin808](https://github.com/justin808). | ||
## [6.5.0] - 2017-01-31 | ||
@@ -446,3 +452,4 @@ ### Added | ||
[Unreleased]: https://github.com/shakacode/react_on_rails/compare/6.5.0...master | ||
[Unreleased]: https://github.com/shakacode/react_on_rails/compare/6.5.1...master | ||
[6.5.1]: https://github.com/shakacode/react_on_rails/compare/6.5.0...6.5.1 | ||
[6.5.0]: https://github.com/shakacode/react_on_rails/compare/6.4.2...6.5.0 | ||
@@ -449,0 +456,0 @@ [6.4.2]: https://github.com/shakacode/react_on_rails/compare/6.4.1...6.4.2 |
@@ -148,3 +148,3 @@ 'use strict'; | ||
} catch (e) { | ||
e.message = 'ReactOnRails encountered an error while rendering component: ' + name + '.' + ('Original message: ' + e.message); | ||
e.message = 'ReactOnRails encountered an error while rendering component: ' + name + '.\n' + ('Original message: ' + e.message); | ||
throw e; | ||
@@ -208,4 +208,4 @@ } | ||
if (turbolinksVersion5()) { | ||
debugTurbolinks('USING TURBOLINKS 5: document added event listeners ' + ' turbolinks:before-visit and turbolinks:load.'); | ||
document.addEventListener('turbolinks:before-visit', reactOnRailsPageUnloaded); | ||
debugTurbolinks('USING TURBOLINKS 5: document added event listeners ' + 'turbolinks:before-render and turbolinks:load.'); | ||
document.addEventListener('turbolinks:before-render', reactOnRailsPageUnloaded); | ||
document.addEventListener('turbolinks:load', reactOnRailsPageLoaded); | ||
@@ -212,0 +212,0 @@ } else { |
{ | ||
"name": "react-on-rails", | ||
"version": "6.5.0", | ||
"version": "6.5.1", | ||
"description": "react-on-rails JavaScript for react_on_rails Ruby gem", | ||
@@ -5,0 +5,0 @@ "main": "node_package/lib/ReactOnRails.js", |
@@ -116,3 +116,3 @@ [![Build Status](https://travis-ci.org/shakacode/react_on_rails.svg?branch=master)](https://travis-ci.org/shakacode/react_on_rails) [![Codeship Status for shakacode/react_on_rails](https://app.codeship.com/projects/cec6c040-971f-0134-488f-0a5146246bd8/status?branch=master)](https://app.codeship.com/projects/187011) [![Dependency Status](https://gemnasium.com/shakacode/react_on_rails.svg)](https://gemnasium.com/shakacode/react_on_rails) [![Gem Version](https://badge.fury.io/rb/react_on_rails.svg)](https://badge.fury.io/rb/react_on_rails) [![npm version](https://badge.fury.io/js/react-on-rails.svg)](https://badge.fury.io/js/react-on-rails) [![Code Climate](https://codeclimate.com/github/shakacode/react_on_rails/badges/gpa.svg)](https://codeclimate.com/github/shakacode/react_on_rails) [![Coverage Status](https://coveralls.io/repos/shakacode/react_on_rails/badge.svg?branch=master&service=github)](https://coveralls.io/github/shakacode/react_on_rails?branch=master) | ||
2. Commit this to git (you cannot run the generator unless you do this). | ||
2. Commit this to git (you cannot run the generator unless you do this or pass the option `--ignore-warnings`). | ||
@@ -119,0 +119,0 @@ 3. See help for the generator: |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
115795