Commit 8dca57a
File tree
11 files changed
+80
-14
lines changed- MSAL
- src
- native_auth/public/state_machine/state
- public
- test/app
- ios
- mac
11 files changed
+80
-14
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
1 | 4 | | |
2 | 5 | | |
3 | 6 | | |
| |||
Submodule IdentityCore updated 27 files
- IdentityCore/IdentityCore.xcodeproj/project.pbxproj+36
- IdentityCore/src/MSIDConstants.h+5
- IdentityCore/src/MSIDConstants.m+6
- IdentityCore/src/MSIDOAuth2Constants.h+2
- IdentityCore/src/MSIDOAuth2Constants.m+2
- IdentityCore/src/controllers/broker/ios/MSIDBrokerInteractiveController.m+3-4
- IdentityCore/src/oauth2/token/MSIDBoundRefreshToken+Redemption.h+43
- IdentityCore/src/oauth2/token/MSIDBoundRefreshToken+Redemption.m+272
- IdentityCore/src/oauth2/token/MSIDBoundRefreshToken.h+1-1
- IdentityCore/src/parameters/MSIDBoundRefreshTokenRedemptionParameters.h+54
- IdentityCore/src/parameters/MSIDBoundRefreshTokenRedemptionParameters.m+90
- IdentityCore/src/requests/MSIDInteractiveTokenRequest.m+2
- IdentityCore/src/requests/MSIDSilentTokenRequest.m+2
- IdentityCore/src/requests/MSIDTokenResponseHandler.h+2
- IdentityCore/src/requests/MSIDTokenResponseHandler.m+22-1
- IdentityCore/src/requests/broker/MSIDBrokerTokenRequest.m+5
- IdentityCore/src/requests/broker/MSIDSSOTokenResponseHandler.m+2
- IdentityCore/src/requests/result/MSIDTokenResult.h+12-1
- IdentityCore/src/requests/result/MSIDTokenResult.m+11
- IdentityCore/src/requests/sdk/MSIDTokenResponseValidator.m+2-1
- IdentityCore/src/util/MSIDBartFeatureUtil.h+33
- IdentityCore/src/util/MSIDBartFeatureUtil.m+71
- IdentityCore/tests/MSIDBoundRefreshTokenRedemptionTests.m+1.1k
- IdentityCore/tests/MSIDThrottlingServiceIntegrationTests.m+8
- IdentityCore/tests/integration/ios/MSIDBrokerTokenRequestTests.m+53-1
- README.md+1-1
- changelog.txt+4
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1039 | 1039 | | |
1040 | 1040 | | |
1041 | 1041 | | |
| 1042 | + | |
1042 | 1043 | | |
1043 | 1044 | | |
1044 | 1045 | | |
1045 | 1046 | | |
1046 | | - | |
1047 | 1047 | | |
1048 | | - | |
1049 | 1048 | | |
1050 | 1049 | | |
| 1050 | + | |
| 1051 | + | |
| 1052 | + | |
1051 | 1053 | | |
1052 | 1054 | | |
1053 | 1055 | | |
| |||
Lines changed: 0 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
26 | 26 | | |
27 | 27 | | |
28 | 28 | | |
29 | | - | |
30 | 29 | | |
31 | 30 | | |
32 | 31 | | |
| |||
49 | 48 | | |
50 | 49 | | |
51 | 50 | | |
52 | | - | |
53 | 51 | | |
54 | 52 | | |
55 | 53 | | |
| |||
Lines changed: 0 additions & 3 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
66 | 66 | | |
67 | 67 | | |
68 | 68 | | |
69 | | - | |
70 | 69 | | |
71 | 70 | | |
72 | 71 | | |
| |||
90 | 89 | | |
91 | 90 | | |
92 | 91 | | |
93 | | - | |
94 | 92 | | |
95 | 93 | | |
96 | 94 | | |
| |||
108 | 106 | | |
109 | 107 | | |
110 | 108 | | |
111 | | - | |
112 | 109 | | |
113 | 110 | | |
114 | 111 | | |
| |||
Lines changed: 0 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
27 | 27 | | |
28 | 28 | | |
29 | 29 | | |
30 | | - | |
31 | 30 | | |
32 | 31 | | |
33 | 32 | | |
| |||
42 | 41 | | |
43 | 42 | | |
44 | 43 | | |
45 | | - | |
46 | 44 | | |
47 | 45 | | |
48 | 46 | | |
| |||
Lines changed: 0 additions & 3 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
73 | 73 | | |
74 | 74 | | |
75 | 75 | | |
76 | | - | |
77 | 76 | | |
78 | 77 | | |
79 | 78 | | |
| |||
104 | 103 | | |
105 | 104 | | |
106 | 105 | | |
107 | | - | |
108 | 106 | | |
109 | 107 | | |
110 | 108 | | |
| |||
113 | 111 | | |
114 | 112 | | |
115 | 113 | | |
116 | | - | |
117 | 114 | | |
118 | 115 | | |
119 | 116 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
56 | 56 | | |
57 | 57 | | |
58 | 58 | | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
59 | 65 | | |
60 | 66 | | |
61 | 67 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
62 | 62 | | |
63 | 63 | | |
64 | 64 | | |
| 65 | + | |
65 | 66 | | |
66 | 67 | | |
67 | 68 | | |
| |||
166 | 167 | | |
167 | 168 | | |
168 | 169 | | |
| 170 | + | |
169 | 171 | | |
170 | 172 | | |
171 | 173 | | |
| |||
485 | 487 | | |
486 | 488 | | |
487 | 489 | | |
| 490 | + | |
| 491 | + | |
| 492 | + | |
| 493 | + | |
| 494 | + | |
| 495 | + | |
| 496 | + | |
| 497 | + | |
| 498 | + | |
| 499 | + | |
| 500 | + | |
| 501 | + | |
| 502 | + | |
| 503 | + | |
488 | 504 | | |
489 | 505 | | |
490 | 506 | | |
| |||
589 | 605 | | |
590 | 606 | | |
591 | 607 | | |
| 608 | + | |
592 | 609 | | |
593 | 610 | | |
594 | 611 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
34 | 34 | | |
35 | 35 | | |
36 | 36 | | |
| 37 | + | |
37 | 38 | | |
38 | 39 | | |
39 | 40 | | |
| |||
82 | 83 | | |
83 | 84 | | |
84 | 85 | | |
| 86 | + | |
85 | 87 | | |
86 | 88 | | |
87 | 89 | | |
| |||
171 | 173 | | |
172 | 174 | | |
173 | 175 | | |
| 176 | + | |
| 177 | + | |
| 178 | + | |
| 179 | + | |
| 180 | + | |
| 181 | + | |
| 182 | + | |
| 183 | + | |
| 184 | + | |
| 185 | + | |
| 186 | + | |
| 187 | + | |
| 188 | + | |
| 189 | + | |
| 190 | + | |
| 191 | + | |
| 192 | + | |
| 193 | + | |
| 194 | + | |
| 195 | + | |
| 196 | + | |
174 | 197 | | |
175 | 198 | | |
176 | 199 | | |
| |||
184 | 207 | | |
185 | 208 | | |
186 | 209 | | |
| 210 | + | |
| 211 | + | |
187 | 212 | | |
188 | 213 | | |
189 | 214 | | |
190 | 215 | | |
191 | 216 | | |
192 | 217 | | |
193 | 218 | | |
194 | | - | |
| 219 | + | |
195 | 220 | | |
196 | 221 | | |
197 | 222 | | |
| |||
201 | 226 | | |
202 | 227 | | |
203 | 228 | | |
| 229 | + | |
| 230 | + | |
204 | 231 | | |
205 | 232 | | |
206 | 233 | | |
| |||
221 | 248 | | |
222 | 249 | | |
223 | 250 | | |
| 251 | + | |
| 252 | + | |
| 253 | + | |
| 254 | + | |
| 255 | + | |
224 | 256 | | |
225 | 257 | | |
226 | 258 | | |
| |||
0 commit comments