react-on-rails
Advanced tools
Comparing version 7.0.0 to 7.0.1
@@ -7,2 +7,8 @@ # Change Log | ||
## [Unreleased] | ||
*Please add entries here for your pull requests.* | ||
## [7.0.1] - 2017-04-27 | ||
### Fixed | ||
- Fix to handle nil values in json_safe_and_pretty [#823](https://github.com/shakacode/react_on_rails/pull/823) by [dzirtusss](https://github.com/dzirtusss) | ||
## [7.0.0] - 2017-04-25 | ||
@@ -545,3 +551,4 @@ ### Changed | ||
[Unreleased]: https://github.com/shakacode/react_on_rails/compare/7.0.0...master | ||
[Unreleased]: https://github.com/shakacode/react_on_rails/compare/7.0.1...master | ||
[7.0.1]: https://github.com/shakacode/react_on_rails/compare/7.0.0...7.0.1 | ||
[7.0.0]: https://github.com/shakacode/react_on_rails/compare/6.10.1...7.0.0 | ||
@@ -548,0 +555,0 @@ [6.10.1]: https://github.com/shakacode/react_on_rails/compare/6.10.0...6.10.1 |
{ | ||
"name": "react-on-rails", | ||
"version": "7.0.0", | ||
"version": "7.0.1", | ||
"description": "react-on-rails JavaScript for react_on_rails Ruby gem", | ||
@@ -5,0 +5,0 @@ "main": "node_package/lib/ReactOnRails.js", |
@@ -52,9 +52,4 @@ [](https://travis-ci.org/shakacode/react_on_rails) [](https://app.codeship.com/projects/187011) [](https://gemnasium.com/shakacode/react_on_rails) [](https://badge.fury.io/rb/react_on_rails) [](https://badge.fury.io/js/react-on-rails) [](https://codeclimate.com/github/shakacode/react_on_rails) [](https://coveralls.io/github/shakacode/react_on_rails?branch=master) | ||
# NEWS | ||
* 2017-04-09: 7.0.0 beta work to include webpacker_lite gem has begun. See [#786](https://github.com/shakacode/react_on_rails/issues/786). | ||
* 2017-04-03: 6.9.3 Released! Props rendered in JSON script tag. Page size is smaller now due to less escaping! | ||
* 2017-03-06: Updated to Webpack v2! | ||
* 2017-03-02: Demo of internationalization (i18n) is live at [reactrails.com](https://www.reactrails.com/). Docs [here](docs/basics/i18n.md). | ||
* 2017-02-28: See [discussions here on Webpacker](https://github.com/rails/webpacker/issues/139) regarding how Webpacker will allow React on Rails to avoid using the asset pipeline in the near future. | ||
* 2017-02-28: Upgrade to Webpack v2 or use the `--bail` option in your webpack script for test and production builds. See the discussion on [PR #730](https://github.com/shakacode/react_on_rails/pull/730). | ||
* 2016-11-03: Spoke at [LA Ruby: "React on Rails: Why, What, and How?"](http://www.meetup.com/laruby/events/234825187/). [Video and pictures in this article](https://blog.shakacode.com/my-react-on-rails-talk-at-the-la-ruby-rails-meetup-november-10-2016-eaaa83aff800#.ej6h4eglp). | ||
* 2017-04-25: 7.0.0 Shipped! Performance improvements! Please upgrade! Only "breaking" change is that you have to update both the node module and the Ruby gem. | ||
* 2017-04-09: 8.0.0 beta work to include webpacker_lite gem has begun. See [#786](https://github.com/shakacode/react_on_rails/issues/786). | ||
* *See [NEWS.md](NEWS.md) for more notes over time.* | ||
@@ -231,4 +226,7 @@ | ||
**Note**: If server rendering is not used (prerender: false), then the major difference is that the HTML rendered for the React component only contains the outer div: `<div id="HelloWorld-react-component-0"/>`. The first specification of the React component is just the same. | ||
**Note**: | ||
* If server rendering is not used (prerender: false), then the major difference is that the HTML rendered for the React component only contains the outer div: `<div id="HelloWorld-react-component-0"/>`. The first specification of the React component is just the same. | ||
* The below image is not yet updated for version 7.0.0 which uses a `<script>` tag for the props. Instead of a hidden div, we have the props inside of the a `<script>` tag. | ||
 | ||
@@ -235,0 +233,0 @@ |
125633
614