Skip to content

Commit

Permalink
Merge pull request #89 from auth0/prepare-2.4.2
Browse files Browse the repository at this point in the history
Prepare 2.4.2 release
  • Loading branch information
damieng authored Sep 20, 2019
2 parents c76e605 + 420efd7 commit 5236346
Show file tree
Hide file tree
Showing 12 changed files with 62 additions and 253 deletions.
44 changes: 17 additions & 27 deletions nuget/Auth0.OidcClient.Android.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -10,27 +10,29 @@
<projectUrl>https://github.com/auth0/auth0-oidc-client-net</projectUrl>
<iconUrl>http://secure.gravatar.com/avatar/805765c256ff8617fcad483b5476faf2</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Auth0 OIDC Client for Xamarin Android applications</description>
<description>Auth0 OIDC Client for Xamarin Android apps</description>
<releaseNotes>
Version 2.4.2
- Fixes issue which would prevent setting custom uri in Auth0ClientOptions for the Auth0Client constructor.
- Fixes Auth0ClientOptions RedirectUri so it is actually honored.
- Clarified RedirectUri and PostLogoutRedirectUri on Auth0ClientOptions in doc comments
- Debug log now helpfully reports what Callback and Logout URLs to whitelist

Version 2.4.1
- Fixes "FLAG_ACTIVITY_NEW_TASK" error on Android SDK9 however you for best integration
you should add 'Browser = new AutoSelectBrowser(this)` to your config creation from your view.
- ChromeCustomTabs and SystemBrowser now take an optional View in the constructor.
- If you pass a View then it will be used as the Context for launching the browser.
- If you do not pass a View then the system context is used with the "NEW_TASK" flag.
- While both work passing the View provides a better task switching experience.
- Fixes "FLAG_ACTIVITY_NEW_TASK" error on Android SDK9 however you for best integration
you should add 'Browser = new AutoSelectBrowser(this)` to your config creation from your view.
- ChromeCustomTabs and SystemBrowser now take an optional View in the constructor.
- If you pass a View then it will be used as the Context for launching the browser.
- If you do not pass a View then the system context is used with the "NEW_TASK" flag.
- While both work passing the View provides a better task switching experience.

Version 2.4.0
- Add support for ChromeCustomTabs browser and made it default
- PlatformWebView class is deprecated. When it comes to config.Browser either:
- Leave it null for ongoing best default (recommended)
- Assign an instance of ChromeCustomTabBrowser (will fall back if needed)
- Assign an instance of SystemBrowser (for old not-recommended behavior)
- Leave it null for ongoing best default (recommended)
- Assign an instance of ChromeCustomTabBrowser (will fall back if needed)
- Assign an instance of SystemBrowser (for old not-recommended behavior)
- Add new Auth0ClientActivity class to help in wiring up ActivityMediator
- Alternatively call ActivityMediator.Instance.Cancel() from your OnResume
- Alternatively call ActivityMediator.Instance.Cancel() from your OnResume
- Move system browser integration to SystemBrowser class
- Add return code status for Logout (thanks @jsauve)
- Add support to get the user claims from the userinfo endpoint (thanks @OrihuelaConde)
Expand All @@ -50,24 +52,12 @@
Version 2.1.0
- Fixed issue with browser not opening when running on Android 6.0
- Updated dependency on IdentityModel.OidcClient to v2.7.0

Version 2.0.0
- Support for Xamarin Forms

Version 1.2.0
- Allow overriding of RedirectUri

Version 1.1.0
- Internal updates

