Skip to content

Releases: JamesIves/fetch-api-data-action

2.0.1

08 Jan 14:18
Compare
Choose a tag to compare

Minor Changes

  • Fixes an issue when using the debug flag caused by a missing property in the action.yml file.

2.0.0

18 Dec 14:47
13f3c94
Compare
Choose a tag to compare

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 underscores LIKE_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

17 Nov 16:41
Compare
Choose a tag to compare

Minor Changes

  • Dependency updates.

1.0.17

17 Nov 06:07
Compare
Choose a tag to compare

Minor Changes

  • Dependencies (again).

1.0.16

17 Nov 06:02
Compare
Choose a tag to compare

Minor Changes

  • Dependency bumps to fix an issue in a dependency which was causing set-env, resulting in a workflow failure.

1.0.15

29 Jul 12:02
ee8e25c
Compare
Choose a tag to compare

Major Changes

  • Fixed an issue that was preventing builds from passing from 1.0.11.

1.0.11

16 May 22:08
Compare
Choose a tag to compare

Minor Changes

  • Fixed README for GitHub registry publish.

1.0.9

16 May 21:56
Compare
Choose a tag to compare

Minor Changes

  • More workflow changes related to publishing.

1.0.8

16 May 21:52
Compare
Choose a tag to compare

Minor Changes

  • Fixes scopes package name issue.

1.0.7

16 May 21:43
Compare
Choose a tag to compare

Minor Changes

  • Fixed the GitHub registry issue.
  • Fixed unit tests by replacing the fetch-request-mock library with nock.