- Breaking change: Package is now ESM-only
- CommonJS consumers must use dynamic
import()instead ofrequire() - Example:
const { getOctokit, context } = await import('@actions/github')
- CommonJS consumers must use dynamic
- Fix TypeScript compilation by migrating to ESM, enabling proper imports from
@octokit/core/types
- Update
undicito6.23.0 - Update
@actions/http-clientto3.0.2
- Update @octokit dependencies
@octokit/core^7.0.6@octokit/plugin-paginate-rest^14.0.0@octokit/plugin-rest-endpoint-methods^17.0.0@octokit/request^10.0.7@octokit/request-error^7.1.0
- Breaking change: Minimum Node.js version is now 20 (previously 18)
- Update to v3.0.1 of
@actions/http-client
- Support the latest Octokit in @actions/github #1553
- Drop support of NodeJS v14, v16
- Export default octokit options #1188
-
- Update to v2.0.1 of
@actions/http-client#1087
- Update to v2.0.1 of
- Update to v2.0.0 of
@actions/http-client
- Add execution state information to context
- Update Octokit Dependencies with some api breaking changes
- The full list of api changes are here
GitHub.plugin()no longer supports an array as first argument. Multiple args must be passed in instead.
- Swap to @octokit/core and use plugins to leverage lastest octokit apis
- Add comment field to payload context
- Upgrade Octokit version to 4.x to include typescript types #228
- Accept Octokit.Options in the GitHub constructor #113
- Simplify WebPack configs by removing dynamic require - #101
- Initial release