Version 1.0.0
- Initial version of Package
</releaseNotes>
<copyright>Copyright 2017-2019 Auth0, Inc.</copyright>
<tags>Auth0 OIDC Android MonoAndroid</tags>
<tags>Auth0 OIDC Android Xamarin</tags>
<dependencies>
<group targetFramework="MonoAndroid10">
<dependency id="Auth0.OidcClient.Core" version="2.4.0" />
<dependency id="Auth0.OidcClient.Core" version="2.4.2" />
</group>
</dependencies>
</metadata>
Expand Down
14 changes: 7 additions & 7 deletions nuget/Auth0.OidcClient.Core.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,19 @@
<package>
<metadata>
<id>Auth0.OidcClient.Core</id>
<version>2.4.0</version>
<version>2.4.2</version>
<authors>Auth0</authors>
<owners>Auth0</owners>
<licenseUrl>https://opensource.org/licenses/Apache-2.0</licenseUrl>
<projectUrl>https://github.com/auth0/auth0-oidc-client-net</projectUrl>
<iconUrl>http://secure.gravatar.com/avatar/805765c256ff8617fcad483b5476faf2</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Auth0 OIDC Client for Native applications</description>
<description>Auth0 OIDC Client for native apps</description>
<releaseNotes>
Version 2.4.2
- Clarified RedirectUri and PostLogoutRedirectUri on Auth0ClientOptions in doc comments
- Debug log now helpfully reports what Callback and Logout URLs to whitelist

Version 2.4.0
- Add return code status for Logout (thanks @jsauve)
- Add support to get the user claims from the userinfo endpoint (thanks @OrihuelaConde)
Expand All @@ -28,14 +32,10 @@
- Add support to log the user out and clear the Auth0 SSO cookie

Version 2.1.0
- Fixed issue with browser not opening when running on Android 6.0
- Updated dependency on IdentityModel.OidcClient to v2.7.0

Version 2.0.0
- Initial release with support for Xamarin Forms
</releaseNotes>
<copyright>Copyright 2017-2019 Auth0, Inc.</copyright>
<tags>Auth0 OIDC Android MonoAndroid</tags>
<tags>Auth0 OIDC</tags>
<dependencies>
<group targetFramework="net452">
<dependency id="IdentityModel.OidcClient" version="2.9.0" />
Expand Down
20 changes: 7 additions & 13 deletions nuget/Auth0.OidcClient.UWP.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,19 @@
<package>
<metadata>
<id>Auth0.OidcClient.UWP</id>
<version>2.4.0</version>
<version>2.4.2</version>
<authors>Auth0</authors>
<owners>Auth0</owners>
<licenseUrl>https://opensource.org/licenses/Apache-2.0</licenseUrl>
<projectUrl>https://github.com/auth0/auth0-oidc-client-net</projectUrl>
<iconUrl>http://secure.gravatar.com/avatar/805765c256ff8617fcad483b5476faf2</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Auth0 OIDC Client for Universal Windows Platform (UWP) applications</description>
<description>Auth0 OIDC Client for Universal Windows Platform (UWP) apps</description>
<releaseNotes>
Version 2.4.2
- Clarified RedirectUri and PostLogoutRedirectUri on Auth0ClientOptions in doc comments
- Debug log now helpfully reports what Callback and Logout URLs to whitelist

Version 2.4.0
- Add return code status for Logout (thanks @jsauve)
- PlatformWebView class is deprecated. When it comes to config.Browser either:
Expand All @@ -32,23 +36,13 @@
- Add support to log the user out and clear the Auth0 SSO cookie

Version 2.1.0
- Fixed issue with browser not opening when running on Android 6.0
- Updated dependency on IdentityModel.OidcClient to v2.7.0

Version 2.0.0
- Support for Xamarin Forms

Version 1.2.0
- Internal updates

