Skip to content

Commit

Permalink
Remove IWA from default auth modes.
Browse files Browse the repository at this point in the history
  • Loading branch information
Haard30 committed Nov 7, 2024
1 parent 82a20c1 commit 22bee68
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
### Removed
- IWA from default authentcation modes.
### Changed
- Temporarily paused the publishing of Linux binaries.
- Upgrade MSAL from `4.59.1` to `4.65.0`.
Expand Down
2 changes: 1 addition & 1 deletion src/AzureAuth/Commands/CommandAad.cs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public class CommandAad
/// </summary>
#if PlatformWindows
public const string AuthModeHelperText = @"Authentication mode. Repeated invocations allowed.
[default: iwa (Integrated Windows Auth), then broker, then web]
[default: broker, then web]
[possible values: all, iwa, broker, web, devicecode]";
#else
public const string AuthModeHelperText = @"Authentication mode. Repeated invocations allowed. [default: web]
Expand Down
2 changes: 1 addition & 1 deletion src/MSALWrapper/AuthMode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public enum AuthMode : short
/// <summary>
/// Default auth mode.
/// </summary>
Default = IWA | Broker | Web,
Default = Broker | Web,
#else
/// <summary>
/// All auth modes.
Expand Down

0 comments on commit 22bee68

Please sign in to comment.