From c885b77a268860f7165368f6fea28a346b4ae8ef Mon Sep 17 00:00:00 2001 From: Brandon Keepers Date: Mon, 5 Jun 2017 19:49:45 -0500 Subject: [PATCH 1/3] 0.6.0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 5ee1e63..6324bfc 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "probot", - "version": "0.5.0", + "version": "0.6.0", "description": "a trainable robot that responds to activity on GitHub", "repository": "https://github.com/probot/probot", "main": "index.js", From be0ca802d4ad95459f9c24b75077ffa5f78d971e Mon Sep 17 00:00:00 2001 From: Brandon Keepers Date: Fri, 9 Jun 2017 18:24:24 -0500 Subject: [PATCH 2/3] Add changelog --- CHANGELOG.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..c4714ab --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,29 @@ +## v0.6.0 + +Breaking Changes: + +- Update to [node-github](https://github.com/mikedeboer/node-github) v9, which namespaces all responses with a `data` attribute. (https://github.com/mikedeboer/node-github/pull/505). This is likely to be a breaking change for all plugins. + + Before: + + ```js + const data = await github.search.issues(params); + data.items.forEach(item => doTheThing(issue)); + ``` + + After: + + ```js + const res = await github.search.issues(params); + res.data.items.forEach(item => doTheThing(issue)); + ``` + +- "GitHub Integrations" were renamed to "GitHub Apps". The `INTEGRATION_ID` environment variable has been deprecated. Use `APP_ID` instead. ([#154](https://github.com/probot/probot/pull/154)) + +Enhancements: + +- Errors thrown in handlers from plugins were being silently ignored. That's not cool. Now, they're being caught and logged. + ([#152](https://github.com/probot/probot/pull/152)) + + +[View full changelog](https://github.com/probot/probot/compare/v0.5.0...v0.6.0) From a710401e6305dd0045a4ecd1f59a1a0ebd88e95f Mon Sep 17 00:00:00 2001 From: Brandon Keepers Date: Fri, 9 Jun 2017 18:25:50 -0500 Subject: [PATCH 3/3] Add title --- CHANGELOG.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c4714ab..f728ac7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,6 @@ -## v0.6.0 +# Changelog + +## v0.6.0 (2017-06-09) Breaking Changes: @@ -25,5 +27,4 @@ Enhancements: - Errors thrown in handlers from plugins were being silently ignored. That's not cool. Now, they're being caught and logged. ([#152](https://github.com/probot/probot/pull/152)) - [View full changelog](https://github.com/probot/probot/compare/v0.5.0...v0.6.0)