Releases: usefulness/diffuse-action
v0.11.0
What's Changed
- Switch to python
venv
to support newmacos-latest
and betaubuntu-24.04
runners in #84
Full Changelog: v0.10.1...v0.11.0
v0.10.1
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
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
What's Changed
- Migrate away from deprecated
set-output
command in #62
Full Changelog: v0.8.0...v0.9.0
v0.8.0
Fixed
- Fixed escaping non-printable characters from
diiffuse
output, resulting in empty GitHub comments
v0.7.0
Added
- It is now possible to pass
latest
as thelib-version
argument, the action will find and use latest published release (the one with thelatest
tag on owner/repo/releases page) - Action now allows to run any Diffuse's fork using
diffuse-repo
input.
Sample:
- id: diffuse
uses: usefulness/[email protected]
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/[email protected]
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
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
Fixed
Fixed size diff text formatting to bold the most imortant part
v0.5.0
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
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