Releases: JamesIves/fetch-api-data-action
Releases · JamesIves/fetch-api-data-action
2.0.1
Minor Changes
- Fixes an issue when using the
debug
flag caused by a missing property in theaction.yml
file.
2.0.0
Version 2.0.0 🎉
It's been long overdue, but version 2.0.0 is here.
Major Changes
- The action now uses lowercase
snake-case
for parameters instead of uppercase with underscoresLIKE_THIS
. You can see an example of this below:
name: Refresh Feed
on: [push]
jobs:
refresh-feed:
runs-on: ubuntu-latest
steps:
- name: Fetch API Data 📦
uses: JamesIves/[email protected]
with:
endpoint: https://example.com
configuration: '{ "method": "GET", "headers": {"Authorization": "Bearer ${{ secrets.API_TOKEN }}"} }'
save-name: youtube
- Added a
debug
flag which allows you to log your way through the workflow. With this flag turned on you'll see all API responses the action receives in the terminal. You can find details surrounding this in the README. - Migrated to Node 14 from 12 for development.
Minor Changes
- Tons of dependency and security updates from third party libraries.
- Migrated ESLint/Prettier config.
- Added workflow helpers for quicker releases.
- Improved integration testing.
- Added GitHub Discussions support.
- Added Sponsors section to README.
1.0.19
Minor Changes
- Dependency updates.
1.0.17
Minor Changes
- Dependencies (again).
1.0.16
Minor Changes
- Dependency bumps to fix an issue in a dependency which was causing
set-env
, resulting in a workflow failure.
1.0.15
Major Changes
- Fixed an issue that was preventing builds from passing from
1.0.11
.
1.0.11
Minor Changes
- Fixed README for GitHub registry publish.
1.0.9
Minor Changes
- More workflow changes related to publishing.
1.0.8
Minor Changes
- Fixes scopes package name issue.
1.0.7
Minor Changes
- Fixed the GitHub registry issue.
- Fixed unit tests by replacing the fetch-request-mock library with nock.