Skip to content

Commit 4168c29

Browse files
Update parser to 23.2 release (#11)
1 parent 302c9ad commit 4168c29

File tree

164 files changed

+49004
-34355
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

164 files changed

+49004
-34355
lines changed

.github/workflows/go.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Set up Go
2020
uses: actions/setup-go@v3
2121
with:
22-
go-version: 1.19
22+
go-version: 1.21
2323

2424
- name: Build
2525
run: go build -v ./...

go.mod

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
module github.com/cockroachdb/cockroachdb-parser
22

3-
go 1.18
3+
go 1.21.1
4+
5+
toolchain go1.21.3
46

57
require (
8+
github.com/bazelbuild/rules_go v0.46.0
69
github.com/biogo/store v0.0.0-20201120204734-aad293a2328f
710
github.com/blevesearch/snowballstem v0.9.0
811
github.com/cockroachdb/apd/v3 v3.1.0
@@ -21,26 +24,27 @@ require (
2124
github.com/spf13/pflag v1.0.5
2225
github.com/stretchr/testify v1.7.0
2326
github.com/twpayne/go-geom v1.4.1
24-
golang.org/x/text v0.3.7
25-
golang.org/x/tools v0.2.0
27+
golang.org/x/exp v0.0.0-20240205201215-2c58cdc269a3
28+
golang.org/x/text v0.14.0
29+
golang.org/x/tools v0.17.0
2630
)
2731

2832
require (
2933
github.com/cockroachdb/logtags v0.0.0-20211118104740-dabe8e521a4f // indirect
3034
github.com/davecgh/go-spew v1.1.1 // indirect
3135
github.com/getsentry/sentry-go v0.12.0 // indirect
32-
github.com/golang/protobuf v1.5.2 // indirect
36+
github.com/golang/protobuf v1.5.3 // indirect
3337
github.com/kr/pretty v0.3.0 // indirect
3438
github.com/kr/text v0.2.0 // indirect
3539
github.com/petermattis/goid v0.0.0-20180202154549-b0b1615b78e5 // indirect
3640
github.com/pkg/errors v0.9.1 // indirect
3741
github.com/pmezard/go-difflib v1.0.0 // indirect
3842
github.com/rogpeppe/go-internal v1.8.1 // indirect
3943
github.com/twpayne/go-kml v1.5.2 // indirect
40-
golang.org/x/mod v0.6.0 // indirect
41-
golang.org/x/sys v0.1.0 // indirect
44+
golang.org/x/mod v0.14.0 // indirect
45+
golang.org/x/sys v0.15.0 // indirect
4246
google.golang.org/genproto v0.0.0-20210624195500-8bfb893ecb84 // indirect
43-
google.golang.org/grpc v1.38.0 // indirect
44-
google.golang.org/protobuf v1.26.0 // indirect
47+
google.golang.org/grpc v1.40.1 // indirect
48+
google.golang.org/protobuf v1.31.0 // indirect
4549
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
4650
)

go.sum

Lines changed: 33 additions & 11 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)