-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Ensure the expression environment is plumbed through to rule expressions * Upgrade to cel-v0.10.1 * set default environment on compiler tests
- Loading branch information
1 parent
295ae6c
commit 4f68a4a
Showing
6 changed files
with
51 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,20 @@ | ||
module github.com/google/cel-policy-templates-go | ||
|
||
go 1.13 | ||
go 1.17 | ||
|
||
require ( | ||
github.com/antlr/antlr4/runtime/Go/antlr v0.0.0-20211207205009-e8122ca5a943 // indirect | ||
github.com/google/cel-go v0.9.0 | ||
github.com/google/go-cmp v0.5.6 | ||
github.com/kr/pretty v0.3.0 // indirect | ||
google.golang.org/genproto v0.0.0-20211207154714-918901c715cf | ||
github.com/google/cel-go v0.10.1 | ||
github.com/google/go-cmp v0.5.5 | ||
google.golang.org/genproto v0.0.0-20220314164441-57ef72a4c106 | ||
google.golang.org/protobuf v1.27.1 | ||
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect | ||
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b | ||
) | ||
|
||
require ( | ||
github.com/antlr/antlr4/runtime/Go/antlr v0.0.0-20210826220005-b48c857c3a0e // indirect | ||
github.com/kr/pretty v0.3.0 // indirect | ||
github.com/stoewer/go-strcase v1.2.0 // indirect | ||
golang.org/x/text v0.3.7 // indirect | ||
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect | ||
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters