chore: rename module to github.com/stellar/streamhash#5
Merged
Conversation
Update the module path in go.mod, all internal import paths across the package and cmd/bench, and the go get line in the README to reflect the move to the stellar organization. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
There was a problem hiding this comment.
Pull request overview
This PR mechanically renames the Go module path from github.com/tamirms/streamhash to github.com/stellar/streamhash so that the module/import paths match the repository’s new organization location.
Changes:
- Updated
go.modmodule path togithub.com/stellar/streamhash. - Rewrote all internal import paths (and
cmd/benchimports) to use the new module path. - Updated the
go getinstallation line inREADME.md.
Reviewed changes
Copilot reviewed 33 out of 33 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| go.mod | Updates module path to github.com/stellar/streamhash. |
| README.md | Updates install command to new module path. |
| algorithm.go | Updates internal package imports to new module path. |
| builder.go | Updates internal package imports to new module path. |
| builder_unsorted.go | Updates internal package imports to new module path. |
| builder_unsorted_finish.go | Updates internal package imports to new module path. |
| builder_unsorted_test.go | Updates internal package imports to new module path. |
| builder_lifecycle_test.go | Updates internal package imports to new module path. |
| cmd/bench/main.go | Updates streamhash import to new module path. |
| cmd/bench/bench_files.go | Updates streamhash import to new module path. |
| corruption_context_test.go | Updates internal package imports to new module path. |
| error_test.go | Updates internal package imports to new module path. |
| header.go | Updates internal package imports to new module path. |
| index.go | Updates internal package imports to new module path. |
| integration_unique_test.go | Updates internal package imports to new module path. |
| open_variants_test.go | Updates internal package imports to new module path. |
| parallel_pipeline_fuzz_test.go | Updates internal package imports to new module path. |
| sentinels.go | Updates internal package imports to new module path. |
| test_helpers_test.go | Updates internal package imports to new module path. |
| internal/bijection/builder.go | Updates internal package imports to new module path. |
| internal/bijection/builder_test.go | Updates internal package imports to new module path. |
| internal/bijection/decode.go | Updates internal package imports to new module path. |
| internal/bijection/decode_test.go | Updates internal package imports to new module path. |
| internal/bijection/mix.go | Updates internal package imports to new module path. |
| internal/bijection/solver_build.go | Updates internal package imports to new module path. |
| internal/bijection/solver_test.go | Updates internal package imports to new module path. |
| internal/ptrhash/builder.go | Updates internal package imports to new module path. |
| internal/ptrhash/builder_test.go | Updates internal package imports to new module path. |
| internal/ptrhash/decoder.go | Updates internal package imports to new module path. |
| internal/ptrhash/decoder_test.go | Updates internal package imports to new module path. |
| internal/ptrhash/pilot.go | Updates internal package imports to new module path. |
| internal/ptrhash/solver.go | Updates internal package imports to new module path. |
| internal/ptrhash/solver_test.go | Updates internal package imports to new module path. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
tamirms
enabled auto-merge (squash)
June 6, 2026 01:40
leighmcculloch
approved these changes
Jun 8, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Update the Go module path from
github.com/tamirms/streamhashtogithub.com/stellar/streamhashto match the repository's location under the stellar organization.Changes
go.mod— module pathcmd/bench(internal/bits,internal/sherr,internal/bijection,internal/ptrhash,internal/encoding)README.md— thego getlineMechanical rename only; no behavior change. Verified clean with
go build ./...,go vet ./..., andgofmt -l ..🤖 Generated with Claude Code