Skip to content

v0.10.1

Compare
Choose a tag to compare
@ctron ctron released this 26 Jan 17:11
· 18 commits to main since this release

Full Changelog: v0.9.3...v0.10.1

⚠️ BREAKING-CHANGE

  • The feature named "router" got renamed to "nested-router"

  • All hooks are part of the crate::hooks module now.This legacy re-export was removed.

  • In addition to the other configuration/option struct,this also makes the main configuration non-exhaustive. So it is no
    longer possible to directly create a new struct, but use the "new"
    function instead and modify the struct using the with_* functions.

  • In order to allow adding new options in the future, the structs LoginOptions and LogoutOptions have been made
    non-exhaustive. Adding some documentation on how to work with them.

  • The login options property has been renamed to login_options, to make room for the logout_options

Features

  • handle post-login redirect (578b65b)

Fixes

  • the default options did not get applied (35bdd19)
  • drop unused type arguments, clean up (27a6d2a)