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
AzureAuth: --resource should not be required if passing scopes (#142)
* AzureAuth: --resource should not be required if passing scopes
* Add unit tests
* Fix unit tests.
* change method comments.
* Remove unused imports.
* Change log
* Add a normal parameter unit test.
* Update src/AzureAuth/CommandMain.cs
Co-authored-by: Kyle W. Rader <kyle.rader@microsoft.com>
* Unit test with right scope parameters for documentation.
* Apply code suggestions.
* address comments in PR.
Change all scopes to <resource>/.default in unit test
* Move `--resource` feature to unreleased section
Co-authored-by: Kyle W. Rader <kyle.rader@microsoft.com>
Copy file name to clipboardExpand all lines: CHANGELOG.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5
5
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
7
7
## [Unreleased]
8
+
### Fixed
9
+
- Option `--resource` is not needed if option `--scope` is provided.
10
+
8
11
## [0.5.1] - 2022-09-08
9
12
### Fixed
10
13
- Fixed a bug where we early exited before sending individual events telemetry data containing valuable `error_messages`.
@@ -14,7 +17,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
14
17
- Added functionality to disable Public Client Authentication using an environment variable `AZUREAUTH_NO_USER`.
15
18
- Added `--timeout` functionality to provide reliable contract of allowed runtime (default: 15 minutes) and warnings as the timeout approaches.
16
19
17
-
### Fixed
18
20
- Fixed a bug where broker auth prompt is hanging in the background and gives a false impression to the user that the console app is hung.
19
21
- Fixed a bug where sometimes, when logged in with only a password (not a strong form of authentication) the broker flow could hang indefinitely, preventing fall back to another auth flow.
0 commit comments