-
Notifications
You must be signed in to change notification settings - Fork 138
/
CHANGELOG.md
6612 lines (4678 loc) Β· 427 KB
/
CHANGELOG.md
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<a name="v1.0.0-preview.52"></a>
# [v1.0.0-preview.52](https://github.com/onflow/cadence/releases/tag/v1.0.0-preview.52) - 31 Aug 2024
<!-- Release notes generated using configuration in .github/release.yml at v1.0.0-preview.52 -->
## What's Changed
### π Improvements
* Improve address decoding error by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3560
### π Bug Fixes
* Handle unmigrated path capabilities and path links in Account.capabilities functions by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3562
### π§ͺ Testing
* Add contract-update test for removing a field from nested resource by [@SupunS](https://github.com/SupunS) in https://github.com/onflow/cadence/pull/3559
* Add test for modifying events during contract updates by [@SupunS](https://github.com/SupunS) in https://github.com/onflow/cadence/pull/3561
### Other Changes
* Merge `release/v1.0.0-preview.51` to `master` by [@github-actions](https://github.com/github-actions) in https://github.com/onflow/cadence/pull/3558
**Full Changelog**: https://github.com/onflow/cadence/compare/v1.0.0-preview.51...v1.0.0-preview.52
[Changes][v1.0.0-preview.52]
<a name="v1.0.0-preview.51"></a>
# [v1.0.0-preview.51](https://github.com/onflow/cadence/releases/tag/v1.0.0-preview.51) - 29 Aug 2024
<!-- Release notes generated using configuration in .github/release.yml at v1.0.0-preview.51 -->
## What's Changed
### β Features
* Add sema.Access.QualifiedKeyword by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3552
### π Bug Fixes
* Fix Cadence Parser NPM Package by [@bluesign](https://github.com/bluesign) in https://github.com/onflow/cadence/pull/3551
* Fix contract update error when old program has errors by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3554
### π§ͺ Testing
* Add regression tests for nil-coalescing bug by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3553
* Smoke test update of enum key in dictionary by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3556
### π Documentation
* Staged contracts report Aug 27 by [@j1010001](https://github.com/j1010001) in https://github.com/onflow/cadence/pull/3557
### Other Changes
* Merge `release/v1.0.0-preview.50` to `master` by [@github-actions](https://github.com/github-actions) in https://github.com/onflow/cadence/pull/3549
**Full Changelog**: https://github.com/onflow/cadence/compare/v1.0.0-preview.50...v1.0.0-preview.51
[Changes][v1.0.0-preview.51]
<a name="v1.0.0-preview.50"></a>
# [v1.0.0-preview.50](https://github.com/onflow/cadence/releases/tag/v1.0.0-preview.50) - 23 Aug 2024
<!-- Release notes generated using configuration in .github/release.yml at v1.0.0-preview.50 -->
## What's Changed
### π Bug Fixes
* Fix program recovery by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3548
### π Documentation
* Add mainnet migration report for Aug 21 by [@j1010001](https://github.com/j1010001) in https://github.com/onflow/cadence/pull/3547
### Other Changes
* Merge `release/v1.0.0-preview.49` to `master` by [@github-actions](https://github.com/github-actions) in https://github.com/onflow/cadence/pull/3545
**Full Changelog**: https://github.com/onflow/cadence/compare/v1.0.0-preview.49...v1.0.0-preview.50
[Changes][v1.0.0-preview.50]
<a name="v1.0.0-preview.49"></a>
# [v1.0.0-preview.49](https://github.com/onflow/cadence/releases/tag/v1.0.0-preview.49) - 21 Aug 2024
<!-- Release notes generated using configuration in .github/release.yml at v1.0.0-preview.49 -->
## What's Changed
### β Features
* Add `Type.isRecovered` field by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3505
### π Improvements
* Fix contract update validation: Check updated contract name by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3530
* Check if CBOR tag number is reserved by atree before using it to encode Cadence values by [@fxamacker](https://github.com/fxamacker) in https://github.com/onflow/cadence/pull/3532
### π Bug Fixes
* Add support for exporting unmigrated path capabilities by [@SupunS](https://github.com/SupunS) in https://github.com/onflow/cadence/pull/3538
* Handle invalid index-expressions in view assignment by [@SupunS](https://github.com/SupunS) in https://github.com/onflow/cadence/pull/3539
* Make capabilities iteration ordered by [@SupunS](https://github.com/SupunS) in https://github.com/onflow/cadence/pull/3542
### Other Changes
* add staged report for aug 12 by [@zhangchiqing](https://github.com/zhangchiqing) in https://github.com/onflow/cadence/pull/3525
* Merge `release/v1.0.0-preview.48` to `master` by [@github-actions](https://github.com/github-actions) in https://github.com/onflow/cadence/pull/3526
* Add staged contracts report for testnet spork on aug 14 by [@zhangchiqing](https://github.com/zhangchiqing) in https://github.com/onflow/cadence/pull/3531
* Crescendo Mainnet migration report Aug 16 by [@j1010001](https://github.com/j1010001) in https://github.com/onflow/cadence/pull/3541
**Full Changelog**: https://github.com/onflow/cadence/compare/v1.0.0-preview.48...v1.0.0-preview.49
[Changes][v1.0.0-preview.49]
<a name="v1.0.0-preview.48"></a>
# [v1.0.0-preview.48](https://github.com/onflow/cadence/releases/tag/v1.0.0-preview.48) - 13 Aug 2024
<!-- Release notes generated using configuration in .github/release.yml at v1.0.0-preview.48 -->
## What's Changed
### π Improvements
* Add capability stored path info to the report by [@SupunS](https://github.com/SupunS) in https://github.com/onflow/cadence/pull/3524
### Other Changes
* Merge `release/v1.0.0-preview.47` to `master` by [@github-actions](https://github.com/github-actions) in https://github.com/onflow/cadence/pull/3523
**Full Changelog**: https://github.com/onflow/cadence/compare/v1.0.0-preview.47...v1.0.0-preview.48
[Changes][v1.0.0-preview.48]
<a name="v1.0.0-preview.47"></a>
# [v1.0.0-preview.47](https://github.com/onflow/cadence/releases/tag/v1.0.0-preview.47) - 13 Aug 2024
<!-- Release notes generated using configuration in .github/release.yml at v1.0.0-preview.47 -->
## What's Changed
### π Improvements
* Improve storage path capability migration reporting by [@SupunS](https://github.com/SupunS) in https://github.com/onflow/cadence/pull/3522
### Other Changes
* Merge `release/v1.0.0-preview.46` to `master` by [@github-actions](https://github.com/github-actions) in https://github.com/onflow/cadence/pull/3521
**Full Changelog**: https://github.com/onflow/cadence/compare/v1.0.0-preview.46...v1.0.0-preview.47
[Changes][v1.0.0-preview.47]
<a name="v1.0.0-preview.46"></a>
# [v1.0.0-preview.46](https://github.com/onflow/cadence/releases/tag/v1.0.0-preview.46) - 12 Aug 2024
<!-- Release notes generated using configuration in .github/release.yml at v1.0.0-preview.46 -->
## What's Changed
### π Improvements
* Infer missing borrow type for storage capabilities by [@SupunS](https://github.com/SupunS) in https://github.com/onflow/cadence/pull/3519
* Improve borrow type inferrence for storage path capabilities by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3520
### Other Changes
* Merge `release/v1.0.0-preview.45` to `master` by [@github-actions](https://github.com/github-actions) in https://github.com/onflow/cadence/pull/3518
**Full Changelog**: https://github.com/onflow/cadence/compare/v1.0.0-preview.45...v1.0.0-preview.46
[Changes][v1.0.0-preview.46]
<a name="v1.0.0-preview.45"></a>
# [v1.0.0-preview.45](https://github.com/onflow/cadence/releases/tag/v1.0.0-preview.45) - 12 Aug 2024
<!-- Release notes generated using configuration in .github/release.yml at v1.0.0-preview.45 -->
## What's Changed
### π Improvements
* Improve storage capability migration by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3516
### π Bug Fixes
* Avoid conversion from sema-type to StaticType in storage cap migration by [@SupunS](https://github.com/SupunS) in https://github.com/onflow/cadence/pull/3517
### Other Changes
* Merge `release/v1.0.0-preview.44` to `master` by [@github-actions](https://github.com/github-actions) in https://github.com/onflow/cadence/pull/3515
**Full Changelog**: https://github.com/onflow/cadence/compare/v1.0.0-preview.44...v1.0.0-preview.45
[Changes][v1.0.0-preview.45]
<a name="v1.0.0-preview.44"></a>
# [v1.0.0-preview.44](https://github.com/onflow/cadence/releases/tag/v1.0.0-preview.44) - 09 Aug 2024
<!-- Release notes generated using configuration in .github/release.yml at v1.0.0-preview.44 -->
## What's Changed
### π Bug Fixes
* Report and skip storage caps with missing borrow type by [@SupunS](https://github.com/SupunS) in https://github.com/onflow/cadence/pull/3514
### Other Changes
* Update staged-contracts-report-2024-08-07T10-00-00Z-testnet.md by [@j1010001](https://github.com/j1010001) in https://github.com/onflow/cadence/pull/3513
* Merge `release/v1.0.0-preview.43` to `master` by [@github-actions](https://github.com/github-actions) in https://github.com/onflow/cadence/pull/3512
**Full Changelog**: https://github.com/onflow/cadence/compare/v1.0.0-preview.43...v1.0.0-preview.44
[Changes][v1.0.0-preview.44]
<a name="v1.0.0-preview.43"></a>
# [v1.0.0-preview.43](https://github.com/onflow/cadence/releases/tag/v1.0.0-preview.43) - 08 Aug 2024
<!-- Release notes generated using configuration in .github/release.yml at v1.0.0-preview.43 -->
## What's Changed
### π Bug Fixes
* Fix migration of storage path capabilities by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3511
### Other Changes
* Merge `release/v1.0.0-preview.42` to `master` by [@github-actions](https://github.com/github-actions) in https://github.com/onflow/cadence/pull/3504
* adding migration report from Testnet migration on 31st July by [@j1010001](https://github.com/j1010001) in https://github.com/onflow/cadence/pull/3506
* Add migration report for aug 7 by [@zhangchiqing](https://github.com/zhangchiqing) in https://github.com/onflow/cadence/pull/3510
**Full Changelog**: https://github.com/onflow/cadence/compare/v1.0.0-preview.42...v1.0.0-preview.43
[Changes][v1.0.0-preview.43]
<a name="v1.0.0-preview.42"></a>
# [v1.0.0-preview.42](https://github.com/onflow/cadence/releases/tag/v1.0.0-preview.42) - 31 Jul 2024
<!-- Release notes generated using configuration in .github/release.yml at v1.0.0-preview.42 -->
## What's Changed
### π Improvements
* Migrate capability values targeting storage paths by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3503
**Full Changelog**: https://github.com/onflow/cadence/compare/v1.0.0-preview.41...v1.0.0-preview.42
[Changes][v1.0.0-preview.42]
<a name="v1.0.0-preview.41"></a>
# [v1.0.0-preview.41](https://github.com/onflow/cadence/releases/tag/v1.0.0-preview.41) - 29 Jul 2024
<!-- Release notes generated using configuration in .github/release.yml at v1.0.0-preview.41 -->
## What's Changed
### β Features
* Handle broken contracts by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3482
* Merge atree register inlining v1.0 by [@fxamacker](https://github.com/fxamacker) in https://github.com/onflow/cadence/pull/3502
### π Improvements
* Use atree readonly iterators when mutation of values is not needed by [@fxamacker](https://github.com/fxamacker) in https://github.com/onflow/cadence/pull/3170
* Atree register inlining for v1.0 by [@fxamacker](https://github.com/fxamacker) in https://github.com/onflow/cadence/pull/3048
* Improve atree register inlining v1.0 by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3230
### π Bug Fixes
* Fix Cadence 1.0 migration of dictionary values when using atree inlined data by [@fxamacker](https://github.com/fxamacker) in https://github.com/onflow/cadence/pull/3316
* Fix EntitlementDeclaration EndPos by [@jribbink](https://github.com/jribbink) in https://github.com/onflow/cadence/pull/3498
### π§ͺ Testing
* Add reproducer as test for Cadence 1.0 migration issue [#3288](https://github.com/onflow/cadence/issues/3288) by [@fxamacker](https://github.com/fxamacker) in https://github.com/onflow/cadence/pull/3314
### Other Changes
* Bump atree version in Cadence v1.0 for new features (e.g. deduplication of Cadence dictionary type info) by [@fxamacker](https://github.com/fxamacker) in https://github.com/onflow/cadence/pull/3178
* Sync atree inlining branch with master by [@SupunS](https://github.com/SupunS) in https://github.com/onflow/cadence/pull/3179
* Merge master into v1.0 atree register inlining feature branch by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3229
* Bump onflow/atree to latest version in feature/atree-register-inlining-v1.0 by [@fxamacker](https://github.com/fxamacker) in https://github.com/onflow/cadence/pull/3223
* Bump atree version in feature/atree-register-inlining-v1.0 by [@fxamacker](https://github.com/fxamacker) in https://github.com/onflow/cadence/pull/3256
* Update atree register inlining 1.0 feature branch by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3259
* Merge master into atree register inlining v1.0 branch by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3270
* Bump atree version in feature/atree-register-inlining-v1.0 by [@fxamacker](https://github.com/fxamacker) in https://github.com/onflow/cadence/pull/3295
* Update atree inlining v1.0 feature branch by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3301
* Update atree inlining 1.0 branch by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3306
* Update atree register inlining v1.0 by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3320
* Bump atree version to v0.8.0-rc.2 in feature/atree-register-inlining-v1.0 by [@fxamacker](https://github.com/fxamacker) in https://github.com/onflow/cadence/pull/3346
* Sync feature/atree-register-inlining-v1.0 with master by [@fxamacker](https://github.com/fxamacker) in https://github.com/onflow/cadence/pull/3351
* Update atree register inlining v1.0 by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3359
* Bump atree version to v0.8.0-rc.3 in feature/atree-register-inlining-v1.0 by [@fxamacker](https://github.com/fxamacker) in https://github.com/onflow/cadence/pull/3365
* Update atree register inlining v1.0 by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3378
* Update atree register inlining feature branch to v1.0.0-preview.30 by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3383
* Update atree inlining branch by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3390
* Update feature/atree-register-inlining-v1.0 to latest master by [@fxamacker](https://github.com/fxamacker) in https://github.com/onflow/cadence/pull/3414
* Merge v1.0.0-preview.34 into feature/atree-register-inlining-v1.0 by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3416
* Update atree inlining cadence v1.0 feature branch by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3438
* Update atree register inlining v1.0 branch by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3454
* Update atree inlining cadence v1.0 by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3467
* Update atree inlining branch by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3472
* Update feature/atree-register-inlining-v1.0 by [@fxamacker](https://github.com/fxamacker) in https://github.com/onflow/cadence/pull/3474
* Update atree register inlining 1.0 branch by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3488
* Merge `release/v1.0.0-preview.40` to `master` by [@github-actions](https://github.com/github-actions) in https://github.com/onflow/cadence/pull/3496
* Update atree inlining v1.0 branch by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3501
* Update feature/atree-register-inlining-v1.0 to use atree v0.8.0-rc.5 by [@fxamacker](https://github.com/fxamacker) in https://github.com/onflow/cadence/pull/3500
**Full Changelog**: https://github.com/onflow/cadence/compare/v1.0.0-preview.40...v1.0.0-preview.41
[Changes][v1.0.0-preview.41]
<a name="v1.0.0-preview.40"></a>
# [v1.0.0-preview.40](https://github.com/onflow/cadence/releases/tag/v1.0.0-preview.40) - 26 Jul 2024
<!-- Release notes generated using configuration in .github/release.yml at v1.0.0-preview.40 -->
## What's Changed
### β Features
* Add stack traces back to unexpected errors by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3492
### π Bug Fixes
* Fix supertype inference by [@SupunS](https://github.com/SupunS) in https://github.com/onflow/cadence/pull/3493
* Return user error when CCF encodes attachment field by [@fxamacker](https://github.com/fxamacker) in https://github.com/onflow/cadence/pull/3494
### π§ͺ Testing
* Add checker tests for nil-coalesce type inference by [@SupunS](https://github.com/SupunS) in https://github.com/onflow/cadence/pull/3495
### Other Changes
* Merge `release/v1.0.0-preview.39` to `master` by [@github-actions](https://github.com/github-actions) in https://github.com/onflow/cadence/pull/3487
* adding migration result from Jul 24, preview 34 by [@j1010001](https://github.com/j1010001) in https://github.com/onflow/cadence/pull/3489
* Move migration report files for 2024-07-17 into correct directory by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3490
**Full Changelog**: https://github.com/onflow/cadence/compare/v1.0.0-preview.39...v1.0.0-preview.40
[Changes][v1.0.0-preview.40]
<a name="v1.0.0-preview.39"></a>
# [v1.0.0-preview.39](https://github.com/onflow/cadence/releases/tag/v1.0.0-preview.39) - 24 Jul 2024
<!-- Release notes generated using configuration in .github/release.yml at v1.0.0-preview.39 -->
## What's Changed
### β Features
* Add an empty implementation of `runtime.Interface` by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3485
### π Improvements
* Improve intersected type error message by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3483
* Bring back members of path capability value by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3486
* Cleanup `ConvertSemaAccessToStaticAuthorization` method by [@SupunS](https://github.com/SupunS) in https://github.com/onflow/cadence/pull/3479
### π Bug Fixes
* Fix data races caused by empty string singleton by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3481
### π§ͺ Testing
* Update Fungible token transfer benchmark by [@SupunS](https://github.com/SupunS) in https://github.com/onflow/cadence/pull/3471
### Other Changes
* Merge `release/v1.0.0-preview.38` to `master` by [@github-actions](https://github.com/github-actions) in https://github.com/onflow/cadence/pull/3470
* adding report for TN migration Jul 17 by [@j1010001](https://github.com/j1010001) in https://github.com/onflow/cadence/pull/3476
**Full Changelog**: https://github.com/onflow/cadence/compare/v1.0.0-preview.38...v1.0.0-preview.39
[Changes][v1.0.0-preview.39]
<a name="v1.0.0-preview-atree-register-inlining.39"></a>
# [v1.0.0-preview-atree-register-inlining.39](https://github.com/onflow/cadence/releases/tag/v1.0.0-preview-atree-register-inlining.39) - 24 Jul 2024
<!-- Release notes generated using configuration in .github/release.yml at v1.0.0-preview-atree-register-inlining.39 -->
## What's Changed
### β Features
* Add an empty implementation of `runtime.Interface` by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3485
### π Improvements
* Improve intersected type error message by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3483
* Bring back members of path capability value by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3486
* Cleanup `ConvertSemaAccessToStaticAuthorization` method by [@SupunS](https://github.com/SupunS) in https://github.com/onflow/cadence/pull/3479
### π Bug Fixes
* Fix data races caused by empty string singleton by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3481
### π§ͺ Testing
* Update Fungible token transfer benchmark by [@SupunS](https://github.com/SupunS) in https://github.com/onflow/cadence/pull/3471
### Other Changes
* Update feature/atree-register-inlining-v1.0 by [@fxamacker](https://github.com/fxamacker) in https://github.com/onflow/cadence/pull/3474
* adding report for TN migration Jul 17 by [@j1010001](https://github.com/j1010001) in https://github.com/onflow/cadence/pull/3476
* Merge `release/v1.0.0-preview.39` to `master` by [@github-actions](https://github.com/github-actions) in https://github.com/onflow/cadence/pull/3487
* Update atree register inlining 1.0 branch by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3488
**Full Changelog**: https://github.com/onflow/cadence/compare/v1.0.0-preview-atree-register-inlining.38...v1.0.0-preview-atree-register-inlining.39
[Changes][v1.0.0-preview-atree-register-inlining.39]
<a name="v1.0.0-preview.38"></a>
# [v1.0.0-preview.38](https://github.com/onflow/cadence/releases/tag/v1.0.0-preview.38) - 17 Jul 2024
<!-- Release notes generated using configuration in .github/release.yml at v1.0.0-preview.38 -->
## What's Changed
### π Improvements
* Speed up update tool by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3468
* Changed data type of account key index to uin32 by [@janezpodhostnik](https://github.com/janezpodhostnik) in https://github.com/onflow/cadence/pull/3465
* Improve Cadence composite to Go struct decoding by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3469
### Other Changes
* Merge `release/v1.0.0-preview.37` to `master` by [@github-actions](https://github.com/github-actions) in https://github.com/onflow/cadence/pull/3466
**Full Changelog**: https://github.com/onflow/cadence/compare/v1.0.0-preview.37...v1.0.0-preview.38
[Changes][v1.0.0-preview.38]
<a name="v1.0.0-preview-atree-register-inlining.38"></a>
# [v1.0.0-preview-atree-register-inlining.38](https://github.com/onflow/cadence/releases/tag/v1.0.0-preview-atree-register-inlining.38) - 16 Jul 2024
<!-- Release notes generated using configuration in .github/release.yml at v1.0.0-preview-atree-register-inlining.38 -->
## What's Changed
### π Improvements
* Speed up update tool by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3468
* Changed data type of account key index to uin32 by [@janezpodhostnik](https://github.com/janezpodhostnik) in https://github.com/onflow/cadence/pull/3465
* Improve Cadence composite to Go struct decoding by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3469
### Other Changes
* Merge `release/v1.0.0-preview.38` to `master` by [@github-actions](https://github.com/github-actions) in https://github.com/onflow/cadence/pull/3470
* Update atree inlining branch by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3472
**Full Changelog**: https://github.com/onflow/cadence/compare/v1.0.0-preview-atree-register-inlining.37...v1.0.0-preview-atree-register-inlining.38
[Changes][v1.0.0-preview-atree-register-inlining.38]
<a name="v1.0.0-preview.37"></a>
# [v1.0.0-preview.37](https://github.com/onflow/cadence/releases/tag/v1.0.0-preview.37) - 12 Jul 2024
<!-- Release notes generated using configuration in .github/release.yml at v1.0.0-preview.37 -->
## What's Changed
### β Features
* Add a String.contains function by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3455
* Add String.index and String.count, fix grapheme boundary functions by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3456
* Emit events when capability controllers are issued by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3460
* Emit events for more Capability Controller and capability operations by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3464
### π Bug Fixes
* Fix String.split by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3457
* Fix String.replaceAll by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3458
* Fix account link migration by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3461
### π§ͺ Testing
* Add some more tests for string functions by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3453
### π Documentation
* add staged contracts report 07-10 by [@zhangchiqing](https://github.com/zhangchiqing) in https://github.com/onflow/cadence/pull/3462
* add root block for migration 07-10 by [@zhangchiqing](https://github.com/zhangchiqing) in https://github.com/onflow/cadence/pull/3463
### Other Changes
* Merge `release/v1.0.0-preview.36` to `master` by [@github-actions](https://github.com/github-actions) in https://github.com/onflow/cadence/pull/3452
**Full Changelog**: https://github.com/onflow/cadence/compare/v1.0.0-preview.36...v1.0.0-preview.37
[Changes][v1.0.0-preview.37]
<a name="v1.0.0-preview-atree-register-inlining.37"></a>
# [v1.0.0-preview-atree-register-inlining.37](https://github.com/onflow/cadence/releases/tag/v1.0.0-preview-atree-register-inlining.37) - 12 Jul 2024
<!-- Release notes generated using configuration in .github/release.yml at v1.0.0-preview-atree-register-inlining.37 -->
## What's Changed
### β Features
* Add a String.contains function by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3455
* Add String.index and String.count, fix grapheme boundary functions by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3456
* Emit events when capability controllers are issued by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3460
* Emit events for more Capability Controller and capability operations by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3464
### π Bug Fixes
* Fix String.split by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3457
* Fix String.replaceAll by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3458
* Fix account link migration by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3461
### π§ͺ Testing
* Add some more tests for string functions by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3453
### π Documentation
* add staged contracts report 07-10 by [@zhangchiqing](https://github.com/zhangchiqing) in https://github.com/onflow/cadence/pull/3462
* add root block for migration 07-10 by [@zhangchiqing](https://github.com/zhangchiqing) in https://github.com/onflow/cadence/pull/3463
### Other Changes
* Merge `release/v1.0.0-preview.36` to `master` by [@github-actions](https://github.com/github-actions) in https://github.com/onflow/cadence/pull/3452
* Merge `release/v1.0.0-preview.37` to `master` by [@github-actions](https://github.com/github-actions) in https://github.com/onflow/cadence/pull/3466
* Update atree inlining cadence v1.0 by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3467
**Full Changelog**: https://github.com/onflow/cadence/compare/v1.0.0-preview-atree-register-inlining.36...v1.0.0-preview-atree-register-inlining.37
[Changes][v1.0.0-preview-atree-register-inlining.37]
<a name="v1.0.0-preview.36"></a>
# [v1.0.0-preview.36](https://github.com/onflow/cadence/releases/tag/v1.0.0-preview.36) - 08 Jul 2024
<!-- Release notes generated using configuration in .github/release.yml at v1.0.0-preview.36 -->
## What's Changed
### π Improvements
* Improve the commit-based version handling in the update tool by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3440
* Improve update tool by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3441
* Improve handling of releases in update tool by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3442
* Allow borrowing of capability with subtype by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3449
* Simplify subtyping by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3447
### π Bug Fixes
* Fix toConstantSized by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3446
### π Documentation
* Remove mention of feature branch by [@chasefleming](https://github.com/chasefleming) in https://github.com/onflow/cadence/pull/3444
* add 2024-07-03 staged contracts report by [@zhangchiqing](https://github.com/zhangchiqing) in https://github.com/onflow/cadence/pull/3450
### Other Changes
* Merge `release/v1.0.0-preview.35` to `master` by [@github-actions](https://github.com/github-actions) in https://github.com/onflow/cadence/pull/3437
* add migrations data for 2024-06-26 by [@zhangchiqing](https://github.com/zhangchiqing) in https://github.com/onflow/cadence/pull/3439
* add root block info for migration net by [@zhangchiqing](https://github.com/zhangchiqing) in https://github.com/onflow/cadence/pull/3443
* Add root block info for migration 2024-07-03 by [@zhangchiqing](https://github.com/zhangchiqing) in https://github.com/onflow/cadence/pull/3451
## New Contributors
* [@chasefleming](https://github.com/chasefleming) made their first contribution in https://github.com/onflow/cadence/pull/3444
**Full Changelog**: https://github.com/onflow/cadence/compare/v1.0.0-preview.35...v1.0.0-preview.36
[Changes][v1.0.0-preview.36]
<a name="v1.0.0-preview-atree-register-inlining.36"></a>
# [v1.0.0-preview-atree-register-inlining.36](https://github.com/onflow/cadence/releases/tag/v1.0.0-preview-atree-register-inlining.36) - 08 Jul 2024
<!-- Release notes generated using configuration in .github/release.yml at v1.0.0-preview-atree-register-inlining.36 -->
## What's Changed
### π Improvements
* Improve the commit-based version handling in the update tool by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3440
* Improve update tool by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3441
* Improve handling of releases in update tool by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3442
* Allow borrowing of capability with subtype by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3449
* Simplify subtyping by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3447
### π Bug Fixes
* Fix toConstantSized by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3446
### π Documentation
* Remove mention of feature branch by [@chasefleming](https://github.com/chasefleming) in https://github.com/onflow/cadence/pull/3444
* add 2024-07-03 staged contracts report by [@zhangchiqing](https://github.com/zhangchiqing) in https://github.com/onflow/cadence/pull/3450
### Other Changes
* Merge `release/v1.0.0-preview.35` to `master` by [@github-actions](https://github.com/github-actions) in https://github.com/onflow/cadence/pull/3437
* add migrations data for 2024-06-26 by [@zhangchiqing](https://github.com/zhangchiqing) in https://github.com/onflow/cadence/pull/3439
* add root block info for migration net by [@zhangchiqing](https://github.com/zhangchiqing) in https://github.com/onflow/cadence/pull/3443
* Add root block info for migration 2024-07-03 by [@zhangchiqing](https://github.com/zhangchiqing) in https://github.com/onflow/cadence/pull/3451
* Update atree register inlining v1.0 branch by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3454
## New Contributors
* [@chasefleming](https://github.com/chasefleming) made their first contribution in https://github.com/onflow/cadence/pull/3444
**Full Changelog**: https://github.com/onflow/cadence/compare/v1.0.0-preview-atree-register-inlining.35...v1.0.0-preview-atree-register-inlining.36
[Changes][v1.0.0-preview-atree-register-inlining.36]
<a name="v1.0.0-preview-atree-register-inlining.35"></a>
# [v1.0.0-preview-atree-register-inlining.35](https://github.com/onflow/cadence/releases/tag/v1.0.0-preview-atree-register-inlining.35) - 25 Jun 2024
<!-- Release notes generated using configuration in .github/release.yml at v1.0.0-preview-atree-register-inlining.35 -->
## What's Changed
### π₯ Language Breaking Changes
* Import contracts as references by [@SupunS](https://github.com/SupunS) in https://github.com/onflow/cadence/pull/3417
### π₯ Go API Breaking Chance
* Remove access to field slices from composite and interface types by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3432
### β Features
* Add command to dump all hard keywords by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3431
### π Improvements
* Ensure contracts cannot be borrowed with an authorization by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3421
* Improve dump-builtin-types command: Handle parameterized types by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3425
* Improve InclusiveRange type by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3426
### π Bug Fixes
* Fix JSON output by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3413
* Improve parsing of commit from Go's pseudo-version in update tool by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3418
* Simplify nil-coalescing checking by [@SupunS](https://github.com/SupunS) in https://github.com/onflow/cadence/pull/3423
### π Documentation
* Update staged-contracts-report-2024-06-12T13-03-00Z-testnet.md by [@vishalchangrani](https://github.com/vishalchangrani) in https://github.com/onflow/cadence/pull/3429
### Other Changes
* adding report from June 12 TN state migration by [@zhangchiqing](https://github.com/zhangchiqing) in https://github.com/onflow/cadence/pull/3420
* Update update tool config by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3427
* adding report for Testnet migration on June 19 by [@j1010001](https://github.com/j1010001) in https://github.com/onflow/cadence/pull/3433
* Update update tool config by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3435
* Update atree inlining cadence v1.0 feature branch by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3438
**Full Changelog**: https://github.com/onflow/cadence/compare/v1.0.0-preview-atree-register-inlining.34...v1.0.0-preview-atree-register-inlining.35
[Changes][v1.0.0-preview-atree-register-inlining.35]
<a name="v1.0.0-preview.35"></a>
# [v1.0.0-preview.35](https://github.com/onflow/cadence/releases/tag/v1.0.0-preview.35) - 24 Jun 2024
<!-- Release notes generated using configuration in .github/release.yml at v1.0.0-preview.35 -->
## What's Changed
### π₯ Language Breaking Changes
* Import contracts as references by [@SupunS](https://github.com/SupunS) in https://github.com/onflow/cadence/pull/3417
### π₯ Go API Breaking Chance
* Remove access to field slices from composite and interface types by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3432
### β Features
* Add command to dump all hard keywords by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3431
### π Improvements
* Ensure contracts cannot be borrowed with an authorization by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3421
* Improve dump-builtin-types command: Handle parameterized types by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3425
* Improve InclusiveRange type by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3426
### π Bug Fixes
* Fix JSON output by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3413
* Improve parsing of commit from Go's pseudo-version in update tool by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3418
* Simplify nil-coalescing checking by [@SupunS](https://github.com/SupunS) in https://github.com/onflow/cadence/pull/3423
### π Documentation
* Update staged-contracts-report-2024-06-12T13-03-00Z-testnet.md by [@vishalchangrani](https://github.com/vishalchangrani) in https://github.com/onflow/cadence/pull/3429
### Other Changes
* Merge `release/v1.0.0-preview.34` to `master` by [@github-actions](https://github.com/github-actions) in https://github.com/onflow/cadence/pull/3415
* adding report from June 12 TN state migration by [@zhangchiqing](https://github.com/zhangchiqing) in https://github.com/onflow/cadence/pull/3420
* Update update tool config by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3427
* adding report for Testnet migration on June 19 by [@j1010001](https://github.com/j1010001) in https://github.com/onflow/cadence/pull/3433
* Update update tool config by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3435
**Full Changelog**: https://github.com/onflow/cadence/compare/v1.0.0-preview.34...v1.0.0-preview.35
[Changes][v1.0.0-preview.35]
<a name="v0.42.12"></a>
# [v0.42.12](https://github.com/onflow/cadence/releases/tag/v0.42.12) - 13 Jun 2024
<!-- Release notes generated using configuration in .github/release.yml at v0.42.12 -->
## What's Changed
### π Bug Fixes
* Fix JSON output by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3412
* Simplify nil-coalescing checking by [@SupunS](https://github.com/SupunS) in https://github.com/onflow/cadence/pull/3422
### Other Changes
* Merge `release/v0.42.11` to `v0.42` by [@github-actions](https://github.com/github-actions) in https://github.com/onflow/cadence/pull/3333
**Full Changelog**: https://github.com/onflow/cadence/compare/v0.42.11...v0.42.12
[Changes][v0.42.12]
<a name="v1.0.0-preview.34"></a>
# [v1.0.0-preview.34](https://github.com/onflow/cadence/releases/tag/v1.0.0-preview.34) - 12 Jun 2024
<!-- Release notes generated using configuration in .github/release.yml at v1.0.0-preview.34 -->
## What's Changed
### π Improvements
* Put feature that allows type removals in contract updates behind a feature flag, disabled by default by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3410
* Also migrate path-capability and account-capability storage maps by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3411
### π Bug Fixes
* Prevent storage reference to another reference by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3404
* Add access top type to model inaccessible access for identity maps by [@dsainati1](https://github.com/dsainati1) in https://github.com/onflow/cadence/pull/3406
### Other Changes
* Merge `release/v1.0.0-preview.33` to `master` by [@github-actions](https://github.com/github-actions) in https://github.com/onflow/cadence/pull/3399
* adding report from June 5 TN state migration by [@j1010001](https://github.com/j1010001) in https://github.com/onflow/cadence/pull/3400
**Full Changelog**: https://github.com/onflow/cadence/compare/v1.0.0-preview.33...v1.0.0-preview.34
[Changes][v1.0.0-preview.34]
<a name="v1.0.0-preview-atree-register-inlining.34"></a>
# [v1.0.0-preview-atree-register-inlining.34](https://github.com/onflow/cadence/releases/tag/v1.0.0-preview-atree-register-inlining.34) - 12 Jun 2024
<!-- Release notes generated using configuration in .github/release.yml at v1.0.0-preview-atree-register-inlining.34 -->
## What's Changed
### π Improvements
* Remove stacktrace from errors by [@SupunS](https://github.com/SupunS) in https://github.com/onflow/cadence/pull/3392
* Improve update tool by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3395
* Cache results of static types migration and entitlements migration by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3396
* Put feature that allows type removals in contract updates behind a feature flag, disabled by default by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3410
* Also migrate path-capability and account-capability storage maps by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3411
### π Bug Fixes
* Prevent storage reference to another reference by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3404
* Add access top type to model inaccessible access for identity maps by [@dsainati1](https://github.com/dsainati1) in https://github.com/onflow/cadence/pull/3406
### Other Changes
* Merge `release/v1.0.0-preview.32` to `master` by [@github-actions](https://github.com/github-actions) in https://github.com/onflow/cadence/pull/3389
* Update copyright notice by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3391
* Update to Go 1.22 by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3393
* Merge `release/v1.0.0-preview.33` to `master` by [@github-actions](https://github.com/github-actions) in https://github.com/onflow/cadence/pull/3399
* adding report from June 5 TN state migration by [@j1010001](https://github.com/j1010001) in https://github.com/onflow/cadence/pull/3400
* Update feature/atree-register-inlining-v1.0 to latest master by [@fxamacker](https://github.com/fxamacker) in https://github.com/onflow/cadence/pull/3414
* Merge `release/v1.0.0-preview.34` to `master` by [@github-actions](https://github.com/github-actions) in https://github.com/onflow/cadence/pull/3415
* Merge v1.0.0-preview.34 into feature/atree-register-inlining-v1.0 by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3416
**Full Changelog**: https://github.com/onflow/cadence/compare/v1.0.0-preview-atree-register-inlining.32...v1.0.0-preview-atree-register-inlining.34
[Changes][v1.0.0-preview-atree-register-inlining.34]
<a name="v1.0.0-preview.33"></a>
# [v1.0.0-preview.33](https://github.com/onflow/cadence/releases/tag/v1.0.0-preview.33) - 05 Jun 2024
<!-- Release notes generated using configuration in .github/release.yml at v1.0.0-preview.33 -->
## What's Changed
### π Improvements
* Remove stacktrace from errors by [@SupunS](https://github.com/SupunS) in https://github.com/onflow/cadence/pull/3392
* Improve update tool by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3395
* Cache results of static types migration and entitlements migration by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3396
### Other Changes
* Merge `release/v1.0.0-preview.32` to `master` by [@github-actions](https://github.com/github-actions) in https://github.com/onflow/cadence/pull/3389
* Update copyright notice by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3391
* Update to Go 1.22 by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3393
**Full Changelog**: https://github.com/onflow/cadence/compare/v1.0.0-preview.32...v1.0.0-preview.33
[Changes][v1.0.0-preview.33]
<a name="v1.0.0-preview.32"></a>
# [v1.0.0-preview.32](https://github.com/onflow/cadence/releases/tag/v1.0.0-preview.32) - 04 Jun 2024
<!-- Release notes generated using configuration in .github/release.yml at v1.0.0-preview.32 -->
## What's Changed
### π Improvements
* Decrease move operator precedence relative to cast operators by [@dsainati1](https://github.com/dsainati1) in https://github.com/onflow/cadence/pull/3368
* Improve dictionary key migration by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3386
### π Bug Fixes
* Don't short circuit references on member access when entitlements are involved by [@dsainati1](https://github.com/dsainati1) in https://github.com/onflow/cadence/pull/3387
### Other Changes
* Merge `release/v1.0.0-preview.31` to `master` by [@github-actions](https://github.com/github-actions) in https://github.com/onflow/cadence/pull/3382
* Add report from May 29 by [@j1010001](https://github.com/j1010001) in https://github.com/onflow/cadence/pull/3384
**Full Changelog**: https://github.com/onflow/cadence/compare/v1.0.0-preview.31...v1.0.0-preview.32
[Changes][v1.0.0-preview.32]
<a name="v1.0.0-preview-atree-register-inlining.32"></a>
# [v1.0.0-preview-atree-register-inlining.32](https://github.com/onflow/cadence/releases/tag/v1.0.0-preview-atree-register-inlining.32) - 04 Jun 2024
<!-- Release notes generated using configuration in .github/release.yml at v1.0.0-preview-atree-register-inlining.32 -->
## What's Changed
### π Improvements
* Forbid interface removals by [@dsainati1](https://github.com/dsainati1) in https://github.com/onflow/cadence/pull/3380
* Improve dictionary value migration by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3381
* Decrease move operator precedence relative to cast operators by [@dsainati1](https://github.com/dsainati1) in https://github.com/onflow/cadence/pull/3368
* Improve dictionary key migration by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3386
### π Bug Fixes
* Fix error message by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3379
* Don't short circuit references on member access when entitlements are involved by [@dsainati1](https://github.com/dsainati1) in https://github.com/onflow/cadence/pull/3387
### Other Changes
* Merge `release/v1.0.0-preview.30` to `master` by [@github-actions](https://github.com/github-actions) in https://github.com/onflow/cadence/pull/3377
* Merge `release/v1.0.0-preview.31` to `master` by [@github-actions](https://github.com/github-actions) in https://github.com/onflow/cadence/pull/3382
* Add report from May 29 by [@j1010001](https://github.com/j1010001) in https://github.com/onflow/cadence/pull/3384
* Update atree register inlining feature branch to v1.0.0-preview.30 by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3383
* Update atree inlining branch by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3390
**Full Changelog**: https://github.com/onflow/cadence/compare/v1.0.0-preview-atree-register-inlining.30...v1.0.0-preview-atree-register-inlining.32
[Changes][v1.0.0-preview-atree-register-inlining.32]
<a name="v1.0.0-preview.31"></a>
# [v1.0.0-preview.31](https://github.com/onflow/cadence/releases/tag/v1.0.0-preview.31) - 29 May 2024
<!-- Release notes generated using configuration in .github/release.yml at v1.0.0-preview.31 -->
## What's Changed
### π Improvements
* Forbid interface removals by [@dsainati1](https://github.com/dsainati1) in https://github.com/onflow/cadence/pull/3380
* Improve dictionary value migration by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3381
### π Bug Fixes
* Fix error message by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3379
### Other Changes
* Merge `release/v1.0.0-preview.30` to `master` by [@github-actions](https://github.com/github-actions) in https://github.com/onflow/cadence/pull/3377
**Full Changelog**: https://github.com/onflow/cadence/compare/v1.0.0-preview.30...v1.0.0-preview.31
[Changes][v1.0.0-preview.31]
<a name="v1.0.0-preview.30"></a>
# [v1.0.0-preview.30](https://github.com/onflow/cadence/releases/tag/v1.0.0-preview.30) - 28 May 2024
<!-- Release notes generated using configuration in .github/release.yml at v1.0.0-preview.30 -->
## What's Changed
### β Features
* Allow types to be removed in contract updates by [@dsainati1](https://github.com/dsainati1) in https://github.com/onflow/cadence/pull/3376
### π Improvements
* Fix string formatting for values by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3370
* Update the storage explorer to the latest version of flow-go by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3374
### π Bug Fixes
* Add deprecated path Capability into backwards compability by [@ianthpun](https://github.com/ianthpun) in https://github.com/onflow/cadence/pull/3373
* Remove incorrect caching from migrations by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3375
### Other Changes
* Merge `release/v1.0.0-preview.29` to `master` by [@github-actions](https://github.com/github-actions) in https://github.com/onflow/cadence/pull/3358
* Uploading migration results for TN state snapshot taked May 13 by [@j1010001](https://github.com/j1010001) in https://github.com/onflow/cadence/pull/3360
* move may15 staged contracts report to the correct directory by [@j1010001](https://github.com/j1010001) in https://github.com/onflow/cadence/pull/3361
* Adding migration report - TN May 22 by [@j1010001](https://github.com/j1010001) in https://github.com/onflow/cadence/pull/3367
* Add migration environment endpoint to the report by [@j1010001](https://github.com/j1010001) in https://github.com/onflow/cadence/pull/3369
**Full Changelog**: https://github.com/onflow/cadence/compare/v1.0.0-preview.29...v1.0.0-preview.30
[Changes][v1.0.0-preview.30]
<a name="v1.0.0-preview-atree-register-inlining.30"></a>
# [v1.0.0-preview-atree-register-inlining.30](https://github.com/onflow/cadence/releases/tag/v1.0.0-preview-atree-register-inlining.30) - 28 May 2024
<!-- Release notes generated using configuration in .github/release.yml at v1.0.0-preview-atree-register-inlining.30 -->
## What's Changed
### β Features
* Allow types to be removed in contract updates by [@dsainati1](https://github.com/dsainati1) in https://github.com/onflow/cadence/pull/3376
### π Improvements
* Fix string formatting for values by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3370
* Update the storage explorer to the latest version of flow-go by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3374
### π Bug Fixes
* Add deprecated path Capability into backwards compability by [@ianthpun](https://github.com/ianthpun) in https://github.com/onflow/cadence/pull/3373
* Remove incorrect caching from migrations by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3375
### Other Changes
* Uploading migration results for TN state snapshot taked May 13 by [@j1010001](https://github.com/j1010001) in https://github.com/onflow/cadence/pull/3360
* move may15 staged contracts report to the correct directory by [@j1010001](https://github.com/j1010001) in https://github.com/onflow/cadence/pull/3361
* Bump atree version to v0.8.0-rc.3 in feature/atree-register-inlining-v1.0 by [@fxamacker](https://github.com/fxamacker) in https://github.com/onflow/cadence/pull/3365
* Adding migration report - TN May 22 by [@j1010001](https://github.com/j1010001) in https://github.com/onflow/cadence/pull/3367
* Add migration environment endpoint to the report by [@j1010001](https://github.com/j1010001) in https://github.com/onflow/cadence/pull/3369
* Update atree register inlining v1.0 by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3378
**Full Changelog**: https://github.com/onflow/cadence/compare/v1.0.0-preview-atree-register-inlining.29...v1.0.0-preview-atree-register-inlining.30
[Changes][v1.0.0-preview-atree-register-inlining.30]
<a name="v1.0.0-preview.29"></a>
# [v1.0.0-preview.29](https://github.com/onflow/cadence/releases/tag/v1.0.0-preview.29) - 17 May 2024
<!-- Release notes generated using configuration in .github/release.yml at v1.0.0-preview.29 -->
## What's Changed
### π₯ Language Breaking Changes
* Return a copy for enum-typed members, during member-access via references by [@SupunS](https://github.com/SupunS) in https://github.com/onflow/cadence/pull/3357
### Other Changes
* Merge `release/v1.0.0-preview.28` to `master` by [@github-actions](https://github.com/github-actions) in https://github.com/onflow/cadence/pull/3353
**Full Changelog**: https://github.com/onflow/cadence/compare/v1.0.0-preview.28...v1.0.0-preview.29
[Changes][v1.0.0-preview.29]
<a name="v1.0.0-preview-atree-register-inlining.29"></a>
# [v1.0.0-preview-atree-register-inlining.29](https://github.com/onflow/cadence/releases/tag/v1.0.0-preview-atree-register-inlining.29) - 17 May 2024
<!-- Release notes generated using configuration in .github/release.yml at feature/atree-register-inlining-v1.0 -->
## What's Changed
### π₯ Language Breaking Changes
* Return a copy for enum-typed members, during member-access via references by [@SupunS](https://github.com/SupunS) in https://github.com/onflow/cadence/pull/3357
### Other Changes
* Merge `release/v1.0.0-preview.29` to `master` by [@github-actions](https://github.com/github-actions) in https://github.com/onflow/cadence/pull/3358
* Update atree register inlining v1.0 by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3359
**Full Changelog**: https://github.com/onflow/cadence/compare/v1.0.0-preview-atree-register-inlining.28...v1.0.0-preview-atree-register-inlining.29
[Changes][v1.0.0-preview-atree-register-inlining.29]
<a name="v1.0.0-preview.28"></a>
# [v1.0.0-preview.28](https://github.com/onflow/cadence/releases/tag/v1.0.0-preview.28) - 15 May 2024
<!-- Release notes generated using configuration in .github/release.yml at v1.0.0-preview.28 -->
## What's Changed
### π Bug Fixes
* Fix restricted type checking in contract-update-validator by [@SupunS](https://github.com/SupunS) in https://github.com/onflow/cadence/pull/3352
### Other Changes
* Merge `release/v1.0.0-preview.27` to `master` by [@github-actions](https://github.com/github-actions) in https://github.com/onflow/cadence/pull/3349
**Full Changelog**: https://github.com/onflow/cadence/compare/v1.0.0-preview.27...v1.0.0-preview.28
[Changes][v1.0.0-preview.28]
<a name="v1.0.0-preview.27"></a>
# [v1.0.0-preview.27](https://github.com/onflow/cadence/releases/tag/v1.0.0-preview.27) - 15 May 2024
<!-- Release notes generated using configuration in .github/release.yml at v1.0.0-preview.27 -->
## What's Changed
### π₯ Language Breaking Changes
* Use parent to determine whether an expression is target of an invocation by [@SupunS](https://github.com/SupunS) in https://github.com/onflow/cadence/pull/3340
* Improve static validation of contract/transaction moves by [@SupunS](https://github.com/SupunS) in https://github.com/onflow/cadence/pull/3341
### β Features
* Add Storage.NondeterministicCommit for faster migrations by [@fxamacker](https://github.com/fxamacker) in https://github.com/onflow/cadence/pull/3348
### π Improvements
* Make migration error stacktrace configurable by [@SupunS](https://github.com/SupunS) in https://github.com/onflow/cadence/pull/3322
* Add/improve caching in static type and entitlements migration by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3329
* Allow construction of paths with syntactically invalid identifiers by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3338
* Add invalidation for storage references by [@SupunS](https://github.com/SupunS) in https://github.com/onflow/cadence/pull/3343
### π Bug Fixes
* Remove invalid ID capability error by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3325
* Fix borrowing of contract interface by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3327
* Port bug fixes by [@SupunS](https://github.com/SupunS) in https://github.com/onflow/cadence/pull/3331
* Handle missing interfaces in Cadence 1.0 contract update validator by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3337
* Check dictionary keys when checking the ability for dereferencing by [@SupunS](https://github.com/SupunS) in https://github.com/onflow/cadence/pull/3339
* Wrap host-function typed member-values with a bound-function by [@SupunS](https://github.com/SupunS) in https://github.com/onflow/cadence/pull/3342
### π§ͺ Testing
* Add back transaction `execute` tests by [@SupunS](https://github.com/SupunS) in https://github.com/onflow/cadence/pull/3345
### Other Changes
* Merge `release/v1.0.0-preview.26` to `master` by [@github-actions](https://github.com/github-actions) in https://github.com/onflow/cadence/pull/3321
* adding staged contracts migration report from TN state taken on May 8 by [@j1010001](https://github.com/j1010001) in https://github.com/onflow/cadence/pull/3330
* Update flow-go related configuration by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3319
* Bump atree version to v0.7.0-rc.2 in master branch by [@fxamacker](https://github.com/fxamacker) in https://github.com/onflow/cadence/pull/3347
**Full Changelog**: https://github.com/onflow/cadence/compare/v1.0.0-preview.26...v1.0.0-preview.27
[Changes][v1.0.0-preview.27]
<a name="v1.0.0-preview-atree-register-inlining.28"></a>
# [v1.0.0-preview-atree-register-inlining.28](https://github.com/onflow/cadence/releases/tag/v1.0.0-preview-atree-register-inlining.28) - 15 May 2024
<!-- Release notes generated using configuration in .github/release.yml at v1.0.0-preview-atree-register-inlining.28 -->
## What's Changed
### π Bug Fixes
* Fix restricted type checking in contract-update-validator by [@SupunS](https://github.com/SupunS) in https://github.com/onflow/cadence/pull/3352
### Other Changes
* Merge `release/v1.0.0-preview.28` to `master` by [@github-actions](https://github.com/github-actions) in https://github.com/onflow/cadence/pull/3353
**Full Changelog**: https://github.com/onflow/cadence/compare/v1.0.0-preview-atree-register-inlining.27...v1.0.0-preview-atree-register-inlining.28
[Changes][v1.0.0-preview-atree-register-inlining.28]
<a name="v1.0.0-preview-atree-register-inlining.27"></a>
# [v1.0.0-preview-atree-register-inlining.27](https://github.com/onflow/cadence/releases/tag/v1.0.0-preview-atree-register-inlining.27) - 15 May 2024
<!-- Release notes generated using configuration in .github/release.yml at v1.0.0-preview-atree-register-inlining.27 -->
## What's Changed
### π₯ Language Breaking Changes
* Use parent to determine whether an expression is target of an invocation by [@SupunS](https://github.com/SupunS) in https://github.com/onflow/cadence/pull/3340
* Improve static validation of contract/transaction moves by [@SupunS](https://github.com/SupunS) in https://github.com/onflow/cadence/pull/3341
### β Features
* Add Storage.NondeterministicCommit for faster migrations by [@fxamacker](https://github.com/fxamacker) in https://github.com/onflow/cadence/pull/3348
### π Improvements
* Make migration error stacktrace configurable by [@SupunS](https://github.com/SupunS) in https://github.com/onflow/cadence/pull/3322
* Add/improve caching in static type and entitlements migration by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3329
* Allow construction of paths with syntactically invalid identifiers by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3338
* Add invalidation for storage references by [@SupunS](https://github.com/SupunS) in https://github.com/onflow/cadence/pull/3343
### π Bug Fixes
* Remove invalid ID capability error by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3325
* Fix borrowing of contract interface by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3327
* Port bug fixes by [@SupunS](https://github.com/SupunS) in https://github.com/onflow/cadence/pull/3331
* Handle missing interfaces in Cadence 1.0 contract update validator by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3337
* Check dictionary keys when checking the ability for dereferencing by [@SupunS](https://github.com/SupunS) in https://github.com/onflow/cadence/pull/3339
* Wrap host-function typed member-values with a bound-function by [@SupunS](https://github.com/SupunS) in https://github.com/onflow/cadence/pull/3342
### π§ͺ Testing
* Add back transaction `execute` tests by [@SupunS](https://github.com/SupunS) in https://github.com/onflow/cadence/pull/3345
### Other Changes
* Merge `release/v1.0.0-preview.26` to `master` by [@github-actions](https://github.com/github-actions) in https://github.com/onflow/cadence/pull/3321
* adding staged contracts migration report from TN state taken on May 8 by [@j1010001](https://github.com/j1010001) in https://github.com/onflow/cadence/pull/3330
* Update flow-go related configuration by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3319
* Bump atree version to v0.8.0-rc.2 in feature/atree-register-inlining-v1.0 by [@fxamacker](https://github.com/fxamacker) in https://github.com/onflow/cadence/pull/3346
* Bump atree version to v0.7.0-rc.2 in master branch by [@fxamacker](https://github.com/fxamacker) in https://github.com/onflow/cadence/pull/3347
* Merge `release/v1.0.0-preview.27` to `master` by [@github-actions](https://github.com/github-actions) in https://github.com/onflow/cadence/pull/3349
* Sync feature/atree-register-inlining-v1.0 with master by [@fxamacker](https://github.com/fxamacker) in https://github.com/onflow/cadence/pull/3351
**Full Changelog**: https://github.com/onflow/cadence/compare/v1.0.0-preview-atree-register-inlining.26...v1.0.0-preview-atree-register-inlining.27
[Changes][v1.0.0-preview-atree-register-inlining.27]
<a name="v0.42.11"></a>
# [v0.42.11](https://github.com/onflow/cadence/releases/tag/v0.42.11) - 09 May 2024
<!-- Release notes generated using configuration in .github/release.yml at v0.42.11 -->
## What's Changed
### π Bug Fixes
* Port bug fixes to v0.42 by [@SupunS](https://github.com/SupunS) in https://github.com/onflow/cadence/pull/3332
### Other Changes
* Merge `release/v0.42.10` to `v0.42` by [@github-actions](https://github.com/github-actions) in https://github.com/onflow/cadence/pull/3238
**Full Changelog**: https://github.com/onflow/cadence/compare/v0.42.10...v0.42.11
[Changes][v0.42.11]
<a name="v1.0.0-preview.26"></a>
# [v1.0.0-preview.26](https://github.com/onflow/cadence/releases/tag/v1.0.0-preview.26) - 07 May 2024
<!-- Release notes generated using configuration in .github/release.yml at v1.0.0-preview.26 -->
## What's Changed
### β Features
* Add a command to generate a mermaid diagram by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3307
### π Improvements
* Make static type cache an interface by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3315
* Improve dictionary migration by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3318
### π§ͺ Testing
* Add test for untyped optional nested-reference creation by [@SupunS](https://github.com/SupunS) in https://github.com/onflow/cadence/pull/3317
### Other Changes
* Merge `release/v1.0.0-preview.25` to `master` by [@github-actions](https://github.com/github-actions) in https://github.com/onflow/cadence/pull/3305
* Adding migration report for TN state snapshot taken May 1st by [@j1010001](https://github.com/j1010001) in https://github.com/onflow/cadence/pull/3311
**Full Changelog**: https://github.com/onflow/cadence/compare/v1.0.0-preview.25...v1.0.0-preview.26
[Changes][v1.0.0-preview.26]
<a name="v1.0.0-preview-atree-register-inlining.26"></a>
# [v1.0.0-preview-atree-register-inlining.26](https://github.com/onflow/cadence/releases/tag/v1.0.0-preview-atree-register-inlining.26) - 07 May 2024
<!-- Release notes generated using configuration in .github/release.yml at v1.0.0-preview-atree-register-inlining.26 -->
## What's Changed
### β Features
* Add a command to generate a mermaid diagram by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3307
### π Improvements
* Make static type cache an interface by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3315
* Improve dictionary migration by [@turbolent](https://github.com/turbolent) in https://github.com/onflow/cadence/pull/3318
### π Bug Fixes
* Fix Cadence 1.0 migration of dictionary values when using atree inlined data by [@fxamacker](https://github.com/fxamacker) in https://github.com/onflow/cadence/pull/3316
### π§ͺ Testing
* Add test for untyped optional nested-reference creation by [@SupunS](https://github.com/SupunS) in https://github.com/onflow/cadence/pull/3317
* Add reproducer as test for Cadence 1.0 migration issue [#3288](https://github.com/onflow/cadence/issues/3288) by [@fxamacker](https://github.com/fxamacker) in https://github.com/onflow/cadence/pull/3314
### Other Changes
* Adding migration report for TN state snapshot taken May 1st by [@j1010001](https://github.com/j1010001) in https://github.com/onflow/cadence/pull/3311