From 08747b1f6c5edafa0f0091b1550aac63ce756576 Mon Sep 17 00:00:00 2001 From: Thomas Boop Date: Thu, 25 Jun 2020 23:29:59 -0400 Subject: [PATCH 1/2] Add release notes for 4.0.0 --- packages/github/RELEASES.md | 5 +++++ packages/github/package-lock.json | 2 +- packages/github/package.json | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/packages/github/RELEASES.md b/packages/github/RELEASES.md index b523ba3a20..344de43486 100644 --- a/packages/github/RELEASES.md +++ b/packages/github/RELEASES.md @@ -1,5 +1,10 @@ # @actions/github Releases +### 4.0.0 +- [Add execution state information to context](https://github.com/actions/toolkit/pull/499) +- [Update Octokit Dependencies with breaking changes](https://github.com/actions/toolkit/pull/375) + - The full list of api changes are [here](https://github.com/octokit/plugin-rest-endpoint-methods.js/releases/tag/v4.0.0) + ### 3.0.0 - [Swap to @octokit/core and use plugins to leverage lastest octokit apis](https://github.com/actions/toolkit/pull/453) - [Add comment field to payload context](https://github.com/actions/toolkit/pull/375) diff --git a/packages/github/package-lock.json b/packages/github/package-lock.json index d2281bcde1..ce9e95448c 100644 --- a/packages/github/package-lock.json +++ b/packages/github/package-lock.json @@ -1,6 +1,6 @@ { "name": "@actions/github", - "version": "3.0.0", + "version": "4.0.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/packages/github/package.json b/packages/github/package.json index 4cb518c93c..0288f178d8 100644 --- a/packages/github/package.json +++ b/packages/github/package.json @@ -1,6 +1,6 @@ { "name": "@actions/github", - "version": "3.0.0", + "version": "4.0.0", "description": "Actions github lib", "keywords": [ "github", From df0e840aebd3639479dad6190f9bcb86124893ec Mon Sep 17 00:00:00 2001 From: Thomas Boop Date: Thu, 25 Jun 2020 23:36:00 -0400 Subject: [PATCH 2/2] Add information to release notes --- packages/github/RELEASES.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/github/RELEASES.md b/packages/github/RELEASES.md index 344de43486..11c47bd23b 100644 --- a/packages/github/RELEASES.md +++ b/packages/github/RELEASES.md @@ -2,8 +2,9 @@ ### 4.0.0 - [Add execution state information to context](https://github.com/actions/toolkit/pull/499) -- [Update Octokit Dependencies with breaking changes](https://github.com/actions/toolkit/pull/375) +- [Update Octokit Dependencies with some api breaking changes](https://github.com/actions/toolkit/pull/498) - The full list of api changes are [here](https://github.com/octokit/plugin-rest-endpoint-methods.js/releases/tag/v4.0.0) + - `GitHub.plugin()` no longer supports an array as first argument. Multiple args must be passed in instead. ### 3.0.0 - [Swap to @octokit/core and use plugins to leverage lastest octokit apis](https://github.com/actions/toolkit/pull/453)