Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: google/cel-go
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.25.0
Choose a base ref
...
head repository: google/cel-go
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.26.0
Choose a head ref
  • 16 commits
  • 57 files changed
  • 10 contributors

Commits on Apr 24, 2025

  1. fix test runner test cases (#1170)

    * fix test runner test cases
    * add empty check on programs and tests creation
    aakash070 authored Apr 24, 2025
    Configuration menu
    Copy the full SHA
    9ed72dd View commit details
    Browse the repository at this point in the history

Commits on Apr 25, 2025

  1. Sqrt func (#1166)

    * Adding math square root function
    * Adding info to readme on math square root function
    * Handle overload error and test NaN
    * adding version 2
    haribalan authored Apr 25, 2025
    Configuration menu
    Copy the full SHA
    ad76382 View commit details
    Browse the repository at this point in the history

Commits on May 1, 2025

  1. Fix lastIndexOf behavior against an empty string in strings extension (

    …#1173)
    
    * Fix lastIndexOf behavior against an empty string in strings extension
    l46kok authored May 1, 2025
    Configuration menu
    Copy the full SHA
    845f2a8 View commit details
    Browse the repository at this point in the history

Commits on May 7, 2025

  1. Configuration menu
    Copy the full SHA
    f6d3c92 View commit details
    Browse the repository at this point in the history

Commits on May 20, 2025

  1. Add bazel rule to trigger cel tests and return policy metadata while …

    …creating CEL programs (#1176)
    
    * add bazel rule to trigger cel test
    aakash070 authored May 20, 2025
    Configuration menu
    Copy the full SHA
    b1209b8 View commit details
    Browse the repository at this point in the history

Commits on May 23, 2025

  1. Create an util method to convert rpc status to eval status (#1178)

    * Create an util method to convert rpc status to eval status
    
    * Formatted the Go files.
    
    * Formatted the WORKSPACE file.
    
    * Add failing conformance test to SKIP_TESTS.
    
    * Added RefValue to ExprValue converter.
    
    * Update Module bazel.
    
    * Updated go.mod and go.sum.
    
    * Removed gRpc status dependencies from io and io_test.
    
    * formatted the files.
    
    * Followed the convention of returning the v1alpha1 format.
    
    * Updated the documentation.
    
    * Remove unnecessary dependencies.
    ChinmayMadeshi authored May 23, 2025
    Configuration menu
    Copy the full SHA
    83ab641 View commit details
    Browse the repository at this point in the history

Commits on May 28, 2025

  1. Configuration menu
    Copy the full SHA
    746d711 View commit details
    Browse the repository at this point in the history

Commits on Jun 3, 2025

  1. Configuration menu
    Copy the full SHA
    c55aebf View commit details
    Browse the repository at this point in the history

Commits on Jun 5, 2025

  1. Add documentation for YAML quirks in celpolicy (#1186)

    Also add top-level description field.
    
    The celpolicy parser has special handling for CEL expressions embedded
    in the YAML document in order to preserve location information. This is
    used to help the CEL compiler correctly highlight error location.
    
    As a consequence, the CEL expression will include
    characters that are normally not considered meaningful in YAML, and the
    literal and folded style for multiline strings are treated identically.
    jnthntatum authored Jun 5, 2025
    Configuration menu
    Copy the full SHA
    dc36eaa View commit details
    Browse the repository at this point in the history

Commits on Jun 20, 2025

  1. Add support for global constants to constant folder (#1180)

    Global constants like enums are represented in the AST as identifiers. These
    identifiers can be looked up in the AST reference map. If there is an entry
    in the reference map, we can try to fold it as a constant and to turn it into
    a literal.
    
    This reduces the size of the AST and unlocks more optimization
    opportunities.
    zeitgeist87 authored Jun 20, 2025
    Configuration menu
    Copy the full SHA
    66a441f View commit details
    Browse the repository at this point in the history

Commits on Jun 23, 2025

  1. Bump the npm_and_yarn group across 1 directory with 2 updates (#1188)

    Bumps the npm_and_yarn group with 2 updates in the /repl/appengine/web directory: [webpack-dev-server](https://github.com/webpack/webpack-dev-server) and [@angular-devkit/build-angular](https://github.com/angular/angular-cli).
    
    
    Updates `webpack-dev-server` from 5.2.0 to 5.2.1
    - [Release notes](https://github.com/webpack/webpack-dev-server/releases)
    - [Changelog](https://github.com/webpack/webpack-dev-server/blob/master/CHANGELOG.md)
    - [Commits](webpack/webpack-dev-server@v5.2.0...v5.2.1)
    
    Updates `@angular-devkit/build-angular` from 19.1.3 to 20.0.1
    - [Release notes](https://github.com/angular/angular-cli/releases)
    - [Changelog](https://github.com/angular/angular-cli/blob/main/CHANGELOG.md)
    - [Commits](angular/angular-cli@19.1.3...20.0.1)
    
    ---
    updated-dependencies:
    - dependency-name: webpack-dev-server
      dependency-version: 5.2.1
      dependency-type: indirect
      dependency-group: npm_and_yarn
    - dependency-name: "@angular-devkit/build-angular"
      dependency-version: 20.0.1
      dependency-type: direct:development
      dependency-group: npm_and_yarn
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Jun 23, 2025
    Configuration menu
    Copy the full SHA
    be08958 View commit details
    Browse the repository at this point in the history
  2. fix(checker): Correct Sprintf argument count in notAnOptionalFieldSel…

    …ectionCall (#1185)
    
    Signed-off-by: cuishuang <imcusg@gmail.com>
    cuishuang authored Jun 23, 2025
    Configuration menu
    Copy the full SHA
    050981e View commit details
    Browse the repository at this point in the history

Commits on Jul 1, 2025

  1. Add Regex Extension Library (#1187)

    Adds the Regex extension library for additional regular expression operations.
    
    Functions:
    
    `regex.replace(source : string, pattern_re : string, replace : string) -> string` -- replace all
    `regex.replace(source : string, pattern_re : string, replace : string, int : limit) -> string` -- replace all (capped)
    `regex.extract(source : string, pattern_re : string) -> optional(string)` -- extract pattern (first)
    `regex.extractAll(source : string, pattern_re : string) -> list(string)` -- extract pattern (all)
    maskri17 authored Jul 1, 2025
    Configuration menu
    Copy the full SHA
    a4b169a View commit details
    Browse the repository at this point in the history
  2. Add test runner option to configure a custom test suite parser (#1189)

    * add test runner option to configure a custom test suite parser
    aakash070 authored Jul 1, 2025
    Configuration menu
    Copy the full SHA
    41e7392 View commit details
    Browse the repository at this point in the history

Commits on Jul 8, 2025

  1. Configuration menu
    Copy the full SHA
    41023c5 View commit details
    Browse the repository at this point in the history

Commits on Jul 14, 2025

  1. Configuration menu
    Copy the full SHA
    b023645 View commit details
    Browse the repository at this point in the history
Loading