Skip to content

Commit 86efa63

Browse files
Include extra scopes and update CHANGELOG/README for 0.8.3 release (#327)
* Include extra scopes * Update CHANGELOG and README for 0.8.3 release
1 parent ec71377 commit 86efa63

File tree

3 files changed

+16
-7
lines changed

3 files changed

+16
-7
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,11 @@ 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+
## [0.8.3] - 2023-08-24
810
### Added
911
- Added support for distributing debian packages.
12+
- The `azureauth ado pat` subcommand now supports additional Azure DevOps scopes.
1013

1114
### Fixed
1215
- AzureAuth now can handle SIGINT(Ctrl+C) correctly and return 2.
@@ -168,7 +171,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
168171
### Added
169172
- Initial project release.
170173

171-
[Unreleased]: https://github.com/AzureAD/microsoft-authentication-cli/compare/0.8.2...HEAD
174+
[Unreleased]: https://github.com/AzureAD/microsoft-authentication-cli/compare/0.8.3...HEAD
175+
[0.8.3]: https://github.com/AzureAD/microsoft-authentication-cli/compare/0.8.2...0.8.3
172176
[0.8.2]: https://github.com/AzureAD/microsoft-authentication-cli/compare/0.8.1...0.8.2
173177
[0.8.1]: https://github.com/AzureAD/microsoft-authentication-cli/compare/0.8.0...0.8.1
174178
[0.8.0]: https://github.com/AzureAD/microsoft-authentication-cli/compare/0.7.4...0.8.0

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Microsoft Authentication CLI
22

33
[![Tests](https://img.shields.io/github/actions/workflow/status/AzureAd/microsoft-authentication-cli/.github/workflows/dotnet-test.yml?branch=main&style=for-the-badge&logo=github)](https://github.com/AzureAD/microsoft-authentication-cli/actions/workflows/dotnet-test.yml)
4-
[![Release](https://img.shields.io/badge/Release-0.8.2-orange?style=for-the-badge&logo=github)](https://github.com/AzureAD/microsoft-authentication-cli/releases/tag/0.8.2)
5-
![GitHub release (latest by SemVer)](https://img.shields.io/github/downloads/azuread/microsoft-authentication-cli/0.8.2/total?logo=github&style=for-the-badge&color=blue)
4+
[![Release](https://img.shields.io/badge/Release-0.8.3-orange?style=for-the-badge&logo=github)](https://github.com/AzureAD/microsoft-authentication-cli/releases/tag/0.8.3)
5+
![GitHub release (latest by SemVer)](https://img.shields.io/github/downloads/azuread/microsoft-authentication-cli/0.8.3/total?logo=github&style=for-the-badge&color=blue)
66
[![License](https://shields.io/badge/license-MIT-purple?style=for-the-badge)](./LICENSE.txt)
77

88
---
@@ -34,8 +34,8 @@ provide a means of downloading the latest release, so you **must** specify your
3434
To install the application, run
3535

3636
```powershell
37-
# 0.8.2 is an example. See https://github.com/AzureAD/microsoft-authentication-cli/releases for the latest.
38-
$env:AZUREAUTH_VERSION = '0.8.2'
37+
# 0.8.3 is an example. See https://github.com/AzureAD/microsoft-authentication-cli/releases for the latest.
38+
$env:AZUREAUTH_VERSION = '0.8.3'
3939
$script = "${env:TEMP}\install.ps1"
4040
$url = "https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/${env:AZUREAUTH_VERSION}/install/install.ps1"
4141
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
@@ -55,8 +55,8 @@ release, so you **must** specify your desired version via the `$AZUREAUTH_VERSIO
5555
To install the application, run
5656

5757
```bash
58-
# 0.8.2 is an example. See https://github.com/AzureAD/microsoft-authentication-cli/releases for the latest.
59-
export AZUREAUTH_VERSION='0.8.2'
58+
# 0.8.3 is an example. See https://github.com/AzureAD/microsoft-authentication-cli/releases for the latest.
59+
export AZUREAUTH_VERSION='0.8.3'
6060
curl -sL https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/$AZUREAUTH_VERSION/install/install.sh | sh
6161
```
6262

src/AdoPat/Scopes.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,11 @@ public static class Scopes
3434
"vso.code_full",
3535
"vso.code_status",
3636

37+
// Drop
38+
"vso.drop",
39+
"vso.drop_write",
40+
"vso.drop_manage",
41+
3742
// Entitlements
3843
"vso.entitlements",
3944
"vso.memberentitlementmanagement",

0 commit comments

Comments
 (0)