You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,10 @@
1
1
# Change Log
2
2
3
+
## Unreleased
4
+
5
+
### Added
6
+
* Add an optional `options` parameter to `AzureAuthentication.getSessionWithScopes`. Passing `{ createIfNone: true }` allows an interactive consent prompt when a session for the requested scopes has not yet been granted. See [microsoft/vscode-azurefunctions#5073](https://github.com/microsoft/vscode-azurefunctions/issues/5073)
* @param scopeListOrRequest - The scopes for which the authentication is needed. Use AuthenticationWwwAuthenticateRequest for supporting challenge requests.
128
128
* Note: use of AuthenticationWwwAuthenticateRequest requires VS Code v1.105.0
129
+
* @param options - (Optional) Options controlling how the session is acquired. By default a plain
130
+
* scope list is acquired silently; set `createIfNone` to allow an interactive consent prompt when
131
+
* no session for the requested scopes has been granted yet. Challenge requests always allow prompting.
129
132
*
130
133
* @returns A VS Code authentication session or undefined, if none could be obtained.
* @param scopeListOrRequest - The scopes for which the authentication is needed. Use AuthenticationWwwAuthenticateRequest for supporting challenge requests.
26
26
* Note: use of AuthenticationWwwAuthenticateRequest requires VS Code v1.105.0
27
+
* @param options - (Optional) Options controlling how the session is acquired. By default a plain
28
+
* scope list is acquired silently; set `createIfNone` to allow an interactive consent prompt when
29
+
* no session for the requested scopes has been granted yet. Challenge requests always allow prompting.
27
30
*
28
31
* @returns A VS Code authentication session or undefined, if none could be obtained.
0 commit comments