Version 1.0.0
- Initial version of Package
</releaseNotes>
<copyright>Copyright 2017-2019 Auth0, Inc.</copyright>
<tags>Auth0 OIDC UWP Windows10</tags>
<dependencies>
<group targetFramework="uap10.0">
<dependency id="Auth0.OidcClient.Core" version="2.4.0" />
<dependency id="Auth0.OidcClient.Core" version="2.4.2" />
</group>
</dependencies>
</metadata>
Expand Down
27 changes: 9 additions & 18 deletions nuget/Auth0.OidcClient.WPF.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,24 @@
<package>
<metadata>
<id>Auth0.OidcClient.WPF</id>
<version>2.4.0</version>
<version>2.4.2</version>
<authors>Auth0</authors>
<owners>Auth0</owners>
<licenseUrl>https://opensource.org/licenses/Apache-2.0</licenseUrl>
<projectUrl>https://github.com/auth0/auth0-oidc-client-net</projectUrl>
<iconUrl>http://secure.gravatar.com/avatar/805765c256ff8617fcad483b5476faf2</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Auth0 OIDC Client for WPF applications</description>
<description>Auth0 OIDC Client for WPF apps</description>
<releaseNotes>
Version 2.4.2
- Clarified RedirectUri and PostLogoutRedirectUri on Auth0ClientOptions in doc comments
- Debug log now helpfully reports Callback and Logout URLs to whitelist in dev mode

Version 2.4.0
- Add support for closing the browser window (thanks @aashikgowda)
- PlatformWebView class is deprecated. When it comes to config.Browser either:
- Leave it null for ongoing best default (recommended)
- Assign an instance of WebBrowserBrowser passing a custom Window function if customization needed
- Leave it null for ongoing best default (recommended)
- Assign an instance of WebBrowserBrowser passing a custom Window function if customization needed
- Add return code status for Logout (thanks @jsauve)
- Add support to get the user claims from the userinfo endpoint (thanks @OrihuelaConde)
- Add default for logout redirect
Expand All @@ -32,26 +36,13 @@
- Add support to log the user out and clear the Auth0 SSO cookie

Version 2.1.0
- Fixed issue with browser not opening when running on Android 6.0
- Updated dependency on IdentityModel.OidcClient to v2.7.0

Version 2.0.0
- Support for Xamarin Forms

Version 1.2.0
- Internal updates

Version 1.1.0
- Allow overriding of RedirectUri

Version 1.0.0
- Initial version of Package
</releaseNotes>
<copyright>Copyright 2017-2019 Auth0, Inc.</copyright>
<tags>Auth0 OIDC WPF</tags>
<dependencies>
<group targetFramework="net452">
<dependency id="Auth0.OidcClient.Core" version="2.4.0" />
<dependency id="Auth0.OidcClient.Core" version="2.4.2" />
</group>
</dependencies>
</metadata>
Expand Down
23 changes: 7 additions & 16 deletions nuget/Auth0.OidcClient.WinForms.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,19 @@
<package>
<metadata>
<id>Auth0.OidcClient.WinForms</id>
<version>2.4.0</version>
<version>2.4.2</version>
<authors>Auth0</authors>
<owners>Auth0</owners>
<licenseUrl>https://opensource.org/licenses/Apache-2.0</licenseUrl>
<projectUrl>https://github.com/auth0/auth0-oidc-client-net</projectUrl>
<iconUrl>http://secure.gravatar.com/avatar/805765c256ff8617fcad483b5476faf2</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Auth0 OIDC Client for Windows Forms applications</description>
<description>Auth0 OIDC Client for WinForms apps</description>
<releaseNotes>
Version 2.4.2
- Clarified RedirectUri and PostLogoutRedirectUri on Auth0ClientOptions in doc comments
- Debug log now helpfully reports what Callback and Logout URLs to whitelist

Version 2.4.0
- Add return code status for Logout (thanks @jsauve)
- PlatformWebView class is deprecated. When it comes to config.Browser either:
Expand All @@ -31,26 +35,13 @@
- Add support to log the user out and clear the Auth0 SSO cookie

Version 2.1.0
- Fixed issue with browser not opening when running on Android 6.0
- Updated dependency on IdentityModel.OidcClient to v2.7.0

Version 2.0.0
- Support for Xamarin Forms

Version 1.2.0
- Internal updates

Version 1.1.0
- Allow overriding of RedirectUri

