Closed greenkeeper[bot] closed 4 years ago
dependency
probot was updated from 7.3.1
to 7.5.0
.Update to this version instead π
The new version differs by 28 commits.
ca85391
7.5.0
cc5b80b
fix: pass utf8 as 2nd argument when reading private key from file using fs.readFileSync
301fc47
test: pass utf8 as 2nd argument when reading private key from file using fs.readFileSync
222256a
fix: GitHubAPI.paginate callback signature in stats
33f321a
fix(typescript): Webhooks class constructor definition (#798)
6ad29f8
fix(typescript): webhook callback definitions (#793)
f6d7bdc
Add pull reminders badge to README (#814)
2b78263
fix(typescript): GitHubAPI.paginate callback signature (#775)
fe99d0b
build(package): lock file update
8d8292b
build(npmrc): bye bye bey
d23ebba
Update year to 2019 (#812)
6b73d5a
docs: Fix URL for Serverless GCF repository (#805)
dc558dc
docs: Fix sample code for serverless deployment (#807)
6620ba1
tests: Removed allowed failure configuration for node 10 (#802)
444fcac
fix: Spelling (#800)
There are 28 commits in total.
See the full diff
dependency
probot was updated from 7.3.1
to 7.5.1
.Update to this version instead π
The new version differs by 10 commits.
c95f5ed
build(package): lock file
b42f83d
build(package): update semantic-release
d32ce60
fix: Update dependencies (#870)
e975bbd
update spelling
beb8466
docs(CONTRIBUTING): Merging the Pull Request & releasing a new version
0dbb499
ci(travis): semantic-release setup
d742bc7
build: lock file
d835553
build(package): semantic-release setup
c8ed774
doc: update GitHub actions workflow reference (#823)
7d938d6
docs(README): fix link to travis
See the full diff
dependency
probot was updated from 7.3.1
to 9.0.0
.Update to this version instead π
We released both v8.0.0 and v9.0.0 at the same time. Please update directly to v9. See changelogs at https://github.com/probot/probot/releases/tag/v9.0.0
The new version differs by 70 commits ahead by 70, behind by 3.
7648419
chore(package): update lockfile package-lock.json
49afe60
fix(package): update pkg-conf to version 3.0.0
e86c260
test: convert webhook proxy test to TS (#851)
4cf59e2
test: convert final test to TypeScript (#850)
6229a14
build(package): Update Jest to v24 (#863)
3630bc2
feat: Add overloads for all Webhook events (#858)
be1440f
fix: remove unnecessary escaping in private key error message (#862)
8c5495f
feat: standalone run command (#751)
eed8380
chore(package): update lockfile package-lock.json
7d30231
chore(package): update ts-jest to version 24.0.0
973c6a4
feat: options.Octokit to pass custom Octokit version (#840)
987db21
chore(tests): Convert setup script to TS (#849)
be833af
chore(package): update lockfile package-lock.json
f500527
chore(package): update @types/node to version 11.9.0
bce1ff7
fix(typescript): @octokit/webhooks import (#854)
There are 70 commits in total.
See the full diff
dependency
probot was updated from 7.3.1
to 9.0.0
.Update to this version instead π
The new version differs by 73 commits ahead by 73, behind by 80.
99784f3
fix: make smee-client requirement optional again (#868)
d79c71b
docs(README): npm beta badge -> next badge
867159d
build(package): update semantic-release to v16.0.0-beta.18
7648419
chore(package): update lockfile package-lock.json
49afe60
fix(package): update pkg-conf to version 3.0.0
e86c260
test: convert webhook proxy test to TS (#851)
4cf59e2
test: convert final test to TypeScript (#850)
6229a14
build(package): Update Jest to v24 (#863)
3630bc2
feat: Add overloads for all Webhook events (#858)
be1440f
fix: remove unnecessary escaping in private key error message (#862)
8c5495f
feat: standalone run command (#751)
eed8380
chore(package): update lockfile package-lock.json
7d30231
chore(package): update ts-jest to version 24.0.0
973c6a4
feat: options.Octokit to pass custom Octokit version (#840)
987db21
chore(tests): Convert setup script to TS (#849)
There are 73 commits in total.
See the full diff
dependency
probot was updated from 7.3.1
to 9.0.0
.Update to this version instead π
The new version differs by 74 commits ahead by 74, behind by 80.
f360c5f
fix: error.code => error.status (#871)
99784f3
fix: make smee-client requirement optional again (#868)
d79c71b
docs(README): npm beta badge -> next badge
867159d
build(package): update semantic-release to v16.0.0-beta.18
7648419
chore(package): update lockfile package-lock.json
49afe60
fix(package): update pkg-conf to version 3.0.0
e86c260
test: convert webhook proxy test to TS (#851)
4cf59e2
test: convert final test to TypeScript (#850)
6229a14
build(package): Update Jest to v24 (#863)
3630bc2
feat: Add overloads for all Webhook events (#858)
be1440f
fix: remove unnecessary escaping in private key error message (#862)
8c5495f
feat: standalone run command (#751)
eed8380
chore(package): update lockfile package-lock.json
7d30231
chore(package): update ts-jest to version 24.0.0
973c6a4
feat: options.Octokit to pass custom Octokit version (#840)
There are 74 commits in total.
See the full diff
dependency
probot was updated from 7.3.1
to 9.0.0
.Update to this version instead π
context.github.query()
: Changes in errors thrown due to GraphQL errors
error.name
is now GraphqlError
, was GraphQLQueryError
error.query
is now error.request.query
preview headers that are not required to use an API are no longer set automatically. Set using {headers: { accept: '<preview header here>'}
.gitdata.getTags()
has been removed. Use .git.listRefs({namespace: tags})
instead
Methods for undocumented endpoints have been removed.
octokit.users.getById({id})
use octokit.request('GET /user/:id', {id})
octokit.repos.getById({id})
use octokit.request('GET /repositories/:id', {id})
octokit.enterprise.*
methods have been removed. Use your own @ocotkit/rest
instance and install the @octokit/enterprise-rest
plugin
octokit.issues.addLabels
sends labels
parameter with "labels
" namespace instead of sending the array in the request body root. This is not supported by GitHub Enterprise 2.15 or older. You have several options.
@octokit/enterprise-compatibility
plugin@octokit/enterprise-rest
plugin loading all routes for the GHE version you want to supportoctokit.request()
directly:octokit.request('/repos/:owner/:repo/issues/:number/labels', {
owner,
repo,
number,
data: ['label1', 'label2']
})
The milestone
parameter is no longer validated using a regex as it cannot be derived from octokit/routes
error.status
is now the response status code number. The status text is no longer returned
Deprecated event.event
property is no longer supported. Use event.name
instead
Deprecated new Probot({catchErrors})
has been removed
probot simulate
hase been removed, use probot receive
instead
.paginate
API from @octokit/rest.js is now used
ocotkit.request
.context.github
context.github.query()
is now context.github.graphql()
context.github.query(query, variables, headers)
is now context.github.graphql(query, options)
. options.headers
is passed as headers. Other options are passed as variables, with the exception of method
, baseUrl
, url
, headers
, request
, and query
.
context.github.paginate(promise, mapFn)
is now context.github.paginate(requestOptions, mapFn)
. Example:
Before
const allIssues = await context.github.paginate(
context.github.issues.getAll(context.repo())
)
After
const allIssues = await context.github.paginate(
context.github.issues.getAll.endpoint.merge(context.repo())
)
.issues.addLabels()
compatible with current GHE versions (aa1c570)catchErrors
constructor option (f46c41c).event
property (1f76ec6)dependency
probot was updated from 7.3.1
to 9.0.1
.Update to this version instead π
The new version differs by 5 commits.
52e7223
chore(package): update lockfile package-lock.json
28ead7e
fix(package): update dotenv to version 7.0.0
b2f3858
test: Convert manifest creation test to TS (#884)
620e40b
build(package): update typescript to 2.9 (#886)
9265609
docs(README): remove npm @next
badge
See the full diff
dependency
probot was updated from 7.3.1
to 9.0.2
.Update to this version instead π
The new version differs by 4 commits.
7824645
chore(package): update lockfile package-lock.json
e584124
fix(package): update @octokit/graphql to version 2.0.2
f768901
chore(package): update lockfile package-lock.json
12ebbd5
chore(package): update supertest to version 4.0.2
See the full diff
dependency
probot was updated from 7.3.1
to 9.1.0
.dependency
probot was updated from 7.3.1
to 9.1.1
.dependency
probot was updated from 7.3.1
to 9.2.0
.Update to this version instead π
The new version differs by 5 commits.
23e8eab
feat: Update @octokit/rest to 16.22.0 (#901)
363d9a4
chore(package): update lockfile package-lock.json
1d485c0
chore(package): update @types/semver to version 6.0.0
2d6b3fc
chore(package): update lockfile package-lock.json
bd0a3cf
chore(package): update @types/dotenv to version 6.1.1
See the full diff
dependency
probot was updated from 7.3.1
to 9.2.1
.dependency
probot was updated from 7.3.1
to 9.2.2
.dependency
probot was updated from 7.3.1
to 9.2.3
.dependency
probot was updated from 7.3.1
to 9.2.4
.dependency
probot was updated from 7.3.1
to 9.2.5
.dependency
probot was updated from 7.3.1
to 9.2.6
.dependency
probot was updated from 7.3.1
to 9.2.7
.dependency
probot was updated from 7.3.1
to 9.2.8
.dependency
probot was updated from 7.3.1
to 9.2.9
.dependency
probot was updated from 7.3.1
to 9.2.10
.dependency
probot was updated from 7.3.1
to 9.2.11
.dependency
probot was updated from 7.3.1
to 9.2.12
.dependency
probot was updated from 7.3.1
to 9.2.13
.dependency
probot was updated from 7.3.1
to 9.2.14
.dependency
probot was updated from 7.3.1
to 9.2.15
.dependency
probot was updated from 7.3.1
to 9.2.16
.dependency
probot was updated from 7.3.1
to 9.2.17
.dependency
probot was updated from 7.3.1
to 9.2.18
.dependency
probot was updated from 7.3.1
to 9.2.19
.dependency
probot was updated from 7.3.1
to 9.2.20
.dependency
probot was updated from 7.3.1
to 9.3.0
.dependency
probot was updated from 7.3.1
to 9.3.1
.dependency
probot was updated from 7.3.1
to 9.3.2
.dependency
probot was updated from 7.3.1
to 9.3.3
.dependency
probot was updated from 7.3.1
to 9.3.4
.dependency
probot was updated from 7.3.1
to 9.4.0
.dependency
probot was updated from 7.3.1
to 9.5.0
.dependency
probot was updated from 7.3.1
to 9.5.1
.dependency
probot was updated from 7.3.1
to 9.5.2
.dependency
probot was updated from 7.3.1
to 9.5.3
.dependency
probot was updated from 7.3.1
to 9.6.0
.dependency
probot was updated from 7.3.1
to 9.6.1
.dependency
probot was updated from 7.3.1
to 9.6.2
.dependency
probot was updated from 7.3.1
to 9.6.3
.dependency
probot was updated from 7.3.1
to 9.6.4
.dependency
probot was updated from 7.3.1
to 9.6.5
.dependency
probot was updated from 7.3.1
to 9.6.6
.dependency
probot was updated from 7.3.1
to 9.7.0
.dependency
probot was updated from 7.3.1
to 9.8.0
.
The dependency probot was updated from
7.3.1
to7.4.0
.This version is not covered by your current version range.
If you donβt accept this pull request, your project will work just like it did before. However, you might be missing out on a bunch of new features, fixes and/or performance improvements from the dependency update.
Release Notes for Improvements
Improvements
See full changelog
Commits
The new version differs by 20 commits ahead by 20, behind by 3.
58559ff
7.4.0
59bf271
refactor: rename deprecated methods
9d15925
fix(package): @octokit/rest@^15.18.0
5c622e4
docs: links in "Serverless Deployment" (#773)
107c4e6
Include version in manifest (#763)
7831ef0
Fix for
probot receive
to allow app auth instead in addition to token auth (#754)5443ce0
Add documentation about template flag (#752)
9e60d34
Follow GitHub Casing Standards (#756)
e1e1b32
fix(package): update is-base64 to version 0.1.0 (#750)
286f2d4
Improve documentation on testing Probot apps with nock (#734)
35dd36d
Improve GraphQL query for TypeScript (#710)
787e36f
Create serverless-deployment.md (#698)
f82d647
chore(test): convert apps/stats test to TypeScript (#704)
85502cf
chore(tests): convert logging test to TypeScript (#696)
494fd3c
Add done parameter to paginate callback in GitHubAPI interface (#718)
There are 20 commits in total.
See the full diff
FAQ and help
There is a collection of [frequently asked questions](https://greenkeeper.io/faq.html). If those donβt help, you can always [ask the humans behind Greenkeeper](https://github.com/greenkeeperio/greenkeeper/issues/new).Your Greenkeeper bot :palm_tree: