Skip to content

Releases: auth0/lock

10.2.2

01 Sep 19:36

Choose a tag to compare

Full Changelog

Fixed

  • Decode window.location.href before parsing hash (#583)

Changed

  • Change the default value for hash in WebApi.parseHash() internal method (#587)

10.2.1

01 Sep 19:46

Choose a tag to compare

Full Changelog

Fixed

  • Allow dots in HRD username and clear errors before leaving the HRD screen (#574)

10.2.0

01 Sep 19:47

Choose a tag to compare

Full Changelog

Changed

  • Show a label in the submit button by default (#524)
  • Show the Auth0 badge only in modal mode and on the bottom left of the overlay (#552)
  • Replace the log in / sign up segmented control for tabs (#553)

Fixed

  • German translation corrections (#549)

Added

  • Add responseMode: "form_post" option (#526)
  • Add the hash_parsed event (#535)
  • Add zh translation (#548)
  • Allow to override some options in the show method (#550)
  • Add nb translation (#560)

10.1.0

01 Sep 19:47

Choose a tag to compare

Full Changelog

Added

  • Add de translation (#546)

10.0.2

01 Sep 19:47

Choose a tag to compare

Full Changelog

Fixed

  • Fix header in Edge (#528)
  • Allow to reuse a given container id (#533)
  • Stop showing last login screen when the initial screen is not login (#534)
  • Fix email input in IE 10 (#537)

10.0.1

27 Jul 20:56

Choose a tag to compare

Full Changelog

Fixed

  • Stopped dropping keys on email input in IE (#505)
  • Protect against svgs background colors set by other stylesheets (#506)
  • Ensure header styling looks fine in IE (#507)

10.0.0

27 Jul 20:56

Choose a tag to compare

Full Changelog

Changed

  • The parseHash method was removed given that now it is
    automatically handled by Lock.

Fixed

  • Stopped hiding errors that are raised from event listeners.

Added

  • Handle the new variants of password policy errors during sign up.

10.0.0-rc.2

13 Sep 15:39

Choose a tag to compare

Full Changelog

Fixed

  • Fixed issue with the blueimp library when bundling with webpack.
  • Stopped fetching SSO data when SSO is disabled.
  • The location hash is no longer cleared every time Lock is
    initialized.

Added

  • The validator function for additional sign up fields now allows to
    specify a hint that will be displayed when the field is invalid.

10.0.0-rc.1

13 Sep 15:39

Choose a tag to compare

Full Changelogd

Change

  • Show Auth0 badge in the bottom only for free plans.

10.0.0-beta.5

13 Sep 15:40

Choose a tag to compare

Full Changelog

Fixed

  • Fixed bug that prevented custom sign up fields from being
    validated.

Changed

  • Upgraded to React v15.
  • Upgraded auth0.js to v7.0.3.

Added

  • Added the language option. Translations for it, pt-br, ru
    and es are provided out of the box. Thanks @yvonnewilson, @dirceu,
    @lilapustovoyt and @darkyen!
  • Lock now will emit the following events.
    • show: emitted when Lock is shown. Has no arguments.
    • hide: emitted when Lock is hidden. Has no arguments.
    • unrecoverable_error: emitted when there is an unrecoverable
      error, for instance when no connection is available. Has the error
      as the only argument.
    • authenticated: emitted after a successful authentication. Has
      the authentication result as the only argument.
    • authorization_error: emitted when authorization fails. Has the
      error as the only argument.
      Note the authenticated and authorization_error events replace
      the callback in the constructor.
  • Display a tooltip on invalid inputs with a hint on how to fix the
    error.