Skip to content

Commit bdbf144

Browse files
authored
Merge pull request #875 from AzureAD/release/1.1.0
Release MSAL 1.1.0
2 parents 49949c4 + 3959d37 commit bdbf144

File tree

83 files changed

+3234
-433
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

83 files changed

+3234
-433
lines changed

.github/config.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
requestInfoReplyComment: >
2+
Please add additional information about this issue or PR. Please be as descriptive as possible.
3+
4+
# *OPTIONAL* Label to be added to Issues and Pull Requests with insufficient information given
5+
requestInfoLabelToAdd: needs-information
6+
7+
# *OPTIONAL* Require Issues to contain more information than what is provided in the issue templates
8+
# Will fail if the issue's body is equal to a provided template
9+
checkIssueTemplate: true
10+
11+
# *OPTIONAL* Require Pull Requests to contain more information than what is provided in the PR template
12+
# Will fail if the pull request's body is equal to the provided template
13+
checkPullRequestTemplate: true
14+
15+
# *OPTIONAL* Only warn about insufficient information on these events type
16+
# Keys must be lowercase. Valid values are 'issue' and 'pullRequest'
17+
requestInfoOn:
18+
pullRequest: true
19+
issue: true

.github/stale.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Number of days of inactivity before an issue becomes stale
2+
daysUntilStale: 14
3+
# Number of days of inactivity before a stale issue is closed
4+
daysUntilClose: 14
5+
# Issues with these labels will never be considered stale
6+
exemptLabels:
7+
- internal
8+
- feature
9+
- enhancement
10+
- bug
11+
# Label to use when marking an issue as stale
12+
staleLabel: stale-issue
13+
# Comment to post when marking an issue as stale. Set to `false` to disable
14+
markComment: >
15+
This issue has been automatically marked as stale because it has not had
16+
recent activity. Please provide additional information if requested. Thank you
17+
for your contributions.
18+
# Comment to post when closing a stale issue. Set to `false` to disable
19+
closeComment: false

CHANGELOG.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## [1.1.0] - 2020-03-20
2+
### Added
3+
- iOS 13 SSO Extension support
4+
- Support ASWebAuthenticationSession on macOS 10.15
5+
- Track account sign-in and sign-out state
6+
- Support signOut from device if device is configured as shared through MDM
7+
18
## [1.0.7] - 2020-01-29
29
### Fixed
310
- Keyed unarchiver deserialization fix for iOS 11.2
@@ -40,11 +47,11 @@
4047
- Remove arm64e architecture
4148
- Pass custom keychain group for broker requests
4249

43-
# [1.0.0-hotfix2] - 2020-01-27
50+
## [1.0.0-hotfix2] - 2020-01-27
4451
### Fixed
4552
- [Broker patch] Keyed unarchiver deserialization fix for iOS 11.2
4653

47-
# [1.0.0-hotfix1] - 2020-01-21
54+
## [1.0.0-hotfix1] - 2020-01-21
4855
### Fixed
4956
- [Broker patch] Fixed account lookups and validation with the same email (#827)
5057

MSAL.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "MSAL"
3-
s.version = "1.0.7"
3+
s.version = "1.1.0"
44
s.summary = "Microsoft Authentication Library (MSAL) Preview for iOS"
55

66
s.description = <<-DESC

MSAL/IdentityCore

Submodule IdentityCore updated 350 files

MSAL/MSAL.xcodeproj/project.pbxproj

Lines changed: 104 additions & 4 deletions
Large diffs are not rendered by default.

MSAL/resources/ios/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.0.7</string>
18+
<string>1.1.0</string>
1919
<key>CFBundleVersion</key>
2020
<string>$(CURRENT_PROJECT_VERSION)</string>
2121
<key>NSPrincipalClass</key>

MSAL/resources/mac/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.0.7</string>
18+
<string>1.1.0</string>
1919
<key>CFBundleVersion</key>
2020
<string>$(CURRENT_PROJECT_VERSION)</string>
2121
<key>NSHumanReadableCopyright</key>

MSAL/src/MSALAccount+Internal.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@
3030

3131
@class MSIDAccountIdentifier;
3232
@class MSIDAADV2IdTokenClaims;
33-
@class MSIDClientInfo;
3433
@class MSIDAccount;
3534
@class MSALAccountId;
3635
@class MSIDIdTokenClaims;

MSAL/src/MSALAccount.m

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626
//------------------------------------------------------------------------------
2727

2828
#import "MSALAccount.h"
29-
#import "MSIDClientInfo.h"
3029
#import "MSIDAccount.h"
3130
#import "MSALAccount+Internal.h"
3231
#import "NSURL+MSIDExtensions.h"

0 commit comments

Comments
 (0)