Skip to content
This repository has been archived by the owner on Jun 26, 2021. It is now read-only.

Commit

Permalink
Merge pull request #376 from AzureAD/dev
Browse files Browse the repository at this point in the history
Release 1.0.12
  • Loading branch information
tushargupta51 authored Sep 1, 2016
2 parents 50cb95a + 6aad6d5 commit f433b60
Show file tree
Hide file tree
Showing 13 changed files with 526 additions and 114 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ If you find a security issue with our libraries or services please report it to

## The Library

This is a GA released version. The current version is **1.0.11**.
This is a GA released version. The current version is **1.0.12**.

You have multiple ways of getting ADAL JS:

Expand All @@ -32,10 +32,10 @@ Via NPM:
Via CDN:

<!-- Latest compiled and minified JavaScript -->
<script src="https://secure.aadcdn.microsoftonline-p.com/lib/1.0.11/js/adal.min.js"></script>
<script src="https://secure.aadcdn.microsoftonline-p.com/lib/1.0.11/js/adal-angular.min.js"></script>
<script src="https://secure.aadcdn.microsoftonline-p.com/lib/1.0.12/js/adal.min.js"></script>
<script src="https://secure.aadcdn.microsoftonline-p.com/lib/1.0.12/js/adal-angular.min.js"></script>

CDN will be updated to latest version 1.0.11.
CDN will be updated to latest version 1.0.12.

Via Bower:

Expand Down
12 changes: 7 additions & 5 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
{
"name": "adal-angular",
"version": "1.0.11",
"version": "1.0.12",
"homepage": "https://github.com/AzureAD/azure-activedirectory-library-for-js",
"authors": [
"MSOpentech"
],
"description": "Azure Active Directory Client Library for js",
"main": ["./lib/adal.js",
"./lib/adal-angular.js"
"main": [
"./lib/adal.js",
"./lib/adal-angular.js"
],
"moduleType": [
"node"
Expand All @@ -19,7 +20,7 @@
"directory",
"azure"
],
"licenses": [
"licenses": [
{
"type": "Apache 2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
Expand All @@ -39,6 +40,7 @@
"angular-resource": "~1.2.26",
"angular-mocks": "~1.2.26",
"jasmine": "2.0.0",
"angular-route": "~1.2.26"
"angular-route": "~1.2.26",
"angular-ui-router": "^0.3.1"
}
}
9 changes: 9 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
Version 1.0.12
==========================
* Adding support for Login using a pop-up instead of a full redirect. Please see this: https://github.com/AzureAD/azure-activedirectory-library-for-js/issues/60
* Updating anonymousEndpoints feature to handle nested states in ui-router. Please see this: https://github.com/AzureAD/azure-activedirectory-library-for-js/issues/345
* Fix bug in anonymousEndpoints allowing templateUrl property of the route/state to be declared as a function. Thanks @dhodgin for the Pull Request. Please see this: https://github.com/AzureAD/azure-activedirectory-library-for-js/issues/368
* Using window.crypto.getRandomValues API to generate version 4 UUID as per RFC 4122. Please see this: https://github.com/AzureAD/azure-activedirectory-library-for-js/issues/88
* Fix bug in handleWindowCallback to call the callback defined on config after Login operation is completed. Please see this: https://github.com/AzureAD/azure-activedirectory-library-for-js/issues/324
* Other bug fixes and updates.

Version 1.0.11
==========================
* Adding support for using a special html for iFrames. This prevents app reloading in the iframe. Please see this: https://github.com/AzureAD/azure-activedirectory-library-for-js/wiki/FAQs#q1-my-app-is-re-loading-every-time-adal-renews-a-token
Expand Down
4 changes: 2 additions & 2 deletions dist/adal-angular.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions dist/adal.min.js

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,10 @@ module.exports = function(config) {
'bower_components/angular-mocks/angular-mocks.js',
'bower_components/angular-route/angular-route.js',
'bower_components/angular-resource/angular-resource.js',
'bower_components/angular-ui-router/release/angular-ui-router.js',
'lib/*.js',
'tests/testApp.js',
'tests/stateApp.js',
'tests/angularModuleSpec.js'
],

Expand Down
Loading

0 comments on commit f433b60

Please sign in to comment.