chore: bump go-openaudio to pick up genre normalization#963
Merged
Conversation
Bump both go-openaudio pins (root module and the /pkg/etl submodule) to the merge of go-openaudio #367, which normalizes genre at the ETL write path (entity_manager track create/update). With the indexer writing canonical genre values at rest, variant collapsing now happens on write upstream — the durable fix behind the read-side stopgap added in #962. github.com/OpenAudio/go-openaudio -> v1.4.1-0.20260618012656-5aa118b67bc1 github.com/OpenAudio/go-openaudio/pkg/etl -> v1.4.1-0.20260618012656-5aa118b67bc1 go build ./... and go vet ./... pass. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
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.
What
Bumps both go-openaudio pins to the merge commit of go-openaudio #367 (
5aa118b67bc19474a56f81a6665f2f47854d72e4), which normalizes genre at the ETL write path (entity_managertrack create/update).Both pins are kept in lockstep (the root module and the
/pkg/etlsubmodule), as before.Why
This repo runs the production indexer by vendoring go-openaudio's ETL (
indexer/indexer.go→etl.Indexer.Run()); it does not implement track indexing itself. #367 makes the indexer write canonical genre values at rest, so genre variants (hip-hop/hiphop→Hip-Hop/Rap, etc.) now collapse on write upstream. That is the durable fix behind the read-side, display-only stopgap merged in #962 — and unlike the API read path, write-side normalization also fixes genre filtering.Verification
go getboth modules @ the SHA, thengo mod tidy— onlygo.mod/go.sumchanged.go build ./...— passesgo vet ./...— passesHeads-up for reviewers
With the indexer now normalizing genre, the ETL parity check against the legacy Python discovery-provider may begin flagging
genrecolumn diffs (Python doesn't normalize). That's expected and is handled on the go-openaudio side — flag to whoever owns the parity job if it surfaces.🤖 Generated with Claude Code