Version 1.0.0
- Initial version of Package
</releaseNotes>
<copyright>Copyright 2017-2019 Auth0, Inc.</copyright>
<tags>Auth0 OIDC WinForms</tags>
<dependencies>
<group targetFramework="net452">
<dependency id="Auth0.OidcClient.Core" version="2.4.0" />
<dependency id="Auth0.OidcClient.Core" version="2.4.2" />
</group>
</dependencies>
</metadata>
Expand Down
21 changes: 4 additions & 17 deletions nuget/Auth0.OidcClient.iOS.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,11 @@
<projectUrl>https://github.com/auth0/auth0-oidc-client-net</projectUrl>
<iconUrl>http://secure.gravatar.com/avatar/805765c256ff8617fcad483b5476faf2</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Auth0 OIDC Client for Xamarin iOS applications</description>
<description>Auth0 OIDC Client for Xamarin iOS apps</description>
<releaseNotes>
Version 2.4.2
- Fixes issue which would prevent setting custom uri in Auth0ClientOptions for the Auth0Client constructor.
- Fixes Auth0ClientOptions RedirectUri so it is actually honored.

Version 2.4.1
- Skipped to bring app versions in line with Android.

Version 2.4.0
- Add ASWebAuthenticationSession for iOS 12+ (thanks @jsauve)
- PlatformWebView class is deprecated. When it comes to config.Browser either:
Expand All @@ -39,23 +36,13 @@
- Add support to log the user out and clear the Auth0 SSO cookie

Version 2.1.0
- Fixed issue with browser not opening when running on Android 6.0
- Updated dependency on IdentityModel.OidcClient to v2.7.0

Version 2.0.0
- Support for Xamarin Forms

Version 1.1.0
- Internal updates

Version 1.0.0
- Initial version of Package
</releaseNotes>
<copyright>Copyright 2017-2019 Auth0, Inc.</copyright>
<tags>Auth0 OIDC iOS MonoTouch</tags>
<tags>Auth0 OIDC iOS Xamarin</tags>
<dependencies>
<group targetFramework="Xamarin.iOS10">
<dependency id="Auth0.OidcClient.Core" version="2.4.0" />
<dependency id="Auth0.OidcClient.Core" version="2.4.2" />
</group>
</dependencies>
</metadata>
Expand Down
24 changes: 1 addition & 23 deletions src/Auth0.OidcClient.Android/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,30 +1,8 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using Android.App;

// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Auth0.OidcClient.Android")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("Auth0.OidcClient.Android")]
[assembly: AssemblyCopyright("Copyright © 2017")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
[assembly: ComVisible(false)]

// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.4.2")]
[assembly: AssemblyFileVersion("2.4.2")]
[assembly: ComVisible(false)]
6 changes: 3 additions & 3 deletions src/Auth0.OidcClient.Core/Auth0.OidcClient.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
<PropertyGroup>
<TargetFrameworks>netstandard1.4;netstandard2.0;net452</TargetFrameworks>
<RootNamespace>Auth0.OidcClient</RootNamespace>
<AssemblyVersion>2.4.0.0</AssemblyVersion>
<FileVersion>2.4.0.0</FileVersion>
<Version>2.4.0</Version>
<AssemblyVersion>2.4.2.0</AssemblyVersion>
<FileVersion>2.4.2.0</FileVersion>
<Version>2.4.2</Version>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
Expand Down
25 changes: 2 additions & 23 deletions src/Auth0.OidcClient.UWP/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,29 +1,8 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Auth0.OidcClient.UWP")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("Auth0.OidcClient.UWP")]
[assembly: AssemblyCopyright("Copyright © 2017")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.4.0")]
[assembly: AssemblyFileVersion("2.4.0")]
[assembly: AssemblyVersion("2.4.2")]
[assembly: AssemblyFileVersion("2.4.2")]
[assembly: ComVisible(false)]
Loading

0 comments on commit 5236346

Please sign in to comment.