react_on_rails 3.0.2 → 3.0.3

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: e6da7d5c8a9a1645664f3c27bde9479a0959ed98
4
- data.tar.gz: 40a0908a2a3eaef521de57be5cc161b971d101bf
3
+ metadata.gz: 1cdfb8b30eed96ce09362ea8f7bf56859717c2e2
4
+ data.tar.gz: 67925663d7385f3da4d4e53981617faf2a254fe1
5
5
  SHA512:
6
- metadata.gz: fadae2a9c789beb71a886d00febe744d4ced358b9224f5a3537ca71d51ea6c3db6aaa9802d547932374813b59949dd41aa757bfbafe9ae3cb2672474a3ea3ac4
7
- data.tar.gz: 63b7ba24a96118e4121755fbb805eaf0af67daf3c6460c60cfae7ee4442da68019eb47343edcad384f112e1d6b7efb9fc8d34883989f70a5df9364b3670fba2d
6
+ metadata.gz: 8fa927f624479a31f111b2a4d4fea2b6fb9b8458a8b2ed41b28057c13ced52920cb1664d65c64f6dc96ea5e072047a8374deb56a9d4aff5cba3447cc833da1b1
7
+ data.tar.gz: bcb24696867ce13ceef5a8e0731997e54e9e2168d5d691ad14dd7e00f9e3f1349cc0a108af185ea9bfb76dfd39cc28280a7352856a6107966773213555c94086
data/CHANGELOG.md CHANGED
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. Items under
4
4
  Contributors: please follow the recommendations outlined at [keepachangelog.com](http://keepachangelog.com/). Please use the existing headings and styling as a guide, and add a link for the version diff at the bottom of the file. Also, please update the `Unreleased` link to compare to the latest release version.
5
5
  ## [Unreleased]
6
6
 
7
+ ## [3.0.3] - 2016-02-21
8
+ ##### Fixed
9
+ - Cleaned up code in `spec/dummy` to latest React and Redux APIs. See [#282](https://github.com/shakacode/react_on_rails/pull/282).
10
+ - Update generator messages with helpful information. See [#279](https://github.com/shakacode/react_on_rails/pull/279).
11
+ - Other small generated comment fixes and doc fixes.
12
+
7
13
  ## [3.0.2] - 2016-02-15
8
14
  ##### Fixed
9
15
  - Fixed missing information in the helpful message after running the base install generator regarding how to run the node server with hot reloading support.
@@ -173,7 +179,8 @@ Best done with Object destructing:
173
179
 
174
180
  ##### Fixed
175
181
  - Fix several generator related issues.
176
- [Unreleased]: https://github.com/shakacode/react_on_rails/compare/3.0.2...master
182
+ [Unreleased]: https://github.com/shakacode/react_on_rails/compare/3.0.3...master
183
+ [3.0.3]: https://github.com/shakacode/react_on_rails/compare/3.0.2...3.0.3
177
184
  [3.0.2]: https://github.com/shakacode/react_on_rails/compare/3.0.1...3.0.2
178
185
  [3.0.1]: https://github.com/shakacode/react_on_rails/compare/3.0.0...3.0.1
179
186
  [3.0.0]: https://github.com/shakacode/react_on_rails/compare/2.3.0...3.0.0
data/Gemfile CHANGED
@@ -35,4 +35,4 @@ else
35
35
  gem "turbolinks", "~> 5.0.0.beta"
36
36
  end
37
37
  gem "uglifier", ">= 2.7.2"
38
- gem "web-console", "~> 2.0"
38
+ gem "web-console", "~> 2.0", group: :development
data/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  # NEWS
4
4
 
5
- * 3.0.1 shipped on Monday, 2/11/2016. Please see the [Changelog](CHANGELOG.md) for details, and let us know if you see any issues! [Migration steps from 1.x](https://github.com/shakacode/react_on_rails/blob/master/CHANGELOG.md#migration-steps-v1-to-v2). [Migration steps from 2.x](https://github.com/shakacode/react_on_rails/blob/master/CHANGELOG.md#migration-steps-v2-to-v3).
5
+ * 3.0.3 shipped on Sunday, 2/21/2016. Please see the [Changelog](CHANGELOG.md) for details, and let us know if you see any issues! [Migration steps from 1.x](https://github.com/shakacode/react_on_rails/blob/master/CHANGELOG.md#migration-steps-v1-to-v2). [Migration steps from 2.x](https://github.com/shakacode/react_on_rails/blob/master/CHANGELOG.md#migration-steps-v2-to-v3).
6
6
  * [RubyGems](https://rubygems.org/gems/react_on_rails/versions/3.0.0.rc.2), `gem "react_on_rails", "~> 3.0.0-rc.2"`
7
7
  * [NPM](https://www.npmjs.com/package/react-on-rails), `npm i --save react-on-rails@3.0.0-rc.2`
8
8
  * 3.0.0 Highlights:
@@ -30,7 +30,7 @@ const RouterApp = (props, location) => {
30
30
  // Important that you don't do this if you are redirecting or have an error.
31
31
  return (
32
32
  <Provider store={store}>
33
- <RoutingContext {...routeProps} />
33
+ <RouterContext {...routeProps} />
34
34
  </Provider>
35
35
  );
36
36
  };
@@ -1,5 +1,5 @@
1
1
  // Run like this:
2
- // cd client && npm run build:dev
2
+ // cd client && npm run build:dev:client
3
3
  // Note that Foreman (Procfile.dev) has also been configured to take care of this.
4
4
 
5
5
  // NOTE: All style sheets handled by the asset pipeline in rails
@@ -1,4 +1,4 @@
1
1
  # frozen_string_literal: true
2
2
  module ReactOnRails
3
- VERSION = "3.0.2".freeze
3
+ VERSION = "3.0.3".freeze
4
4
  end
data/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-on-rails",
3
- "version": "3.0.2",
3
+ "version": "3.0.3",
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,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: react_on_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.2
4
+ version: 3.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Justin Gordon
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-02-16 00:00:00.000000000 Z
11
+ date: 2016-02-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: connection_pool