From 616d5e9fee2f073804115b40dce5c517d997ceab Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 6 Jul 2023 14:00:48 -0700 Subject: [PATCH] fix(deps): update go (#2739) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [github.com/bazel-contrib/rules_jvm](https://togithub.com/bazel-contrib/rules_jvm) | require | minor | `v0.13.0` -> `v0.14.0` | | [github.com/bazelbuild/rules_go](https://togithub.com/bazelbuild/rules_go) | require | patch | `v0.40.0` -> `v0.40.1` | | [github.com/buildbarn/bb-clientd](https://togithub.com/buildbarn/bb-clientd) | require | digest | `677f2e4` -> `25fd4b1` | | [github.com/buildbarn/bb-remote-execution](https://togithub.com/buildbarn/bb-remote-execution) | require | digest | `13b8a35` -> `2b8c1fb` | | [github.com/evanw/esbuild](https://togithub.com/evanw/esbuild) | require | patch | `v0.18.10` -> `v0.18.11` | | golang.org/x/mod | require | minor | `v0.11.0` -> `v0.12.0` | | [google.golang.org/genproto](https://togithub.com/googleapis/go-genproto) | require | digest | `9b080da` -> `9506855` | | [google.golang.org/genproto/googleapis/api](https://togithub.com/googleapis/go-genproto) | require | digest | `9b080da` -> `f517056` | | [google.golang.org/grpc](https://togithub.com/grpc/grpc-go) | require | patch | `v1.56.1` -> `v1.56.2` | --- ### ⚠ Dependency Lookup Warnings ⚠ Warnings were logged while processing this repo. Please check the Dependency Dashboard for more information. --- ### Release Notes
bazel-contrib/rules_jvm (github.com/bazel-contrib/rules_jvm) ### [`v0.14.0`](https://togithub.com/bazel-contrib/rules_jvm/releases/tag/v0.14.0) [Compare Source](https://togithub.com/bazel-contrib/rules_jvm/compare/v0.13.0...v0.14.0) WORKSPACE snippet: ```starlark load("@​bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "contrib_rules_jvm", sha256 = "90ecdf08d7e8817b2247eea77826db872db8866da84b3a824f58d6661aca917f", strip_prefix = "rules_jvm-0.14.0", url = "https://github.com/bazel-contrib/rules_jvm/releases/download/v0.14.0/rules_jvm-v0.14.0.tar.gz", ) ### Fetches the contrib_rules_jvm dependencies. ### If you want to have a different version of some dependency, ### you should fetch it *before* calling this. load("@​contrib_rules_jvm//:repositories.bzl", "contrib_rules_jvm_deps") contrib_rules_jvm_deps() ### Now ensure that the downloaded deps are properly configured load("@​contrib_rules_jvm//:setup.bzl", "contrib_rules_jvm_setup") contrib_rules_jvm_setup() ``` #### What's Changed - junit5: Print failure causes by [@​fmeum](https://togithub.com/fmeum) in [https://github.com/bazel-contrib/rules_jvm/pull/175](https://togithub.com/bazel-contrib/rules_jvm/pull/175) - Fix `tools/update-dependencies.sh` by [@​rdesgroppes](https://togithub.com/rdesgroppes) in [https://github.com/bazel-contrib/rules_jvm/pull/177](https://togithub.com/bazel-contrib/rules_jvm/pull/177) - Bump PMD version to last planned release (6.55.0) by [@​rdesgroppes](https://togithub.com/rdesgroppes) in [https://github.com/bazel-contrib/rules_jvm/pull/178](https://togithub.com/bazel-contrib/rules_jvm/pull/178) - pass tag for java_test_lib by [@​lyao-77](https://togithub.com/lyao-77) in [https://github.com/bazel-contrib/rules_jvm/pull/179](https://togithub.com/bazel-contrib/rules_jvm/pull/179) - Add java_generate_proto directive by [@​meowcakes](https://togithub.com/meowcakes) in [https://github.com/bazel-contrib/rules_jvm/pull/181](https://togithub.com/bazel-contrib/rules_jvm/pull/181) - Prepare for the next release by bumping deps by [@​shs96c](https://togithub.com/shs96c) in [https://github.com/bazel-contrib/rules_jvm/pull/182](https://togithub.com/bazel-contrib/rules_jvm/pull/182) #### New Contributors - [@​lyao-77](https://togithub.com/lyao-77) made their first contribution in [https://github.com/bazel-contrib/rules_jvm/pull/179](https://togithub.com/bazel-contrib/rules_jvm/pull/179) - [@​meowcakes](https://togithub.com/meowcakes) made their first contribution in [https://github.com/bazel-contrib/rules_jvm/pull/181](https://togithub.com/bazel-contrib/rules_jvm/pull/181) **Full Changelog**: https://github.com/bazel-contrib/rules_jvm/compare/v0.13.0...v0.14.0
bazelbuild/rules_go (github.com/bazelbuild/rules_go) ### [`v0.40.1`](https://togithub.com/bazelbuild/rules_go/releases/tag/v0.40.1) [Compare Source](https://togithub.com/bazelbuild/rules_go/compare/v0.40.0...v0.40.1) #### `WORKSPACE` code load("@​bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "io_bazel_rules_go", sha256 = "51dc53293afe317d2696d4d6433a4c33feedb7748a9e352072e2ec3c0dafd2c6", urls = [ "https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.40.1/rules_go-v0.40.1.zip", "https://github.com/bazelbuild/rules_go/releases/download/v0.40.1/rules_go-v0.40.1.zip", ], ) load("@​io_bazel_rules_go//go:deps.bzl", "go_register_toolchains", "go_rules_dependencies") go_rules_dependencies() go_register_toolchains(version = "1.20.5") #### Changes This patch release cherry-picked two bug fixes related to Go package driver from master - [https://github.com/bazelbuild/rules_go/pull/3606](https://togithub.com/bazelbuild/rules_go/pull/3606) - [https://github.com/bazelbuild/rules_go/pull/3608](https://togithub.com/bazelbuild/rules_go/pull/3608)
evanw/esbuild (github.com/evanw/esbuild) ### [`v0.18.11`](https://togithub.com/evanw/esbuild/releases/tag/v0.18.11) [Compare Source](https://togithub.com/evanw/esbuild/compare/v0.18.10...v0.18.11) - Fix a TypeScript code generation edge case ([#​3199](https://togithub.com/evanw/esbuild/issues/3199)) This release fixes a regression in version 0.18.4 where using a TypeScript `namespace` that exports a `class` declaration combined with `--keep-names` and a `--target` of `es2021` or earlier could cause esbuild to export the class from the namespace using an incorrect name (notice the assignment to `X2._Y` vs. `X2.Y`): ```ts // Original code // Old output (with --keep-names --target=es2021) var X; ((X2) => { const _Y = class _Y { }; __name(_Y, "Y"); let Y = _Y; X2._Y = _Y; })(X || (X = {})); // New output (with --keep-names --target=es2021) var X; ((X2) => { const _Y = class _Y { }; __name(_Y, "Y"); let Y = _Y; X2.Y = _Y; })(X || (X = {})); ```
grpc/grpc-go (google.golang.org/grpc) ### [`v1.56.2`](https://togithub.com/grpc/grpc-go/releases/tag/v1.56.2): Release 1.56.2 [Compare Source](https://togithub.com/grpc/grpc-go/compare/v1.56.1...v1.56.2) - status: To fix a panic, `status.FromError` now returns an error with `codes.Unknown` when the error implements the `GRPCStatus()` method, and calling `GRPCStatus()` returns `nil`. ([#​6374](https://togithub.com/grpc/grpc-go/issues/6374))
--- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://togithub.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/aspect-build/silo). --------- Signed-off-by: Thulio Ferraz Assis <3149049+f0rmiga@users.noreply.github.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Thulio Ferraz Assis <3149049+f0rmiga@users.noreply.github.com> --- deps.bzl | 4 ++-- examples/deps.bzl | 4 ++-- examples/go.mod | 2 +- examples/go.sum | 4 ++-- go.mod | 2 +- go.sum | 4 ++-- 6 files changed, 10 insertions(+), 10 deletions(-) diff --git a/deps.bzl b/deps.bzl index 389ffd6..a103b95 100644 --- a/deps.bzl +++ b/deps.bzl @@ -2914,8 +2914,8 @@ def go_dependencies(): name = "org_golang_google_grpc", build_file_proto_mode = "disable_global", importpath = "google.golang.org/grpc", - sum = "h1:z0dNfjIl0VpaZ9iSVjA6daGatAYwPGstTjt5vkRMFkQ=", - version = "v1.56.1", + sum = "h1:fVRFRnXvU+x6C4IlHZewvJOVHoOv1TUuQyoRsYnB4bI=", + version = "v1.56.2", ) go_repository( name = "org_golang_google_grpc_examples", diff --git a/examples/deps.bzl b/examples/deps.bzl index 024ab86..fe612c3 100644 --- a/examples/deps.bzl +++ b/examples/deps.bzl @@ -1929,8 +1929,8 @@ def go_dependencies(): name = "org_golang_google_grpc", build_file_proto_mode = "disable_global", importpath = "google.golang.org/grpc", - sum = "h1:z0dNfjIl0VpaZ9iSVjA6daGatAYwPGstTjt5vkRMFkQ=", - version = "v1.56.1", + sum = "h1:fVRFRnXvU+x6C4IlHZewvJOVHoOv1TUuQyoRsYnB4bI=", + version = "v1.56.2", ) go_repository( name = "org_golang_google_protobuf", diff --git a/examples/go.mod b/examples/go.mod index 4b18182..7fa308a 100644 --- a/examples/go.mod +++ b/examples/go.mod @@ -8,7 +8,7 @@ require ( github.com/golang/mock v1.6.0 github.com/onsi/ginkgo/v2 v2.1.4 github.com/onsi/gomega v1.20.0 - google.golang.org/grpc v1.56.1 + google.golang.org/grpc v1.56.2 ) require ( diff --git a/examples/go.sum b/examples/go.sum index bda584c..bded1aa 100644 --- a/examples/go.sum +++ b/examples/go.sum @@ -44,8 +44,8 @@ golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8T golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1 h1:KpwkzHKEF7B9Zxg18WzOa7djJ+Ha5DzthMyZYQfEn2A= google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1/go.mod h1:nKE/iIaLqn2bQwXBg8f1g2Ylh6r5MN5CmZvuzZCgsCU= -google.golang.org/grpc v1.56.1 h1:z0dNfjIl0VpaZ9iSVjA6daGatAYwPGstTjt5vkRMFkQ= -google.golang.org/grpc v1.56.1/go.mod h1:I9bI3vqKfayGqPUAwGdOSu7kt6oIJLixfffKrpXqQ9s= +google.golang.org/grpc v1.56.2 h1:fVRFRnXvU+x6C4IlHZewvJOVHoOv1TUuQyoRsYnB4bI= +google.golang.org/grpc v1.56.2/go.mod h1:I9bI3vqKfayGqPUAwGdOSu7kt6oIJLixfffKrpXqQ9s= google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= google.golang.org/protobuf v1.30.0 h1:kPPoIgf3TsEvrm0PFe15JQ+570QVxYzEvvHqChK+cng= diff --git a/go.mod b/go.mod index b65148e..a55b8d9 100644 --- a/go.mod +++ b/go.mod @@ -10,7 +10,7 @@ require ( github.com/grpc-ecosystem/grpc-gateway/v2 v2.16.0 github.com/grpc-ecosystem/grpc-health-probe v0.4.19 github.com/sirupsen/logrus v1.9.3 - google.golang.org/grpc v1.56.1 + google.golang.org/grpc v1.56.2 helm.sh/helm/v3 v3.12.1 sigs.k8s.io/kind v0.20.0 sigs.k8s.io/yaml v1.3.0 diff --git a/go.sum b/go.sum index 15b9a70..06bcb5c 100644 --- a/go.sum +++ b/go.sum @@ -1071,8 +1071,8 @@ google.golang.org/grpc v1.35.0/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAG google.golang.org/grpc v1.36.0/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= google.golang.org/grpc v1.36.1/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= google.golang.org/grpc v1.38.0/go.mod h1:NREThFqKR1f3iQ6oBuvc5LadQuXVGo9rkm5ZGrQdJfM= -google.golang.org/grpc v1.56.1 h1:z0dNfjIl0VpaZ9iSVjA6daGatAYwPGstTjt5vkRMFkQ= -google.golang.org/grpc v1.56.1/go.mod h1:I9bI3vqKfayGqPUAwGdOSu7kt6oIJLixfffKrpXqQ9s= +google.golang.org/grpc v1.56.2 h1:fVRFRnXvU+x6C4IlHZewvJOVHoOv1TUuQyoRsYnB4bI= +google.golang.org/grpc v1.56.2/go.mod h1:I9bI3vqKfayGqPUAwGdOSu7kt6oIJLixfffKrpXqQ9s= google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8= google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ01Woi6D6+Kah6886xMZcty6N08ah7+eCXa0= google.golang.org/protobuf v0.0.0-20200228230310-ab0ca4ff8a60/go.mod h1:cfTl7dwQJ+fmap5saPgwCLgHXTUD7jkjRqWcaiX5VyM=