Skip to content

Releases: usefulness/diffuse-action

v0.11.0

06 Jun 18:33
41995fe
Compare
Choose a tag to compare

What's Changed

  • Switch to python venv to support new macos-latest and beta ubuntu-24.04 runners in #84

Full Changelog: v0.10.1...v0.11.0

v0.10.1

13 Mar 02:10
f9f49c1
Compare
Choose a tag to compare

What's Changed

  • Fix debug flag being always enabled, which resulted in unecessary logs being printed out in #80

Full Changelog: v0.10.0...v0.10.1

v0.10.0

07 Mar 15:04
45442de
Compare
Choose a tag to compare

What's Changed

  • The action can now be invoked on Windows machines
  • The action now supports zipped artifact format the original repo publishes artifacts with

Full Changelog: v0.9.0...v0.10.0

v0.9.0

27 Oct 20:25
d816fd1
Compare
Choose a tag to compare

What's Changed

  • Migrate away from deprecated set-output command in #62

Full Changelog: v0.8.0...v0.9.0

v0.8.0

10 Apr 12:13
7d354d2
Compare
Choose a tag to compare

Fixed

  • Fixed escaping non-printable characters from diiffuse output, resulting in empty GitHub comments

v0.7.0

13 Feb 21:18
af52fdb
Compare
Choose a tag to compare

Added

  • It is now possible to pass latest as the lib-version argument, the action will find and use latest published release (the one with the latest tag on owner/repo/releases page)
  • Action now allows to run any Diffuse's fork using diffuse-repo input.
    Sample:
  - id: diffuse
    uses: usefulness/diffuse-action@v0.7.0
    with:
      old-file-path: old/file/path/old_file.apk
      new-file-path: new/file/path/new_file.apk
      diffuse-repo: JakeWharton/diffuse
      lib-version: 0.1.0

the default setup is now:

  - id: diffuse
    uses: usefulness/diffuse-action@v0.7.0
    with:
      old-file-path: old/file/path/old_file.apk
      new-file-path: new/file/path/new_file.apk
      diffuse-repo: usefulness/diffuse
      lib-version: latest

Removed

[breaking] Removed fork-version in favor of overriding the source diffuse-repo and using single lib-version input.

v0.6.0

06 Feb 08:37
0a89396
Compare
Choose a tag to compare

Added

Action now allows to run Diffuse's fork: https://github.com/usefulness/diffuse as per the discussion in: JakeWharton/diffuse#111 (needed for AGP 7.1.x)
Passing lib-version will download and use passed version of the original diffuse build
Passing fork-version will use the fork version

Changed

[breaking] The action uses the fork by default

v0.5.1

25 Mar 21:24
f7736a4
Compare
Choose a tag to compare

Fixed

Fixed size diff text formatting to bold the most imortant part

v0.5.0

25 Mar 21:12
05469e3
Compare
Choose a tag to compare

Added

Added new size specific output to counteract JakeWharton/diffuse#99, see action.yml for current list of available parameters

Fixed

Fixed wrong table formatting

v0.4.0

24 Mar 20:55
ec4e1e8
Compare
Choose a tag to compare

Added

Added new diff-gh-comment-no-dex output to counteract JakeWharton/diffuse#96, see action.yml for current list of available parameters

Changed

Action outputs are now limited to 4500 characters to fit into Github's ::set-output restrictions