Skip to content

Latest commit

 

History

History
124 lines (84 loc) · 6.35 KB

CHANGELOG.md

File metadata and controls

124 lines (84 loc) · 6.35 KB

#Change Log

v8.0.4 (2017-01-06)

Full Changelog

Fixed

v8.0.3 (2017-01-06)

Full Changelog

Added

  • Add the option to provide a leeway #292 (glena)

v8.0.2 (2017-01-05)

Full Changelog

Fixed

v8.0.1 (2017-01-04)

Full Changelog

Fixed

  • Fix getSSOData failing due to extra headers #284 (glena)

v8.0.0 (2017-01-03)

Full Changelog

In v8 auth0.js is divided in three different components:

  • WebAuth: Handles all AuthN/AuthZ flows with redirect/popup inside the browser and related Auth API endpoints, e.g. /logout.
  • AuthenticationAPI: Helper methods for calling Auth0 Authentication API
  • ManagementAPI: Helper methods for calling Auth0 Management API

To get started you can just create a WebAuth instance like this

var auth0 = new auth0.WebAuth({
  domain: "{YOUR_AUTH0_DOMAIN}",
  clientID: "{YOUR_AUTH0_CLIENT_ID}"
});

Since auth0.js is intended to be used in javascript clients running in the browser most of the times an instance of WebAuth is needed.

And if you ever need to perform an xhr request to Auth0 Authentication API, WebAuth exposes an instance of AuthenticationAPI

auth0.client.userInfo(accessToken, function(error, userInfo) {
    // User information or error
  });

Added

  • add token validation and signature verification to the parseHash method #278 (glena)
  • Add method to signup and login using password-realm #277 (glena)

Breaking changes

  • Rename methods based on authN and authZ type #280 (glena)

v8.0.0-beta.3 (2016-12-19)

Full Changelog

Fixed

  • special handling for popup error responses #276 (glena)

v8.0.0-beta.2 (2016-12-16)

Full Changelog

Added

Fixed

  • Return policy attr in errors + responseType validation #273 (glena)

v8.0.0-beta.1 (2016-12-14)

Full Changelog

Added

  • Add get user country method for passwordless #267 (glena)
  • Login with password realm grant via /oauth/token #265 (glena)

Changed

  • Add standard fields to parseHash and normalize responses to camelCase #261 (glena)
  • Add Whitelist of authorize parameters #258 (glena)

Fixed

v8.0.0-alpha.2 (2016-12-05)

Full Changelog

Closed issues

  • redirectUri should not be mandatory in the constructor #249
  • responseMode should be part of the constructor params #247
  • Check if all the methods accepts the same parames from constructor #246

Added

  • Preload window for popup signup and login #256 (glena)
  • Quirks mode and deprecations warning #255 (glena)
  • Added responseMode, all methods uses the same params from construct, redirectUri is not mandatory #253 (glena)
  • Added sso data client #251 (glena)
  • V8 Popup mode #245 (glena)
  • Added nonce and status to mitigate replay attacks #244 (glena)

Changed

v8.0.0-alpha.1 (2016-11-21)

Full Changelog

Added

  • Change webauth structure + Allow to abort requests #240 (glena)
  • added extra options + snake to camel all the options #236 (glena)
  • V8: Signup and passwordless #232 (glena)
  • Webauth redirect login/callback #231 (glena)