Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

react-on-rails

Package Overview
Dependencies
Maintainers
1
Versions
204
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-on-rails - npm Package Compare versions

Comparing version 6.1.2 to 6.2.0

14

CHANGELOG.md

@@ -7,10 +7,16 @@ # Change Log

## [Unreleased]
## [6.2.0] - 2016-11-19
##### Changed
- Updated the generator templates to reflect current best practices, especially for the redux version. [#584](https://github.com/shakacode/react_on_rails/pull/584) by [nostophilia](https://github.com/nostophilia).
## [6.1.2] - 2016-10-24
##### Fixed
- Added compatibility with older manifest.yml files produced by Rails 3 Sprockets when symlinking digested assets during precompilation [#566](https://github.com/shakacode/react_on_rails/pull/566) by [etripier](https://github.com/etripier).
## [6.1.1] 2016-09-09
## [6.1.1] - 2016-09-09
##### Fixed
- React on Rails was incorrectly failing to create symlinks when a file existed in the location for the new symlink. [#491](https://github.com/shakacode/react_on_rails/pull/541) by [robwise ](https://github.com/robwise) and [justin808](https://github.com/justin808).
## [6.1.0] 2016-08-21
## [6.1.0] - 2016-08-21

@@ -376,3 +382,5 @@ ##### Added

[Unreleased]: https://github.com/shakacode/react_on_rails/compare/6.1.1...master
[Unreleased]: https://github.com/shakacode/react_on_rails/compare/6.2.0...master
[6.2.0]: https://github.com/shakacode/react_on_rails/compare/6.1.2...6.2.0
[6.1.2]: https://github.com/shakacode/react_on_rails/compare/6.1.1...6.1.2
[6.1.1]: https://github.com/shakacode/react_on_rails/compare/6.1.0...6.1.1

@@ -379,0 +387,0 @@ [6.1.0]: https://github.com/shakacode/react_on_rails/compare/6.0.5...6.1.0

@@ -32,7 +32,7 @@ 'use strict';

function createReactElement(_ref) {
var name = _ref.name;
var props = _ref.props;
var railsContext = _ref.railsContext;
var domNodeId = _ref.domNodeId;
var trace = _ref.trace;
var name = _ref.name,
props = _ref.props,
railsContext = _ref.railsContext,
domNodeId = _ref.domNodeId,
trace = _ref.trace;

@@ -49,4 +49,4 @@ if (trace) {

var component = componentObj.component;
var generatorFunction = componentObj.generatorFunction;
var component = componentObj.component,
generatorFunction = componentObj.generatorFunction;

@@ -53,0 +53,0 @@

@@ -18,4 +18,4 @@ 'use strict';

function handleGeneratorFunctionIssue(options) {
var e = options.e;
var name = options.name;
var e = options.e,
name = options.name;

@@ -49,5 +49,5 @@

var handleError = function handleError(options) {
var e = options.e;
var jsCode = options.jsCode;
var serverSide = options.serverSide;
var e = options.e,
jsCode = options.jsCode,
serverSide = options.serverSide;

@@ -54,0 +54,0 @@

@@ -36,5 +36,5 @@ 'use strict';

function serverRenderReactComponent(options) {
var name = options.name;
var domNodeId = options.domNodeId;
var trace = options.trace;
var name = options.name,
domNodeId = options.domNodeId,
trace = options.trace;

@@ -41,0 +41,0 @@

{
"name": "react-on-rails",
"version": "6.1.2",
"version": "6.2.0",
"description": "react-on-rails JavaScript for react_on_rails Ruby gem",

@@ -5,0 +5,0 @@ "main": "node_package/lib/ReactOnRails.js",

@@ -15,8 +15,8 @@ [![Build Status](https://travis-ci.org/shakacode/react_on_rails.svg?branch=master)](https://travis-ci.org/shakacode/react_on_rails) [![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)

# Articles
# Articles, Videos, and Podcasts
### Articles
* [React on Rails, 2000+ 🌟 Stars](https://medium.com/shakacode/react-on-rails-2000-stars-32ff5cfacfbf#.6gmfb2gpy)
* [The React on Rails Doctrine](https://medium.com/@railsonmaui/the-react-on-rails-doctrine-3c59a778c724)
# Videos
### [React On Rails Tutorial Series](https://www.youtube.com/playlist?list=PL5VAKH-U1M6dj84BApfUtvBjvF-0-JfEU)

@@ -28,3 +28,7 @@

### Podcasts
* [284 Ruby Rogues: React on Rails with Justin Gordon and Rob Wise](https://devchat.tv/ruby-rogues/284-rr-react-on-rails-with-justin-gordon-and-rob-wise)
# NEWS
* 2016-11-03: Speaking at [LA Ruby, 7pm, Thursday, November 10 in Venice, CA: "React on Rails: Why, What, and How?"](http://www.meetup.com/laruby/events/234825187/)
* 2016-08-27: We now have a [Documentation Gitbook](https://shakacode.gitbooks.io/react-on-rails/content/) for improved readability & reference.

@@ -90,4 +94,5 @@ * 2016-08-21: v6.1 ships with serveral new features and bug fixes. See the [Changelog](CHANGELOG.md).

**For more detailed instructions**, see the [React on Rails Basic Tutorial](docs/tutorial.md).
1. Add the following to your Gemfile and bundle install.
1. Add the following to your Gemfile and `bundle install`.
```ruby

@@ -436,3 +441,3 @@ gem "react_on_rails", "~> 6"

Rails has built-in protection for Cross-Site Request Forgery (CSRF), see [Rails Documentation](http://guides.rubyonrails.org/security.html#cross-site-request-forgery-csrf). To nicely utilize this feature in JavaScript requests, React on Rails is offerring two helpers that can be used as following for POST, PULL or DELETE requests:
Rails has built-in protection for Cross-Site Request Forgery (CSRF), see [Rails Documentation](http://guides.rubyonrails.org/security.html#cross-site-request-forgery-csrf). To nicely utilize this feature in JavaScript requests, React on Rails is offerring two helpers that can be used as following for POST, PUT or DELETE requests:

@@ -550,3 +555,3 @@ ```

* See [Projects](PROJECTS.md) using and [KUDOS](./KUDOS.md) for React on Rails. Please submit yours! Please edit either page or [email us](mailto:contact@shakacode.com) and we'll add your info. We also **love stars** as it helps us attract new users and contributors.
* Follow [@railsonmaui](https://twitter.com/railsonmaui) and [@shakacode](https://twitter.com/shakacode) on Twitter for updates on releases. We've also got a forum category dedicated to [react_on_rails](http://forum.shakacode.com/c/rails/ReactOnRails).
* Follow [@railsonmaui](https://twitter.com/railsonmaui) and [@shakacode](https://twitter.com/shakacode) on Twitter for updates on releases. We've also got a forum category dedicated to [react_on_rails](https://forum.shakacode.com/c/rails/reactonrails).

@@ -553,0 +558,0 @@ ---

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc