diff --git a/node/CHANGELOG.md b/node/CHANGELOG.md index 5e86db96d..4850a609f 100644 --- a/node/CHANGELOG.md +++ b/node/CHANGELOG.md @@ -2,10 +2,18 @@ ## 4.x +## 4.17.0 + +- Added signal handler for process execution to kill process with proper signal - [#1008](https://github.com/microsoft/azure-pipelines-task-lib/pull/1008) + ## 4.15.0 - Disabled debug logs when debug mode is not enabled - [#1046](https://github.com/microsoft/azure-pipelines-task-lib/pull/1046) +## 4.14.0 + +- Added `isSigPipeError` function to handle Error: write EPIPE errors without causing an infinite loop on Node16+ - [#1051](https://github.com/microsoft/azure-pipelines-task-lib/pull/1051) + ## 4.12.1 - Remove deasync from task-lib - [#1038](https://github.com/microsoft/azure-pipelines-task-lib/pull/1038) diff --git a/node/package-lock.json b/node/package-lock.json index 761c0c378..96225cf74 100644 --- a/node/package-lock.json +++ b/node/package-lock.json @@ -1,6 +1,6 @@ { "name": "azure-pipelines-task-lib", - "version": "4.16.0", + "version": "4.17.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/node/package.json b/node/package.json index 596c51f42..5d92e1622 100644 --- a/node/package.json +++ b/node/package.json @@ -1,6 +1,6 @@ { "name": "azure-pipelines-task-lib", - "version": "4.16.0", + "version": "4.17.0", "description": "Azure Pipelines Task SDK", "main": "./task.js", "typings": "./task.d.ts",