diff --git a/packages/core/RELEASES.md b/packages/core/RELEASES.md index 174a9dbb..53428af4 100644 --- a/packages/core/RELEASES.md +++ b/packages/core/RELEASES.md @@ -1,5 +1,9 @@ # @actions/core Releases +### 1.2.2 + +- [Fix escaping for runner commands](https://github.com/actions/toolkit/pull/302) + ### 1.2.1 - [Remove trailing comma from commands](https://github.com/actions/toolkit/pull/263) diff --git a/packages/core/package-lock.json b/packages/core/package-lock.json index a25fa4ae..2e8b88fd 100644 --- a/packages/core/package-lock.json +++ b/packages/core/package-lock.json @@ -1,6 +1,6 @@ { "name": "@actions/core", - "version": "1.2.1", + "version": "1.2.2", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/packages/core/package.json b/packages/core/package.json index 6c4e9932..7be0dc09 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@actions/core", - "version": "1.2.1", + "version": "1.2.2", "description": "Actions core lib", "keywords": [ "github", diff --git a/packages/github/RELEASES.md b/packages/github/RELEASES.md index a827093a..81cb537f 100644 --- a/packages/github/RELEASES.md +++ b/packages/github/RELEASES.md @@ -1,5 +1,10 @@ # @actions/github Releases +### 2.1.0 + +- [Octokit client follows proxy settings](https://github.com/actions/toolkit/pull/314) +- [Fix issue number for pull request comment events](https://github.com/actions/toolkit/pull/311) + ### 2.0.1 - [Add \"types\" to package.json](https://github.com/actions/toolkit/pull/221) diff --git a/packages/github/package-lock.json b/packages/github/package-lock.json index 983f083d..e7e3eaac 100644 --- a/packages/github/package-lock.json +++ b/packages/github/package-lock.json @@ -1,6 +1,6 @@ { "name": "@actions/github", - "version": "2.0.2", + "version": "2.1.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/packages/github/package.json b/packages/github/package.json index 5733b170..6dc176ef 100644 --- a/packages/github/package.json +++ b/packages/github/package.json @@ -1,6 +1,6 @@ { "name": "@actions/github", - "version": "2.0.2", + "version": "2.1.0", "description": "Actions github lib", "keywords": [ "github", diff --git a/packages/tool-cache/RELEASES.md b/packages/tool-cache/RELEASES.md index a4dc6b8b..24a6b70b 100644 --- a/packages/tool-cache/RELEASES.md +++ b/packages/tool-cache/RELEASES.md @@ -1,5 +1,9 @@ # @actions/tool-cache Releases +### 1.3.1 + +- [Increase http-client min version](https://github.com/actions/toolkit/pull/314) + ### 1.3.0 - [Uses @actions/http-client](https://github.com/actions/http-client)