You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(go): move package root from packages/go/v1/ to packages/go/ (#97)
* fix(go): move package root from packages/go/v1/ to packages/go/
The Go proxy expected go.mod at packages/go/go.mod but it was nested
at packages/go/v1/go.mod. The /v1 suffix is also rejected by the proxy
as invalid (only v2+ major version suffixes are allowed).
Closes#96
* docs: add unreleased changelog entry for Go module path fix (#97)
* fix(publish): extract Go module tagging to robust script, align with kreuzberg pattern
* fix(ci): resolve Go e2e generator path and all-grammars registry test failures
- Fix Go e2e generator template: replace directive pointed to packages/go/v1
(stale path), causing conflicting replacements when CI regenerates go.mod
- Add TSLP_LANGUAGES=all support to build.rs selected_languages() so the
all-grammars task can compile every language without per-language listing
- Set TSLP_LANGUAGES=all in the rust:e2e:all-grammars task to replace the
removed lang-* cargo feature mechanism
* fix(test): use valid RTF source in smoke_rtf fixture
Parsing bare 'x' with the RTF grammar produces a root node with 0
children. Use a minimal valid RTF document so the root_child_count_min
assertion passes.
* fix(ci): use curated language subset for all-grammars static test
Compiling all 305 parsers statically causes malloc heap corruption from
scanner symbol collisions. Use the same representative subset approach
as the Go e2e test. Reverts the unsafe TSLP_LANGUAGES=all shortcut.
Copy file name to clipboardExpand all lines: CHANGELOG.md
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## [Unreleased]
9
9
10
+
### Fixed
11
+
12
+
- Go: move package root from `packages/go/v1/` to `packages/go/` so the Go module proxy can resolve `go.mod` at the correct path — `go get github.com/kreuzberg-dev/tree-sitter-language-pack/packages/go` now works (#97)
0 commit comments