Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix vulnerable packages #600

Merged
merged 2 commits into from
Jun 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ More detailed information for the endpoints of each API can be found at https://

## Running Samples

Pre-reqs: [Node >= 4.4.7 LTS](https://nodejs.org) and [typescript (tsc) >= 1.8](https://www.npmjs.com/package/typescript)
Pre-reqs: [Node >= 16](https://nodejs.org) and [typescript (tsc) >= 4](https://www.npmjs.com/package/typescript)

Run `npm install` first

Expand All @@ -136,6 +136,11 @@ Run a specific sample:
$ npm run samples -- projectAnalysis
```

## Node support
v14 and above - [current, maintained] - Supports node 16 and above

v13 and below - End Of Life, for Node < 16, contains security vulnerabilities, use at your own risk

## API and TFS Mapping

Below you'll find a quick mapping of azure-devops-node-api versions and their corresponding TFS releases. All API versions will work on the TFS version mentioned as well as later TFS versions.
Expand Down
24 changes: 9 additions & 15 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,24 +28,18 @@ extends:
- job: job
strategy:
matrix:
'Node 6':
versionSpec: '6.x'
npmVersion: '5'
'Node 8':
versionSpec: '8.x'
npmVersion: '6'
'Node 10':
versionSpec: '10.x'
npmVersion: '6'
'Node 12':
versionSpec: '12.x'
npmVersion: '6'
'Node 14':
versionSpec: '14.x'
npmVersion: '6'
'Node 16':
versionSpec: '16.x'
npmVersion: '8'
'Node 18':
versionSpec: '18.x'
npmVersion: '10'
'Node 20':
versionSpec: '20.x'
npmVersion: '10'
'Node 22':
versionSpec: '22.x'
npmVersion: '10'
steps:
- task: NodeTool@0
inputs:
Expand Down
Loading