-
Notifications
You must be signed in to change notification settings - Fork 6
Comparing changes
Open a pull request
base repository: pjbgf/sha1cd
base: v0.5.0
head repository: pjbgf/sha1cd
compare: v0.6.0
- 17 commits
- 18 files changed
- 3 contributors
Commits on Dec 9, 2025
-
build: Change fuzzer to run weekly for 60m
Signed-off-by: Paulo Gomes <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for e38f0de - Browse repository at this point
Copy the full SHA e38f0deView commit details -
build: Use stable and oldstable Go aliases
Signed-off-by: Paulo Gomes <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for f3cafaa - Browse repository at this point
Copy the full SHA f3cafaaView commit details -
Merge pull request #200 from pjbgf/gha
Change the nightly fuzzer to weekly
Configuration menu - View commit details
-
Copy full SHA for 179c22c - Browse repository at this point
Copy the full SHA 179c22cView commit details
Commits on Jan 1, 2026
-
build(deps): Bump golang from 1.24 to 1.25
Bumps golang from 1.24 to 1.25. --- updated-dependencies: - dependency-name: golang dependency-version: '1.25' dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 553f0d1 - Browse repository at this point
Copy the full SHA 553f0d1View commit details -
build(deps): Bump github/codeql-action from 3.29.2 to 4.31.9
Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.29.2 to 4.31.9. - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@181d5ee...5d4e8d1) --- updated-dependencies: - dependency-name: github/codeql-action dependency-version: 4.31.9 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 2de9216 - Browse repository at this point
Copy the full SHA 2de9216View commit details -
build(deps): Bump actions/checkout from 4.2.2 to 6.0.1
Bumps [actions/checkout](https://github.com/actions/checkout) from 4.2.2 to 6.0.1. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@11bd719...8e8c483) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.1 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 4c71ce7 - Browse repository at this point
Copy the full SHA 4c71ce7View commit details
Commits on Jan 19, 2026
-
Merge pull request #204 from pjbgf/dependabot/github_actions/actions/…
…checkout-6.0.1 build(deps): Bump actions/checkout from 4.2.2 to 6.0.1
Configuration menu - View commit details
-
Copy full SHA for 9ab168c - Browse repository at this point
Copy the full SHA 9ab168cView commit details -
Merge pull request #203 from pjbgf/dependabot/github_actions/github/c…
…odeql-action-4.31.9 build(deps): Bump github/codeql-action from 3.29.2 to 4.31.9
Configuration menu - View commit details
-
Copy full SHA for 3bed41f - Browse repository at this point
Copy the full SHA 3bed41fView commit details -
Merge pull request #202 from pjbgf/dependabot/docker/golang-1.25
build(deps): Bump golang from 1.24 to 1.25
Configuration menu - View commit details
-
Copy full SHA for 8750e70 - Browse repository at this point
Copy the full SHA 8750e70View commit details -
build(deps): Bump actions/setup-go from 5.5.0 to 6.1.0
Bumps [actions/setup-go](https://github.com/actions/setup-go) from 5.5.0 to 6.1.0. - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](actions/setup-go@d35c59a...4dc6199) --- updated-dependencies: - dependency-name: actions/setup-go dependency-version: 6.1.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for d7b3b63 - Browse repository at this point
Copy the full SHA d7b3b63View commit details -
Merge pull request #201 from pjbgf/dependabot/github_actions/actions/…
…setup-go-6.1.0 build(deps): Bump actions/setup-go from 5.5.0 to 6.1.0
Configuration menu - View commit details
-
Copy full SHA for 5470964 - Browse repository at this point
Copy the full SHA 5470964View commit details
Commits on Apr 27, 2026
-
perf: Pass collision-detection arrays by pointer
Avoids per-block copies of [80]uint32 m1 (320B), DvInfo.Dm (320B), [3][5]uint32 cs (60B) and [5]uint32 h (20B) through checkCollision, hasCollided, rectifyCompressionState, and ubc.CalculateDvMask. Hash8K (SHA-NI) -12.6%, Hash1K -14.5%, Hash320Bytes -11.6%. Assisted-by: Claude Opus 4.7 <[email protected]> Signed-off-by: Paulo Gomes <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 21916d9 - Browse repository at this point
Copy the full SHA 21916d9View commit details -
perf(amd64): Replace LOADCS extract chain with shuffle+store
Four VPEXTRD's serial on the source register are replaced with one VPSHUFD (reverse dword order) + one VMOVDQU. Same memory layout, fewer store-port µops. Hash320Bytes (SHA-NI) -4.0%, Hash1K -2.3%, Hash8K -1.6%. Entire-Checkpoint: d009daa58401 Assisted-by: Claude Opus 4.7 <[email protected]> Signed-off-by: Paulo Gomes <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 11223cf - Browse repository at this point
Copy the full SHA 11223cfView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2f0cc80 - Browse repository at this point
Copy the full SHA 2f0cc80View commit details -
Merge pull request #205 from pjbgf/performance
Performance improvements for AMD64 and Generic
Configuration menu - View commit details
-
Copy full SHA for ba31b91 - Browse repository at this point
Copy the full SHA ba31b91View commit details -
Remove self-registration via crypto.RegisterHash
This library is primarily used by go-git, and it does not rely on the crypto package's registration mechanism to register its implementation. Therefore, it will no longer automatically self-register itself. Signed-off-by: Paulo Gomes <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 6ff015a - Browse repository at this point
Copy the full SHA 6ff015aView commit details -
Merge pull request #206 from pjbgf/drop-self-registration
Remove self-registration via `crypto.RegisterHash`
Configuration menu - View commit details
-
Copy full SHA for f90af0d - Browse repository at this point
Copy the full SHA f90af0dView commit details
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 v0.5.0...v0.6.0