From e143288608a556e418bd337b38063ad8130f2af1 Mon Sep 17 00:00:00 2001 From: "update-envoy[bot]" <135279899+update-envoy[bot]@users.noreply.github.com> Date: Thu, 7 Nov 2024 10:12:24 +0000 Subject: [PATCH] docs: add and fix license URLs (#37029) For cel, envoy_toolshed, fmt, protoc-gen-jsonschema, shellcheck rules Risk Level: Low Docs Changes: add and fix license URLs of external components Signed-off-by: Michael Kaufmann Mirrored from https://github.com/envoyproxy/envoy @ 1922c849b58266cc61c72c59afbabde7f765c076 --- bazel/repository_locations.bzl | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/bazel/repository_locations.bzl b/bazel/repository_locations.bzl index 020efb0c..cd2bdd06 100644 --- a/bazel/repository_locations.bzl +++ b/bazel/repository_locations.bzl @@ -163,6 +163,8 @@ REPOSITORY_LOCATIONS_SPEC = dict( urls = ["https://github.com/norbjd/protoc-gen-jsonschema/archive/{version}.zip"], use_category = ["build"], release_date = "2023-05-30", + license = "Apache-2.0", + license_url = "https://github.com/norbjd/protoc-gen-jsonschema/blob/{version}/LICENSE", ), dev_cel = dict( project_name = "CEL", @@ -174,6 +176,8 @@ REPOSITORY_LOCATIONS_SPEC = dict( urls = ["https://github.com/google/cel-spec/archive/v{version}.tar.gz"], use_category = ["api"], release_date = "2024-10-23", + license = "Apache-2.0", + license_url = "https://github.com/google/cel-spec/blob/v{version}/LICENSE", ), envoy_toolshed = dict( project_name = "envoy_toolshed", @@ -187,6 +191,6 @@ REPOSITORY_LOCATIONS_SPEC = dict( release_date = "2024-11-04", cpe = "N/A", license = "Apache-2.0", - license_url = "https://github.com/envoyproxy/envoy/blob/bazel-v{version}/LICENSE", + license_url = "https://github.com/envoyproxy/toolshed/blob/bazel-v{version}/LICENSE", ), )