bazel: update buildfiles (#47744)

Follow-up to https://github.com/sourcegraph/sourcegraph/pull/47540 which
updated the grpc gateway and required to update the patch.

It also adds the necessary `#keep` comments to avoid having gazelle
messing up the current buildfiles.

Release: this doesn't affect the app in anyway, so we're safe. 

## Test plan

<!-- All pull requests REQUIRE a test plan:
https://docs.sourcegraph.com/dev/background-information/testing_principles
-->

```
bazel build //internal/...
``` 

suceeded.
This commit is contained in:
Jean-Hadrien Chabran 2023-02-16 16:32:59 +01:00 committed by GitHub
parent 38aa6642de
commit ffb0642497
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
29 changed files with 406 additions and 202 deletions

View File

@ -107,6 +107,7 @@ go_test(
"//internal/gitserver",
"//internal/gitserver/gitdomain",
"//internal/inventory",
"//internal/own/codeowners",
"//internal/own/codeowners/v1:codeowners",
"//internal/rcache",
"//internal/repoupdater",

View File

@ -66,6 +66,7 @@ go_test(
embed = [":userpasswd"],
deps = [
"//cmd/frontend/backend",
"//cmd/frontend/internal/session",
"//internal/actor",
"//internal/conf",
"//internal/database",

View File

@ -16,6 +16,7 @@ go_library(
"//internal/rbac",
"//internal/rcache",
"//internal/redispool",
"//internal/types",
"//lib/errors",
"@com_github_gomodule_redigo//redis",
"@com_github_inconshreveable_log15//:log15",

View File

@ -23,6 +23,7 @@ go_library(
"//internal/honey",
"//internal/honey/search",
"//internal/lazyregexp",
"//internal/own/codeowners",
"//internal/search",
"//internal/search/client",
"//internal/search/result",

View File

@ -56,9 +56,9 @@ go_library(
"//internal/gitserver",
"//internal/gitserver/adapters",
"//internal/gitserver/gitdomain",
"//internal/gitserver/proto",
"//internal/gitserver/protocol",
"//internal/gitserver/search",
"//internal/gitserver/v1:gitserver",
"//internal/grpc/streamio",
"//internal/honey",
"//internal/hostname",
@ -84,6 +84,7 @@ go_library(
"@com_github_opentracing_opentracing_go//log",
"@com_github_prometheus_client_golang//prometheus",
"@com_github_prometheus_client_golang//prometheus/promauto",
"@com_github_sourcegraph_conc//:conc",
"@com_github_sourcegraph_log//:log",
"@com_github_sourcegraph_mountinfo//:mountinfo",
"@io_opentelemetry_go_otel//attribute",

View File

@ -29,7 +29,7 @@ go_library(
"//internal/extsvc/npm",
"//internal/extsvc/pypi",
"//internal/extsvc/rubygems",
"//internal/gitserver/proto",
"//internal/gitserver/v1:gitserver",
"//internal/goroutine",
"//internal/grpc",
"//internal/grpc/defaults",

View File

@ -79,6 +79,7 @@ go_test(
"store_test.go",
"zip_test.go",
"zipcache_test.go",
"zoekt_search_test.go",
],
embed = [":search"],
deps = [
@ -96,6 +97,7 @@ go_test(
"//schema",
"@com_github_google_go_cmp//cmp",
"@com_github_grafana_regexp//:regexp",
"@com_github_roaringbitmap_roaring//:roaring",
"@com_github_sourcegraph_log//logtest",
"@com_github_sourcegraph_zoekt//:zoekt",
"@com_github_sourcegraph_zoekt//query",

276
deps.bzl
View File

@ -250,8 +250,8 @@ def go_dependencies():
name = "com_github_andygrunwald_go_gerrit",
build_file_proto_mode = "disable_global",
importpath = "github.com/andygrunwald/go-gerrit",
sum = "h1:1YnJPJ13fRjZgWCfxoXhWArjM55qmtKpsoNNOaxYq0g=",
version = "v0.0.0-20221019181918-f7262270e361",
sum = "h1:ohDU8MHAAE/FMlqs+KVlzLpVx3/gJ86rNO+8TZ9nea8=",
version = "v0.0.0-20230211083816-04e01d7217b2",
)
go_repository(
name = "com_github_anmitsu_go_shlex",
@ -717,8 +717,8 @@ def go_dependencies():
name = "com_github_bits_and_blooms_bitset",
build_file_proto_mode = "disable_global",
importpath = "github.com/bits-and-blooms/bitset",
sum = "h1:+YZ8ePm+He2pU3dZlIZiOeAKfrBkXi1lSrXJ/Xzgbu8=",
version = "v1.4.0",
sum = "h1:NpE8frKRLGHIcEzkR+gZhiioW1+WbYV6fKwD6ZIpQT8=",
version = "v1.5.0",
)
go_repository(
name = "com_github_bketelsen_crypt",
@ -1050,8 +1050,8 @@ def go_dependencies():
name = "com_github_census_instrumentation_opencensus_proto",
build_file_proto_mode = "disable_global",
importpath = "github.com/census-instrumentation/opencensus-proto",
sum = "h1:t/LhUZLVitR1Ow2YOnduCsavhwFUklBMoGVYUCqmCqk=",
version = "v0.3.0",
sum = "h1:iKLQ0xPNFxR/2hzXZMrBo8f1j86j5WHzznCCQxV/b8g=",
version = "v0.4.1",
)
go_repository(
name = "com_github_certifi_gocertifi",
@ -1072,8 +1072,8 @@ def go_dependencies():
name = "com_github_cespare_xxhash_v2",
build_file_proto_mode = "disable_global",
importpath = "github.com/cespare/xxhash/v2",
sum = "h1:YRXhKfTDauu4ajMg1TPgFO5jnlC2HCbmLXMcTG5cbYE=",
version = "v2.1.2",
sum = "h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44=",
version = "v2.2.0",
)
go_repository(
name = "com_github_charmbracelet_glamour",
@ -1179,8 +1179,8 @@ def go_dependencies():
"//third_party/com_github_cloudflare_circl:dh_x25519_BUILD_bazel.patch", # keep
"//third_party/com_github_cloudflare_circl:dh_x448_BUILD_bazel.patch", # keep
],
sum = "h1:Anq00jxDtoyX3+aCaYUZ0vXC5r4k4epberfWGDXV1zE=",
version = "v1.3.0",
sum = "h1:VWp8dY3yH69fdM7lM6A1+NhhVoDu9vqK0jOgmkQHFWk=",
version = "v1.3.2",
)
go_repository(
@ -1210,15 +1210,15 @@ def go_dependencies():
name = "com_github_cncf_udpa_go",
build_file_proto_mode = "disable_global",
importpath = "github.com/cncf/udpa/go",
sum = "h1:hzAQntlaYRkVSFEfj9OTWlVV1H155FMD8BTKktLv0QI=",
version = "v0.0.0-20210930031921-04548b0d99d4",
sum = "h1:QQ3GSy+MqSHxm/d8nCtnAiZdYFd45cYZPs8vOOIYKfk=",
version = "v0.0.0-20220112060539-c52dc94e7fbe",
)
go_repository(
name = "com_github_cncf_xds_go",
build_file_proto_mode = "disable_global",
importpath = "github.com/cncf/xds/go",
sum = "h1:PYXxkRUBGUMa5xgMVMDl62vEklZvKpVaxQeN9ie7Hfk=",
version = "v0.0.0-20220314180256-7f1daf1720fc",
sum = "h1:ACGZRIr7HsgBKHsueQ1yM4WaVaXh21ynwqsF8M8tXhA=",
version = "v0.0.0-20230105202645-06c439db220b",
)
go_repository(
name = "com_github_cockroachdb_apd",
@ -2068,8 +2068,8 @@ def go_dependencies():
name = "com_github_envoyproxy_protoc_gen_validate",
build_file_proto_mode = "disable_global",
importpath = "github.com/envoyproxy/protoc-gen-validate",
sum = "h1:TvDcILLkjuZV3ER58VkBmncKsLUBqBDxra/XctCzuMM=",
version = "v0.6.13",
sum = "h1:PS7VIOgmSVhWUEeZwTe7z7zouA22Cr590PzXKbZHOVY=",
version = "v0.9.1",
)
go_repository(
name = "com_github_etcd_io_bbolt",
@ -2294,8 +2294,8 @@ def go_dependencies():
name = "com_github_getsentry_sentry_go",
build_file_proto_mode = "disable_global",
importpath = "github.com/getsentry/sentry-go",
sum = "h1:UustVWnOoDFHBS7IJUB2QK/nB5pap748ZEp0swnQJak=",
version = "v0.17.0",
sum = "h1:MtBW5H9QgdcJabtZcuJG80BMOwaBpkRDZkxRkNC1sN0=",
version = "v0.18.0",
)
go_repository(
name = "com_github_gfleury_go_bitbucket_v1",
@ -2452,8 +2452,8 @@ def go_dependencies():
name = "com_github_go_git_go_billy_v5",
build_file_proto_mode = "disable_global",
importpath = "github.com/go-git/go-billy/v5",
sum = "h1:CPiOUAzKtMRvolEKw+bG1PLRpT7D3LIs3/3ey4Aiu34=",
version = "v5.3.1",
sum = "h1:Uwp5tDRkPr+l/TnbHOQzp+tmJfLceOlbVucgpTz8ix4=",
version = "v5.4.1",
)
go_repository(
name = "com_github_go_git_go_git_fixtures_v4",
@ -2466,8 +2466,8 @@ def go_dependencies():
name = "com_github_go_git_go_git_v5",
build_file_proto_mode = "disable_global",
importpath = "github.com/go-git/go-git/v5",
sum = "h1:tmTaR5nN6RJs6G9+tmd3MRBNXSk6YTI9+8nv1WrIKzI=",
version = "v5.4.3-0.20220529141257-bc1f419cebcf",
sum = "h1:v8lgZa5k9ylUw+OR/roJHTxR4QItsNFI5nKtAXFuynw=",
version = "v5.5.2",
)
go_repository(
@ -3395,8 +3395,8 @@ def go_dependencies():
name = "com_github_google_pprof",
build_file_proto_mode = "disable_global",
importpath = "github.com/google/pprof",
sum = "h1:Xim43kblpZXfIBQsbuBVKCudVG457BR2GZFIz3uw3hQ=",
version = "v0.0.0-20221118152302-e6195bd50e26",
sum = "h1:4/hN5RUoecvl+RmJRE2YxKWtnnQls6rQjjW5oV7qg2U=",
version = "v0.0.0-20230207041349-798e818bf904",
)
go_repository(
name = "com_github_google_renameio",
@ -3453,8 +3453,8 @@ def go_dependencies():
name = "com_github_googleapis_enterprise_certificate_proxy",
build_file_proto_mode = "disable_global",
importpath = "github.com/googleapis/enterprise-certificate-proxy",
sum = "h1:RY7tHKZcRlk788d5WSo/e83gOyyy742E8GSs771ySpg=",
version = "v0.2.1",
sum = "h1:yk9/cqRKtT9wXZSsRH9aurXEpJX+U6FLtpYTdC3R06k=",
version = "v0.2.3",
)
go_repository(
name = "com_github_googleapis_gax_go",
@ -3480,20 +3480,6 @@ def go_dependencies():
version = "v0.5.5",
)
go_repository(
name = "com_github_googleapis_go_type_adapters",
build_file_proto_mode = "disable_global",
importpath = "github.com/googleapis/go-type-adapters",
sum = "h1:9XdMn+d/G57qq1s8dNc5IesGCXHf6V2HZ2JwRxfA2tA=",
version = "v1.0.0",
)
go_repository(
name = "com_github_googleapis_google_cloud_go_testing",
build_file_proto_mode = "disable_global",
importpath = "github.com/googleapis/google-cloud-go-testing",
sum = "h1:tlyzajkF3030q6M8SvmJSemC9DTHL/xaMa18b65+JM4=",
version = "v0.0.0-20200911160855-bcd43fbb19e8",
)
go_repository(
name = "com_github_googlecloudplatform_cloudsql_proxy",
build_file_proto_mode = "disable_global",
@ -3710,6 +3696,22 @@ def go_dependencies():
sum = "h1:+9834+KizmvFV7pXQGSXQTsaWhq2GjuNUt0aUU0YBYw=",
version = "v1.3.0",
)
go_repository(
name = "com_github_grpc_ecosystem_go_grpc_middleware_providers_openmetrics_v2",
build_file_proto_mode = "disable_global",
importpath = "github.com/grpc-ecosystem/go-grpc-middleware/providers/openmetrics/v2",
sum = "h1:kKuOg7gEBO7otn5QpZ4FnlbZBz1p5EZ7sX6RDbE36Bc=",
version = "v2.0.0-rc.3",
)
go_repository(
name = "com_github_grpc_ecosystem_go_grpc_middleware_v2",
build_file_proto_mode = "disable_global",
importpath = "github.com/grpc-ecosystem/go-grpc-middleware/v2",
replace = "github.com/grpc-ecosystem/go-grpc-middleware/v2",
sum = "h1:o95KDiV/b1xdkumY5YbLR0/n2+wBxUpgf3HgfKgTyLI=",
version = "v2.0.0-rc.3",
)
go_repository(
name = "com_github_grpc_ecosystem_go_grpc_prometheus",
build_file_proto_mode = "disable_global",
@ -3731,9 +3733,10 @@ def go_dependencies():
importpath = "github.com/grpc-ecosystem/grpc-gateway/v2",
patch_args = ["-p1"],
patches = ["//third_party/com_github_grpc_ecosystem_grpc_gateway_v2:grpc_gateway.patch"],
sum = "h1:t7uX3JBHdVwAi3G7sSSdbsk8NfgA+LnUS88V/2EKaA0=",
version = "v2.14.0",
sum = "h1:1JYBfzqrWPcCclBwxFCPAou9n+q86mfnu7NAeHfte7A=",
version = "v2.15.0",
)
go_repository(
name = "com_github_grpc_ecosystem_grpc_opentracing",
build_file_proto_mode = "disable_global",
@ -3840,8 +3843,8 @@ def go_dependencies():
name = "com_github_hashicorp_go_retryablehttp",
build_file_proto_mode = "disable_global",
importpath = "github.com/hashicorp/go-retryablehttp",
sum = "h1:sUiuQAnLlbvmExtFQs72iFW/HXeUn8Z1aJLQ4LJJbTQ=",
version = "v0.7.1",
sum = "h1:AcYqCvkpalPnPF2pn0KamgwamS42TqUDDYFRKq/RAd0=",
version = "v0.7.2",
)
go_repository(
name = "com_github_hashicorp_go_rootcerts",
@ -5205,8 +5208,8 @@ def go_dependencies():
name = "com_github_moby_sys_mountinfo",
build_file_proto_mode = "disable_global",
importpath = "github.com/moby/sys/mountinfo",
sum = "h1:1O+1cHA1aujwEwwVMa2Xm2l+gIpUHyd3+D+d7LZh1kM=",
version = "v0.4.1",
sum = "h1:BzJjoreD5BMFNmD9Rus6gdd1pLuecOFPt8wC+Vygl78=",
version = "v0.6.2",
)
go_repository(
name = "com_github_moby_sys_symlink",
@ -5778,6 +5781,14 @@ def go_dependencies():
sum = "h1:lFuQV/oaUMGcD2tqt+01ROSmJs75VG1ToEOkZIZ4nE4=",
version = "v0.11.4",
)
go_repository(
name = "com_github_pjbgf_sha1cd",
build_file_proto_mode = "disable_global",
importpath = "github.com/pjbgf/sha1cd",
sum = "h1:uKQP/7QOzNtKYH7UTohZLcjF5/55EnTw0jO/Ru4jZwI=",
version = "v0.2.3",
)
go_repository(
name = "com_github_pkg_browser",
build_file_proto_mode = "disable_global",
@ -5810,8 +5821,8 @@ def go_dependencies():
name = "com_github_pkg_sftp",
build_file_proto_mode = "disable_global",
importpath = "github.com/pkg/sftp",
sum = "h1:I2qBYMChEhIjOgazfJmV3/mZM256btk6wkCDRmW7JYs=",
version = "v1.13.1",
sum = "h1:VasscCm72135zRysgrJDKsntdmPN+OuU3+nnHYA9wyc=",
version = "v1.10.1",
)
go_repository(
name = "com_github_pmezard_go_difflib",
@ -5831,8 +5842,8 @@ def go_dependencies():
name = "com_github_power_devops_perfstat",
build_file_proto_mode = "disable_global",
importpath = "github.com/power-devops/perfstat",
sum = "h1:ncq/mPwQF4JjgDlrVEn3C11VoGHZN7m8qihwgMEtzYw=",
version = "v0.0.0-20210106213030-5aafc221ea8c",
sum = "h1:0LFwY6Q3gMACTjAbMZBjXAqTOzOwFaj2Ld6cjeQ7Rig=",
version = "v0.0.0-20221212215047-62379fc7944b",
)
go_repository(
name = "com_github_pquerna_cachecontrol",
@ -5911,8 +5922,8 @@ def go_dependencies():
name = "com_github_prometheus_procfs",
build_file_proto_mode = "disable_global",
importpath = "github.com/prometheus/procfs",
sum = "h1:ODq8ZFEaYeCaZOJlZZdJA2AbQR98dSHSM1KW/You5mo=",
version = "v0.8.0",
sum = "h1:wzCHvIvM5SxWqYvwgVL7yJY8Lz3PKn49KQtpgMYJfhI=",
version = "v0.9.0",
)
go_repository(
name = "com_github_prometheus_prometheus",
@ -5946,8 +5957,8 @@ def go_dependencies():
name = "com_github_protonmail_go_crypto",
build_file_proto_mode = "disable_global",
importpath = "github.com/ProtonMail/go-crypto",
sum = "h1:ra2OtmuW0AE5csawV4YXMNGNQQXvLRps3z2Z59OPO+I=",
version = "v0.0.0-20221026131551-cf6655e29de4",
sum = "h1:OUJ54Fkd+AQXYmr9eOUxZfWNzpK3/e/KD40qa2rKHS4=",
version = "v0.0.0-20230214155104-81033d7f4442",
)
go_repository(
@ -6077,8 +6088,8 @@ def go_dependencies():
name = "com_github_roaringbitmap_roaring",
build_file_proto_mode = "disable_global",
importpath = "github.com/RoaringBitmap/roaring",
sum = "h1:58/LJlg/81wfEHd5L9qsHduznOIhyv4qb1yWcSvVq9A=",
version = "v1.2.1",
sum = "h1:yqreLINqIrX22ErkKI0vY47/ivtJr6n+kMhVOVmhWBY=",
version = "v1.2.3",
)
go_repository(
@ -6302,8 +6313,8 @@ def go_dependencies():
name = "com_github_sergi_go_diff",
build_file_proto_mode = "disable_global",
importpath = "github.com/sergi/go-diff",
sum = "h1:XU+rvMAioB0UC3q1MFrIQy4Vo5/4VsRDQQXHsEya6xQ=",
version = "v1.2.0",
sum = "h1:xkr+Oxo4BOQKmkn/B9eMK0g5Kg/983T9DqqPHwYqD+8=",
version = "v1.3.1",
)
go_repository(
name = "com_github_serialx_hashring",
@ -6323,8 +6334,8 @@ def go_dependencies():
name = "com_github_shirou_gopsutil_v3",
build_file_proto_mode = "disable_global",
importpath = "github.com/shirou/gopsutil/v3",
sum = "h1:FnHOFOh+cYAM0C30P+zysPISzlknLC5Z1G4EAElznfQ=",
version = "v3.22.6",
sum = "h1:a9KKO+kGLKEvcPIs4W62v0nu3sciVDOOOPUD0Hz7z/4=",
version = "v3.23.1",
)
go_repository(
name = "com_github_shirou_w32",
@ -6423,6 +6434,14 @@ def go_dependencies():
sum = "h1:trlNQbNUG3OdDrDil03MCb1H2o9nJ1x4/5LYw7byDE0=",
version = "v1.9.0",
)
go_repository(
name = "com_github_skeema_knownhosts",
build_file_proto_mode = "disable_global",
importpath = "github.com/skeema/knownhosts",
sum = "h1:Wvr9V0MxhjRbl3f9nMnKnFfiWTJmtECJ9Njkea3ysW0=",
version = "v1.1.0",
)
go_repository(
name = "com_github_slack_go_slack",
build_file_proto_mode = "disable_global",
@ -6561,8 +6580,8 @@ def go_dependencies():
name = "com_github_sourcegraph_mountinfo",
build_file_proto_mode = "disable_global",
importpath = "github.com/sourcegraph/mountinfo",
sum = "h1:fD9C4qHZWr7girCD8EwBHdmdViIWtdVTBO6k9SInVQo=",
version = "v0.0.0-20221027185101-272dd8baaf4a",
sum = "h1:NSYSPQOE7yyyytLbKQHjxSkPnBagaGQblgVMQrQ1je0=",
version = "v0.0.0-20230106004439-7026e28cef67",
)
go_repository(
name = "com_github_sourcegraph_run",
@ -6592,8 +6611,8 @@ def go_dependencies():
name = "com_github_sourcegraph_zoekt",
build_file_proto_mode = "disable_global",
importpath = "github.com/sourcegraph/zoekt",
sum = "h1:1qvCt/KqQDWpMqFDGLJJnnHTSkfURgDtCKNWKpgj3Bk=",
version = "v0.0.0-20230209084020-eb91026e0baa",
sum = "h1:HewZ+ZWJhLTiHcacFP9EYXACbSrFfvFacX4MR6aoVgE=",
version = "v0.0.0-20230215213603-7424ac84bab3",
)
go_repository(
@ -6840,15 +6859,15 @@ def go_dependencies():
name = "com_github_tklauser_go_sysconf",
build_file_proto_mode = "disable_global",
importpath = "github.com/tklauser/go-sysconf",
sum = "h1:IJ1AZGZRWbY8T5Vfk04D9WOA5WSejdflXxP03OUqALw=",
version = "v0.3.10",
sum = "h1:89WgdJhk5SNwJfu+GKyYveZ4IaJ7xAkecBo+KdJV0CM=",
version = "v0.3.11",
)
go_repository(
name = "com_github_tklauser_numcpus",
build_file_proto_mode = "disable_global",
importpath = "github.com/tklauser/numcpus",
sum = "h1:E53Dm1HjH1/R2/aoCtXtPgzmElmn51aOkhCFSuZq//o=",
version = "v0.4.0",
sum = "h1:kebhY2Qt+3U6RNK7UqpYNA+tJ23IBEGKkB7JQBfDYms=",
version = "v0.6.0",
)
go_repository(
name = "com_github_tmc_grpc_websocket_proxy",
@ -7148,8 +7167,8 @@ def go_dependencies():
name = "com_github_xanzy_go_gitlab",
build_file_proto_mode = "disable_global",
importpath = "github.com/xanzy/go-gitlab",
sum = "h1:mkmuB27RDVZY/iXR61pEUfIqJ15Iivfu1kc3KZtBICI=",
version = "v0.76.0",
sum = "h1:2d6RwUrI3ZC2Xh9urnqiiHCLzWNndrGtje3yByZubdQ=",
version = "v0.80.0",
)
go_repository(
name = "com_github_xanzy_ssh_agent",
@ -7399,8 +7418,8 @@ def go_dependencies():
],
build_file_proto_mode = "disable_global",
importpath = "cloud.google.com/go",
sum = "h1:qkj22L7bgkl6vIeZDlOY2po43Mx/TIa2Wsa7VR+PEww=",
version = "v0.107.0",
sum = "h1:38CZoKGlCnPZjGdyj0ZfpoGae0/wgNfy5F0byyxg0Gk=",
version = "v0.109.0",
)
go_repository(
name = "com_google_cloud_go_accessapproval",
@ -7567,8 +7586,8 @@ def go_dependencies():
name = "com_google_cloud_go_compute",
build_file_proto_mode = "disable_global",
importpath = "cloud.google.com/go/compute",
sum = "h1:hfm2+FfxVmnRlh6LpB7cg1ZNU+5edAHmW679JePztk0=",
version = "v1.14.0",
sum = "h1:FEigFqoDbys2cvFkZ9Fjq4gnHBP55anJ0yQyau2f9oY=",
version = "v1.18.0",
)
go_repository(
name = "com_google_cloud_go_compute_metadata",
@ -8007,8 +8026,8 @@ def go_dependencies():
name = "com_google_cloud_go_profiler",
build_file_proto_mode = "disable_global",
importpath = "cloud.google.com/go/profiler",
sum = "h1:R6y/xAeifaUXxd2x6w+jIwKxoKl8Cv5HJvcvASTPWJo=",
version = "v0.3.0",
sum = "h1:b5got9Be9Ia0HVvyt7PavWxXEht15B9lWnigdvHtxOc=",
version = "v0.3.1",
)
go_repository(
@ -8173,8 +8192,8 @@ def go_dependencies():
],
build_file_proto_mode = "disable_global",
importpath = "cloud.google.com/go/storage",
sum = "h1:YOO045NZI9RKfCj1c5A/ZtuuENUc8OAW+gHdGnDgyMQ=",
version = "v1.27.0",
sum = "h1:F5QDG5ChchaAVQhINh24U99OWHURqrW8OmQcGKXcbgI=",
version = "v1.28.1",
)
go_repository(
name = "com_google_cloud_go_storagetransfer",
@ -8497,8 +8516,8 @@ def go_dependencies():
name = "in_gopkg_natefinch_lumberjack_v2",
build_file_proto_mode = "disable_global",
importpath = "gopkg.in/natefinch/lumberjack.v2",
sum = "h1:1Lc07Kr7qY4U2YPouBjpCLxpiyxIVoxqXgkXLknAOE8=",
version = "v2.0.0",
sum = "h1:bBRl1b0OH9s/DuPhuXpNl+VtCaJXFZ5/uEFST95x9zc=",
version = "v2.2.1",
)
go_repository(
name = "in_gopkg_resty_v1",
@ -8919,15 +8938,15 @@ def go_dependencies():
name = "io_opentelemetry_go_contrib_propagators_jaeger",
build_file_proto_mode = "disable_global",
importpath = "go.opentelemetry.io/contrib/propagators/jaeger",
sum = "h1:Gw+P9NQzw4bjNGZXsoDhwwDWLnk4Y1waF8MQZAq/eYM=",
version = "v1.11.1",
sum = "h1:j6Xah53xRDrR+K1c4Y1uVHA0ESo69xDOblw+3OrVoF4=",
version = "v1.14.0",
)
go_repository(
name = "io_opentelemetry_go_contrib_propagators_ot",
build_file_proto_mode = "disable_global",
importpath = "go.opentelemetry.io/contrib/propagators/ot",
sum = "h1:iezQwYW2sAaXwbXXA6Zg+PLjNnzc+M4hLKvOR6Q/CvI=",
version = "v1.11.1",
sum = "h1:jqxznjMkz/3l4NUsYq4OMbP+zs5twBbCZwSlSt82KXo=",
version = "v1.14.0",
)
go_repository(
name = "io_opentelemetry_go_contrib_zpages",
@ -8941,15 +8960,15 @@ def go_dependencies():
name = "io_opentelemetry_go_otel",
build_file_proto_mode = "disable_global",
importpath = "go.opentelemetry.io/otel",
sum = "h1:IgfC7kqQrRccIKuB7Cl+SRUmsKbEwSGPr0Eu+/ht1SQ=",
version = "v1.12.0",
sum = "h1:1ZAKnNQKwBBxFtww/GwxNUyTf0AxkZzrukO8MeXqe4Y=",
version = "v1.13.0",
)
go_repository(
name = "io_opentelemetry_go_otel_bridge_opentracing",
build_file_proto_mode = "disable_global",
importpath = "go.opentelemetry.io/otel/bridge/opentracing",
sum = "h1:Wx51zQDSZDNo5wxMPhkPwzgpUZLQYYDtT41LCcl7opg=",
version = "v1.11.2",
sum = "h1:qTmCTJC4yNtmTSnPfUijzY1/QlwqU5vXibCn6Ug64JE=",
version = "v1.13.0",
)
go_repository(
name = "io_opentelemetry_go_otel_exporters_jaeger",
@ -8963,29 +8982,29 @@ def go_dependencies():
name = "io_opentelemetry_go_otel_exporters_otlp_internal_retry",
build_file_proto_mode = "disable_global",
importpath = "go.opentelemetry.io/otel/exporters/otlp/internal/retry",
sum = "h1:htgM8vZIF8oPSCxa341e3IZ4yr/sKxgu8KZYllByiVY=",
version = "v1.11.2",
sum = "h1:pa05sNT/P8OsIQ8mPZKTIyiBuzS/xDGLVx+DCt0y6Vs=",
version = "v1.13.0",
)
go_repository(
name = "io_opentelemetry_go_otel_exporters_otlp_otlptrace",
build_file_proto_mode = "disable_global",
importpath = "go.opentelemetry.io/otel/exporters/otlp/otlptrace",
sum = "h1:fqR1kli93643au1RKo0Uma3d2aPQKT+WBKfTSBaKbOc=",
version = "v1.11.2",
sum = "h1:Any/nVxaoMq1T2w0W85d6w5COlLuCCgOYKQhJJWEMwQ=",
version = "v1.13.0",
)
go_repository(
name = "io_opentelemetry_go_otel_exporters_otlp_otlptrace_otlptracegrpc",
build_file_proto_mode = "disable_global",
importpath = "go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc",
sum = "h1:ERwKPn9Aer7Gxsc0+ZlutlH1bEEAUXAUhqm3Y45ABbk=",
version = "v1.11.2",
sum = "h1:Wz7UQn7/eIqZVDJbuNEM6PmqeA71cWXrWcXekP5HZgU=",
version = "v1.13.0",
)
go_repository(
name = "io_opentelemetry_go_otel_exporters_otlp_otlptrace_otlptracehttp",
build_file_proto_mode = "disable_global",
importpath = "go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp",
sum = "h1:Us8tbCmuN16zAnK5TC69AtODLycKbwnskQzaB6DfFhc=",
version = "v1.11.2",
sum = "h1:Ntu7izEOIRHEgQNjbGc7j3eNtYMAiZfElJJ4JiiRDH4=",
version = "v1.13.0",
)
go_repository(
name = "io_opentelemetry_go_otel_exporters_prometheus",
@ -9021,8 +9040,8 @@ def go_dependencies():
name = "io_opentelemetry_go_otel_sdk",
build_file_proto_mode = "disable_global",
importpath = "go.opentelemetry.io/otel/sdk",
sum = "h1:GF4JoaEx7iihdMFu30sOyRx52HDHOkl9xQ8SMqNXUiU=",
version = "v1.11.2",
sum = "h1:BHib5g8MvdqS65yo2vV1s6Le42Hm6rrw08qU6yz5JaM=",
version = "v1.13.0",
)
go_repository(
name = "io_opentelemetry_go_otel_sdk_metric",
@ -9036,8 +9055,8 @@ def go_dependencies():
name = "io_opentelemetry_go_otel_trace",
build_file_proto_mode = "disable_global",
importpath = "go.opentelemetry.io/otel/trace",
sum = "h1:p28in++7Kd0r2d8gSt931O57fdjUyWxkVbESuILAeUc=",
version = "v1.12.0",
sum = "h1:CBgRZ6ntv+Amuj1jDsMhZtlAPT6gbyIRdaIzFhfBSdY=",
version = "v1.13.0",
)
go_repository(
name = "io_opentelemetry_go_proto_otlp",
@ -9157,8 +9176,8 @@ def go_dependencies():
name = "org_golang_google_api",
build_file_proto_mode = "disable_global",
importpath = "google.golang.org/api",
sum = "h1:I2SlFjD8ZWabaIFOfeEDg3pf0BHJDh6iYQ1ic3Yu/UU=",
version = "v0.107.0",
sum = "h1:l+rh0KYUooe9JGbGVx71tbFo4SMbMTXK3I3ia2QSEeU=",
version = "v0.110.0",
)
go_repository(
name = "org_golang_google_appengine",
@ -9185,23 +9204,32 @@ def go_dependencies():
],
build_file_proto_mode = "disable_global",
importpath = "google.golang.org/genproto",
sum = "h1:ru6tJGasqJpgjM4q3Qq2fS3FKQ6CPPSRqgolUVBc994=",
version = "v0.0.0-20230112194545-e10362b5ecf9",
sum = "h1:ijGwO+0vL2hJt5gaygqP2j6PfflOBrRot0IczKbmtio=",
version = "v0.0.0-20230209215440-0dfe4f8abfcc",
)
go_repository(
name = "org_golang_google_grpc",
build_file_proto_mode = "disable_global",
importpath = "google.golang.org/grpc",
sum = "h1:E1eGv1FTqoLIdnBCZufiSHgKjlqG6fKFf6pPWtMTh8U=",
version = "v1.51.0",
sum = "h1:LAv2ds7cmFV/XTS3XG1NneeENYrXGmorPxsBbptIjNc=",
version = "v1.53.0",
)
go_repository(
name = "org_golang_google_grpc_cmd_protoc_gen_go_grpc",
build_file_proto_mode = "disable_global",
importpath = "google.golang.org/grpc/cmd/protoc-gen-go-grpc",
sum = "h1:M1YKkFIboKNieVO5DLUEVzQfGwJD30Nv2jfUgzb5UcE=",
version = "v1.1.0",
sum = "h1:TLkBREm4nIsEcexnCjgQd5GQWaHcqMzwQV0TX9pq8S0=",
version = "v1.2.0",
) # keep
go_repository(
name = "org_golang_google_grpc_examples",
build_file_proto_mode = "disable_global",
importpath = "google.golang.org/grpc/examples",
sum = "h1:qvsHH4rznMyt8C0umnWLr/oTJPjYrtZ2OMnPZaYLIK8=",
version = "v0.0.0-20210424002626-9572fd6faeae",
)
go_repository(
name = "org_golang_google_protobuf",
build_file_proto_mode = "disable_global",
@ -9221,8 +9249,8 @@ def go_dependencies():
name = "org_golang_x_crypto",
build_file_proto_mode = "disable_global",
importpath = "golang.org/x/crypto",
sum = "h1:a06MkbcxBrEFc0w0QIZWXrH/9cCX6KJyWbBOIwAn+7A=",
version = "v0.3.0",
sum = "h1:qfktjS5LUO+fFKeJXZ+ikTRijMmljikvG68fpMMruSc=",
version = "v0.6.0",
)
go_repository(
name = "org_golang_x_exp",
@ -9256,15 +9284,15 @@ def go_dependencies():
name = "org_golang_x_mod",
build_file_proto_mode = "disable_global",
importpath = "golang.org/x/mod",
sum = "h1:LapD9S96VoQRhi/GrNTqeBJFrUjs5UHCAtTlgwA5oZA=",
version = "v0.7.0",
sum = "h1:LUYupSeNrTNCGzR/hVBk2NHZO4hXcVaW1k4Qx7rjPx8=",
version = "v0.8.0",
)
go_repository(
name = "org_golang_x_net",
build_file_proto_mode = "disable_global",
importpath = "golang.org/x/net",
sum = "h1:GyT4nK/YDHSqa1c4753ouYCDajOYKTja9Xb/OHtgvSw=",
version = "v0.5.0",
sum = "h1:rJrUqqhjsgNp7KqAIc25s9pZnjU7TUcSY7HcVZjdn1g=",
version = "v0.7.0",
)
go_repository(
name = "org_golang_x_oauth2",
@ -9293,36 +9321,36 @@ def go_dependencies():
name = "org_golang_x_sys",
build_file_proto_mode = "disable_global",
importpath = "golang.org/x/sys",
sum = "h1:Zr2JFtRQNX3BCZ8YtxRE9hNJYC8J6I1MVbMg6owUp18=",
version = "v0.4.0",
sum = "h1:MUK/U/4lj1t1oPg0HfuXDN/Z1wv31ZJ/YcPiGccS4DU=",
version = "v0.5.0",
)
go_repository(
name = "org_golang_x_term",
build_file_proto_mode = "disable_global",
importpath = "golang.org/x/term",
sum = "h1:O7UWfv5+A2qiuulQk30kVinPoMtoIPeVaKLEgLpVkvg=",
version = "v0.4.0",
sum = "h1:n2a8QNdAb0sZNpU9R1ALUXBbY+w51fCQDN+7EdxNBsY=",
version = "v0.5.0",
)
go_repository(
name = "org_golang_x_text",
build_file_proto_mode = "disable_global",
importpath = "golang.org/x/text",
sum = "h1:3XmdazWV+ubf7QgHSTWeykHOci5oeekaGJBLkrkaw4k=",
version = "v0.6.0",
sum = "h1:4BRB4x83lYWy72KwLD/qYDuTu7q9PjSagHvijDw7cLo=",
version = "v0.7.0",
)
go_repository(
name = "org_golang_x_time",
build_file_proto_mode = "disable_global",
importpath = "golang.org/x/time",
sum = "h1:52I/1L54xyEQAYdtcSuxtiT84KGYTBGXwayxmIpNJhE=",
version = "v0.2.0",
sum = "h1:rg5rLMjNzMS1RkNLzCG38eapWhnYLFYXDXj2gOlr8j4=",
version = "v0.3.0",
)
go_repository(
name = "org_golang_x_tools",
build_file_proto_mode = "disable_global",
importpath = "golang.org/x/tools",
sum = "h1:+bSpV5HIeWkuvgaMfI3UmKRThoTA5ODJTUd8T17NO+4=",
version = "v0.5.0",
sum = "h1:BOw41kyTf3PuCW1pVQf8+Cyg8pMlkYB1oo9iJ6D/lKM=",
version = "v0.6.0",
)
go_repository(
name = "org_golang_x_xerrors",

View File

@ -27,7 +27,9 @@ go_library(
"//dev/sg/internal/check",
"//dev/sg/internal/docker",
"//dev/sg/internal/generate/golang",
"//dev/sg/internal/generate/proto",
"//dev/sg/internal/repo",
"//dev/sg/internal/run",
"//dev/sg/internal/std",
"//dev/sg/root",
"//internal/download",

View File

@ -37,6 +37,7 @@ go_library(
"//internal/conf",
"//internal/database",
"//internal/database/basestore",
"//internal/errcode",
"//internal/gqlutil",
"//internal/metrics",
"//internal/observation",

View File

@ -41,11 +41,10 @@ go_test(
"//enterprise/internal/licensing",
"//internal/auth",
"//internal/database",
"//internal/database/basestore",
"//internal/extsvc",
"//internal/types",
"@com_github_derision_test_go_mockgen//testutil/require",
"@com_github_inconshreveable_log15//:log15",
"@com_github_sourcegraph_log//logtest",
"@com_github_stretchr_testify//assert",
],
)

View File

@ -52,5 +52,6 @@ go_test(
"@com_github_keegancsmith_sqlf//:sqlf",
"@com_github_sourcegraph_log//logtest",
"@com_github_stretchr_testify//assert",
"@com_github_stretchr_testify//require",
],
)

View File

@ -11,6 +11,7 @@ go_library(
deps = [
"//internal/gqlutil",
"//internal/jsonc",
"//internal/types",
"@com_github_graph_gophers_graphql_go//:graphql-go",
"@com_github_graph_gophers_graphql_go//errors",
],

View File

@ -38,6 +38,7 @@ go_library(
"//internal/workerutil/dbworker",
"//internal/workerutil/dbworker/store",
"//lib/errors",
"//lib/group",
"@com_github_derision_test_glock//:glock",
"@com_github_keegancsmith_sqlf//:sqlf",
"@com_github_lib_pq//:pq",

View File

@ -15,6 +15,7 @@ go_library(
"//internal/conf",
"//internal/conf/conftypes",
"//internal/database",
"//internal/extsvc",
"//internal/observation",
"//internal/types",
"//lib/errors",

View File

@ -1,4 +1,4 @@
load("@io_bazel_rules_go//go:def.bzl", "go_library")
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
go_library(
name = "background",
@ -27,6 +27,33 @@ go_library(
"//internal/types",
"//lib/errors",
"//schema",
"@com_github_derision_test_glock//:glock",
"@com_github_json_iterator_go//:go",
],
)
go_test(
name = "background_test",
srcs = [
"job_cratesyncer_test.go",
"mocks_test.go",
],
embed = [":background"],
deps = [
"//internal/api",
"//internal/authz",
"//internal/codeintel/dependencies/shared",
"//internal/conf/reposource",
"//internal/database",
"//internal/encryption",
"//internal/gitserver",
"//internal/gitserver/gitdomain",
"//internal/gitserver/protocol",
"//internal/observation",
"//internal/types",
"//lib/errors",
"//schema",
"@com_github_derision_test_glock//:glock",
"@org_golang_x_exp//slices",
],
)

View File

@ -25,8 +25,8 @@ go_library(
"//internal/featureflag",
"//internal/fileutil",
"//internal/gitserver/gitdomain",
"//internal/gitserver/proto",
"//internal/gitserver/protocol",
"//internal/gitserver/v1:gitserver",
"//internal/grpc/defaults",
"//internal/grpc/streamio",
"//internal/honey",
@ -74,8 +74,8 @@ go_test(
"//internal/database",
"//internal/errcode",
"//internal/gitserver/gitdomain",
"//internal/gitserver/proto",
"//internal/gitserver/protocol",
"//internal/gitserver/v1:gitserver",
"//internal/grpc",
"//internal/grpc/defaults",
"//internal/httpcli",

View File

@ -13,7 +13,7 @@ go_library(
"//internal/api",
"//internal/database",
"//internal/gitserver",
"//internal/gitserver/proto",
"//internal/gitserver/v1:gitserver",
"//internal/grpc",
"//internal/grpc/defaults",
"//internal/httpcli",

View File

@ -4,30 +4,34 @@ load("@io_bazel_rules_go//proto:def.bzl", "go_proto_library")
load("@rules_buf//buf:defs.bzl", "buf_lint_test")
proto_library(
#keep
name = "proto_proto",
srcs = ["gitserver.proto"],
visibility = ["//:__subpackages__"],
)
go_proto_library(
name = "proto_go_proto",
#keep
name = "v1_go_proto",
compilers = [
"//:gen-go-grpc",
"@io_bazel_rules_go//proto:go_proto",
],
importpath = "github.com/sourcegraph/sourcegraph/internal/gitserver/proto",
importpath = "github.com/sourcegraph/sourcegraph/internal/gitserver/v1",
proto = ":proto_proto",
visibility = ["//:__subpackages__"],
)
go_library(
name = "proto",
embed = [":proto_go_proto"],
importpath = "github.com/sourcegraph/sourcegraph/internal/gitserver/proto",
#keep
name = "gitserver",
embed = [":v1_go_proto"],
importpath = "github.com/sourcegraph/sourcegraph/internal/gitserver/v1",
visibility = ["//:__subpackages__"],
)
buf_lint_test(
name = "proto_proto_lint",
#keep
name = "v1_proto_lint",
targets = [":proto_proto"],
)

View File

@ -7,8 +7,11 @@ go_library(
visibility = ["//:__subpackages__"],
deps = [
"//internal/actor",
"//internal/env",
"//internal/grpc",
"//internal/trace/policy",
"@com_github_grpc_ecosystem_go_grpc_middleware_providers_openmetrics_v2//:openmetrics",
"@com_github_prometheus_client_golang//prometheus",
"@com_github_sourcegraph_log//:log",
"@io_opentelemetry_go_contrib_instrumentation_google_golang_org_grpc_otelgrpc//:otelgrpc",
"@org_golang_google_grpc//:go_default_library",

View File

@ -2,12 +2,16 @@ load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
go_library(
name = "codeowners",
srcs = ["parse.go"],
srcs = [
"owner_types.go",
"parse.go",
],
importpath = "github.com/sourcegraph/sourcegraph/internal/own/codeowners",
visibility = ["//:__subpackages__"],
deps = [
"//internal/lazyregexp",
"//internal/own/codeowners/v1:codeowners",
"//internal/types",
"//lib/errors",
],
)

View File

@ -3,14 +3,16 @@ load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
go_library(
name = "codeownership",
srcs = [
"job.go",
"filter_job.go",
"rules_cache.go",
"select_job.go",
],
importpath = "github.com/sourcegraph/sourcegraph/internal/search/codeownership",
visibility = ["//:__subpackages__"],
deps = [
"//cmd/frontend/backend",
"//internal/api",
"//internal/database",
"//internal/gitserver",
"//internal/own/codeowners/v1:codeowners",
"//internal/search",
@ -25,13 +27,20 @@ go_library(
go_test(
name = "codeownership_test",
srcs = ["job_test.go"],
srcs = [
"filter_job_test.go",
"select_job_test.go",
],
embed = [":codeownership"],
deps = [
"//internal/api",
"//internal/authz",
"//internal/database",
"//internal/gitserver",
"//internal/own/codeowners",
"//internal/search/result",
"//internal/types",
"@com_github_hexops_autogold//:autogold",
"@com_github_stretchr_testify//assert",
],
)

View File

@ -12,6 +12,7 @@ go_library(
"match.go",
"merge.go",
"merger.go",
"owner.go",
"range.go",
"repo.go",
"result_type.go",
@ -23,6 +24,7 @@ go_library(
"//internal/api",
"//internal/gitserver/gitdomain",
"//internal/lazyregexp",
"//internal/own/codeowners",
"//internal/search/filter",
"//internal/types",
"//lib/errors",

View File

@ -35,7 +35,7 @@ go_test(
# The testdata folders lives in our parent folder, which cannot be referenced directly.
# therefore, we have to create a filegroup with the correct visibility and reference
# it manually below.
data = ["//lib/codeintel/lsif/testdata:data"], # keep
data = ["//lib/codeintel/lsif/testdata:data"], # keep
embed = [":conversion"],
deps = [
"//lib/codeintel/lsif/conversion/datastructures",

View File

@ -16,8 +16,8 @@ go_library(
go_test(
name = "diff_test",
srcs = ["diff_test.go"],
embed = [":diff"],
data = ["//lib/codeintel/precise/diff/testdata:data"],
embed = [":diff"],
deps = [
"//lib/codeintel/lsif/conversion",
"//lib/codeintel/precise",

View File

@ -682,6 +682,9 @@ go_library(
"frontend/1675296942_add_column_to_changesets_for_external_fork_name/down.sql",
"frontend/1675296942_add_column_to_changesets_for_external_fork_name/metadata.yaml",
"frontend/1675296942_add_column_to_changesets_for_external_fork_name/up.sql",
"frontend/1675962678_remove_action_namespace_perms/down.sql",
"frontend/1675962678_remove_action_namespace_perms/metadata.yaml",
"frontend/1675962678_remove_action_namespace_perms/up.sql",
],
importpath = "github.com/sourcegraph/sourcegraph/migrations",
visibility = ["//visibility:public"],

View File

@ -18,6 +18,7 @@ go_library(
"frontend.go",
"gitserver.go",
"go.go",
"grpc.go",
"http.go",
"kubernetes.go",
"node_exporter.go",

View File

@ -0,0 +1,36 @@
## How to regenerate a patch
In the eventuality of having to regenerate this patch if we bump the package version, you can generate a new patch with the following:
```
# Shallow clone based on version
git clone --depth 1 --branch v2.15.0 https://github.com/grpc-ecosystem/grpc-gateway.git
cd ./grpc-gateway
# (Optional)
# Remove bazel version if you need to run using different Bazel version
rm .bazelversion
# Add Gazelle directive to disable proto compilation
echo '# gazelle:proto disable_global' >> BUILD
# Run Gazelle update-repos command to update repositories.bzl with
# disable_global flag
bazel run gazelle -- update-repos \
-from_file=go.mod \
-to_macro=repositories.bzl%go_repositories \
--build_file_proto_mode=disable_global
# Remove BUILD.bazel file with conflicting import
rm runtime/BUILD.bazel
rm runtime/internal/examplepb/BUILD.bazel
# Run Gazelle fix command to regenerate BUILD.bazel based on diasble_global
bazel run gazelle -- fix
# Create a patch file for two files that causes the build error:
# - `repositories.bzl`
# - `runtime/BUILD.bazel`
# - `runtime/internal/examplepb/BUILD.bazel`
git diff -u repositories.bzl runtime/BUILD.bazel runtime/internal/examplepb/BUILD.bazel > ../grpc-gateway.patch
```

View File

@ -1,5 +1,5 @@
diff --git a/repositories.bzl b/repositories.bzl
index 8a1d0b3..e921d50 100644
index 21512cb..e131ed7 100644
--- a/repositories.bzl
+++ b/repositories.bzl
@@ -22,6 +22,7 @@ def go_repositories():
@ -146,8 +146,8 @@ index 8a1d0b3..e921d50 100644
name = "com_google_cloud_go_aiplatform",
+ build_file_proto_mode = "disable_global",
importpath = "cloud.google.com/go/aiplatform",
sum = "h1:QqHZT1IMldf/daXoSnkJWBIqGBsw50X+xP6HSVzLRPo=",
version = "v1.24.0",
sum = "h1:DBi3Jk9XjCJ4pkkLM4NqKgj3ozUL1wq4l+d3/jTGXAI=",
version = "v1.27.0",
@@ -955,24 +974,28 @@ def go_repositories():
go_repository(
@ -241,8 +241,8 @@ index 8a1d0b3..e921d50 100644
name = "com_google_cloud_go_bigquery",
+ build_file_proto_mode = "disable_global",
importpath = "cloud.google.com/go/bigquery",
sum = "h1:u0fvz5ysJBe1jwUPI4LuPwAX+o+6fCUwf3ECeg6eDUQ=",
version = "v1.43.0",
sum = "h1:Wi4dITi+cf9VYp4VH2T9O41w0kCW0uQTELq2Z6tukN0=",
version = "v1.44.0",
)
go_repository(
name = "com_google_cloud_go_billing",
@ -293,7 +293,14 @@ index 8a1d0b3..e921d50 100644
importpath = "cloud.google.com/go/cloudtasks",
sum = "h1:faUiUgXjW8yVZ7XMnKHKm1WE4OldPBUWWfIRN/3z1dc=",
version = "v1.8.0",
@@ -1086,6 +1125,7 @@ def go_repositories():
@@ -1080,12 +1119,14 @@ def go_repositories():
go_repository(
name = "com_google_cloud_go_compute",
+ build_file_proto_mode = "disable_global",
importpath = "cloud.google.com/go/compute",
sum = "h1:AYrLkB8NPdDRslNp4Jxmzrhdr03fUAIDbiGFjLWowoU=",
version = "v1.13.0",
)
go_repository(
name = "com_google_cloud_go_compute_metadata",
@ -301,7 +308,7 @@ index 8a1d0b3..e921d50 100644
importpath = "cloud.google.com/go/compute/metadata",
sum = "h1:nBbNSZyDpkNlo3DepaaLKVuO7ClyifSAmNloSCZrHnQ=",
version = "v0.2.0",
@@ -1093,12 +1133,14 @@ def go_repositories():
@@ -1093,12 +1134,14 @@ def go_repositories():
go_repository(
name = "com_google_cloud_go_contactcenterinsights",
@ -316,7 +323,7 @@ index 8a1d0b3..e921d50 100644
importpath = "cloud.google.com/go/container",
sum = "h1:nbEK/59GyDRKKlo1SqpohY1TK8LmJ2XNcvS9Gyom2A0=",
version = "v1.7.0",
@@ -1106,6 +1148,7 @@ def go_repositories():
@@ -1106,6 +1149,7 @@ def go_repositories():
go_repository(
name = "com_google_cloud_go_containeranalysis",
@ -324,7 +331,7 @@ index 8a1d0b3..e921d50 100644
importpath = "cloud.google.com/go/containeranalysis",
sum = "h1:2824iym832ljKdVpCBnpqm5K94YT/uHTVhNF+dRTXPI=",
version = "v0.6.0",
@@ -1113,24 +1156,28 @@ def go_repositories():
@@ -1113,24 +1157,28 @@ def go_repositories():
go_repository(
name = "com_google_cloud_go_datacatalog",
@ -353,7 +360,7 @@ index 8a1d0b3..e921d50 100644
importpath = "cloud.google.com/go/datafusion",
sum = "h1:j5m2hjWovTZDTQak4MJeXAR9yN7O+zMfULnjGw/OOLg=",
version = "v1.5.0",
@@ -1138,18 +1185,21 @@ def go_repositories():
@@ -1138,18 +1186,21 @@ def go_repositories():
go_repository(
name = "com_google_cloud_go_datalabeling",
@ -375,7 +382,7 @@ index 8a1d0b3..e921d50 100644
importpath = "cloud.google.com/go/dataproc",
sum = "h1:gVOqNmElfa6n/ccG/QDlfurMWwrK3ezvy2b2eDoCmS0=",
version = "v1.8.0",
@@ -1157,6 +1207,7 @@ def go_repositories():
@@ -1157,6 +1208,7 @@ def go_repositories():
go_repository(
name = "com_google_cloud_go_dataqna",
@ -383,7 +390,14 @@ index 8a1d0b3..e921d50 100644
importpath = "cloud.google.com/go/dataqna",
sum = "h1:gx9jr41ytcA3dXkbbd409euEaWtofCVXYBvJz3iYm18=",
version = "v0.6.0",
@@ -1170,12 +1221,14 @@ def go_repositories():
@@ -1164,18 +1216,21 @@ def go_repositories():
go_repository(
name = "com_google_cloud_go_datastore",
+ build_file_proto_mode = "disable_global",
importpath = "cloud.google.com/go/datastore",
sum = "h1:4siQRf4zTiAVt/oeH4GureGkApgb2vtPQAtOmhpqQwE=",
version = "v1.10.0",
)
go_repository(
name = "com_google_cloud_go_datastream",
@ -398,7 +412,7 @@ index 8a1d0b3..e921d50 100644
importpath = "cloud.google.com/go/deploy",
sum = "h1:kI6dxt8Ml0is/x7YZjLveTvR7YPzXAUD/8wQZ2nH5zA=",
version = "v1.5.0",
@@ -1183,12 +1236,14 @@ def go_repositories():
@@ -1183,12 +1238,14 @@ def go_repositories():
go_repository(
name = "com_google_cloud_go_dialogflow",
@ -413,7 +427,7 @@ index 8a1d0b3..e921d50 100644
importpath = "cloud.google.com/go/dlp",
sum = "h1:9I4BYeJSVKoSKgjr70fLdRDumqcUeVmHV4fd5f9LR6Y=",
version = "v1.7.0",
@@ -1196,12 +1251,14 @@ def go_repositories():
@@ -1196,12 +1253,14 @@ def go_repositories():
go_repository(
name = "com_google_cloud_go_documentai",
@ -428,7 +442,7 @@ index 8a1d0b3..e921d50 100644
importpath = "cloud.google.com/go/domains",
sum = "h1:pu3JIgC1rswIqi5romW0JgNO6CTUydLYX8zyjiAvO1c=",
version = "v0.7.0",
@@ -1209,24 +1266,28 @@ def go_repositories():
@@ -1209,12 +1268,14 @@ def go_repositories():
go_repository(
name = "com_google_cloud_go_edgecontainer",
@ -437,6 +451,14 @@ index 8a1d0b3..e921d50 100644
sum = "h1:hd6J2n5dBBRuAqnNUEsKWrp6XNPKsaxwwIyzOPZTokk=",
version = "v0.2.0",
)
go_repository(
name = "com_google_cloud_go_errorreporting",
+ build_file_proto_mode = "disable_global",
importpath = "cloud.google.com/go/errorreporting",
sum = "h1:kj1XEWMu8P0qlLhm3FwcaFsUvXChV/OraZwA70trRR0=",
version = "v0.3.0",
@@ -1222,18 +1283,21 @@ def go_repositories():
go_repository(
name = "com_google_cloud_go_essentialcontacts",
+ build_file_proto_mode = "disable_global",
@ -457,7 +479,14 @@ index 8a1d0b3..e921d50 100644
importpath = "cloud.google.com/go/filestore",
sum = "h1:yjKOpzvqtDmL5AXbKttLc8j0hL20kuC1qPdy5HPcxp0=",
version = "v1.4.0",
@@ -1240,18 +1301,21 @@ def go_repositories():
@@ -1241,24 +1305,28 @@ def go_repositories():
go_repository(
name = "com_google_cloud_go_firestore",
+ build_file_proto_mode = "disable_global",
importpath = "cloud.google.com/go/firestore",
sum = "h1:IBlRyxgGySXu5VuW0RgGFlTtLukSnNkpDiEOMkQkmpA=",
version = "v1.9.0",
)
go_repository(
name = "com_google_cloud_go_functions",
@ -479,7 +508,7 @@ index 8a1d0b3..e921d50 100644
importpath = "cloud.google.com/go/gkebackup",
sum = "h1:4K+jiv4ocqt1niN8q5Imd8imRoXBHTrdnJVt/uFFxF4=",
version = "v0.3.0",
@@ -1259,54 +1323,63 @@ def go_repositories():
@@ -1266,54 +1334,63 @@ def go_repositories():
go_repository(
name = "com_google_cloud_go_gkeconnect",
@ -513,8 +542,8 @@ index 8a1d0b3..e921d50 100644
name = "com_google_cloud_go_iam",
+ build_file_proto_mode = "disable_global",
importpath = "cloud.google.com/go/iam",
sum = "h1:k4MuwOsS7zGJJ+QfZ5vBK8SgHBAvYN/23BWsiihJ1vs=",
version = "v0.7.0",
sum = "h1:E2osAkZzxI/+8pZcxVLcDtAQx/u+hZXVryUaYQ5O0Kk=",
version = "v0.8.0",
)
go_repository(
name = "com_google_cloud_go_iap",
@ -543,7 +572,7 @@ index 8a1d0b3..e921d50 100644
importpath = "cloud.google.com/go/kms",
sum = "h1:OWRZzrPmOZUzurjI2FBGtgY2mB1WaJkqhw6oIwSj0Yg=",
version = "v1.6.0",
@@ -1314,24 +1387,28 @@ def go_repositories():
@@ -1321,18 +1398,21 @@ def go_repositories():
go_repository(
name = "com_google_cloud_go_language",
@ -559,6 +588,14 @@ index 8a1d0b3..e921d50 100644
sum = "h1:tIqhivE2LMVYkX0BLgG7xL64oNpDaFFI7teunglt1tI=",
version = "v0.6.0",
)
go_repository(
name = "com_google_cloud_go_logging",
+ build_file_proto_mode = "disable_global",
importpath = "cloud.google.com/go/logging",
sum = "h1:ZBsZK+JG+oCDT+vaxwqF2egKNRjz8soXiS6Xv79benI=",
version = "v1.6.1",
@@ -1340,18 +1420,21 @@ def go_repositories():
go_repository(
name = "com_google_cloud_go_longrunning",
+ build_file_proto_mode = "disable_global",
@ -572,7 +609,14 @@ index 8a1d0b3..e921d50 100644
importpath = "cloud.google.com/go/managedidentities",
sum = "h1:3Kdajn6X25yWQFhFCErmKSYTSvkEd3chJROny//F1A0=",
version = "v1.4.0",
@@ -1339,24 +1416,28 @@ def go_repositories():
)
go_repository(
name = "com_google_cloud_go_maps",
+ build_file_proto_mode = "disable_global",
importpath = "cloud.google.com/go/maps",
sum = "h1:kLReRbclTgJefw2fcCbdLPLhPj0U6UUWN10ldG8sdOU=",
version = "v0.1.0",
@@ -1359,24 +1442,28 @@ def go_repositories():
go_repository(
name = "com_google_cloud_go_mediatranslation",
@ -601,7 +645,7 @@ index 8a1d0b3..e921d50 100644
importpath = "cloud.google.com/go/monitoring",
sum = "h1:c9riaGSPQ4dUKWB+M1Fl0N+iLxstMbCktdEwYSPGDvA=",
version = "v1.8.0",
@@ -1364,12 +1445,14 @@ def go_repositories():
@@ -1384,12 +1471,14 @@ def go_repositories():
go_repository(
name = "com_google_cloud_go_networkconnectivity",
@ -616,7 +660,7 @@ index 8a1d0b3..e921d50 100644
importpath = "cloud.google.com/go/networkmanagement",
sum = "h1:mDHA3CDW00imTvC5RW6aMGsD1bH+FtKwZm/52BxaiMg=",
version = "v1.5.0",
@@ -1377,30 +1460,35 @@ def go_repositories():
@@ -1397,30 +1486,35 @@ def go_repositories():
go_repository(
name = "com_google_cloud_go_networksecurity",
@ -652,7 +696,7 @@ index 8a1d0b3..e921d50 100644
importpath = "cloud.google.com/go/orgpolicy",
sum = "h1:erF5PHqDZb6FeFrUHiYj2JK2BMhsk8CyAg4V4amJ3rE=",
version = "v1.5.0",
@@ -1408,24 +1496,28 @@ def go_repositories():
@@ -1428,24 +1522,28 @@ def go_repositories():
go_repository(
name = "com_google_cloud_go_osconfig",
@ -681,7 +725,7 @@ index 8a1d0b3..e921d50 100644
importpath = "cloud.google.com/go/policytroubleshooter",
sum = "h1:NQklJuOUoz1BPP+Epjw81COx7IISWslkZubz/1i0UN8=",
version = "v1.4.0",
@@ -1433,6 +1525,7 @@ def go_repositories():
@@ -1453,6 +1551,7 @@ def go_repositories():
go_repository(
name = "com_google_cloud_go_privatecatalog",
@ -689,8 +733,23 @@ index 8a1d0b3..e921d50 100644
importpath = "cloud.google.com/go/privatecatalog",
sum = "h1:Vz86uiHCtNGm1DeC32HeG2VXmOq5JRYA3VRPf8ZEcSg=",
version = "v0.6.0",
@@ -1446,36 +1539,42 @@ def go_repositories():
@@ -1460,12 +1559,14 @@ def go_repositories():
go_repository(
name = "com_google_cloud_go_pubsub",
+ build_file_proto_mode = "disable_global",
importpath = "cloud.google.com/go/pubsub",
sum = "h1:q+J/Nfr6Qx4RQeu3rJcnN48SNC0qzlYzSeqkPq93VHs=",
version = "v1.27.1",
)
go_repository(
name = "com_google_cloud_go_pubsublite",
+ build_file_proto_mode = "disable_global",
importpath = "cloud.google.com/go/pubsublite",
sum = "h1:iqrD8vp3giTb7hI1q4TQQGj77cj8zzgmMPsTZtLnprM=",
version = "v1.5.0",
@@ -1473,36 +1574,42 @@ def go_repositories():
go_repository(
name = "com_google_cloud_go_recaptchaenterprise_v2",
+ build_file_proto_mode = "disable_global",
@ -732,7 +791,7 @@ index 8a1d0b3..e921d50 100644
importpath = "cloud.google.com/go/resourcesettings",
sum = "h1:eTzOwB13WrfF0kuzG2ZXCfB3TLunSHBur4s+HFU6uSM=",
version = "v1.4.0",
@@ -1483,12 +1582,14 @@ def go_repositories():
@@ -1510,12 +1617,14 @@ def go_repositories():
go_repository(
name = "com_google_cloud_go_retail",
@ -747,7 +806,7 @@ index 8a1d0b3..e921d50 100644
importpath = "cloud.google.com/go/run",
sum = "h1:AWPuzU7Xtaj3Jf+QarDWIs6AJ5hM1VFQ+F6Q+VZ6OT4=",
version = "v0.3.0",
@@ -1496,12 +1597,14 @@ def go_repositories():
@@ -1523,12 +1632,14 @@ def go_repositories():
go_repository(
name = "com_google_cloud_go_scheduler",
@ -762,7 +821,7 @@ index 8a1d0b3..e921d50 100644
importpath = "cloud.google.com/go/secretmanager",
sum = "h1:xE6uXljAC1kCR8iadt9+/blg1fvSbmenlsDN4fT9gqw=",
version = "v1.9.0",
@@ -1509,18 +1612,21 @@ def go_repositories():
@@ -1536,18 +1647,21 @@ def go_repositories():
go_repository(
name = "com_google_cloud_go_security",
@ -784,7 +843,7 @@ index 8a1d0b3..e921d50 100644
importpath = "cloud.google.com/go/servicecontrol",
sum = "h1:ImIzbOu6y4jL6ob65I++QzvqgFaoAKgHOG+RU9/c4y8=",
version = "v1.5.0",
@@ -1528,24 +1634,28 @@ def go_repositories():
@@ -1555,30 +1669,35 @@ def go_repositories():
go_repository(
name = "com_google_cloud_go_servicedirectory",
@ -813,7 +872,14 @@ index 8a1d0b3..e921d50 100644
importpath = "cloud.google.com/go/shell",
sum = "h1:b1LFhFBgKsG252inyhtmsUUZwchqSz3WTvAIf3JFo4g=",
version = "v1.4.0",
@@ -1553,6 +1663,7 @@ def go_repositories():
)
go_repository(
name = "com_google_cloud_go_spanner",
+ build_file_proto_mode = "disable_global",
importpath = "cloud.google.com/go/spanner",
sum = "h1:NvdTpRwf7DTegbfFdPjAWyD7bOVu0VeMqcvR9aCQCAc=",
version = "v1.41.0",
@@ -1586,6 +1705,7 @@ def go_repositories():
go_repository(
name = "com_google_cloud_go_speech",
@ -821,7 +887,7 @@ index 8a1d0b3..e921d50 100644
importpath = "cloud.google.com/go/speech",
sum = "h1:yK0ocnFH4Wsf0cMdUyndJQ/hPv02oTJOxzi6AgpBy4s=",
version = "v1.9.0",
@@ -1566,6 +1677,7 @@ def go_repositories():
@@ -1599,6 +1719,7 @@ def go_repositories():
)
go_repository(
name = "com_google_cloud_go_storagetransfer",
@ -829,7 +895,7 @@ index 8a1d0b3..e921d50 100644
importpath = "cloud.google.com/go/storagetransfer",
sum = "h1:fUe3OydbbvHcAYp07xY+2UpH4AermGbmnm7qdEj3tGE=",
version = "v1.6.0",
@@ -1573,36 +1685,42 @@ def go_repositories():
@@ -1606,36 +1727,42 @@ def go_repositories():
go_repository(
name = "com_google_cloud_go_talent",
@ -872,7 +938,7 @@ index 8a1d0b3..e921d50 100644
importpath = "cloud.google.com/go/video",
sum = "h1:ttlvO4J5c1VGq6FkHqWPD/aH6PfdxujHt+muTJlW1Zk=",
version = "v1.9.0",
@@ -1610,24 +1728,28 @@ def go_repositories():
@@ -1643,24 +1770,28 @@ def go_repositories():
go_repository(
name = "com_google_cloud_go_videointelligence",
@ -895,13 +961,21 @@ index 8a1d0b3..e921d50 100644
sum = "h1:A2Tl2ZmwMRpvEmhV2ibISY85fmQR+Y5w9a0PlRz5P3s=",
version = "v1.3.0",
)
go_repository(
name = "com_google_cloud_go_vmwareengine",
+ build_file_proto_mode = "disable_global",
importpath = "cloud.google.com/go/vmwareengine",
sum = "h1:JMPZaOT/gIUxVlTqSl/QQ32Y2k+r0stNeM1NSqhVP9o=",
version = "v0.1.0",
@@ -1668,6 +1799,7 @@ def go_repositories():
go_repository(
name = "com_google_cloud_go_vpcaccess",
+ build_file_proto_mode = "disable_global",
importpath = "cloud.google.com/go/vpcaccess",
sum = "h1:woHXXtnW8b9gLFdWO9HLPalAddBQ9V4LT+1vjKwR3W8=",
version = "v1.5.0",
@@ -1635,12 +1757,14 @@ def go_repositories():
@@ -1675,12 +1807,14 @@ def go_repositories():
go_repository(
name = "com_google_cloud_go_webrisk",
@ -916,7 +990,7 @@ index 8a1d0b3..e921d50 100644
importpath = "cloud.google.com/go/websecurityscanner",
sum = "h1:y7yIFg/h/mO+5Y5aCOtVAnpGUOgqCH5rXQ2Oc8Oq2+g=",
version = "v1.4.0",
@@ -1648,6 +1772,7 @@ def go_repositories():
@@ -1688,6 +1822,7 @@ def go_repositories():
go_repository(
name = "com_google_cloud_go_workflows",
@ -924,7 +998,7 @@ index 8a1d0b3..e921d50 100644
importpath = "cloud.google.com/go/workflows",
sum = "h1:7Chpin9p50NTU8Tb7qk+I11U/IwVXmDhEoSsdccvInE=",
version = "v1.9.0",
@@ -1668,6 +1793,7 @@ def go_repositories():
@@ -1708,6 +1843,7 @@ def go_repositories():
go_repository(
name = "in_gopkg_check_v1",
@ -932,7 +1006,7 @@ index 8a1d0b3..e921d50 100644
importpath = "gopkg.in/check.v1",
sum = "h1:qIbj1fsPNlZgppZ+VLlY7N33q108Sa+fhmuc+sWQYwY=",
version = "v1.0.0-20180628173108-788fd7840127",
@@ -1700,6 +1826,7 @@ def go_repositories():
@@ -1740,6 +1876,7 @@ def go_repositories():
)
go_repository(
name = "in_gopkg_yaml_v3",
@ -940,7 +1014,7 @@ index 8a1d0b3..e921d50 100644
importpath = "gopkg.in/yaml.v3",
sum = "h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=",
version = "v3.0.1",
@@ -1750,18 +1877,21 @@ def go_repositories():
@@ -1790,18 +1927,21 @@ def go_repositories():
)
go_repository(
name = "org_golang_google_appengine",
@ -953,16 +1027,16 @@ index 8a1d0b3..e921d50 100644
name = "org_golang_google_genproto",
+ build_file_proto_mode = "disable_global",
importpath = "google.golang.org/genproto",
sum = "h1:jCw9YRd2s40X9Vxi4zKsPRvSPlHWNqadVkpbMsCPzPQ=",
version = "v0.0.0-20221114212237-e4508ebdbee1",
sum = "h1:jmIfw8+gSvXcZSgaFAGyInDXeWzUhvYH57G/5GKMn70=",
version = "v0.0.0-20221207170731-23e4bf6bdc37",
)
go_repository(
name = "org_golang_google_grpc",
+ build_file_proto_mode = "disable_global",
importpath = "google.golang.org/grpc",
sum = "h1:DS/BukOZWp8s6p4Dt/tOaJaTQyPyOoCcrjroHuCeLzY=",
version = "v1.50.1",
@@ -1775,12 +1905,14 @@ def go_repositories():
sum = "h1:E1eGv1FTqoLIdnBCZufiSHgKjlqG6fKFf6pPWtMTh8U=",
version = "v1.51.0",
@@ -1815,12 +1955,14 @@ def go_repositories():
)
go_repository(
name = "org_golang_google_protobuf",
@ -977,7 +1051,7 @@ index 8a1d0b3..e921d50 100644
importpath = "golang.org/x/crypto",
sum = "h1:VklqNMn3ovrHsnt90PveolxSbWFaJdECFbxSq0Mqo2M=",
version = "v0.0.0-20190308221718-c2843e01d9a2",
@@ -1813,18 +1945,21 @@ def go_repositories():
@@ -1853,18 +1995,21 @@ def go_repositories():
)
go_repository(
name = "org_golang_x_mod",
@ -990,39 +1064,39 @@ index 8a1d0b3..e921d50 100644
name = "org_golang_x_net",
+ build_file_proto_mode = "disable_global",
importpath = "golang.org/x/net",
sum = "h1:sZfSu1wtKLGlWI4ZZayP0ck9Y73K1ynO6gqzTdBVdPU=",
version = "v0.2.0",
sum = "h1:VWL6FNY2bEEmsGVKabSlHu5Irp34xmMRoqb/9lF9lxk=",
version = "v0.3.0",
)
go_repository(
name = "org_golang_x_oauth2",
+ build_file_proto_mode = "disable_global",
importpath = "golang.org/x/oauth2",
sum = "h1:GtQkldQ9m7yvzCL1V+LrYow3Khe0eJH0w7RbX/VbaIU=",
version = "v0.2.0",
@@ -1837,12 +1972,14 @@ def go_repositories():
sum = "h1:6l90koy8/LaBLmLu8jpHeHexzMwEita0zFfYlggy2F8=",
version = "v0.3.0",
@@ -1877,12 +2022,14 @@ def go_repositories():
)
go_repository(
name = "org_golang_x_sys",
+ build_file_proto_mode = "disable_global",
importpath = "golang.org/x/sys",
sum = "h1:ljd4t30dBnAvMZaQCevtY0xLLD0A+bRZXbgLMLU1F/A=",
version = "v0.2.0",
sum = "h1:w8ZOecv6NaNa/zC8944JTU3vz4u6Lagfk4RPQxv92NQ=",
version = "v0.3.0",
)
go_repository(
name = "org_golang_x_term",
+ build_file_proto_mode = "disable_global",
importpath = "golang.org/x/term",
sum = "h1:z85xZCsEl7bi/KwbNADeBYoOP0++7W1ipu+aGnpwzRM=",
version = "v0.2.0",
@@ -1850,6 +1987,7 @@ def go_repositories():
sum = "h1:qoo4akIqOcDME5bhc/NgxUdovd6BSS2uMsVjB56q1xI=",
version = "v0.3.0",
@@ -1890,6 +2037,7 @@ def go_repositories():
go_repository(
name = "org_golang_x_text",
+ build_file_proto_mode = "disable_global",
importpath = "golang.org/x/text",
sum = "h1:BrVqGRd7+k1DiOgtnFvAkoQEWQvBc25ouMJM6429SFg=",
version = "v0.4.0",
@@ -1863,6 +2001,7 @@ def go_repositories():
sum = "h1:OLmvp0KP+FVG99Ct/qFiL/Fhk4zp4QQnZ7b2U+5piUM=",
version = "v0.5.0",
@@ -1903,6 +2051,7 @@ def go_repositories():
)
go_repository(
name = "org_golang_x_tools",
@ -1030,7 +1104,7 @@ index 8a1d0b3..e921d50 100644
importpath = "golang.org/x/tools",
sum = "h1:VveCTK38A2rkS8ZqFY25HIDFscX5X9OoEhJd3quQmXU=",
version = "v0.1.12",
@@ -1870,6 +2009,7 @@ def go_repositories():
@@ -1910,6 +2059,7 @@ def go_repositories():
go_repository(
name = "org_golang_x_xerrors",