at runtime. The spec also documents a uniform definition of protobuf equality, and support
for cross-type numeric comparison to assist with evaluation over JSON data.
Spec Changes
The spec introduces heterogeneous equality to ensure that the following expressions
agree with the type-checker behavior and match user expectations. The following
examples are expressions which might have errors at runtime, but will now return
successfully:
json.number < 1
json.number == 2u
json.struct['key'] != null
json.number in [1, 2, 3]
For more details on the changes in semantics, see the spec updates in 232.
Typically, this change will not result in a breaking behavior as it shifts errors to
non-errors; however, some users may be relying on these errors and find the
non-error result requires a change in how CEL is used within their application.
* Document the duration string format supported by core implementations [200]
* Update the spec to support trailing commas in list, map, and struct literals [202]
* CEL Spec update to document heterogeneous equality, NaN, and ordering [232]
Tests
* Additional tests for overflow and documentation of overflow conditions [201]
* Update the `get_milliseconds` test to match the spec [206]
* Heterogeneous null conformance tests [218]
* Add tests to list and map for heterogeneous null comparisons [219]
* Add tests for heterogenous numeric comparison [220]
* Add conformance tests for message equality [223]
* Numeric in/equality tests across numeric types [230]
* Edge case tests for cross-type numeric comparisons [231]
Fixes
* Fix double to int min case. [204]
* Remove all references to v1beta1 by removing testdata/ [203]
* Ensure that numeric timezones in tests are spec-consistent [199]
* Minor typos and grammar fixes [229]
* Fix spec `ESCAPE` definition mismatch [226]
New Contributors
* jnthntatum made their first contribution in https://github.com/google/cel-spec/pull/223
* Daniel-Bloom-dfinity made their first contribution in https://github.com/google/cel-spec/pull/226
* git-sgmoore made their first contribution in https://github.com/google/cel-spec/pull/229
**Full Changelog**: https://github.com/google/cel-spec/compare/v0.6.0...v0.7.0