From 7ea03d46c3733573088aae3067368e3efd4aed7f Mon Sep 17 00:00:00 2001 From: Justin King Date: Mon, 1 Apr 2024 07:54:25 -0700 Subject: [PATCH] Update cel-spec and enable optional_type conformance tests (#919) Signed-off-by: Justin King --- WORKSPACE | 2 +- conformance/BUILD.bazel | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/WORKSPACE b/WORKSPACE index 53664717..e2bc9580 100644 --- a/WORKSPACE +++ b/WORKSPACE @@ -119,7 +119,7 @@ go_repository( # CEL Spec deps go_repository( name = "com_google_cel_spec", - commit = "910da5b5d08378a9a1f3ea3ba1979e16e6c6dbc1", # v 0.14.0 + commit = "1bc3fb168317fa77d1227c52d0becbf2d358c023", importpath = "github.com/google/cel-spec", ) diff --git a/conformance/BUILD.bazel b/conformance/BUILD.bazel index a89771a9..dc78a024 100644 --- a/conformance/BUILD.bazel +++ b/conformance/BUILD.bazel @@ -11,6 +11,7 @@ ALL_TESTS = [ "@com_google_cel_spec//tests/simple:testdata/logic.textproto", "@com_google_cel_spec//tests/simple:testdata/macros.textproto", "@com_google_cel_spec//tests/simple:testdata/namespace.textproto", + "@com_google_cel_spec//tests/simple:testdata/optionals.textproto", "@com_google_cel_spec//tests/simple:testdata/parse.textproto", "@com_google_cel_spec//tests/simple:testdata/plumbing.textproto", "@com_google_cel_spec//tests/simple:testdata/proto2.textproto",