react_on_rails 3.0.2 → 3.0.3
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 +8 -1
- data/Gemfile +1 -1
- data/README.md +1 -1
- data/docs/additional_reading/react_router.md +1 -1
- data/lib/generators/react_on_rails/templates/base/base/client/webpack.client.rails.config.js +1 -1
- data/lib/react_on_rails/version.rb +1 -1
- data/package.json +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1cdfb8b30eed96ce09362ea8f7bf56859717c2e2
|
|
4
|
+
data.tar.gz: 67925663d7385f3da4d4e53981617faf2a254fe1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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.
|
|
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
data/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
# NEWS
|
|
4
4
|
|
|
5
|
-
* 3.0.
|
|
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
|
-
<
|
|
33
|
+
<RouterContext {...routeProps} />
|
|
34
34
|
</Provider>
|
|
35
35
|
);
|
|
36
36
|
};
|
data/package.json
CHANGED
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.
|
|
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-
|
|
11
|
+
date: 2016-02-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: connection_pool
|