Skip to content
This repository has been archived by the owner on Dec 12, 2018. It is now read-only.

Commit

Permalink
Release 0.20.0
Browse files Browse the repository at this point in the history
See CHANGELOG.md
  • Loading branch information
Robert committed Jan 24, 2017
1 parent 680c58a commit 88e5bae
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,12 @@
# stormpath-sdk-node Change Log

### 0.20.0

**Released January 24, 2017**

* Added a new authenticator class, `StormpathAccessTokenAuthenticator`. This can be used to authenticate any access token that has been issued by an application in your Tenant. You an optionally specify an application as an authorization check, using `stormpathAccessTokenAuthenticator.forApplication(application)`, doing so will cause authentication to fail if the access token is not issued by the specified application. This decoupled application check allows you to decide if the issuing application should be checked as an authorization check, e.g. this would not be necessary if you are building a Single-Sign-On solution between multiple Stormpath applications.
* The `JwtAuthenticator` has been deprecated in favor of `StormpathAccessTokenAuthenticator`.

### 0.19.2

**Released January 24, 2017**
Expand Down
4 changes: 4 additions & 0 deletions UPGRADING.md
@@ -1,5 +1,9 @@
# Upgrade Guide

### Version 0.19.2 -> Version 0.20.0

The authenticator class `JwtAuthenticator` has been deprecated, please use `StormpathAccessTokenAuthenticator` instead.

### Version 0.19.1 -> Version 0.19.2

No changes needed
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "stormpath",
"version": "0.19.2",
"version": "0.20.0",
"main": "lib/stormpath.js",
"description": "Official Stormpath SDK for Node.js",
"keywords": [
Expand Down

0 comments on commit 88e5bae

Please sign in to comment.