Releases: JamesIves/fetch-api-data-action
Releases · JamesIves/fetch-api-data-action
2.1.0
Changes
- Implements a new option called
formatwhich allows you to modify the format of the data being saved. You can leverage this to save text data if that is responded via the API request.
Minor Changes
- Fixes an issue with the
debugoption as it wasn't properly parsing the response. - Introduces major version tags. You can now point your workflow to JamesIves/fetch-api-data-action@v2` if you'd like to always have the most cutting edge changes outside of using the release branch directly.
- Dependency bumps.
- README updates.
2.0.1
Minor Changes
- Fixes an issue when using the
debugflag caused by a missing property in theaction.ymlfile.
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-casefor 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/fetch-api-data-action@2.0.0
with:
endpoint: https://example.com
configuration: '{ "method": "GET", "headers": {"Authorization": "Bearer ${{ secrets.API_TOKEN }}"} }'
save-name: youtube- Added a
debugflag 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.