Skip to content

Releases: mutable-org/mutable

v0.0.209

01 May 11:41
181b7a4
Compare
Choose a tag to compare
[Wasm] Refactor to use `std::nullopt`.

v0.0.208

27 Apr 10:05
49ce7ed
Compare
Choose a tag to compare
Fix #230: Fix HyPer connector in benchmarks

v0.0.207: [CI] Sanity check parallel unit test utility

20 Apr 19:37
4969a30
Compare
Choose a tag to compare
Add a sanity check of the parallel unit test utility to CI.  This check
ensures that the utility correctly reprorts aborts, crashes, failures,
and successes.

Note that the result of this sanity run is added to the artifacts, but
not to the reports.  We do not want to clutter our GitLab test reports.

v0.0.206: [IR] Adapt Cost of Initial Upper Bound to Cost used during Search

20 Apr 12:25
Compare
Choose a tag to compare
During the Search we do not consider the cost for the final result. Currentlty this cost is condidered in the initial upper bound for cost-based pruning.
To resolve this issue, we only consider the sum of the costs of the left and the right subplan as the initial upper bound.
Adapt Test Cases to lower Initial Upper Bound for Pruning.

v0.0.205: [UTest] Fix #223: Fix unittest-parallel script.

19 Apr 18:12
df3ef76
Compare
Choose a tag to compare
This commit fixes several issues with the script at once:

- Fix #224.
- Fix #225.
- Fix #226.

v0.0.204

15 Apr 12:09
6fee5fb
Compare
Choose a tag to compare
[V8] Add `CollectTables` to map only accessed tables.

v0.0.203: [Interpreter] Fix strings with length exceeding `uint8_t`.

12 Apr 10:06
a973045
Compare
Choose a tag to compare
Prior to this commit, the string length was encoded into
the opcode of the `StackMachine` instructions `St_Tup_s`,
`Ld_s`, and `St_s`. However, this encoding was done using
the opcode type which is stored in a `uint8_t` internally.
Thus, strings exceeding the length of 255 characters let
the encoded length overflow.
To circumvent this issue, we now store the string length
in the stack machine's context which is able to hold
values up to `uint64_t`. Accessing the length is then done
via the stack itself.

v0.0.202

10 Apr 18:37
eb4de00
Compare
Choose a tag to compare
[Benchmark] Support multiple patterns to retrieve multiple times at o…

v0.0.201: [CMake] Explicitly build gitversion first.

10 Apr 17:37
20339fa
Compare
Choose a tag to compare
**THIS IS A HOTFIX:** We now **explicitly** build gitversion
before mu*t*able. Ultimately, this dependence should be
expressed using the "Superproject" approach.

v0.0.200

04 Apr 17:27
e45cf15
Compare
Choose a tag to compare
[Util] Mark conversion of `Pooled` to its reference as `explicit`