Skip to content

Commit 286af68

Browse files
committed
chore: rename on top of v0.30.0
1 parent 272fa9c commit 286af68

270 files changed

Lines changed: 884 additions & 885 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

MODULE.bazel

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ bazel_dep(
3737
bazel_dep(name = "rules_shell", version = "0.6.1")
3838
bazel_dep(name = "rules_license", version = "1.0.0")
3939

40-
4140
# local_path_override(
4241
# module_name = "cel-spec",
4342
# path = "../cel-spec",
@@ -77,9 +76,9 @@ use_repo(
7776
"com_github_antlr4_go_antlr_v4",
7877
"com_github_chzyer_readline",
7978
"com_github_google_go_cmp",
79+
"dev_cel_expr",
8080
"in_yaml_go_yaml_v3",
8181
"org_golang_google_genproto_googleapis_api",
82-
"org_golang_google_genproto_googleapis_rpc",
8382
"org_golang_google_protobuf",
8483
"org_golang_x_text",
8584
)

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# Common Expression Language
22

3-
[![Go Report Card](https://goreportcard.com/badge/github.com/google/cel-go)](https://goreportcard.com/report/github.com/google/cel-go)
4-
[![GoDoc](https://godoc.org/github.com/google/cel-go?status.svg)][6]
3+
[![Go Report Card](https://goreportcard.com/badge/github.com/authzed/cel-go)](https://goreportcard.com/report/github.com/authzed/cel-go)
4+
[![GoDoc](https://godoc.org/github.com/authzed/cel-go?status.svg)][6]
55

66
> [!WARNING]
77
> **On June 16, 2026, this repository will move to
88
> github.com/cel-expr/cel-go!**
99
>
1010
> Please update your links and dependencies. See the [pinned
11-
> issue](https://github.com/google/cel-go/issues/1329) for details.
11+
> issue](https://github.com/authzed/cel-go/issues/1329) for details.
1212
1313
The Common Expression Language (CEL) is a non-Turing complete language designed
1414
for simplicity, speed, safety, and portability. CEL's C-like [syntax][1] looks
@@ -64,7 +64,7 @@ Let's expose `name` and `group` variables to CEL using the `cel.Variable`
6464
environment option:
6565

6666
```go
67-
import "github.com/google/cel-go/cel"
67+
import "github.com/authzed/cel-go/cel"
6868

6969
env, err := cel.NewEnv(
7070
cel.Variable("name", cel.StringType),
@@ -288,6 +288,6 @@ Released under the [Apache License](LICENSE).
288288
[1]: https://github.com/google/cel-spec
289289
[2]: https://groups.google.com/forum/#!forum/cel-go-discuss
290290
[3]: https://github.com/google/cel-cpp
291-
[4]: https://github.com/google/cel-go/issues
291+
[4]: https://github.com/authzed/cel-go/issues
292292
[5]: https://bazel.build
293-
[6]: https://godoc.org/github.com/google/cel-go
293+
[6]: https://godoc.org/github.com/authzed/cel-go

cel/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ go_library(
2323
"validator.go",
2424
],
2525
embedsrcs = ["templates/authoring.tmpl"],
26-
importpath = "github.com/google/cel-go/cel",
26+
importpath = "github.com/authzed/cel-go/cel",
2727
visibility = ["//visibility:public"],
2828
deps = [
2929
"//cel/async:go_default_library",

cel/async/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ go_library(
99
srcs = [
1010
"async.go",
1111
],
12-
importpath = "github.com/google/cel-go/cel/async",
12+
importpath = "github.com/authzed/cel-go/cel/async",
1313
visibility = ["//visibility:public"],
1414
deps = [
1515
"//common/decls:go_default_library",

cel/async/async.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ import (
2121
"errors"
2222
"time"
2323

24-
"github.com/google/cel-go/common/decls"
25-
"github.com/google/cel-go/common/functions"
26-
"github.com/google/cel-go/common/types"
27-
"github.com/google/cel-go/common/types/ref"
28-
"github.com/google/cel-go/interpreter"
24+
"github.com/authzed/cel-go/common/decls"
25+
"github.com/authzed/cel-go/common/functions"
26+
"github.com/authzed/cel-go/common/types"
27+
"github.com/authzed/cel-go/common/types/ref"
28+
"github.com/authzed/cel-go/interpreter"
2929
)
3030

3131
// Call describes a pending or completed asynchronous function call.

cel/async/async_test.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ import (
2222
"testing"
2323
"time"
2424

25-
"github.com/google/cel-go/cel/async"
26-
"github.com/google/cel-go/common/decls"
27-
"github.com/google/cel-go/common/functions"
28-
"github.com/google/cel-go/common/types"
29-
"github.com/google/cel-go/common/types/ref"
25+
"github.com/authzed/cel-go/cel/async"
26+
"github.com/authzed/cel-go/common/decls"
27+
"github.com/authzed/cel-go/common/functions"
28+
"github.com/authzed/cel-go/common/types"
29+
"github.com/authzed/cel-go/common/types/ref"
3030
)
3131

3232
type retryableTestErr struct{}

cel/cel_example_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ import (
1919
"fmt"
2020
"log"
2121

22-
"github.com/google/cel-go/cel"
23-
"github.com/google/cel-go/common/types"
24-
"github.com/google/cel-go/common/types/ref"
22+
"github.com/authzed/cel-go/cel"
23+
"github.com/authzed/cel-go/common/types"
24+
"github.com/authzed/cel-go/common/types/ref"
2525
)
2626

2727
func Example() {

cel/cel_test.go

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -32,17 +32,17 @@ import (
3232
"google.golang.org/protobuf/reflect/protodesc"
3333
"google.golang.org/protobuf/reflect/protoreflect"
3434

35-
"github.com/google/cel-go/checker"
36-
celast "github.com/google/cel-go/common/ast"
37-
"github.com/google/cel-go/common/env"
38-
"github.com/google/cel-go/common/operators"
39-
"github.com/google/cel-go/common/overloads"
40-
"github.com/google/cel-go/common/types"
41-
"github.com/google/cel-go/common/types/ref"
42-
"github.com/google/cel-go/common/types/traits"
43-
"github.com/google/cel-go/interpreter"
44-
"github.com/google/cel-go/parser"
45-
"github.com/google/cel-go/test"
35+
"github.com/authzed/cel-go/checker"
36+
celast "github.com/authzed/cel-go/common/ast"
37+
"github.com/authzed/cel-go/common/env"
38+
"github.com/authzed/cel-go/common/operators"
39+
"github.com/authzed/cel-go/common/overloads"
40+
"github.com/authzed/cel-go/common/types"
41+
"github.com/authzed/cel-go/common/types/ref"
42+
"github.com/authzed/cel-go/common/types/traits"
43+
"github.com/authzed/cel-go/interpreter"
44+
"github.com/authzed/cel-go/parser"
45+
"github.com/authzed/cel-go/test"
4646

4747
exprpb "google.golang.org/genproto/googleapis/api/expr/v1alpha1"
4848
descpb "google.golang.org/protobuf/types/descriptorpb"
@@ -51,8 +51,8 @@ import (
5151
timestamppb "google.golang.org/protobuf/types/known/timestamppb"
5252
wrapperspb "google.golang.org/protobuf/types/known/wrapperspb"
5353

54-
proto2pb "github.com/google/cel-go/test/proto2pb"
55-
proto3pb "github.com/google/cel-go/test/proto3pb"
54+
proto2pb "github.com/authzed/cel-go/test/proto2pb"
55+
proto3pb "github.com/authzed/cel-go/test/proto3pb"
5656
)
5757

5858
func Test_ExampleWithBuiltins(t *testing.T) {

cel/decls.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ package cel
1717
import (
1818
"fmt"
1919

20-
"github.com/google/cel-go/common/ast"
21-
"github.com/google/cel-go/common/decls"
22-
"github.com/google/cel-go/common/functions"
23-
"github.com/google/cel-go/common/types"
24-
"github.com/google/cel-go/common/types/ref"
20+
"github.com/authzed/cel-go/common/ast"
21+
"github.com/authzed/cel-go/common/decls"
22+
"github.com/authzed/cel-go/common/functions"
23+
"github.com/authzed/cel-go/common/types"
24+
"github.com/authzed/cel-go/common/types/ref"
2525

2626
celpb "cel.dev/expr"
2727
exprpb "google.golang.org/genproto/googleapis/api/expr/v1alpha1"

cel/decls_test.go

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@ import (
2121
"strings"
2222
"testing"
2323

24-
chkdecls "github.com/google/cel-go/checker/decls"
25-
"github.com/google/cel-go/common/decls"
26-
"github.com/google/cel-go/common/functions"
27-
"github.com/google/cel-go/common/operators"
28-
"github.com/google/cel-go/common/overloads"
29-
"github.com/google/cel-go/common/stdlib"
30-
"github.com/google/cel-go/common/types"
31-
"github.com/google/cel-go/common/types/ref"
32-
"github.com/google/cel-go/common/types/traits"
24+
chkdecls "github.com/authzed/cel-go/checker/decls"
25+
"github.com/authzed/cel-go/common/decls"
26+
"github.com/authzed/cel-go/common/functions"
27+
"github.com/authzed/cel-go/common/operators"
28+
"github.com/authzed/cel-go/common/overloads"
29+
"github.com/authzed/cel-go/common/stdlib"
30+
"github.com/authzed/cel-go/common/types"
31+
"github.com/authzed/cel-go/common/types/ref"
32+
"github.com/authzed/cel-go/common/types/traits"
3333

3434
exprpb "google.golang.org/genproto/googleapis/api/expr/v1alpha1"
3535
)

0 commit comments

Comments
 (0)