Skip to content

Commit 1f31c21

Browse files
AlexTugarevroboquat
authored andcommitted
[papi] add iam-api dependency
go mod tidy
1 parent 9565b9e commit 1f31c21

File tree

5 files changed

+20
-12
lines changed

5 files changed

+20
-12
lines changed

components/iam/go.mod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,13 @@ require (
88
github.com/gitpod-io/gitpod/components/gitpod-db/go v0.0.0-00010101000000-000000000000
99
github.com/gitpod-io/gitpod/components/iam-api/go v0.0.0-00010101000000-000000000000
1010
github.com/go-chi/chi/v5 v5.0.8
11+
github.com/google/uuid v1.3.0
1112
github.com/sirupsen/logrus v1.9.0
1213
github.com/spf13/cobra v1.4.0
1314
github.com/stretchr/testify v1.8.1
1415
golang.org/x/oauth2 v0.0.0-20220822191816-0ebed06d0094
16+
google.golang.org/grpc v1.51.0
17+
gorm.io/gorm v1.24.1
1518
)
1619

1720
require (
@@ -20,7 +23,6 @@ require (
2023
github.com/davecgh/go-spew v1.1.1 // indirect
2124
github.com/go-sql-driver/mysql v1.6.0 // indirect
2225
github.com/golang/protobuf v1.5.2 // indirect
23-
github.com/google/uuid v1.3.0 // indirect
2426
github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 // indirect
2527
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 // indirect
2628
github.com/hashicorp/golang-lru v0.5.1 // indirect
@@ -49,14 +51,12 @@ require (
4951
golang.org/x/xerrors v0.0.0-20220609144429-65e65417b02f // indirect
5052
google.golang.org/appengine v1.6.7 // indirect
5153
google.golang.org/genproto v0.0.0-20220616135557-88e70c0c3a90 // indirect
52-
google.golang.org/grpc v1.51.0 // indirect
5354
google.golang.org/protobuf v1.28.1 // indirect
5455
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
5556
gopkg.in/square/go-jose.v2 v2.6.0 // indirect
5657
gopkg.in/yaml.v3 v3.0.1 // indirect
5758
gorm.io/datatypes v1.0.7 // indirect
5859
gorm.io/driver/mysql v1.4.4 // indirect
59-
gorm.io/gorm v1.24.1 // indirect
6060
)
6161

6262
replace github.com/gitpod-io/gitpod/common-go => ../common-go // leeway

components/public-api-server/BUILD.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ packages:
77
- "go.sum"
88
deps:
99
- components/common-go:lib
10+
- components/iam-api/go:lib
1011
- components/public-api/go:lib
1112
- components/usage-api/go:lib
1213
- components/gitpod-protocol/go:lib

components/public-api-server/go.mod

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ require (
77
github.com/bufbuild/connect-go v1.0.0
88
github.com/gitpod-io/gitpod/common-go v0.0.0-00010101000000-000000000000
99
github.com/gitpod-io/gitpod/components/gitpod-db/go v0.0.0-00010101000000-000000000000
10+
github.com/gitpod-io/gitpod/components/iam-api/go v0.0.0-00010101000000-000000000000
1011
github.com/gitpod-io/gitpod/components/public-api/go v0.0.0-00010101000000-000000000000
1112
github.com/gitpod-io/gitpod/gitpod-protocol v0.0.0-00010101000000-000000000000
1213
github.com/gitpod-io/gitpod/usage-api v0.0.0-00010101000000-000000000000
@@ -23,7 +24,7 @@ require (
2324
github.com/spf13/cobra v1.4.0
2425
github.com/stretchr/testify v1.8.1
2526
github.com/stripe/stripe-go/v72 v72.122.0
26-
google.golang.org/grpc v1.50.1
27+
google.golang.org/grpc v1.51.0
2728
google.golang.org/protobuf v1.28.1
2829
gorm.io/gorm v1.24.1
2930
)
@@ -53,10 +54,10 @@ require (
5354
github.com/prometheus/procfs v0.8.0 // indirect
5455
github.com/slok/go-http-metrics v0.10.0 // indirect
5556
github.com/spf13/pflag v1.0.5 // indirect
56-
golang.org/x/net v0.0.0-20220225172249-27dd8689420f // indirect
57+
golang.org/x/net v0.0.0-20220722155237-a158d28d115b // indirect
5758
golang.org/x/sync v0.0.0-20220601150217-0de741cfad7f // indirect
58-
golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8 // indirect
59-
golang.org/x/text v0.3.7 // indirect
59+
golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f // indirect
60+
golang.org/x/text v0.4.0 // indirect
6061
golang.org/x/time v0.0.0-20220922220347-f3bd1da661af // indirect
6162
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
6263
google.golang.org/genproto v0.0.0-20201019141844-1ed22bb0c154 // indirect
@@ -71,6 +72,8 @@ replace github.com/gitpod-io/gitpod/gitpod-protocol => ../gitpod-protocol/go //
7172

7273
replace github.com/gitpod-io/gitpod/components/gitpod-db/go => ../gitpod-db/go // leeway
7374

75+
replace github.com/gitpod-io/gitpod/components/iam-api/go => ../iam-api/go // leeway
76+
7477
replace github.com/gitpod-io/gitpod/components/public-api/go => ../public-api/go // leeway
7578

7679
replace github.com/gitpod-io/gitpod/usage-api => ../usage-api/go // leeway

components/public-api-server/go.sum

Lines changed: 8 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gitpod-ws.code-workspace

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
{ "path": "components/gitpod-cli" },
1010
{ "path": "components/gitpod-protocol" },
1111
{ "path": "components/iam" },
12+
{ "path": "components/iam-api" },
1213
{ "path": "components/ide-metrics" },
1314
{ "path": "components/ide-service" },
1415
{ "path": "components/image-builder-bob" },

0 commit comments

Comments
 (0)