File tree Expand file tree Collapse file tree 5 files changed +12
-6
lines changed
Expand file tree Collapse file tree 5 files changed +12
-6
lines changed Original file line number Diff line number Diff line change 1- golang 1.23.3
1+ golang 1.24.0
Original file line number Diff line number Diff line change 11# ChangeLog
22
3+ ## Unreleased
4+
5+ - Upgrades Dockerfile to use Go 1.24.0 (released Feb 11 2025).
6+ (https://github.com/sourcegraph/scip-go/pull/146 )
7+
38## v0.1.22
49
510- Fixes a panic when using a custom GOPACKAGESDRIVER along
Original file line number Diff line number Diff line change 1515# <other stuff to ignore>
1616# And use this digest in FROM
1717
18- ARG base_sha=73f06be4578c9987ce560087e2e2ea6485fb605e3910542cadd8fa09fc5f3e31
18+ ARG base_sha=2b1cbf278ce05a2a310a3d695ebb176420117a8cfcfcc4e5e68a1bef5f6354da
1919
20- FROM golang:1.23.3 @sha256:${base_sha} as builder
20+ FROM golang:1.24.0 @sha256:${base_sha} AS builder
2121
2222COPY . /sources
2323WORKDIR /sources
2424RUN go build -o scip-go ./cmd/scip-go
2525
2626# Keep in sync with builder image
27- FROM golang:1.23.3 @sha256:${base_sha} as final
27+ FROM golang:1.24.0 @sha256:${base_sha} AS final
2828
2929COPY --from=builder /sources/scip-go /usr/bin/
3030CMD ["scip-go" ]
Original file line number Diff line number Diff line change 11module github.com/sourcegraph/scip-go
22
3- go 1.23.3
3+ go 1.24.0
44
55require (
66 github.com/charmbracelet/log v0.4.0
Original file line number Diff line number Diff line change 11// THIS FILE IS GENERATED. SEE ./scripts/gen_std_lib.sh
2- // Generated by: go version go1.23.3 darwin/arm64
2+ // Generated by: go version go1.24.0 darwin/arm64
33package loader
44
55var contained = struct {}{}
@@ -55,4 +55,5 @@ var stdPackages = map[string]struct{}{
5555 "unique" : contained ,
5656 "unsafe" : contained ,
5757 "vendor" : contained ,
58+ "weak" : contained ,
5859}
You can’t perform that action at this time.
0 commit comments