Skip to content

Commit

Permalink
Merge pull request #1 from davidknise/release/vNext
Browse files Browse the repository at this point in the history
Release v1.7.0
  • Loading branch information
davidknise committed Mar 1, 2023
2 parents 60eb8f6 + cf100ed commit b810b99
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 10 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).

## v1.7.0 - 02/23/2023
### Added
- Node16 launcher support

## v1.5.1 - 08/29/2022
### Changed
- Updated the extension and MicrosoftSecurityDevOps build task icon
9 changes: 2 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,11 @@ An extension for Azure DevOps that contributes a build task to run the [Microsof
## Dependencies

* The `MicrosoftSecurityDevOps` build task depends on [.NET 6](https://dotnet.microsoft.com/en-us/download/dotnet/6.0).
* The CredScan analyzer depends on [.NET 3.1](https://dotnet.microsoft.com/en-us/download/dotnet/3.1).

Microsoft-hosted build agents ship with an included list of software. To see if your agent image comes with these pre-installed, [see here](https://learn.microsoft.com/en-us/azure/devops/pipelines/agents/hosted?view=azure-devops&tabs=yaml#software).

To install these dependencies at runtime, run the following tasks before the `MicrosoftSecurityDevOps` task.
```yaml
- task: UseDotNet@2
displayName: 'Use dotnet 3.1'
inputs:
version: 3.1.x
- task: UseDotNet@2
displayName: 'Use dotnet 6.0'
inputs:
Expand All @@ -47,8 +42,8 @@ steps:
| [BinSkim](https://github.com/Microsoft/binskim) | binary - Windows, ELF | [MIT License](https://github.com/microsoft/binskim/blob/main/LICENSE) |
| CredScan | code, artifacts | - |
| [ESlint](https://github.com/eslint/eslint) | JavaScript | [MIT License](https://github.com/eslint/eslint/blob/main/LICENSE) |
| [Template Analyzer](https://github.com/Azure/template-analyzer) | Infrastructure-as-code (IaC), ARM templates | [MIT License](https://github.com/Azure/template-analyzer/blob/main/LICENSE.txt) |
| [Terrascan](https://github.com/accurics/terrascan) | Infrastructure-as-Code (IaC), Terraform (HCL2), Kubernetes (JSON/YAML), Helm v3, Kustomize, Dockerfiles | [Apache License 2.0](https://github.com/accurics/terrascan/blob/master/LICENSE) |
| [Template Analyzer](https://github.com/Azure/template-analyzer) | Infrastructure-as-code (IaC), ARM templates, Bicep files | [MIT License](https://github.com/Azure/template-analyzer/blob/main/LICENSE.txt) |
| [Terrascan](https://github.com/accurics/terrascan) | Infrastructure-as-Code (IaC), Terraform (HCL2), Kubernetes (JSON/YAML), Helm v3, Kustomize, Dockerfiles, CloudFormation | [Apache License 2.0](https://github.com/accurics/terrascan/blob/master/LICENSE) |
| [Trivy](https://github.com/aquasecurity/trivy) | Container Images, Infrastructure as Code (Iac) | [Apache License 2.0](https://github.com/aquasecurity/trivy/blob/main/LICENSE) |

## Contributing
Expand Down
5 changes: 4 additions & 1 deletion src/MicrosoftSecurityDevOps/v1/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"author": "Microsoft Corporation",
"version": {
"Major": 1,
"Minor": 6,
"Minor": 7,
"Patch": 0
},
"preview": true,
Expand Down Expand Up @@ -98,6 +98,9 @@
],
"instanceNameFormat": "Run Microsoft Defender for DevOps",
"execution": {
"Node16": {
"target": "msdo.js"
},
"Node10": {
"target": "msdo.js"
},
Expand Down
2 changes: 1 addition & 1 deletion src/extension-manifest-debug.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifestVersion": 1,
"id": "microsoft-security-devops-azdevops-debug",
"name": "Microsoft Security DevOps (Debug)",
"version": "1.6.0.0",
"version": "1.7.0.0",
"publisher": "ms-securitydevops",
"description": "Build tasks for performing security analysis.",
"public": false,
Expand Down
2 changes: 1 addition & 1 deletion src/extension-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifestVersion": 1,
"id": "microsoft-security-devops-azdevops",
"name": "Microsoft Security DevOps",
"version": "1.6.0",
"version": "1.7.0",
"publisher": "ms-securitydevops",
"description": "Build tasks for performing security analysis.",
"public": true,
Expand Down

0 comments on commit b810b99

Please sign in to comment.