Skip to content

v2.3.6

Latest

Choose a tag to compare

@github-actions github-actions released this 18 Dec 15:57

Changes

  • Fixed serialization of empty Array and empty Hash. Fixes #336.
blog_path({filters: {}, columns: []}) // => /blog
  • Support new Rails 8.1 nil parameter serialization.
    Rails #53962
    JsRoutes consistently follows current rails version behavior:
root_path(hello: nil)
  # 8.0 => "/?hello="
  # 8.1 => "/?hello"