Skip to content

Releases: JohnnyMorganz/stylua-action

v4.0.0

10 Feb 10:20
b666182
Compare
Choose a tag to compare

Breaking Changes

New Contributors

Full Changelog: v3.0.0...v4.0.0

v3.0.0

01 May 23:10
Compare
Choose a tag to compare

Breaking Changes

  • The breaking change to version in v2.0.0 did not actually propagate to the extension code. This has been fixed.
    As a reminder, version is now a required input. To get v1 behaviour, supply version: latest
- uses: actions/checkout@v3
- uses: JohnnyMorganz/stylua-action@v2
  with:
    token: ${{ secrets.GITHUB_TOKEN }}
    version: latest
    # CLI arguments
    args: --check .

Changes

  • version now properly supports semver version specifiers such as ^0.17.1 and ranges >=0.15.0 <0.17.0 (thanks, @rcloran!)

v2.0.0

03 Dec 17:40
Compare
Choose a tag to compare

Breaking Changes

  • Upgrade to use Node v16
  • version is now a required input. To get v1 behaviour, supply version: latest
- uses: actions/checkout@v3
- uses: JohnnyMorganz/stylua-action@v2
  with:
    token: ${{ secrets.GITHUB_TOKEN }}
    version: latest
    # CLI arguments
    args: --check .

NOTE: using latest may cause the action to fail if StyLua updates and the formatting changes!

Changes

  • No longer provide a warning when no version is provided / version is "latest"

v1.1.2

22 Sep 14:54
Compare
Choose a tag to compare

Fixed

  • Fixed legacy artifact names no longer working when pinned to version <= 0.14.3

v1.1.1

21 Sep 19:57
Compare
Choose a tag to compare

Fixed

  • Fixed incorrect artifact chosen due to the introduction of linux-aarch64 artifacts, causing ELF not found errors

Full Changelog: v1.1.0...v1.1.1

v1.1.0

12 Sep 18:17
Compare
Choose a tag to compare
  • Support downloading artifacts with 'windows' in the name
  • Allow specifying version as 'latest' explicitly (which is currently the default)
  • Warn when version is not explicitly specified. This may soon become a hard error

Full Changelog: 1.0.0...v1.1.0

v1.0.0

11 May 21:43
Compare
Choose a tag to compare

Initial release