CHANGELOG.md in react_on_rails-3.0.0.rc.1 vs CHANGELOG.md in react_on_rails-3.0.0.rc.2

- old
+ new

@@ -1,18 +1,20 @@ # Change Log All notable changes to this project will be documented in this file. Items under `Unreleased` is upcoming features that will be out in next version. 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. -## [3.0.0-beta.1] +## [3.0.0-rc.2] - 2016-02-09 ##### Fixed - Fix Bootstrap Sass Append to Gemfile, missing new line. [#262](https://github.com/shakacode/react_on_rails/pull/262). ##### Added - Added helper `redux_store` and associated JavaScript APIs that allow multiple React components to use the same store. Thus, you initialize the store, with props, separately from the components. -- Added forman to gemspec in case new dev does not have it globally installed. [#248](https://github.com/shakacode/react_on_rails/pull/248) - +- Added forman to gemspec in case new dev does not have it globally installed. [#248](https://github.com/shakacode/react_on_rails/pull/248). +- Support for Turbolinks 5! [#270](https://github.com/shakacode/react_on_rails/pull/270). +- Added better error messages for `ReactOnRails.register()`. [#273](https://github.com/shakacode/react_on_rails/pull/273). + ##### Breaking Change - Calls to `react_component` should use a named argument of props. For example, change this: ```ruby <%= react_component("ReduxSharedStoreApp", {}, prerender: false, trace: true) %> ``` @@ -21,10 +23,11 @@ ```ruby <%= react_component("ReduxSharedStoreApp", props: {}, prerender: false, trace: true) %> ``` You'll get a deprecation message to change this. - Renamed `ReactOnRails.configure_rspec_to_compile_assets` to `ReactOnRails::TestHelper.configure_rspec_to_compile_assets`. The code has also been optimized to check for whether or not the compiled webpack bundles are up to date or not and will not run if not necessary. If you are using non-standard directories for your generated webpack assets (`app/assets/javascripts/generated` and `app/assets/stylesheets/generated`) or have additional directories you wish the helper to check, you need to update your ReactOnRails configuration accordingly. See [documentation](https://github.com/shakacode/react_on_rails/blob/master/docs/additional_reading/rspec_configuration.md) for how to do this. [#253](https://github.com/shakacode/react_on_rails/pull/253). +- You have to call `ReactOnRails.register` to register react components. This was deprecated in v2. [#273](https://github.com/shakacode/react_on_rails/pull/273). ##### Migration Steps v2 to v3 - [spec/dummy/spec/rails_helper.rb](https://github.com/shakacode/react_on_rails/blob/master/spec%2Fdummy%2Fspec%2Frails_helper.rb#L36..38) for an example. Add this line to your `rails_helper.rb`: ```ruby RSpec.configure do |config| @@ -160,10 +163,10 @@ - Turbolinks support. ##### Fixed - Fix several generator related issues. -[3.0.0-beta.1]: https://github.com/shakacode/react_on_rails/compare/2.3.0...3.0.0-beta.1 +[3.0.0-rc.1]: https://github.com/shakacode/react_on_rails/compare/2.3.0...3.0.0-rc.1 [2.3.0]: https://github.com/shakacode/react_on_rails/compare/2.2.0...2.3.0 [2.2.0]: https://github.com/shakacode/react_on_rails/compare/2.1.1...2.2.0 [2.1.1]: https://github.com/shakacode/react_on_rails/compare/v2.1.0...2.1.1 [2.1.0]: https://github.com/shakacode/react_on_rails/compare/v2.0.2...v2.1.0 [2.0.2]: https://github.com/shakacode/react_on_rails/compare/v2.0.1...v2.0.2