Skip to content

Releases: JamesIves/fetch-api-data-action

2.1.0

10 Jan 14:41

Choose a tag to compare

Changes

  • Implements a new option called format which 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 debug option 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

08 Jan 14:18

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

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/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 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

Choose a tag to compare

Minor Changes

  • Dependency updates.

1.0.17

17 Nov 06:07

Choose a tag to compare

Minor Changes

  • Dependencies (again).

1.0.16

17 Nov 06:02

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

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

Choose a tag to compare

Minor Changes

  • Fixed README for GitHub registry publish.

1.0.9

16 May 21:56

Choose a tag to compare

Minor Changes

  • More workflow changes related to publishing.

1.0.8

16 May 21:52

Choose a tag to compare

Minor Changes

  • Fixes scopes package name issue.