Releases: probot/adapter-github-actions
Releases · probot/adapter-github-actions
v4.0.0
4.0.0 (2024-03-12)
Features
BREAKING CHANGES
v3.1.3
3.1.3 (2022-10-07)
Bug Fixes
v3.1.2
3.1.2 (2022-09-05)
Bug Fixes
- deps: bump pino from 6.14.0 to 8.5.0 (522f027)
v3.1.1
3.1.1 (2022-01-19)
Bug Fixes
- security: bump minimal version of
probot
(#37) (585073e)
v3.1.0
3.1.0 (2022-01-07)
Features
v3.0.1
3.0.1 (2021-02-10)
Bug Fixes
- deps: move nock to devDependencies (#21) (8154e45)
v3.0.0
BREAKING CHANGES
- package name has been renamed to "@probot/adapter-github-actions"
- the package now has the same export as
"probot"
.
Before
const runProbot = require('probot-actions-adapter');
const app = require('./index');
runProbot(app);
After
const { run } = require("@probot/adapter-github-actions");
const app = require("./app");
run(app);
Features
- adapt for probot v11
- Use
@actions/core
for logging (#19) (4aa298d)
v2.0.0
2.0.0 (2020-09-01)
Features
BREAKING CHANGES
- See changelog for Probot v10
v1.0.5
1.0.5 (2020-09-01)
Bug Fixes
- disable event subscription verification (#9) (f01ebf8), closes #1