Skip to content

Commit

Permalink
Include extra scopes and update CHANGELOG/README for 0.8.3 release (#327
Browse files Browse the repository at this point in the history
)

* Include extra scopes

* Update CHANGELOG and README for 0.8.3 release
  • Loading branch information
reillysiemens authored Aug 24, 2023
1 parent ec71377 commit 86efa63
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 7 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,11 @@ 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]

## [0.8.3] - 2023-08-24
### Added
- Added support for distributing debian packages.
- The `azureauth ado pat` subcommand now supports additional Azure DevOps scopes.

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

[Unreleased]: https://github.com/AzureAD/microsoft-authentication-cli/compare/0.8.2...HEAD
[Unreleased]: https://github.com/AzureAD/microsoft-authentication-cli/compare/0.8.3...HEAD
[0.8.3]: https://github.com/AzureAD/microsoft-authentication-cli/compare/0.8.2...0.8.3
[0.8.2]: https://github.com/AzureAD/microsoft-authentication-cli/compare/0.8.1...0.8.2
[0.8.1]: https://github.com/AzureAD/microsoft-authentication-cli/compare/0.8.0...0.8.1
[0.8.0]: https://github.com/AzureAD/microsoft-authentication-cli/compare/0.7.4...0.8.0
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Microsoft Authentication CLI

[![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)
[![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)
![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)
[![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)
![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)
[![License](https://shields.io/badge/license-MIT-purple?style=for-the-badge)](./LICENSE.txt)

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

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

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

Expand Down
5 changes: 5 additions & 0 deletions src/AdoPat/Scopes.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,11 @@ public static class Scopes
"vso.code_full",
"vso.code_status",

// Drop
"vso.drop",
"vso.drop_write",
"vso.drop_manage",

// Entitlements
"vso.entitlements",
"vso.memberentitlementmanagement",
Expand Down

0 comments on commit 86efa63

Please sign in to comment.