-
Notifications
You must be signed in to change notification settings - Fork 138
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merge atree register inlining v1.0 #3502
Commits on Jan 25, 2024
-
This commit updates Cadence to use new Atree API - Array.Get() - OrderedMap.Get() - MaxInlineArrayElementSize() - MaxInlineMapKeySize() For more info, see Atree PRs: - onflow/atree#314 - onflow/atree#316 - onflow/atree#318
Configuration menu - View commit details
-
Copy full SHA for d364afc - Browse repository at this point
Copy the full SHA d364afcView commit details -
This commit updates Cadence to use new Atree API - Array.SlabID() - OrderedMap.SlabID() - SlabID - SlabIndex - etc. For more info, see Atree PRs: - onflow/atree#322 - onflow/atree#323 - onflow/atree#324
Configuration menu - View commit details
-
Copy full SHA for 79a115d - Browse repository at this point
Copy the full SHA 79a115dView commit details -
Track resources with atree.ValueID instead of SlabID
Currently, Array.SlabID() and OrderedMap.SlabID() are used as identifier to track resources, etc because slab IDs are guaranteed to unique. However, atree slab ID should be only used to retrieve slabs (registers) from storage. Also, when Atree register inlining is implemented in the future, some resources may not be stored in separate slabs, so they will not have slab IDs anymore. This commit uses Array.ValueID() and OrderedMap.ValueID() to uniquely identify resources.
Configuration menu - View commit details
-
Copy full SHA for caa71b7 - Browse repository at this point
Copy the full SHA caa71b7View commit details -
Configuration menu - View commit details
-
Copy full SHA for efc4100 - Browse repository at this point
Copy the full SHA efc4100View commit details -
Integrate with atree inlining and deduplication
This commit updates Cadence to use newer version of onflow/atree with register inlining and data deduplication features. - Updated StorableDecoder callbacks - Updated StringAtreeValue to implement atree.ComparableStorable - Updated SomeStorable to implement atree.ContainerStorable - Updated these structs to implement TypeInfo interface: * compositeTypeInfo * EmptyTypeInfo * VariableSizedStaticType * ConstantSizedStaticType * DictionaryStaticType - Updated decodeStorable() to decode atree inlined array, map, and compact map - Updated to use ReadOnly iterators when possible - Updated to use NonReadOnly iterators
Configuration menu - View commit details
-
Copy full SHA for 2c7fb10 - Browse repository at this point
Copy the full SHA 2c7fb10View commit details -
Configuration menu - View commit details
-
Copy full SHA for c9f615b - Browse repository at this point
Copy the full SHA c9f615bView commit details -
Co-authored-by: Bastian Müller <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 829cbc0 - Browse repository at this point
Copy the full SHA 829cbc0View commit details -
Simplify TypeInfo.Identifier()
Co-authored-by: Bastian Müller <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for e88e39b - Browse repository at this point
Copy the full SHA e88e39bView commit details -
Reformat with extra lines for readability
Co-authored-by: Supun Setunga <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 1130343 - Browse repository at this point
Copy the full SHA 1130343View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8d4310f - Browse repository at this point
Copy the full SHA 8d4310fView commit details -
Configuration menu - View commit details
-
Copy full SHA for b339351 - Browse repository at this point
Copy the full SHA b339351View commit details -
Configuration menu - View commit details
-
Copy full SHA for 02c96a8 - Browse repository at this point
Copy the full SHA 02c96a8View commit details -
simplify dictionary iterator to just support key iteration, which all…
…ows using read-only iterator
Configuration menu - View commit details
-
Copy full SHA for 5fa310c - Browse repository at this point
Copy the full SHA 5fa310cView commit details -
Configuration menu - View commit details
-
Copy full SHA for b875ba1 - Browse repository at this point
Copy the full SHA b875ba1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 273e2c6 - Browse repository at this point
Copy the full SHA 273e2c6View commit details -
address TODOs: Identifier functions can use StaticType.ID, Copy can r…
…eturn shallow copy
Configuration menu - View commit details
-
Copy full SHA for 4c75345 - Browse repository at this point
Copy the full SHA 4c75345View commit details -
Configuration menu - View commit details
-
Copy full SHA for 766a6f8 - Browse repository at this point
Copy the full SHA 766a6f8View commit details -
Refactor SomeStorable encoding
Currently (in master), there are 4 cases of SomeStorable encoding: - SomeStorable and its content are encoded inline - SomeStorable is encoded inline while its content is encoded in separate slab when content size exceeds size limit - SomeStorable and its content are encoded in separate slab when content size fits withinin size limit but SomeStorable plus its content size exceeds size limit - SomeStorable and its content are encoded across multiple slabs when there are multiple nested SomeStorable and some of them exceeds size limit Given this, adding Atree Inlining feature (onflow/atree PR 342) makes encoding even more complicated for SomeStorable when it contains inlined array or map. This commit simplifies encoding by removing the last 2 cases, so SomeStorable can be encoded in two ways: - if innermost value is too large, innermost value is encoded in a separate slab while SomeStorable wrapper is encoded inline with reference to slab containing innermost value. - otherwise, SomeStorable with innermost value is encoded inline. The above applies to both immutable innermost value (such as StringValue), and mutable innermost value (such as ArrayValue). Additionally, this commit also adds new efficient encoding for SomeStorable when it has multiple nested levels (SomeStorable containing SomeStorable).
Configuration menu - View commit details
-
Copy full SHA for 7977031 - Browse repository at this point
Copy the full SHA 7977031View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3a36523 - Browse repository at this point
Copy the full SHA 3a36523View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5e2d3e4 - Browse repository at this point
Copy the full SHA 5e2d3e4View commit details -
Configuration menu - View commit details
-
Copy full SHA for c9efb80 - Browse repository at this point
Copy the full SHA c9efb80View commit details -
Co-authored-by: Bastian Müller <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 98e8a09 - Browse repository at this point
Copy the full SHA 98e8a09View commit details -
Configuration menu - View commit details
-
Copy full SHA for c316e18 - Browse repository at this point
Copy the full SHA c316e18View commit details -
Configuration menu - View commit details
-
Copy full SHA for 54a9289 - Browse repository at this point
Copy the full SHA 54a9289View commit details -
Add reproducer for false alarm (unreachable slab)
Cadence smoke test is reporting false alarm about "slab was not reachable". To summarize, storage.CheckHealth() should be called after array.DeepRemove(), rather than in the middle of array.DeepRemove(). CheckHealth() is called in the middle of array.DeepRemove() when: - array.DeepRemove() calls childArray1 and childArray2 DeepRemove() - DeepRemove() calls maybeValidateAtreeValue() - maybeValidateAtreeValue() calls CheckHealth() The details are more complex than this oversimplified summary. For more context, see comments/discussion on GitHub at #2882 (comment)
Configuration menu - View commit details
-
Copy full SHA for e6bc174 - Browse repository at this point
Copy the full SHA e6bc174View commit details -
Configuration menu - View commit details
-
Copy full SHA for fd2567c - Browse repository at this point
Copy the full SHA fd2567cView commit details -
always perform atree value validation, only perform atree storage val…
…idation at root of deep remove
Configuration menu - View commit details
-
Copy full SHA for 6d470cc - Browse repository at this point
Copy the full SHA 6d470ccView commit details -
Add reproducer for false alarm (unreachable slab)
Cadence smoke test reported another false alarm about "slab was not reachable". To summarize, storage.CheckHealth() should be called after DictionaryValue.Transfer() with remove flag, rather than in the middle of DictionaryValue.Transfer() with remove flag. The details are more complex than this oversimplified summary. For more context, see GitHub comments at #2882 (comment)
Configuration menu - View commit details
-
Copy full SHA for ba3ccd9 - Browse repository at this point
Copy the full SHA ba3ccd9View commit details
Commits on Jan 26, 2024
-
Add
atRoot
parameter to Value.Transfer()This commit adds a new parameter atRoot to Transfer(). Atree storage is validated only if both remove and atRoot parameters are true in ArrayValue.Transfer(), DictionaryValue.Transfer(), and CompositeValue.Transfer(). Currently in ArrayValue.Transfer(), DictionaryValue.Transfer(), and CompositeValue.Transfer() if remove parameter is true: - atree storage is validated - container slab is removed However, when transferring nested ArrayValue, DictionaryValue, and CompositeValue with remove flag, atree storage validation can fail because child slab is removed while parent container is not reset completely yet. This validation problem is similar to the previously fixed atree storage validation problem during nested DeepRemove().
Configuration menu - View commit details
-
Copy full SHA for 2f24479 - Browse repository at this point
Copy the full SHA 2f24479View commit details -
Use Atree non-readonly iterators in Transfer()
If remove parameter is true in Transfer(), iterated values are removed so non-readonly iterators need to be used.
Configuration menu - View commit details
-
Copy full SHA for eb897b2 - Browse repository at this point
Copy the full SHA eb897b2View commit details -
Rename atRoot param for Transfer() and DeepRemove()
- Renamed atRoot param to hasNoParentContainer for Transfer() and DeepRemove() - Added comments for each instances of hasNoParentContainer for Transfer() - For SomeValue.Transfer() and PublishedValue.Transfer(), use received hasNoParentContainer argument as inner value's Transfer() parameter
Configuration menu - View commit details
-
Copy full SHA for b41c0ea - Browse repository at this point
Copy the full SHA b41c0eaView commit details -
Use hasNoParentContainer for inner value DeepRemove()
For SomeValue.DeepRemove(), PathCapabilityValue.Transfer(), and IDCapabilityValue.DeepRemove(), use received hasNoParentContainer argument as inner value's DeepRemove() parameter. Also, add comments for hasNoParentContainer in DeepRemove().
Configuration menu - View commit details
-
Copy full SHA for 1d38c99 - Browse repository at this point
Copy the full SHA 1d38c99View commit details -
Configuration menu - View commit details
-
Copy full SHA for d2b71e6 - Browse repository at this point
Copy the full SHA d2b71e6View commit details -
Configuration menu - View commit details
-
Copy full SHA for e185aad - Browse repository at this point
Copy the full SHA e185aadView commit details -
Configuration menu - View commit details
-
Copy full SHA for dbdb55f - Browse repository at this point
Copy the full SHA dbdb55fView commit details -
Configuration menu - View commit details
-
Copy full SHA for e959433 - Browse repository at this point
Copy the full SHA e959433View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6a87ada - Browse repository at this point
Copy the full SHA 6a87adaView commit details -
Configuration menu - View commit details
-
Copy full SHA for b9acebe - Browse repository at this point
Copy the full SHA b9acebeView commit details -
Configuration menu - View commit details
-
Copy full SHA for 0f13c24 - Browse repository at this point
Copy the full SHA 0f13c24View commit details -
Configuration menu - View commit details
-
Copy full SHA for 027e3c0 - Browse repository at this point
Copy the full SHA 027e3c0View commit details
Commits on Jan 30, 2024
-
Apply suggestions from code review
Co-authored-by: Faye Amacker <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 137c8b1 - Browse repository at this point
Copy the full SHA 137c8b1View commit details -
Configuration menu - View commit details
-
Copy full SHA for f9c1d68 - Browse repository at this point
Copy the full SHA f9c1d68View commit details -
Configuration menu - View commit details
-
Copy full SHA for e7beed7 - Browse repository at this point
Copy the full SHA e7beed7View commit details -
Configuration menu - View commit details
-
Copy full SHA for d4f10b0 - Browse repository at this point
Copy the full SHA d4f10b0View commit details -
Entitlement migration was broken because new dictionary value was created with zero address using NewDictionaryValue(). This commit fixes entitlement migration by creating new dictionary value with owner address using NewDictionaryValueWithAddress().
Configuration menu - View commit details
-
Copy full SHA for d0b144b - Browse repository at this point
Copy the full SHA d0b144bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 0f46cb4 - Browse repository at this point
Copy the full SHA 0f46cb4View commit details -
Configuration menu - View commit details
-
Copy full SHA for c8b0110 - Browse repository at this point
Copy the full SHA c8b0110View commit details -
Configuration menu - View commit details
-
Copy full SHA for bedd498 - Browse repository at this point
Copy the full SHA bedd498View commit details
Commits on Jan 31, 2024
-
Configuration menu - View commit details
-
Copy full SHA for b89fc51 - Browse repository at this point
Copy the full SHA b89fc51View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6713e43 - Browse repository at this point
Copy the full SHA 6713e43View commit details
Commits on Mar 12, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 3f70345 - Browse repository at this point
Copy the full SHA 3f70345View commit details
Commits on Mar 15, 2024
-
Bump atree version for extra deduplication
This commit bumps atree version to benefit from deduplication of atree inlined Cadence dictionary type info. For more info, see onflow/atree#369
Configuration menu - View commit details
-
Copy full SHA for 0f59d17 - Browse repository at this point
Copy the full SHA 0f59d17View commit details -
Merge branch 'master' of https://github.com/onflow/cadence into supun…
…/atree-inlining-merge-master
Configuration menu - View commit details
-
Copy full SHA for de87603 - Browse repository at this point
Copy the full SHA de87603View commit details -
Merge branch 'fxamacker/update-atree-register-inlining-v1.0' of https…
…://github.com/onflow/cadence into supun/atree-inlining-merge-master
Configuration menu - View commit details
-
Copy full SHA for 686b54c - Browse repository at this point
Copy the full SHA 686b54cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 7fc0649 - Browse repository at this point
Copy the full SHA 7fc0649View commit details
Commits on Mar 28, 2024
-
Merge pull request #3178 from onflow/fxamacker/update-atree-register-…
…inlining-v1.0 Bump atree version in Cadence v1.0 for new features (e.g. deduplication of Cadence dictionary type info)
Configuration menu - View commit details
-
Copy full SHA for 2cf9fce - Browse repository at this point
Copy the full SHA 2cf9fceView commit details
Commits on Apr 4, 2024
-
Use atree non-readonly iterators in some places
Currently, we are not sure if all uses can be guaranteed to be readonly in two functions, so this commit uses atree non-readonly iterators in: - CompositeValue.ForEachFieldName - DictionaryValue.IterateKeys Also added TODO to determine if all uses can be guaranteed to be readonly for these, which would allow us to revert this change.
Configuration menu - View commit details
-
Copy full SHA for b68900d - Browse repository at this point
Copy the full SHA b68900dView commit details -
Merge pull request #3170 from onflow/fxamacker/use-atree-readonly-ite…
…rators Use atree readonly iterators when mutation of values is not needed
Configuration menu - View commit details
-
Copy full SHA for fccfa81 - Browse repository at this point
Copy the full SHA fccfa81View commit details
Commits on Apr 8, 2024
-
Configuration menu - View commit details
-
Copy full SHA for b591a0d - Browse repository at this point
Copy the full SHA b591a0dView commit details -
Merge pull request #3179 from onflow/supun/atree-inlining-merge-master
Sync atree inlining branch with master
Configuration menu - View commit details
-
Copy full SHA for d258aa6 - Browse repository at this point
Copy the full SHA d258aa6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 03e9e10 - Browse repository at this point
Copy the full SHA 03e9e10View commit details -
improve StorageMigration.MigrateNestedValue for DictionaryValue: use …
…read-only iterator
Configuration menu - View commit details
-
Copy full SHA for 0a3b9d3 - Browse repository at this point
Copy the full SHA 0a3b9d3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2f646ef - Browse repository at this point
Copy the full SHA 2f646efView commit details
Commits on Apr 9, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 43ad9af - Browse repository at this point
Copy the full SHA 43ad9afView commit details -
Merge branch 'feature/atree-register-inlining-v1.0' into bastian/impr…
…ove-atree-register-inlining-v1.0
Configuration menu - View commit details
-
Copy full SHA for f633feb - Browse repository at this point
Copy the full SHA f633febView commit details -
Configuration menu - View commit details
-
Copy full SHA for 6ff442c - Browse repository at this point
Copy the full SHA 6ff442cView commit details
Commits on Apr 11, 2024
-
Bump atree inlining version to latest
This bumps onflow/atree version to latest feature branch for atree inlining and deduplication.
Configuration menu - View commit details
-
Copy full SHA for a55080f - Browse repository at this point
Copy the full SHA a55080fView commit details -
Merge pull request #3223 from onflow/fxamacker/bump-atree-inlining-ve…
…rsion-for-cadence-v1.0 Bump onflow/atree to latest version in feature/atree-register-inlining-v1.0
Configuration menu - View commit details
-
Copy full SHA for 5de6f1c - Browse repository at this point
Copy the full SHA 5de6f1cView commit details
Commits on Apr 17, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 6e906c4 - Browse repository at this point
Copy the full SHA 6e906c4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8bb9cdb - Browse repository at this point
Copy the full SHA 8bb9cdbView commit details -
Configuration menu - View commit details
-
Copy full SHA for 187eda8 - Browse repository at this point
Copy the full SHA 187eda8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8ad7730 - Browse repository at this point
Copy the full SHA 8ad7730View commit details
Commits on Apr 18, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 7a3924d - Browse repository at this point
Copy the full SHA 7a3924dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 0362bdc - Browse repository at this point
Copy the full SHA 0362bdcView commit details
Commits on Apr 24, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 1f3a30a - Browse repository at this point
Copy the full SHA 1f3a30aView commit details
Commits on Apr 26, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 54e8b88 - Browse repository at this point
Copy the full SHA 54e8b88View commit details -
Configuration menu - View commit details
-
Copy full SHA for 36d178c - Browse repository at this point
Copy the full SHA 36d178cView commit details
Commits on Apr 29, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 5c8d6dd - Browse repository at this point
Copy the full SHA 5c8d6ddView commit details -
Merge pull request #3295 from onflow/fxamacker/bump-atree-version-in-…
…atree-register-inlining-v1.0
Configuration menu - View commit details
-
Copy full SHA for e29e0f3 - Browse repository at this point
Copy the full SHA e29e0f3View commit details
Commits on Apr 30, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 88681ed - Browse repository at this point
Copy the full SHA 88681edView commit details
Commits on May 1, 2024
-
Merge pull request #3301 from onflow/bastian/update-atree-register-in…
…lining-v1.0-2
Configuration menu - View commit details
-
Copy full SHA for 09bb39a - Browse repository at this point
Copy the full SHA 09bb39aView commit details
Commits on May 2, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 376e899 - Browse repository at this point
Copy the full SHA 376e899View commit details -
Configuration menu - View commit details
-
Copy full SHA for d379376 - Browse repository at this point
Copy the full SHA d379376View commit details -
Configuration menu - View commit details
-
Copy full SHA for 436918f - Browse repository at this point
Copy the full SHA 436918fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 153d4a3 - Browse repository at this point
Copy the full SHA 153d4a3View commit details -
Merge pull request #3306 from onflow/bastian/update-atree-register-in…
…lining-v1.0-3
Configuration menu - View commit details
-
Copy full SHA for 4ef6541 - Browse repository at this point
Copy the full SHA 4ef6541View commit details
Commits on May 3, 2024
-
Add reproducer as test for Cadence 1.0 issue #3288
The problem was initially detected in testnet migration of atree inlined data with Cadence 1.0 migration. The bug happened with 5 nested levels of data while this reproducer is simplified to use 3 nested levels. More info at: #3288
Configuration menu - View commit details
-
Copy full SHA for b53f2a2 - Browse repository at this point
Copy the full SHA b53f2a2View commit details -
Configuration menu - View commit details
-
Copy full SHA for f75d6b4 - Browse repository at this point
Copy the full SHA f75d6b4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 59166f4 - Browse repository at this point
Copy the full SHA 59166f4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 891e9db - Browse repository at this point
Copy the full SHA 891e9dbView commit details
Commits on May 6, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 6f8923c - Browse repository at this point
Copy the full SHA 6f8923cView commit details -
Fix MigrateNestedValue() for dictionary value
This commit fixes Cadence 1.0 migration when using atree inlined data. See issue: #3288 Previously, MigrateNestedValue() migrates dictionary by using readonly iterator and migrating values in place. This commit migrates keys first using readonly iterator and then migrates values using mutable iterator.
Configuration menu - View commit details
-
Copy full SHA for 48afb37 - Browse repository at this point
Copy the full SHA 48afb37View commit details
Commits on May 7, 2024
-
Merge pull request #3316 from onflow/fxamacker/fix-issue-3288
Fix Cadence 1.0 migration of dictionary values when using atree inlined data
Configuration menu - View commit details
-
Copy full SHA for a0f835b - Browse repository at this point
Copy the full SHA a0f835bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 47da8f3 - Browse repository at this point
Copy the full SHA 47da8f3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4c65c4e - Browse repository at this point
Copy the full SHA 4c65c4eView commit details -
Configuration menu - View commit details
-
Copy full SHA for b7bef97 - Browse repository at this point
Copy the full SHA b7bef97View commit details -
Merge branch 'bastian/sync-atree-register-inlining-v1.0' into fxamack…
…er/add-reproducer-for-issue-3288
Configuration menu - View commit details
-
Copy full SHA for 1842ed9 - Browse repository at this point
Copy the full SHA 1842ed9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7053cd6 - Browse repository at this point
Copy the full SHA 7053cd6View commit details -
Configuration menu - View commit details
-
Copy full SHA for fac39f8 - Browse repository at this point
Copy the full SHA fac39f8View commit details -
Merge branch 'feature/atree-register-inlining-v1.0' into fxamacker/ad…
…d-reproducer-for-issue-3288
Configuration menu - View commit details
-
Copy full SHA for 69ac0b1 - Browse repository at this point
Copy the full SHA 69ac0b1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6d49c8c - Browse repository at this point
Copy the full SHA 6d49c8cView commit details
Commits on May 14, 2024
-
Configuration menu - View commit details
-
Copy full SHA for ab9f678 - Browse repository at this point
Copy the full SHA ab9f678View commit details -
Merge pull request #3346 from onflow/fxamacker/bump-atree-inlining-ve…
…rsion-for-cadence-v1.0 Bump atree version to v0.8.0-rc.2 in feature/atree-register-inlining-v1.0
Configuration menu - View commit details
-
Copy full SHA for ab00c49 - Browse repository at this point
Copy the full SHA ab00c49View commit details
Commits on May 15, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 986cb08 - Browse repository at this point
Copy the full SHA 986cb08View commit details -
Merge pull request #3351 from onflow/fxamacker/sync-atree-register-in…
…lining-v1.0 Sync feature/atree-register-inlining-v1.0 with master
Configuration menu - View commit details
-
Copy full SHA for 72871ab - Browse repository at this point
Copy the full SHA 72871abView commit details -
Configuration menu - View commit details
-
Copy full SHA for f1e0bf3 - Browse repository at this point
Copy the full SHA f1e0bf3View commit details
Commits on May 17, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 4b18330 - Browse repository at this point
Copy the full SHA 4b18330View commit details -
Merge pull request #3359 from onflow/bastian/sync-atree-register-inli…
…ning-v1.0-2 Update atree register inlining v1.0
Configuration menu - View commit details
-
Copy full SHA for 8a3df6a - Browse repository at this point
Copy the full SHA 8a3df6aView commit details
Commits on May 21, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 90a8770 - Browse repository at this point
Copy the full SHA 90a8770View commit details -
Merge pull request #3365 from onflow/fxamacker/bump-atree-inlining-ve…
…rsion-for-cadence-v1.0 Bump atree version to v0.8.0-rc.3 in feature/atree-register-inlining-v1.0
Configuration menu - View commit details
-
Copy full SHA for 72e083b - Browse repository at this point
Copy the full SHA 72e083bView commit details
Commits on May 28, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 90d6bba - Browse repository at this point
Copy the full SHA 90d6bbaView commit details -
Merge pull request #3378 from onflow/bastian/update-atree-register-in…
…lining-v1.0-4
Configuration menu - View commit details
-
Copy full SHA for a187365 - Browse repository at this point
Copy the full SHA a187365View commit details
Commits on May 29, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 8b6f720 - Browse repository at this point
Copy the full SHA 8b6f720View commit details
Commits on May 30, 2024
-
Merge pull request #3383 from onflow/bastian/update-atree-register-in…
…lining-v1.0-5
Configuration menu - View commit details
-
Copy full SHA for a1aa985 - Browse repository at this point
Copy the full SHA a1aa985View commit details
Commits on Jun 4, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 45ad1ff - Browse repository at this point
Copy the full SHA 45ad1ffView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4ec260d - Browse repository at this point
Copy the full SHA 4ec260dView commit details -
Merge pull request #3390 from onflow/bastian/update-atree-register-in…
…lining-v1.0-6
Configuration menu - View commit details
-
Copy full SHA for 4c5a7b7 - Browse repository at this point
Copy the full SHA 4c5a7b7View commit details
Commits on Jun 12, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 23662c0 - Browse repository at this point
Copy the full SHA 23662c0View commit details -
Merge pull request #3414 from onflow/fxamacker/update-atree-register-…
…inlining-v1.0
Configuration menu - View commit details
-
Copy full SHA for cefaee0 - Browse repository at this point
Copy the full SHA cefaee0View commit details -
Configuration menu - View commit details
-
Copy full SHA for b32120c - Browse repository at this point
Copy the full SHA b32120cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2447533 - Browse repository at this point
Copy the full SHA 2447533View commit details
Commits on Jun 25, 2024
-
Configuration menu - View commit details
-
Copy full SHA for ad625dd - Browse repository at this point
Copy the full SHA ad625ddView commit details -
Merge pull request #3438 from onflow/bastian/update-atree-inlining-ca…
…dence-v1.0-11
Configuration menu - View commit details
-
Copy full SHA for dd97a3e - Browse repository at this point
Copy the full SHA dd97a3eView commit details
Commits on Jul 8, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 38f634c - Browse repository at this point
Copy the full SHA 38f634cView commit details -
Configuration menu - View commit details
-
Copy full SHA for c45e331 - Browse repository at this point
Copy the full SHA c45e331View commit details -
Merge pull request #3454 from onflow/bastian/update-atree-register-in…
…lining-v1.0-7
Configuration menu - View commit details
-
Copy full SHA for d358573 - Browse repository at this point
Copy the full SHA d358573View commit details
Commits on Jul 12, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 15cb429 - Browse repository at this point
Copy the full SHA 15cb429View commit details -
Merge pull request #3467 from onflow/bastian/update-atree-inlining-ca…
…dence-v1.0-12
Configuration menu - View commit details
-
Copy full SHA for 0761227 - Browse repository at this point
Copy the full SHA 0761227View commit details
Commits on Jul 16, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 77694d4 - Browse repository at this point
Copy the full SHA 77694d4View commit details -
Merge pull request #3472 from onflow/bastian/update-atree-inlining-ca…
…dence-v1.0-13
Configuration menu - View commit details
-
Copy full SHA for 4656b51 - Browse repository at this point
Copy the full SHA 4656b51View commit details -
Configuration menu - View commit details
-
Copy full SHA for 91f78cb - Browse repository at this point
Copy the full SHA 91f78cbView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2ae996b - Browse repository at this point
Copy the full SHA 2ae996bView commit details -
Merge pull request #3474 from onflow/fxamacker/update-atree-register-…
…inlining-v1.0 Update feature/atree-register-inlining-v1.0
Configuration menu - View commit details
-
Copy full SHA for 84c7d3d - Browse repository at this point
Copy the full SHA 84c7d3dView commit details
Commits on Jul 24, 2024
-
Configuration menu - View commit details
-
Copy full SHA for cdcd198 - Browse repository at this point
Copy the full SHA cdcd198View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0c13569 - Browse repository at this point
Copy the full SHA 0c13569View commit details -
Merge pull request #3488 from onflow/bastian/update-atree-inlining-ca…
…dence-v1.0-16
Configuration menu - View commit details
-
Copy full SHA for 892df34 - Browse repository at this point
Copy the full SHA 892df34View commit details
Commits on Jul 29, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 14c73c6 - Browse repository at this point
Copy the full SHA 14c73c6View commit details -
Bump atree version to v0.8.0-rc.5
This version merged atree inlining and deduplication feature branch into main branch after extensive testing.
Configuration menu - View commit details
-
Copy full SHA for 7738e21 - Browse repository at this point
Copy the full SHA 7738e21View commit details -
Merge pull request #3501 from onflow/bastian/update-atree-inlining-ca…
…dence-v1.0-17
Configuration menu - View commit details
-
Copy full SHA for 107df92 - Browse repository at this point
Copy the full SHA 107df92View commit details -
Merge branch 'feature/atree-register-inlining-v1.0' into fxamacker/up…
…date-atree-register-inlining-v1.0
Configuration menu - View commit details
-
Copy full SHA for 90be9a9 - Browse repository at this point
Copy the full SHA 90be9a9View commit details -
Merge pull request #3500 from onflow/fxamacker/update-atree-register-…
…inlining-v1.0
Configuration menu - View commit details
-
Copy full SHA for cce9bcf - Browse repository at this point
Copy the full SHA cce9bcfView commit details