Skip to content

Commit c2be1b8

Browse files
Add changelog for version 8.8.0 (#460)
1 parent 26598f4 commit c2be1b8

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

docs/prover/changelog/prover_changelog.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,21 @@ Prover Release Notes
55
```{contents}
66
```
77

8+
8.8.0 (February 9, 2026)
9+
-------------------------
10+
### CVL
11+
- [feat] Added a builtin rule, `uncheckedOverflow` that checks whether arithmetic operations can overflow or underflow in `unchecked` code. The analysis is done for each external method and each unchecked operation that is reachable from the method call.
12+
- [feat] Added a builtin rule, `safeCasting` that checks whether any Solidity casting operator can be out of bounds (e.g., whether in `uint16(x)`, is it possible for `x` to be larger than `2^16-1`). Analysis is done for each external method and each casting operation that is reachable from the method call.
13+
- [feat] The `--method` and `--exclude_method` flags now allow providing only the method name (without any parameter types) for EVM. If there are several overloads for this function name, all of them will be matched.
14+
- [feat] New flag, `--assume_no_casting_overflow`, assumes no casting operations in Solidity are out of bounds. E.g., for `int16(x)` in Solidity code, `x` is assumed to be in the valid range of an `int16` when this flag is used. Note that this is an underapproximation, as Solidity does not revert on such out-of-bounds values.
15+
16+
### CI/CD
17+
- [feat] The GitHub action now replaces active reviews within the same configurations.
18+
- [feat] Added GitHub Actions API support for cancelling jobs and refreshing job status. This will require adding an additional workflow as described [here](https://github.com/Certora/certora-run-action/blob/main/README.md#certora-api-integration).
19+
- [feat] Added support for [Solana](https://github.com/Certora/certora-run-action/blob/main/README.md#inputs), [Sui](https://github.com/Certora/certora-run-action/blob/main/README.md#-note-installing-the-sui-cli), [Soroban](https://github.com/Certora/certora-run-action/blob/main/README.md#-note-installing-the-soroban-environment) and [Vyper](https://github.com/Certora/certora-run-action/blob/main/README.md#inputs).
20+
- [feat] Improved error logging by GitHub action.
21+
22+
823
8.6.3 (January 6, 2026)
924
-------------------------
1025
### CVL

spelling_wordlist.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@ bugfix
5050
bytecode
5151
bytecodes
5252
bytemap
53+
cancelled
54+
cancelling
5355
callee
5456
cex
5557
changelog

0 commit comments

Comments
 (0)