Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
5b37352
add MutationCount
turbolent May 29, 2026
a7dd4c2
share container state across *Array and *OrderedMap sibling instances
turbolent Jun 1, 2026
8f68792
fix handling of inlined slabs
turbolent Jun 1, 2026
52144d6
remove incorrect root replacement
turbolent Jun 2, 2026
3f65b57
add HasParentUpdater and HasReadOnlyMutationCallback
turbolent Jun 2, 2026
6f8e5cf
clean up
turbolent Jun 2, 2026
5a52761
add more tests for sibling
zhangchiqing Jun 3, 2026
af78e2d
Merge pull request #23 from onflow/leo/add-more-tests
turbolent Jun 3, 2026
6a539fb
also run CI for PRs against -rc branches
turbolent Jun 3, 2026
aab139e
also run CI for PRs against -rc branches
turbolent Jun 3, 2026
3c61ff2
Merge pull request #20 from onflow/bastian/add-mutation-count
turbolent Jun 3, 2026
47e553e
Merge branch 'v0.16-rc' into bastian/shared-state
turbolent Jun 3, 2026
c40d90e
Merge pull request #21 from onflow/bastian/shared-state
turbolent Jun 3, 2026
253b82e
use HasParentUpdater, remove Array.hasParentUpdater
turbolent Jun 10, 2026
90cf753
detect destroyed containers in NewArrayWithRootID / NewMapWithRootID
turbolent Jun 10, 2026
e60baf6
restore NotValueError check in NewMapWithRootID
turbolent Jun 10, 2026
6c887cb
clear state registry on DropDeltas
turbolent Jun 10, 2026
3113df4
invalidate cached mutated slabs on DropDeltas
turbolent Jun 12, 2026
d100bc2
Merge pull request #24 from onflow/bastian/pr-21-follow-up
turbolent Jun 12, 2026
d3e5294
reject root-ID access to inlined containers
turbolent Jun 26, 2026
0ad3c29
add docstrings for ensureRootIDLoadedInlinedMutationAllowed
turbolent Jun 29, 2026
82da486
Merge pull request #25 from onflow/bastian/reject-root-id-inlined-state
turbolent Jun 29, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,13 @@ on:
push:
branches:
- main
- '*-rc'
- 'feature/**'
- 'release-**'
pull_request:
branches:
- main
- '*-rc'
- 'feature/**'
- 'release-**'

Expand All @@ -24,7 +26,7 @@ concurrency:

jobs:

# Test on various OS with default Go version.
# Test on various OS with default Go version.
tests:
name: Test on ${{matrix.os}}
runs-on: ${{ matrix.os }}
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,5 @@

# Dependency directories (remove the comment below to include it)
# vendor/

.idea
Loading
Loading