Skip to content

Commit 9e17b2c

Browse files
authored
Merge pull request #863 from AzureAD/release/1.0.1
Merge release to master
2 parents 10557b6 + 9b7a1ff commit 9e17b2c

File tree

144 files changed

+6818
-1530
lines changed

Some content is hidden

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

144 files changed

+6818
-1530
lines changed
Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Describe the bug**
11+
Is your app live and in production or is this a development issue? Provide a clear and concise description of what the bug is.
12+
13+
**Smartphone (please complete the following information):**
14+
- Device: [e.g. Pixel, OnePlus 6, etc]
15+
- Android Version: [e.g. API Level, Build Number]
16+
- Browser [e.g. Chrome, Edge]
17+
- MSAL Version
18+
19+
**Stacktrace**
20+
If a crash occurs, include the stacktrace.
21+
22+
**To Reproduce**
23+
Steps to reproduce the behavior:
24+
25+
If related to user experience, use the format:
26+
1. Go to '...'
27+
2. Click on '....'
28+
3. Scroll down to '....'
29+
4. See error
30+
31+
If related to development, please provide relevant configuration details necessary to understand your problem including any relevant traces, logs, or otherwise.
32+
33+
**Expected behavior**
34+
A clear and concise description of what you expected to happen.
35+
36+
**Actual Behavior**
37+
A description of what actually happened.
38+
39+
**Screenshots**
40+
If applicable, add screenshots to help explain your problem.
41+
42+
**Additional context**
43+
Add any other context about the problem here.
44+
45+
**Please note: Do not include sensitive information like PII, OII, credentials, secrets, and tokens.**
46+
47+
For **privacy/security** issues please see instructions [here](https://github.com/AzureAD/microsoft-authentication-library-for-android#security-reporting)
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Is your feature request related to a problem? Please describe.**
11+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12+
13+
**Describe the solution you'd like**
14+
A clear and concise description of what you want to happen.
15+
16+
**Describe alternatives you've considered**
17+
A clear and concise description of any alternative solutions or features you've considered.
18+
19+
**Additional context**
20+
Add any other context or screenshots about the feature request here.

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,5 @@ integration_tests.properties
2121
*.iws
2222
.idea/
2323
/**/*.pom
24-
.settings
24+
.settings
25+
.project

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,4 +51,4 @@ before_script:
5151

5252
script:
5353
- cd $PWD
54-
- travis_wait ./gradlew clean msal:assembleLocal msal:connectedLocalDebugAndroidTest -PdisablePreDex
54+
- travis_wait ./gradlew clean msal:assembleLocal msal:testLocalDebugUnitTest msal:connectedLocalDebugAndroidTest -PdisablePreDex

README.md

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

changelog

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,14 @@
11
MSAL Wiki : https://github.com/AzureAD/microsoft-authentication-library-for-android/wiki
2+
Version 1.0.1
3+
----------------------------
4+
- Fix issue #785, #786, #805, #806, #807, #816, #828, #855, #859
5+
- Fixed multiple cloud support in MSAL with Broker.
6+
- Added support for client capabilities to config.
7+
- Added Server Side Telemetry to MSAL.
8+
- Added authority to account object.
9+
- Added support to silently acquire token for a another tenant for an already authorized user for different tenant.
10+
- Added Broker BrowserSupport for COBO.
11+
- Enabled MSAL-Broker communication via AccountManager.
212

313
Version 1.0.0-hf1
414
----------------------------

common

Submodule common updated 295 files

docs/authorities.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Identity Providers & Authorities
2+
3+
## Introduction
4+
5+
> PENDING
6+
7+
## Class Diagram
8+
9+
> PENDING
10+
11+
## Interaction Diagram
12+
13+
> PENDING
14+
15+
## Links to Code
16+
17+
> PENDING

docs/authorizationstrategies.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Authorization Strategies
2+
3+
## Introduction
4+
5+
> PENDING
6+
7+
## Class Diagram
8+
9+
> PENDING
10+
11+
## Interaction Diagram
12+
13+
> PENDING
14+
15+
## Links to Code
16+
17+
> PENDING

docs/brokerstrategies.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Broker Client Strategies
2+
3+
## Introduction
4+
5+
> PENDING
6+
7+
## Class Diagram
8+
9+
> PENDING
10+
11+
## Interaction Diagram
12+
13+
> PENDING
14+
15+
## Links to Code
16+
17+
> PENDING

0 commit comments

Comments
 (0)