diff --git a/packages/core/RELEASES.md b/packages/core/RELEASES.md index 174a9dbbbe..53428af497 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 a25fa4ae2e..2e8b88fdd8 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 6c4e9932f2..7be0dc09e4 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 a827093ae3..81cb537feb 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 983f083d06..e7e3eaacc7 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 5733b17054..6dc176efa0 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 a4dc6b8ba5..24a6b70b5d 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)