Skip to content

Commit

Permalink
Quick fix to go.mod replace.
Browse files Browse the repository at this point in the history
  • Loading branch information
janpfeifer committed Jan 28, 2025
1 parent f71534c commit 07c14d8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 6 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# GoNB Changelog

## v0.10.9, 2025/01/28

* Reverted `replace` directive: contrary to what the AI suggested, it doesn't work when running from outside a cloned repository.
* Temporary solution, as this leaves gonb "at the mercy" of the default GOPROXY proxy.golang.org continuously proxying
the now extinct packages under `go.lsp.dev`. See https://github.com/janpfeifer/gonb/issues/157

## v0.10.8, 2025/01/28

* Added a `replace` directive from `go.lsp.dev/{jsonrpc2,uri,protocol}` to `github.com/go-language-server/{jsonrpc2,uri,protocol}`
Expand Down
6 changes: 0 additions & 6 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,6 @@ require (
k8s.io/klog/v2 v2.130.1
)

replace go.lsp.dev/jsonrpc2 => github.com/go-language-server/jsonrpc2 v0.10.0

replace go.lsp.dev/protocol => github.com/go-language-server/protocol v0.12.0

replace go.lsp.dev/uri => github.com/go-language-server/uri v0.3.0

require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/go-logr/logr v1.4.2 // indirect
Expand Down

0 comments on commit 07c14d8

Please sign in to comment.