-
-
Notifications
You must be signed in to change notification settings - Fork 24
Permalink
Choose a base ref
{{ refName }}
default
Choose a head ref
{{ refName }}
default
Comparing changes
Choose two branches to see what’s changed or to start a new pull request.
If you need to, you can also or
learn more about diff comparisons.
Open a pull request
Create a new pull request by comparing changes across two branches. If you need to, you can also .
Learn more about diff comparisons here.
base repository: tukaani-project/xz-java
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.11
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
...
head repository: tukaani-project/xz-java
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.12
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
- 7 commits
- 10 files changed
- 1 contributor
Commits on Nov 19, 2025
-
Configuration menu - View commit details
-
Copy full SHA for 9a755ec - Browse repository at this point
Copy the full SHA 9a755ecView commit details -
Configuration menu - View commit details
-
Copy full SHA for e52d9ad - Browse repository at this point
Copy the full SHA e52d9adView commit details
Commits on Jan 17, 2026
-
Fix ArrayCache usage with LZMAInputStream
Add a missing initialization to LZDecoder's constructor. The same initialization is done in LZDecoder.reset(). LZMA2InputStream always calls it before decoding anything, thus this bug didn't break LZMA2 decoding. However, LZMAInputStream has no reason to call LZDecoder.reset(), and thus the missing initialization in the constructor meant that ArrayCache didn't work with LZMAInputStream. Fixes: c5569e4 ("Add ArrayCache support to LZMA and LZMA2 coders, part 1.") Fixes: #23
Configuration menu - View commit details
-
Copy full SHA for 12c75fd - Browse repository at this point
Copy the full SHA 12c75fdView commit details
Commits on Mar 1, 2026
-
Fix ArrayIndexOutOfBoundsException in the LZMA/LZMA2 encoder
The extra size constant from UnalignedLongLEMatchLengthFinder didn't take effect as intended. This could result in ArrayIndexOutOfBoundsException. Frequent calls to flush() increased the likelyhood of hitting the bug but it could be triggered without flushing too: ant clean jar head -c12853521 /dev/zero \ | java -ea -jar build/jar/XZEncDemo.jar > /dev/null The bug is present in versions 1.10 and 1.11. If one cannot upgrade, one should set the property org.tukaani.xz.MatchLengthFinder=Basic which disables UnalignedLongLEMatchLengthFinder. Example: head -c12853521 /dev/zero \ | java -Dorg.tukaani.xz.MatchLengthFinder=Basic \ -jar build/jar/XZEncDemo.jar > /dev/null Fixes: 9fd7bc0 ("Add MatchLength.EXTRA_SIZE and use it in LZEncoder") Fixes: #24Configuration menu - View commit details
-
Copy full SHA for ac1aeb1 - Browse repository at this point
Copy the full SHA ac1aeb1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0ecee25 - Browse repository at this point
Copy the full SHA 0ecee25View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3061152 - Browse repository at this point
Copy the full SHA 3061152View commit details -
Configuration menu - View commit details
-
Copy full SHA for 107a519 - Browse repository at this point
Copy the full SHA 107a519View commit details
Loading
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff v1.11...v1.12