Skip to content

Commit b810b99

Browse files
authored
Merge pull request #1 from davidknise/release/vNext
Release v1.7.0
2 parents 60eb8f6 + cf100ed commit b810b99

5 files changed

Lines changed: 12 additions & 10 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file.
33

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

6+
## v1.7.0 - 02/23/2023
7+
### Added
8+
- Node16 launcher support
9+
610
## v1.5.1 - 08/29/2022
711
### Changed
812
- Updated the extension and MicrosoftSecurityDevOps build task icon

README.md

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,11 @@ An extension for Azure DevOps that contributes a build task to run the [Microsof
1313
## Dependencies
1414

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

1817
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).
1918

2019
To install these dependencies at runtime, run the following tasks before the `MicrosoftSecurityDevOps` task.
2120
```yaml
22-
- task: UseDotNet@2
23-
displayName: 'Use dotnet 3.1'
24-
inputs:
25-
version: 3.1.x
2621
- task: UseDotNet@2
2722
displayName: 'Use dotnet 6.0'
2823
inputs:
@@ -47,8 +42,8 @@ steps:
4742
| [BinSkim](https://github.com/Microsoft/binskim) | binary - Windows, ELF | [MIT License](https://github.com/microsoft/binskim/blob/main/LICENSE) |
4843
| CredScan | code, artifacts | - |
4944
| [ESlint](https://github.com/eslint/eslint) | JavaScript | [MIT License](https://github.com/eslint/eslint/blob/main/LICENSE) |
50-
| [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) |
51-
| [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) |
45+
| [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) |
46+
| [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) |
5247
| [Trivy](https://github.com/aquasecurity/trivy) | Container Images, Infrastructure as Code (Iac) | [Apache License 2.0](https://github.com/aquasecurity/trivy/blob/main/LICENSE) |
5348

5449
## Contributing

src/MicrosoftSecurityDevOps/v1/task.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"author": "Microsoft Corporation",
1212
"version": {
1313
"Major": 1,
14-
"Minor": 6,
14+
"Minor": 7,
1515
"Patch": 0
1616
},
1717
"preview": true,
@@ -98,6 +98,9 @@
9898
],
9999
"instanceNameFormat": "Run Microsoft Defender for DevOps",
100100
"execution": {
101+
"Node16": {
102+
"target": "msdo.js"
103+
},
101104
"Node10": {
102105
"target": "msdo.js"
103106
},

src/extension-manifest-debug.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifestVersion": 1,
33
"id": "microsoft-security-devops-azdevops-debug",
44
"name": "Microsoft Security DevOps (Debug)",
5-
"version": "1.6.0.0",
5+
"version": "1.7.0.0",
66
"publisher": "ms-securitydevops",
77
"description": "Build tasks for performing security analysis.",
88
"public": false,

src/extension-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifestVersion": 1,
33
"id": "microsoft-security-devops-azdevops",
44
"name": "Microsoft Security DevOps",
5-
"version": "1.6.0",
5+
"version": "1.7.0",
66
"publisher": "ms-securitydevops",
77
"description": "Build tasks for performing security analysis.",
88
"public": true,

0 commit comments

Comments
 (0)