Skip to content

Commit 09cf7e9

Browse files
committed
go.mod: remove old replaces, update deps, use Go 1.21
This also makes Windows pass tests again (fixed in Go 1.20: golang/go#51007) Signed-off-by: Brad Fitzpatrick <[email protected]>
1 parent afb0716 commit 09cf7e9

File tree

7 files changed

+134
-226
lines changed

7 files changed

+134
-226
lines changed

.github/workflows/tests-lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
test:
1111
strategy:
1212
matrix:
13-
go-version: [1.19.x]
13+
go-version: [1.21.x]
1414
platform: [ubuntu-latest]
1515
runs-on: ${{ matrix.platform }}
1616

.github/workflows/tests-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
test:
1111
strategy:
1212
matrix:
13-
go-version: [1.19.x]
13+
go-version: [1.21.x]
1414
platform: [ubuntu-latest]
1515
runs-on: ${{ matrix.platform }}
1616

.github/workflows/tests-macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
test:
1111
strategy:
1212
matrix:
13-
go-version: [1.19.x]
13+
go-version: [1.21.x]
1414
platform: [macos-latest]
1515
runs-on: ${{ matrix.platform }}
1616

.github/workflows/tests-tidy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
test:
1111
strategy:
1212
matrix:
13-
go-version: [1.19.x]
13+
go-version: [1.21.x]
1414
platform: [ubuntu-latest]
1515
runs-on: ${{ matrix.platform }}
1616

.github/workflows/tests-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
test:
1111
strategy:
1212
matrix:
13-
go-version: [1.19.x]
13+
go-version: [1.21.x]
1414
platform: [windows-latest]
1515
runs-on: ${{ matrix.platform }}
1616

go.mod

Lines changed: 34 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ require (
88
cloud.google.com/go/datastore v1.1.0
99
cloud.google.com/go/logging v1.3.0
1010
cloud.google.com/go/storage v1.10.0
11-
filippo.io/age v1.0.0
11+
filippo.io/age v1.1.1
1212
github.com/aws/aws-sdk-go v1.44.51
1313
github.com/bradfitz/latlong v0.0.0-20170410180902-f3db6d0dff40
1414
github.com/garyburd/go-oauth v0.0.0-20180319155456-bca2e7f09a17
@@ -21,45 +21,46 @@ require (
2121
github.com/lib/pq v1.10.2
2222
github.com/mailgun/mailgun-go v0.0.0-20171127222028-17e8bd11e87c
2323
github.com/mattn/go-mastodon v0.0.5-0.20190517015615-8f6192e26b66
24-
github.com/miekg/dns v1.1.43
24+
github.com/miekg/dns v1.1.57
2525
github.com/nf/cr2 v0.0.0-20140528043846-05d46fef4f2f
26-
github.com/pkg/sftp v1.13.2
26+
github.com/pkg/sftp v1.13.6
2727
github.com/plaid/plaid-go v0.0.0-20161222051224-02b6af68061b
2828
github.com/russross/blackfriday v2.0.0+incompatible
2929
github.com/rwcarlsen/goexif v0.0.0-20190401172101-9e8deecbddbd
3030
github.com/syndtr/goleveldb v1.0.1-0.20210305035536-64b5b1c73954
3131
github.com/tgulacsi/picago v0.0.0-20171229130838-9e1ac2306c70
32-
go4.org v0.0.0-20190218023631-ce4c26f7be8e
33-
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519
34-
golang.org/x/image v0.0.0-20210628002857-a66eb6448b8d
35-
golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd
36-
golang.org/x/oauth2 v0.0.0-20210628180205-a41e5a781914
37-
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
38-
golang.org/x/sys v0.4.0
39-
golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac
32+
go4.org v0.0.0-20230225012048-214862532bf5
33+
golang.org/x/crypto v0.17.0
34+
golang.org/x/image v0.14.0
35+
golang.org/x/net v0.19.0
36+
golang.org/x/oauth2 v0.15.0
37+
golang.org/x/sync v0.4.0
38+
golang.org/x/sys v0.15.0
39+
golang.org/x/time v0.5.0
4040
google.golang.org/api v0.42.0
4141
gopkg.in/mgo.v2 v2.0.0-20160818020120-3f83fa500528
4242
honnef.co/go/js/dom v0.0.0-20200509013220-d4405f7ab4d8
43-
honnef.co/go/tools v0.3.3
43+
honnef.co/go/tools v0.4.6
4444
modernc.org/kv v1.0.4
45-
modernc.org/sqlite v1.14.3
45+
modernc.org/sqlite v1.28.0
4646
myitcv.io v0.0.0-20201125173645-a7167afc9e13
4747
rsc.io/pdf v0.1.1
4848
rsc.io/qr v0.2.0
4949
)
5050

5151
require (
52-
github.com/BurntSushi/toml v0.4.1 // indirect
52+
github.com/BurntSushi/toml v1.2.1 // indirect
53+
github.com/dustin/go-humanize v1.0.1 // indirect
5354
github.com/edsrzf/mmap-go v1.1.0 // indirect
5455
github.com/facebookgo/ensure v0.0.0-20160127193407-b4ab57deab51 // indirect
5556
github.com/facebookgo/stack v0.0.0-20160209184415-751773369052 // indirect
5657
github.com/facebookgo/subset v0.0.0-20150612182917-8dac2c3c4870 // indirect
5758
github.com/fsnotify/fsnotify v1.4.9 // indirect
5859
github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0 // indirect
5960
github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect
60-
github.com/golang/protobuf v1.5.2 // indirect
61+
github.com/golang/protobuf v1.5.3 // indirect
6162
github.com/golang/snappy v0.0.3 // indirect
62-
github.com/google/go-cmp v0.5.6 // indirect
63+
github.com/google/go-cmp v0.5.9 // indirect
6364
github.com/google/martian/v3 v3.2.1 // indirect
6465
github.com/google/uuid v1.3.0 // indirect
6566
github.com/googleapis/gax-go/v2 v2.0.5 // indirect
@@ -70,11 +71,11 @@ require (
7071
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
7172
github.com/kisielk/gotool v1.0.0 // indirect
7273
github.com/kr/fs v0.1.0 // indirect
73-
github.com/mattn/go-isatty v0.0.12 // indirect
74+
github.com/mattn/go-isatty v0.0.16 // indirect
7475
github.com/neelance/astrewrite v0.0.0-20160511093645-99348263ae86 // indirect
7576
github.com/neelance/sourcemap v0.0.0-20151028013722-8c68805598ab // indirect
7677
github.com/pkg/errors v0.9.1 // indirect
77-
github.com/remyoudompheng/bigfft v0.0.0-20200410134404-eec4a21b6bb0 // indirect
78+
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
7879
github.com/rogpeppe/go-internal v1.3.0 // indirect
7980
github.com/shurcooL/httpfs v0.0.0-20190707220628-8d4bc4ba7749 // indirect
8081
github.com/shurcooL/sanitized_anchor_name v1.0.0 // indirect
@@ -84,44 +85,28 @@ require (
8485
github.com/visualfc/fastmod v1.3.6 // indirect
8586
github.com/visualfc/goversion v1.0.0 // indirect
8687
go.opencensus.io v0.23.0 // indirect
87-
golang.org/x/exp/typeparams v0.0.0-20220218215828-6cf2b201936e // indirect
88+
golang.org/x/exp/typeparams v0.0.0-20221208152030-732eee02a75a // indirect
8889
golang.org/x/lint v0.0.0-20210508222113-6edffad5e616 // indirect
89-
golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4 // indirect
90-
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 // indirect
91-
golang.org/x/text v0.3.7 // indirect
92-
golang.org/x/tools v0.1.11-0.20220513221640-090b14e8501f // indirect
90+
golang.org/x/mod v0.12.0 // indirect
91+
golang.org/x/term v0.15.0 // indirect
92+
golang.org/x/text v0.14.0 // indirect
93+
golang.org/x/tools v0.13.0 // indirect
9394
google.golang.org/appengine v1.6.7 // indirect
9495
google.golang.org/genproto v0.0.0-20210716133855-ce7ef5c701ea // indirect
9596
google.golang.org/grpc v1.39.0 // indirect
96-
google.golang.org/protobuf v1.27.1 // indirect
97-
lukechampine.com/uint128 v1.1.1 // indirect
98-
modernc.org/cc/v3 v3.35.18 // indirect
99-
modernc.org/ccgo/v3 v3.12.95 // indirect
97+
google.golang.org/protobuf v1.31.0 // indirect
98+
lukechampine.com/uint128 v1.2.0 // indirect
99+
modernc.org/cc/v3 v3.40.0 // indirect
100+
modernc.org/ccgo/v3 v3.16.13 // indirect
100101
modernc.org/fileutil v1.0.1-0.20200808163328-2079183a536e // indirect
101102
modernc.org/internal v1.0.3 // indirect
102-
modernc.org/libc v1.11.104 // indirect
103+
modernc.org/libc v1.29.0 // indirect
103104
modernc.org/lldb v1.0.2 // indirect
104-
modernc.org/mathutil v1.4.1 // indirect
105-
modernc.org/memory v1.0.5 // indirect
106-
modernc.org/opt v0.1.1 // indirect
105+
modernc.org/mathutil v1.6.0 // indirect
106+
modernc.org/memory v1.7.2 // indirect
107+
modernc.org/opt v0.1.3 // indirect
107108
modernc.org/sortutil v1.1.0 // indirect
108-
modernc.org/strutil v1.1.1 // indirect
109-
modernc.org/token v1.0.0 // indirect
109+
modernc.org/strutil v1.1.3 // indirect
110+
modernc.org/token v1.0.1 // indirect
110111
modernc.org/zappy v1.0.3 // indirect
111112
)
112-
113-
exclude (
114-
// google.golang.org/api/servicemanagement/[email protected] deleted APIService.Enable
115-
google.golang.org/api v0.43.0
116-
google.golang.org/api v0.44.0
117-
google.golang.org/api v0.44.0-impersonate-preview
118-
google.golang.org/api v0.45.0
119-
google.golang.org/api v0.46.0
120-
google.golang.org/api v0.47.0
121-
google.golang.org/api v0.48.0
122-
google.golang.org/api v0.49.0
123-
google.golang.org/api v0.50.0
124-
google.golang.org/api v0.51.0
125-
)
126-
127-
replace google.golang.org/grpc v1.14.0 => github.com/bradfitz/grpc-go v0.0.0-20170203184515-188a132adcfb

0 commit comments

Comments
 (0)