Skip to content

Commit

Permalink
Merge pull request #625 from AzureAD/topics/2.1.1-release-work
Browse files Browse the repository at this point in the history
Set version and update changelog for 2.1.1 release
  • Loading branch information
RPangrle committed Apr 27, 2016
2 parents 59cdd92 + 0e071dd commit ddde4f9
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ADAL.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|
s.name = "ADAL"
s.module_name = "ADAL"
s.version = "2.1.0"
s.version = "2.1.1"
s.summary = "The ADAL SDK for iOS gives you the ability to add Azure Identity authentication to your application"

s.description = <<-DESC
Expand Down
6 changes: 3 additions & 3 deletions ADAL/src/ADAL_Internal.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@
// Framework versions only support high and low for the double value, sadly.
#define ADAL_VERSION_NUMBER 2.1

#define ADAL_VERSION_STRING STR_ADAL_VER_HIGH "." STR_ADAL_VER_LOW "." STR_ADAL_VER_PATCH "-dev"
#define ADAL_VERSION_NSSTRING @"" STR_ADAL_VER_HIGH "." STR_ADAL_VER_LOW "." STR_ADAL_VER_PATCH "-dev"
#define ADAL_VERSION_STRING STR_ADAL_VER_HIGH "." STR_ADAL_VER_LOW "." STR_ADAL_VER_PATCH
#define ADAL_VERSION_NSSTRING @"" STR_ADAL_VER_HIGH "." STR_ADAL_VER_LOW "." STR_ADAL_VER_PATCH

#define ADAL_VERSION_(high, low, patch) adalVersion_ ## high ## _ ## low ## _ ## patch ## _dev
#define ADAL_VERSION_(high, low, patch) adalVersion_ ## high ## _ ## low ## _ ## patch

// This is specially crafted so the name of the variable matches the full ADAL version
#define ADAL_VERSION_VAR ADAL_VERSION_(2, 1, 1)
Expand Down
32 changes: 32 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,38 @@
Version 2.1.1
_____________
* Added underlying errors to ADAuthenticationErrors when returning user interaction required
* Fixed a crash in ADKeychainTokenCache
* Add Azure Germany, and login-us to the list of known good Azure AD Authorities
* Refresh Tokens will only be removed on 'invalid_grant' OAuth errors now.

Version 2.1.0
_____________
(See the GitHub release page for a more detailed list)
* Mac OS X Support
* Brokered Authentication support with Azure Authenticator
* Support for Conditional Access in 3rd Party apps via Azure Authenticator
* Support for User Cert Based Authentication via Azure Authenticator
* Changed ADLogger callback to allow more data to be passed through for telemetry purposes
* Logging improvements
* Token Cache API changes
* Renamed ADKeychainTokenCacheStore to ADKeychainTokenCache
* Renamed ADTokenCacheStoreItem to ADTokenCacheItem
* Renamed ADAuthenticationBroker to ADWebAuthController
* Changed APIs in ADAuthenticationSettings
* Added ADUserIdentifier API.


Version 1.2.6
_____________
* Whitelisted "about:blank" on the ADAL webview redirect filter.


Version 1.2.5
_____________
* Fix for a crash in ADClientMetrics when using ADAL directly against ADFS
* Fix a correlation ID synchronization issue that could cause crashes
* Added token removal logging
* Redirects and forwards to unsecure endpoints (HTTP) will be blocked in the ADAL webview

Version 1.2.4
-------------
Expand Down

0 comments on commit ddde4f9

Please sign in to comment.