From 3de580e7952eeca9e51a1d7733f2e0f238c36c3b Mon Sep 17 00:00:00 2001 From: Ivan Duplenskikh <115665590+ivanduplenskikh@users.noreply.github.com> Date: Thu, 22 Aug 2024 13:51:32 +0200 Subject: [PATCH] Release 4.17.0 (#1058) * Release 4.17.0 This PR updates azure-pipelines-task-lib module to 4.17.0. Additionally, changes from v4.14.0 and v4.17.0 have been added to CHANGELOG.md --- node/CHANGELOG.md | 8 ++++++++ node/package-lock.json | 2 +- node/package.json | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) 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",