Releases: onflow/atree
v0.10.0
Atree v0.10.0 was refactored to reduce tech debt and it uses the updated features/stream-mode
branch of fxamacker/cbor v2.8.
Notable issues resolved:
- #464 Refactor and reduce technical debt. This helps us add new features, maintain, and optimize (e.g., Lazy Decoding).
- #539 and flow-go#7221 Update to newer
feature/stream-mode
branch in fxamacker/cbor from 2.4 to 2.8. This resolves build issue for external projects that depend on fxamacker/cbor 2.5 or newer versions.
Other changes needed by this release are at fxamacker/cbor:
- PR fxamacker/cbor#640 update branch v2.4->v2.7 (+15,260 −4,371)
- PR fxamacker/cbor#650 update branch v2.7->v2.8 (+2,328 −952)
What's Changed
Upgrade to fxamacker/cbor v2.8
- Bump fxamacker/cbor to latest feature/stream-mode by @fxamacker in #542
We ran extensive tests to check backward compatibility, etc. #539 (comment) before merging the version bump to main branches.
Refactor to reduce tech debt
- Remove old test files by @fxamacker in #475
- Rename and export
SlabIDLength
and related constants by @fxamacker in #478 - Replace SlabID{...} with NewSlabID() in tests by @fxamacker in #479
- Use NewDefaultDigesterBuilder() in tests by @fxamacker in #480
- Export PersistentSlabStorage funcs in export_test.go by @fxamacker in #481
- Avoid using unexported
SlabID
fields in tests by @fxamacker in #484 - Avoid creating ArrayDataSlab directly in tests by @fxamacker in #490
- Avoid using unexported
OrderedMap
fields in tests by @fxamacker in #489 - Avoid using unexported
Array
fields in tests by @fxamacker in #488 - Avoid using unexported constants in tests by @fxamacker in #485
- Avoid creating ArrayMetaDataSlab directly in tests by @fxamacker in #495
- Avoid using MapDataSlab & MapMetaDataSlab in tests by @fxamacker in #497
- Rename vars to reduce confusion (sizes vs counts) by @fxamacker in #498
- Avoid using unexported
mutableValueNotifier
in tests by @fxamacker in #499 - Use helper functions to compute array sizes in tests by @fxamacker in #500
- Use helper funcs to compute map byte sizes in tests by @fxamacker in #501
- Decouple non-test and test code by @fxamacker in #503
- Move test util funcs to test_utils package for reuse by smoke tests by @fxamacker in #504
- Rename cmd/stress to cmd/smoke (it only contains smoke tests) by @fxamacker in #505
- Refactor smoke test to reduce duplicate code by @fxamacker in #506
- Split array.go into smaller files and group related functions by @fxamacker in #508
- Split map.go into smaller files and group related functions by @fxamacker in #509
- Split storable.go & typeinfo.go into smaller files by @fxamacker in #510
- Split storage.go into smaller files by @fxamacker in #511
- Replace
panic("not reachable")
withpanic(NewUnreachableError())
by @turbolent in #512 - Split array_debug.go and map_debug.go into smaller files by @fxamacker in #513
- Replace empty interface with
any
by @fxamacker in #514 - Refactor array test & validation code to use range loops by @fxamacker in #515
- Improve consistency of variable names in array tests by @fxamacker in #516
- Refactor map tests & validation to use range loops by @fxamacker in #519
- Improve consistency of variable names in map tests by @fxamacker in #520
- Refactor non-test code to use range loops by @fxamacker in #521
- Fix some misspelled words in docs/comments by @leopardracer in #529
- Simplify and lint test code to improve maintainability and fix flakey test by @fxamacker in #522
- Use go1.21 slices package functions in tests by @fxamacker in #524
- Refactor to simplify merging child slabs in array by @fxamacker in #525
- Refactor to simplify rebalancing child slabs in array by @fxamacker in #526
- Refactor to simplify merging child slabs in map by @fxamacker in #527
- Refactor to simplify rebalancing child slabs in map by @fxamacker in #528
- Refactor ArrayMetaDataSlab.SplitChildSlab() to improve readability by @fxamacker in #530
- Use go1.21 slices package in array by @fxamacker in #531
- Use go1.21 slices package in map by @fxamacker in #532
- Use go1.21 clear() instead of loops to clear elements by @fxamacker in #533
- Simplify slab operations and reduce risks such as memory leaks, etc. by @fxamacker in #534
- Fix smoke test memory usage by @fxamacker in #536
Other Changes
- Bump actions/setup-go from 5.2.0 to 5.3.0 by @dependabot in #473
- Bump codecov/codecov-action from 5.1.2 to 5.3.1 by @dependabot in #487
- Bump github/codeql-action from 3.27.9 to 3.28.8 by @dependabot in #494
- Bump github/codeql-action from 3.28.8 to 3.28.9 by @dependabot in #502
- Bump to Go 1.23 and golangci-lint 1.63.4 by @fxamacker in #507
- Bump github/codeql-action from 3.28.9 to 3.28.10 by @dependabot in #517
- Bump lukechampine.com/blake3 from 1.3.0 to 1.4.0 by @dependabot in #518
- Bump codecov/codecov-action from 5.3.1 to 5.4.0 by @dependabot in #523
- Bump github/codeql-action from 3.28.10 to 3.28.11 by @dependabot in #537
- Bump actions/setup-go from 5.3.0 to 5.4.0 by @dependabot in #540
- Bump github/codeql-action from 3.28.11 to 3.28.12 by @dependabot in #541
- Bump github/codeql-action from 3.28.12 to 3.28.13 by @dependabot in #543
New Contributors
- @leopardracer made their first contribution in #529
Full Changelog: v0.9.0...v0.10.0
v0.9.0
@turbolent in #491 ported these 5 PRs from onflow/atree-internal
:
- [feature] Provide WrapperValue and WrapperStorable interfaces
(+5,937 −174)
by @fxamacker - [not a mainnet bug] Create unique composite type ID with no fields
(+4 −0)
by @fxamacker- This item only updates unreachable scenario (doesn't change behavior on mainnet).
- [not a mainnet bug] Update smoke test program for WrapperValue, etc.
(+559 −35)
by @fxamacker - [not a mainnet bug] Fix slab iterator used only by tests
(+148 −4)
by @fxamacker - [not a mainnet bug] Update LoadedValueIterator to check WrapperStorable
(+1,712 −1,462)
by @fxamacker
New Features
This release adds 2 new interfaces that can be used by client software:
atree.WrapperValue
atree.WrapperStorable
Some client software might use containers wrapped by an opaque object, which prevents external packages (e.g. Atree) from accessing the wrapped container.
To allow Atree to access such wrapped containers, client software can implement these new Atree interfaces in their opaque object to unwrap the container if needed.
Other changes are nits that don't affect mainnet (fix or improve some tests, cleanup an unreachable scenario, add more tests, etc.)
v0.8.1
What's Changed
This release adds the PersistentSlabStorage.HasUnsavedChanges()
function.
HasUnsaveChanges()
will be used by Cadence and Flow to optimize storage of domain registers to reduce payload count and mtrie count by 28.8% each (using zero downtime migration). Most of that effort will be at onflow/cadence
and onflow/flow-go
repos.
- Add function to check if address has unsaved changes in storage by @fxamacker in #450
Changes to CI and version bumps...
- Bump github.com/zeebo/blake3 from 0.2.3 to 0.2.4 by @dependabot in #437
- Bump github/codeql-action from 3.26.6 to 3.26.7 by @dependabot in #441
- Bump github/codeql-action from 3.26.7 to 3.26.8 by @dependabot in #442
- Bump actions/checkout from 4.1.7 to 4.2.0 by @dependabot in #444
- Bump github/codeql-action from 3.26.8 to 3.26.10 by @dependabot in #445
- Bump codecov/codecov-action from 4.5.0 to 4.6.0 by @dependabot in #446
- Bump github/codeql-action from 3.26.10 to 3.26.11 by @dependabot in #447
- Bump actions/checkout from 4.2.0 to 4.2.1 by @dependabot in #448
- Bump github/codeql-action from 3.26.11 to 3.26.13 by @dependabot in #449
- Bump actions/setup-go from 5.0.2 to 5.1.0 by @dependabot in #451
- Bump github/codeql-action from 3.26.13 to 3.27.0 by @dependabot in #452
- Bump actions/checkout from 4.2.1 to 4.2.2 by @dependabot in #453
- Bump github/codeql-action from 3.27.0 to 3.27.2 by @dependabot in #455
- Bump github/codeql-action from 3.27.2 to 3.27.3 by @dependabot in #456
- Bump codecov/codecov-action from 4.6.0 to 5.0.1 by @dependabot in #458
- Bump github/codeql-action from 3.27.3 to 3.27.4 by @dependabot in #457
- Bump github/codeql-action from 3.27.4 to 3.27.5 by @dependabot in #460
- Bump codecov/codecov-action from 5.0.1 to 5.0.7 by @dependabot in #462
- Bump github.com/stretchr/testify from 1.9.0 to 1.10.0 by @dependabot in #463
Full Changelog: v0.8.0...v0.8.1
v0.8.0
Atree v0.8.0 introduces payload inlining and metadata deduplication to improve memory use, storage size, and speed of various servers that use payloads (not limited to EN). This improves network stability and performance as we handle future data growth.
Inlining and deduplication reduces payload count and mtrie nodes. This reduces size and growth rate of execution state.
- Inlining stores small arrays and maps (previously stored in their own payload) into an existing payload.
- Deduplication removes redundant metadata (e.g. Cadence struct field names and type information) to reduce payload size.
This release passed multiple types of tests, including 1034 hours of smoke tests that concluded on August 19, 2024.
Results exceeded goals mentioned in Scaling Execution Node (forum announcement).
Note
Sept. 4, 2024: 🏆 Atree inlined 500 million payloads (-61%) and eliminated over 1 billion mtrie nodes on mainnet!
Impact of these payload and mtrie node reductions include:
- Reduced RAM use by hundreds of GB on each mainnet execution node.
- Reduced SSD storage use (e.g. checkpoint file sizes).
- Reduced network bandwidth for chunk data packs (mentioned by Peter).
- Speedup transactions by 5-8% (mentioned by Jan).
- Speedup network upgrades (e.g. Cadence 1.0 migrations, future migrations).
- Future efficiency of other servers, components, databases (files/cache/index), etc. that benefit from fewer payloads.
Sept. 30, 2024: 🏆 Beyond execution nodes, bluesign shared a 5x speedup in tinyAN bootstrap time!
"btw amazing work this atree inlining, my tinyAN bootstrap time improved like 5x"
Future: We can replace nonatree domain payloads with atree payloads to reduce mainnet payload count by another 20-30%.
While devnet (shown below) had better percentage improvements, mainnet eliminated more mtrie nodes (over 1 billion)!
Memory Reduction Before/After Atree Inlining & Deduplication (Devnet Aug 14, 2024)
Mtrie Nodes and Atree Payloads (Aug 14, 2024 Devnet) | Atree Payload Sizes (bytes) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Total Counts
Total Sizes
|
|
What's Changed (since v0.6.0)
- Change
OrderedMap.Get()
to returnValue
instead ofStorable
by @fxamacker in #318 - Change
Array.Get()
to returnValue
instead ofStorable
by @fxamacker in #316 - Optimize max map value size to reduce number of registers by @fxamacker in #314
- Refactor to remove lint warnings by @fxamacker in #319
- Add
Array.ID()
andOrderedMap.ID()
by @fxamacker in #321 - Rename ID to ValueID by @fxamacker in #325
- Refactor creating new StorableSlab by @fxamacker in #324
- Unexport
SlabID
fields to prevent misuse by @fxamacker in #323 - Rename StorageID related types, vars, and funcs by @fxamacker in #322
- Add support for iterating only loaded values by @fxamacker in #311
- Refactor
hasPointer
for register inlining by @fxamacker in #327 - Reduce size of encoded array slab and bump version by @fxamacker in #330
- Add ignore filters to dependabot.yml by @fxamacker in #302
- Reduce encoded size of map and bump version by @fxamacker in #331
- Update README.md to describe Atree by @fxamacker in #332
- Update responsible disclosure link by @jribbink in #333
- Fix slab size when resetting mutable storable in OrderedMap by @fxamacker in #337
- Omit empty next slab ID in encoded map data slab by @fxamacker in #340
- Omit empty next slab ID in encoded array data slab by @fxamacker in #339
- Fix slab size when resetting mutable storable in Array by @fxamacker in #336
- Refactor encoding version and flag to add more flags by @fxamacker in #338
- Add readonly iterators and support value mutations only from non-readonly iterators by @fxamacker in #345
- Atree Register Inlining and Data Deduplication by @fxamacker in #342
- Update smoke test for atree inlining by @fxamacker in #348
- Update for Cadence integration for atree inlining and deduplication by @fxamacker in #352
- Make smoke tests check recently added data deduplication feature by @fxamacker in #350
- Remove ContainerStorable.EncodeAsElement by @fxamacker in #354
- Add feature to support mutation for array and map iterators by @fxamacker in #359
- Add support for changing type info of atree arrays (atree inlining branch) by @fxamacker in #376
- Add support for changing type info of atree maps (atree inlining branch) by @fxamacker in #377
- Reduce RAM and persistent storage by deduplicating inlined dict type info by @fxamacker in #369
- Use encoded type info to deduplicate extra data by @fxamacker in #381
- Fix error type for external errors during serialization by @fxamacker in #382
- Add PersistentSlabStorage.GetAllChildReferences() for atree inlining by @fxamacker in #392
- Add feature to enable atree inlining migration to fix references to non-existent registers by @fxamacker in #388
- Fix migration filter for old unreferenced slabs (atree inlining feature branch) by @fxamacker in #396
- Add NonderterministicFastCommit to speed up migrations when ordering isn't required by @fxamacker in #403
- Add BatchPreload to decode slabs in parallel and cache by @fxamacker in #404
- Check mutation of elements from readonly map iterator by @fxamacker in #410
- Check mutation of elements from readonly array iterator by @fxamacker in #411
- Update comment for NondeterministicFastCommit by @fxamacker in #412
- Update copyright notice to Flow Foundation by @fxamacker in #415
- Update copyright notice to Flow Foundation (in main branch) by @fxamacker in #417
- Update feature/array-map-inlining (atree inlining feature branch) by @fxamacker in #428
- Merge
feature/array-map-inlining
(atree inlining feature branch) tomain
by @fxamacker in #429 - Add functions to check availablility of CBOR tag numbers by @fxamacker in #434
- Add SlabID.Address() by @fxamacker in #435
- Make smoke tests check if CBOR tag nums are reserved by @fxamacker in #436
Changes to CI and version bumps...
- Bump github.com/stretchr/testify from 1.8.1 to 1.8.2 by @dependabot in #289
- Bump actions/setup-go from 3 to 4 by @dependabot in #298
- Bump codecov/codecov-action from 3.1.1 to 3.1.3 by @dependabot in #300
- Bump codecov/codecov-action from 3.1.3 to 3.1.4 by @dependabot in #305
- Bump lukechampine.com/blake3 from 1.1.7 to 1.2.1 by @dependabot in #308
- Bump github.com/stretchr/testify from 1.8.2 to 1.8.4 by @dependabot in #309
- Bump safer-golangci-lint to 1.52.2 by @fxamacker in #304
- Bump codecov/codecov-action from 3.1.4 to 4.0.2 by @dependabot in #368
- Bump github.com/stretchr/testify from 1.8.4 to 1.9.0 by @dependabot in #371
- Pin CodeQL workflow dependencies by @fxamacker in #363
- Pin dependencies in coverage.yml by @fxamacker in #3...
v0.8.0-rc.6
Release 0.8.x (since v0.8.0-rc.1) introduces atree inlining and deduplication, so the data format is a breaking change from 0.7.x.
What's Changed Since 0.8.0-rc.5
To reduce risks, new functions were added to help projects using Atree avoid producing undecodable data in storage.
-
Add
IsCBORTagNumberRangeAvailable()
andReservedCBORTagNumberRange()
to check availablility of CBOR tag numbers by @fxamacker in #434 -
Add
SlabID.Address()
by @fxamacker in #435
Changes to CI and version bumps...
- Bump actions/setup-go from 4.1.0 to 5.0.2 by @dependabot in #427
- Bump github/codeql-action from 3.25.13 to 3.25.15 by @dependabot in #430
- Bump github/codeql-action from 3.25.15 to 3.26.0 by @dependabot in #432
Full Changelog: v0.8.0-rc.5...v0.8.0-rc.6
v0.8.0-rc.5
Release 0.8.x (since v0.8.0-rc.1) introduces atree inlining and deduplication, so the data format is a breaking change from 0.7.x.
What's Changed Since v0.6.0 (main branch)
v0.8.0-rc.5 merges atree inlining feature branch to main branch after extensive testing.
- Change
OrderedMap.Get()
to returnValue
instead ofStorable
by @fxamacker in #318 - Change
Array.Get()
to returnValue
instead ofStorable
by @fxamacker in #316 - Optimize max map value size to reduce number of registers by @fxamacker in #314
- Refactor to remove lint warnings by @fxamacker in #319
- Add
Array.ID()
andOrderedMap.ID()
by @fxamacker in #321 - Rename ID to ValueID by @fxamacker in #325
- Refactor creating new StorableSlab by @fxamacker in #324
- Unexport
SlabID
fields to prevent misuse by @fxamacker in #323 - Rename StorageID related types, vars, and funcs by @fxamacker in #322
- Add support for iterating only loaded values by @fxamacker in #311
- Refactor
hasPointer
for register inlining by @fxamacker in #327 - Reduce size of encoded array slab and bump version by @fxamacker in #330
- Add ignore filters to dependabot.yml by @fxamacker in #302
- Reduce encoded size of map and bump version by @fxamacker in #331
- Update README.md to describe Atree by @fxamacker in #332
- Update responsible disclosure link by @jribbink in #333
- Fix slab size when resetting mutable storable in OrderedMap by @fxamacker in #337
- Omit empty next slab ID in encoded map data slab by @fxamacker in #340
- Omit empty next slab ID in encoded array data slab by @fxamacker in #339
- Fix slab size when resetting mutable storable in Array by @fxamacker in #336
- Refactor encoding version and flag to add more flags by @fxamacker in #338
- Add readonly iterators and support value mutations only from non-readonly iterators by @fxamacker in #345
- Atree Register Inlining and Data Deduplication by @fxamacker in #342
- Update smoke test for atree inlining by @fxamacker in #348
- Update for Cadence integration for atree inlining and deduplication by @fxamacker in #352
- Make smoke tests check recently added data deduplication feature by @fxamacker in #350
- Remove ContainerStorable.EncodeAsElement by @fxamacker in #354
- Add feature to support mutation for array and map iterators by @fxamacker in #359
- Add support for changing type info of atree arrays (atree inlining branch) by @fxamacker in #376
- Add support for changing type info of atree maps (atree inlining branch) by @fxamacker in #377
- Reduce RAM and persistent storage by deduplicating inlined dict type info by @fxamacker in #369
- Use encoded type info to deduplicate extra data by @fxamacker in #381
- Fix error type for external errors during serialization by @fxamacker in #382
- Add PersistentSlabStorage.GetAllChildReferences() for atree inlining by @fxamacker in #392
- Add feature to enable atree inlining migration to fix references to non-existent registers by @fxamacker in #388
- Fix migration filter for old unreferenced slabs (atree inlining feature branch) by @fxamacker in #396
- Add NonderterministicFastCommit to speed up migrations when ordering isn't required by @fxamacker in #403
- Add BatchPreload to decode slabs in parallel and cache by @fxamacker in #404
- Check mutation of elements from readonly map iterator by @fxamacker in #410
- Check mutation of elements from readonly array iterator by @fxamacker in #411
- Update comment for NondeterministicFastCommit by @fxamacker in #412
- Update copyright notice to Flow Foundation by @fxamacker in #415
- Update copyright notice to Flow Foundation (in main branch) by @fxamacker in #417
- Update feature/array-map-inlining (atree inlining feature branch) by @fxamacker in #428
- Merge
feature/array-map-inlining
(atree inlining feature branch) tomain
by @fxamacker in #429
Changes to CI and version bumps...
- Bump github.com/stretchr/testify from 1.8.1 to 1.8.2 by @dependabot in #289
- Bump actions/setup-go from 3 to 4 by @dependabot in #298
- Bump codecov/codecov-action from 3.1.1 to 3.1.3 by @dependabot in #300
- Bump codecov/codecov-action from 3.1.3 to 3.1.4 by @dependabot in #305
- Bump lukechampine.com/blake3 from 1.1.7 to 1.2.1 by @dependabot in #308
- Bump github.com/stretchr/testify from 1.8.2 to 1.8.4 by @dependabot in #309
- Bump safer-golangci-lint to 1.52.2 by @fxamacker in #304
- Bump codecov/codecov-action from 3.1.4 to 4.0.2 by @dependabot in #368
- Bump github.com/stretchr/testify from 1.8.4 to 1.9.0 by @dependabot in #371
- Pin CodeQL workflow dependencies by @fxamacker in #363
- Pin dependencies in coverage.yml by @fxamacker in #366
- Pin dependencies in ci.yml by @fxamacker in #367
- Bump github/codeql-action from 3.24.6 to 3.24.8 by @dependabot in #378
- Bump github/codeql-action from 3.24.8 to 3.24.9 by @dependabot in #379
- Bump github/codeql-action from 3.24.9 to 3.24.10 by @dependabot in #384
- Bump codecov/codecov-action from 4.0.1 to 4.2.0 by @dependabot in #385
- Bump lukechampine.com/blake3 from 1.2.1 to 1.2.2 by @dependabot in #383
- Bump github/codeql-action from 3.24.10 to 3.25.0 by @dependabot in #389
- Bump github/codeql-action from 3.25.0 to 3.25.1 by @dependabot in #393
- Bump codecov/codecov-action from 4.2.0 to 4.3.0 by @dependabot in #390
- Bump github/codeql-action from 3.25.1 to 3.25.3 by @dependabot in #400
- Bump codecov/codecov-action from 4.3.0 to 4.3.1 by @dependabot in #401
- Bump github/codeql-action from 3.25.3 to 3.25.5 by @dependabot in #405
- Bump codecov/codecov-action from 4.3.1 to 4.4.1 by @dependabot in #408
- Bump github/codeql-action from 3.25.5 to 3.25.6 by @dependabot in #413
- Bump lukechampine.com/blake3 from 1.2.2 to 1.3.0 by @dependabot in #402
- Bump github/codeql-action from 3.25.6 to 3.25.7 by @dependabot in #414
- Bump github/codeql-action from 3.25.7 to 3.25.8 by @dependabot in #418
- Bump github/codeql-action from 3.25.8 to 3.25.10 by @dependabot in #420
- Bump codecov/codecov-action from 4.4.1 to 4.5.0 by @dependabot in #419
- Bump github/codeql-action from 3.25.10 to 3.25.11 by @dependabot in #423
- Bump golangci-lint to 1.56.2 by @fxamacker in #422
- Bump github/codeql-action from 3.25.11 to 3.25.12 by @dependabot in #424
- Bump actions/checkout from 4.1.1 to 4.1.7 by @dependabot in #425
- Bump github/codeql-action from 3.25.12 to 3.25.13 by @dependabot in #426
New Contributors
Full Changelog: v0.6.0...v0.8.0-rc.5
v0.8.0-rc.4
Release 0.8.x (since v0.8.0-rc.1) introduces atree inlining and deduplication, so the data format is a breaking change from 0.7.x.
What's Changed Since v0.8.0-rc.3
Changes in v0.8.0-rc.4 are limited to updated copyright notice, comments, and dependency version bumps.
More details...
- Bump codecov/codecov-action from 3.1.4 to 4.0.2 by @dependabot in #368
- Bump github.com/stretchr/testify from 1.8.4 to 1.9.0 by @dependabot in #371
- Pin CodeQL workflow dependencies by @fxamacker in #363
- Pin dependencies in coverage.yml by @fxamacker in #366
- Pin dependencies in ci.yml by @fxamacker in #367
- Bump github/codeql-action from 3.24.6 to 3.24.8 by @dependabot in #378
- Bump github/codeql-action from 3.24.8 to 3.24.9 by @dependabot in #379
- Bump github/codeql-action from 3.24.9 to 3.24.10 by @dependabot in #384
- Bump codecov/codecov-action from 4.0.1 to 4.2.0 by @dependabot in #385
- Bump lukechampine.com/blake3 from 1.2.1 to 1.2.2 by @dependabot in #383
- Bump github/codeql-action from 3.24.10 to 3.25.0 by @dependabot in #389
- Bump github/codeql-action from 3.25.0 to 3.25.1 by @dependabot in #393
- Bump codecov/codecov-action from 4.2.0 to 4.3.0 by @dependabot in #390
- Bump github/codeql-action from 3.25.1 to 3.25.3 by @dependabot in #400
- Bump codecov/codecov-action from 4.3.0 to 4.3.1 by @dependabot in #401
- Bump github/codeql-action from 3.25.3 to 3.25.5 by @dependabot in #405
- Bump codecov/codecov-action from 4.3.1 to 4.4.1 by @dependabot in #408
- Update comment for NondeterministicFastCommit by @fxamacker in #412
- Bump github/codeql-action from 3.25.5 to 3.25.6 by @dependabot in #413
- Bump lukechampine.com/blake3 from 1.2.2 to 1.3.0 by @dependabot in #402
- Bump github/codeql-action from 3.25.6 to 3.25.7 by @dependabot in #414
- Bump github/codeql-action from 3.25.7 to 3.25.8 by @dependabot in #418
- Update copyright notice to Flow Foundation by @fxamacker in #415
- Update copyright notice to Flow Foundation (in main branch) by @fxamacker in #417
- Bump github/codeql-action from 3.25.8 to 3.25.10 by @dependabot in #420
- Bump codecov/codecov-action from 4.4.1 to 4.5.0 by @dependabot in #419
- Bump github/codeql-action from 3.25.10 to 3.25.11 by @dependabot in #423
- Bump golangci-lint to 1.56.2 by @fxamacker in #422
- Bump github/codeql-action from 3.25.11 to 3.25.12 by @dependabot in #424
- Bump actions/checkout from 4.1.1 to 4.1.7 by @dependabot in #425
- Bump github/codeql-action from 3.25.12 to 3.25.13 by @dependabot in #426
- Update feature/array-map-inlining (atree inlining feature branch) by @fxamacker in #428
Full Changelog: v0.8.0-rc.3...v0.8.0-rc.4
v0.7.0-rc.3
The v0.7.x does not include atree inlining. Atree inlining is introduced in v0.8.0-rc.1 with breaking changes to data format.
What's Changed Since v0.7.0-rc.2
- Update copyright notice to Flow Foundation (in feature/stable-cadence) by @fxamacker in #416
Full Changelog: v0.7.0-rc.2...v0.7.0-rc.3
v0.8.0-rc.3
Release 0.8.x (since v0.8.0-rc.1) introduces atree inlining and deduplication, so the data format is a breaking change from 0.7.x.
What's Changed Since v0.8.0-rc.2
- Check mutation of elements from readonly map iterator by @fxamacker in #410
- Check mutation of elements from readonly array iterator by @fxamacker in #411
Full Changelog: v0.8.0-rc.2...v0.8.0-rc.3
v0.8.0-rc.2
Release 0.8.x (since v0.8.0-rc.1) introduces atree inlining and deduplication, so the data format is a breaking change from 0.7.x.
What's Changed Since v0.8.0-rc.1
- Add NonderterministicFastCommit to speed up migrations when ordering isn't required by @fxamacker in #403
- Add BatchPreload to decode slabs in parallel and cache by @fxamacker in #404
These new features are intended to be used by state migration programs in onflow/flow-go to speedup migrations.
Full Changelog: v0.8.0-rc.1...v0.8.0-rc.2