Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[versions]
assertj = "3.27.7"
buf = "1.72.0"
cel = "0.13.1"
cel = "0.14.0"
error-prone = "2.50.0"
junit = "5.14.4"
maven-publish = "0.37.0"
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/build/buf/protovalidate/ValidateLibrary.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
import dev.cel.parser.CelStandardMacro;
import dev.cel.runtime.CelRuntime;
import dev.cel.runtime.CelRuntimeBuilder;
import dev.cel.runtime.CelRuntimeImpl;
import dev.cel.runtime.CelRuntimeFactory;
import dev.cel.runtime.CelRuntimeLibrary;
import dev.cel.runtime.CelStandardFunctions;
import java.util.concurrent.ConcurrentHashMap;
Expand Down Expand Up @@ -71,7 +71,7 @@ static Cel newCel() {
.addLibraries(validateLibrary, CelExtensions.strings())
.build();
CelRuntime runtime =
CelRuntimeImpl.newBuilder()
CelRuntimeFactory.plannerRuntimeBuilder()

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

.setOptions(CEL_OPTIONS)
.setStandardFunctions(
CelStandardFunctions.newBuilder()
Expand Down
Loading