Merge pull request #153 from probot/release-0.6.0

Release v0.6.0
This commit is contained in:
Brandon Keepers
2017-06-09 18:27:42 -05:00
committed by GitHub
2 changed files with 31 additions and 1 deletions

30
CHANGELOG.md Normal file
View File

@@ -0,0 +1,30 @@
# Changelog
## v0.6.0 (2017-06-09)
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)

View File

@@ -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",