* origin/master: (45 commits)
Fix lint errors
Upate tests to handle async callback
Update docs
Pass an authenticated client to context
Log unhandled rejections
Find private key if it is not set
add .js ext to files in bin/; closes#129
add PRIVATE_KEY_PATH env var support; closes#122
ensure "start" script runs from local directory
enable autodiscovery of plugins; closes#99
use function expressions in suite and test blocks
Update filename
Edits
fix formatting
Contents
Heroku docs
edits
Release v0.4.1.
Disable raven console alerts
Relax node version requirements
...
# Conflicts:
# docs/api.md
# lib/context.js
# lib/robot.js
# package.json
- new behavior: if no plugins are specified, then they are automatically discovered. if plugins are specified, no autodiscovery happens
- a plugin is defined as a module whose name begins with the prefix `probot-`
- move plugin loading/resolving routines into module
- add tests
When writing Mocha tests, the blocks should be function expressions instead of lambdas. The reasoning is that it's easier to refactor if a test needs a custom timeout, or needs to be conditionally skipped:
it('should do x', () => {
this.skip(); // throws exception
});
it('should do x', function () {
this.skip(); // ok
});
* origin/master:
Release v0.4.0.
Update log for local server
Remove tunnel script
Move subdomain config
Update docs to use localtunnel
Add subdomain option
Setup tunnel using localtunnel
Ensure node version is satisfied
* origin/master: (21 commits)
Update paginate to default to returning response
capture unhandled rejections
Fix lint errors
Add raven to report errors to sentry
Release v0.3.0.
Change level of log message
Start with array
Use `function` to preserve `this`
Add docs on paginate method
Fix lint errors
robot.auth as integration or installation
Add paginate to default github client object
Release v0.2.1.
Hack to throttle requests
Remove env variables
Fix travis version
Add cache and cache installation token
a
chore(package): update xo to version 0.19.0
Clarify that it's the _webhook_ secret
...
* origin/master:
Remove workflow demo
Stick with PRIVATE_KEY
Look for private-key.pem
Default to short log output
probot run
Update plugin docs
Still support PRIVATE_KEY env var
Use commander for CLI
* origin/master: (25 commits)
Add Context.halt() function to make halting a rule simple
Update examples
💚 Update integration tests
Stop using const because state was leaking between tests
🎨
Add a bunch of Workflow tests
Add specs for Filter.on()
Add Filter plugin
Remove payload module
Move GitHub Integration code to a module
Rename server.js to index.js
Move server implementation to separate file
typo
Clean up docs
Revert "Add routing plugin"
Move requires to avoid circular dependencies
Add documentation for createIssue
Fix syntax errors
Add labels and assignees
Add routing plugin
...
# Conflicts:
# package.json