CHANGELOG.md in js_from_routes-2.1.0 vs CHANGELOG.md in js_from_routes-3.0.0

- old
+ new

@@ -1,4 +1,23 @@ +# [3.0.0](https://github.com/ElMassimo/js_from_routes/compare/js_from_routes@2.1.0...js_from_routes@3.0.0) (2023-10-09) + + +### Features + +* **breaking:** no longer map `index` to `list` and `show` to `get` ([5eb3f48](https://github.com/ElMassimo/js_from_routes/commit/5eb3f48de71fe38ee1c67d9b91a81d71a437e1a8)) +* add `export_if` to allow using custom `:export` values ([fd1776c](https://github.com/ElMassimo/js_from_routes/commit/fd1776cc91402f1e9a9003031cb9fd6c3a0d63f9)) + + + + +If you want to preserve the old behavior: + +```ruby +JsFromRoutes.config do |config| + config.helper_mappings = {"index" => "list", "show" => "get"} +end +``` + # [2.1.0](https://github.com/ElMassimo/js_from_routes/compare/js_from_routes@2.0.6...js_from_routes@2.1.0) (2023-02-07) ### Bug Fixes