Skip to content

Commit 85a7bd9

Browse files
Merge pull request #57 from AzureAD/release-0.3.0
Update CHANGELOG for release v0.3.0
2 parents 228f369 + 0613983 commit 85a7bd9

File tree

3 files changed

+15
-10
lines changed

3 files changed

+15
-10
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,16 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
9+
## [v0.3.0] - 2022-05-03
810
### Fixed
11+
- Fixed a bug to support running on Windows Server 2012 & 2016 by default (default auth mode for Windows is now broker + web).
912
- Fixed a bug where device code flow authentication would not use the file cache to first attempt to get a cached token silently, causing it to always prompt.
1013
- Fixed a bug where the Windows installation script could encounter errors renaming the extracted directory.
1114

1215
### Changed
1316
- Telemetry: If enabled, collect the app registration ids being used and whether args were valid.
17+
- The default for `--mode` on Windows is now `broker` + `web` (formerly just `broker`).
1418
- The installation scripts now extract to directories named after the release artifact from GitHub.
1519
- The `latest` directory is now a [directory junction](https://docs.microsoft.com/en-us/windows/win32/fileio/hard-links-and-junctions#junctions) on Windows.
1620
- The Option `--prompt-hint` will have a prefix `AzureAuth`.
@@ -36,6 +40,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3640
### Added
3741
- Initial project release.
3842

39-
[Unreleased]: https://github.com/AzureAD/microsoft-authentication-cli/compare/v0.2.0...HEAD
43+
[Unreleased]: https://github.com/AzureAD/microsoft-authentication-cli/compare/v0.3.0...HEAD
44+
[v0.3.0]: https://github.com/AzureAD/microsoft-authentication-cli/compare/v0.2.0...v0.3.0
4045
[v0.2.0]: https://github.com/AzureAD/microsoft-authentication-cli/compare/v0.1.0...v0.2.0
4146
[v0.1.0]: https://github.com/AzureAD/microsoft-authentication-cli/releases/tag/v0.1.0

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,16 @@ provide a means of downloading the latest release, so you **must** specify your
2626
To install the application, run
2727

2828
```powershell
29-
# v0.2.0 is an example. See https://github.com/AzureAD/microsoft-authentication-cli/releases for the latest.
30-
$env:AZUREAUTH_VERSION = 'v0.2.0'
29+
# v0.3.0 is an example. See https://github.com/AzureAD/microsoft-authentication-cli/releases for the latest.
30+
$env:AZUREAUTH_VERSION = 'v0.3.0'
3131
iex "& { $(irm https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/main/install/install.ps1) } -Verbose"
3232
```
3333

3434
Or, if you want a method more resilient to failure than `Invoke-Expression`, run
3535

3636
```powershell
37-
# v0.2.0 is an example. See https://github.com/AzureAD/microsoft-authentication-cli/releases for the latest.
38-
$env:AZUREAUTH_VERSION = 'v0.2.0'
37+
# v0.3.0 is an example. See https://github.com/AzureAD/microsoft-authentication-cli/releases for the latest.
38+
$env:AZUREAUTH_VERSION = 'v0.3.0'
3939
$script = "${env:TEMP}\install.ps1"
4040
$url = 'https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/main/install/install.ps1'
4141
Invoke-WebRequest $url -OutFile $script; if ($?) { &$script }; if ($?) { rm $script }
@@ -54,8 +54,8 @@ release, so you **must** specify your desired version via the `$AZUREAUTH_VERSIO
5454
To install the application, run
5555

5656
```bash
57-
# v0.2.0 is an example. See https://github.com/AzureAD/microsoft-authentication-cli/releases for the latest.
58-
export AZUREAUTH_VERSION='v0.2.0'
57+
# v0.3.0 is an example. See https://github.com/AzureAD/microsoft-authentication-cli/releases for the latest.
58+
export AZUREAUTH_VERSION='v0.3.0'
5959
curl -sL https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/main/install/install.sh | sh
6060
```
6161

src/AzureAuth/CommandMain.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,13 @@ public class CommandMain
4141
private const string PromptHintPrefix = "AzureAuth";
4242

4343
#if PlatformWindows
44-
private const string AuthModeHelperText = @"Authentication mode. Default: broker.
45-
You can use any combination of modes with multiple instances of the -m flag.
44+
private const string AuthModeHelperText = @"Authentication mode. Default: broker, with web fallback.
45+
You can use any combination of modes with multiple instances of the --mode flag.
4646
Allowed values: [all, broker, web, devicecode]";
4747

4848
#else
4949
private const string AuthModeHelperText = @"Authentication mode. Default: web.
50-
You can use any combination with multiple instances of the -m flag.
50+
You can use any combination with multiple instances of the --mode flag.
5151
Allowed values: [all, web, devicecode]";
5252
#endif
5353

0 commit comments

Comments
 (0)