-
Notifications
You must be signed in to change notification settings - Fork 57
/
RELEASE-NOTES.txt
1146 lines (940 loc) · 59.3 KB
/
RELEASE-NOTES.txt
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
Unreleased
---
1.121.0
---
* [internal] Fix Inserter items list filtering [https://github.com/wordpress-mobile/gutenberg-mobile/pull/6911]
* [*] Prevent hiding the keyboard when creating new list items [https://github.com/wordpress-mobile/gutenberg-mobile/pull/6922]
* [*] Fix issue when pasting HTML content [https://github.com/wordpress-mobile/gutenberg-mobile/pull/6933]
* [**] Add support prefix transforms [https://github.com/wordpress-mobile/gutenberg-mobile/pull/6932]
* [*] Remove themes from the allowed API endpoint list [https://github.com/wordpress-mobile/gutenberg-mobile/pull/6967]
* [*] Remove Gallery Block V1 and other experimental flags [https://github.com/wordpress-mobile/gutenberg-mobile/pull/6973]
1.120.1
---
* [*] RichText - Fix undefined onDelete callback [https://github.com/wordpress-mobile/gutenberg-mobile/pull/6925]
1.120.0
---
* [*] Prevent deleting content when backspacing in the first Paragraph block [https://github.com/wordpress-mobile/gutenberg-mobile/pull/6894]
* [internal] Adds new bridge functionality to set editor content [https://github.com/wordpress-mobile/gutenberg-mobile/pull/6878]
1.119.1
---
* [*] Image corrector - Check the path extension is a valid one [https://github.com/WordPress/gutenberg/pull/62190]
* [*] Unsupported block - UI improvements [https://github.com/WordPress/gutenberg/pull/62240]
1.119.0
---
* [*] Cancel failed or in progress uploads if the media block is removed [https://github.com/wordpress-mobile/gutenberg-mobile/pull/6841]
* [internal] Upgrade target sdk version to Android API 34 [https://github.com/wordpress-mobile/gutenberg-mobile/pull/6870]
* [internal] Remove circular dependencies within the components package [https://github.com/wordpress-mobile/gutenberg-mobile/pull/6874]
1.118.0
---
* [*] Enable FlatList Virtualization on iOS [https://github.com/wordpress-mobile/gutenberg-mobile/pull/6716]
* [*] Fix a crash when pasting file images and special comment markup [https://github.com/WordPress/gutenberg/pull/60676]
1.117.0
---
* [*] Add empty fallback option for the BottomSheetSelectControl component [https://github.com/WordPress/gutenberg/pull/60333]
* [*] Fix Quote Block styles [https://github.com/wordpress-mobile/gutenberg-mobile/pull/6790]
* [*] Prevent passing potential false values to the onPress prop [https://github.com/WordPress/gutenberg/pull/60595]
* [*] ColorPalette - Check for ScrollView reference [https://github.com/WordPress/gutenberg/pull/60562]
* [*] Raw Handling - msListIgnore - Check attributes are valid [https://github.com/WordPress/gutenberg/pull/60375]
* [*] Analytics - Add support to register block insertions from the clipboard [https://github.com/wordpress-mobile/gutenberg-mobile/pull/6801]
1.116.0
---
* [**] Highlight color formatting style improvements [https://github.com/wordpress-mobile/gutenberg-mobile/pull/6517]
* [*] Fix an Aztec editor crash occurring on some occasions when the keyboard suggestions are used [https://github.com/wordpress-mobile/gutenberg-mobile/pull/6765]
1.115.0
---
* [**] [internal] Upgrade React Native to version 0.73.3 [https://github.com/wordpress-mobile/gutenberg-mobile/pull/6590]
* [**] Add error boundary components and exception logging [https://github.com/wordpress-mobile/gutenberg-mobile/pull/6655]
* [**] Fix crash occurring when the URL associated with a Video block is changed too quickly [https://github.com/wordpress-mobile/gutenberg-mobile/pull/6729]
1.114.1
---
* [**] Fix a crash produced when the content of a synced pattern is updated [https://github.com/WordPress/gutenberg/pull/59632]
1.114.0
---
* [**] Introduce VideoPress v5 support, to fix issues using video block with dotcom and Jetpack sites [https://github.com/wordpress-mobile/gutenberg-mobile/pull/6634]
* [*] Prevent crash when autoscrolling to blocks [https://github.com/WordPress/gutenberg/pull/59110]
* [*] Remove opacity change when images are being uploaded [https://github.com/WordPress/gutenberg/pull/59264]
* [*] Media & Text blocks correctly show an error message when the attached video upload fails [https://github.com/WordPress/gutenberg/pull/59288]
1.112.0
---
* [**] Fix crash occurring on large post on Android [https://github.com/wordpress-mobile/gutenberg-mobile/pull/6575]
* [*] [internal] Upgrade React Native to version 0.71.15 [https://github.com/wordpress-mobile/gutenberg-mobile/pull/6522]
* [**] Prevent images from temporarily disappearing when uploading media [https://github.com/wordpress-mobile/gutenberg-mobile/pull/6550]
1.111.2
---
* [*] [internal] Remove `mediaFilesCollectionBlock` initial prop [https://github.com/WordPress/gutenberg/pull/58140]
* [**] Remove Story block [https://github.com/wordpress-mobile/gutenberg-mobile/pull/6568]
1.111.1
---
* [**] Fix crash when RichText values are not defined [https://github.com/WordPress/gutenberg/pull/58088]
* [**] Video block: Fix logic for displaying empty state based on source presence [https://github.com/WordPress/gutenberg/pull/58015]
1.111.0
---
* [**] Image block media uploads display a custom error message when there is no internet connection [https://github.com/wordpress-mobile/gutenberg-mobile/pull/6491]
* [*] Fix missing custom color indicator for custom gradients [https://github.com/wordpress-mobile/gutenberg-mobile/pull/6512]
* [**] Display a notice when a network connection unavailable [https://github.com/WordPress/gutenberg/pull/56934]
1.110.1
---
* [**] Fix crash when RichText values are not defined [https://github.com/wordpress-mobile/gutenberg-mobile/pull/6563]
1.110.0
---
* [**] Fix crash when sharing unsupported media types on Android [https://github.com/wordpress-mobile/gutenberg-mobile/pull/6444]
* [**] Fixes a crash when blockType wrapperProps are not defined [https://github.com/WordPress/gutenberg/pull/56846]
* [**] Fix regressions with wrapper props and font size customization [https://github.com/wordpress-mobile/gutenberg-mobile/pull/6459]
* [***] Avoid keyboard dismiss when interacting with text blocks [https://github.com/WordPress/gutenberg/pull/57070]
* [**] Auto-scroll upon block insertion [https://github.com/WordPress/gutenberg/pull/57273]
* [*] Unselect blocks using the hardware back button (Android) [https://github.com/wordpress-mobile/gutenberg-mobile/pull/6483]
1.109.3
---
* [**] Fix duplicate/unresponsive options in font size settings. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/6466]
1.109.2
---
* [**] Fix issue related to text color format and receiving in rare cases an undefined ref from `RichText` component [https://github.com/WordPress/gutenberg/pull/56686]
* [**] Fixes a crash on pasting MS Word list markup [https://github.com/WordPress/gutenberg/pull/56653]
* [**] Address rare cases where a null value is passed to a heading block, causing a crash [https://github.com/wordpress-mobile/gutenberg-mobile/pull/6435]
* [**] Fixes a crash related to HTML to blocks conversion when no transformations are available [https://github.com/WordPress/gutenberg/pull/56723]
* [**] Fixes a crash related to undefined attributes in `getFormatColors` function of `RichText` component [https://github.com/WordPress/gutenberg/pull/56684]
* [**] Fixes an issue with custom color variables not being parsed when using global styles [https://github.com/WordPress/gutenberg/pull/56752]
1.109.1
---
* [***] Fix issue when backspacing in an empty Paragraph block [https://github.com/wordpress-mobile/gutenberg-mobile/pull/6402]
1.109.0
---
* [*] Contact Info block: Improve legibility of typed text on various background colors [https://github.com/Automattic/jetpack/pull/33873]
* [*] Audio block: Improve legibility of audio file details on various background colors [https://github.com/WordPress/gutenberg/pull/55627]
* [*] Fix ungroup functionality in `WarningMaxDepthExceeded` component [https://github.com/WordPress/gutenberg/pull/56445]
1.108.0
---
* [*] Fix error when pasting deeply nested structure content [https://github.com/WordPress/gutenberg/pull/55613]
* [*] Fix crash related to accessing undefined value in `TextColorEdit` [https://github.com/WordPress/gutenberg/pull/55664]
1.107.0
---
* [*] Social Icons: Fix visibility of inactive icons when used with block based themes in dark mode [https://github.com/WordPress/gutenberg/pull/55398]
* [*] Classic block: Add option to convert to blocks [https://github.com/WordPress/gutenberg/pull/55461]
* [*] Synced Patterns: Fix visibility of heading section when used with block based themes in dark mode [https://github.com/WordPress/gutenberg/pull/55399]
1.106.0
---
* [*] Exit Preformatted and Verse blocks by triple pressing the Return key [https://github.com/WordPress/gutenberg/pull/53354]
* [*] Fix quote block border visibility when used with block based themes in dark mode [https://github.com/wordpress-mobile/gutenberg-mobile/pull/6268]
1.105.0
---
* [*] Prevent crashes when setting an invalid media URL for Video or Audio blocks [https://github.com/wordpress-mobile/gutenberg-mobile/pull/6235]
* [*] Limit inner blocks nesting depth to avoid call stack size exceeded crash [https://github.com/wordpress-mobile/gutenberg-mobile/pull/6191]
* [**] Fallback to Twitter provider when embedding X URLs [https://github.com/WordPress/gutenberg/pull/54876]
1.104.0
---
* [*] Fix the obscurred "Insert from URL" input for media blocks when using a device in landscape orientation. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/6143]
* [**] Updated placeholder text colors for block-based themes [https://github.com/wordpress-mobile/gutenberg-mobile/pull/6182]
1.103.3
---
* [*] Bump `WordPress-Aztec-iOS` version to `1.19.9` [https://github.com/wordpress-mobile/gutenberg-mobile/pull/6202]
1.103.2
---
* [*] Fix issue with missing characters in Add Media placeholder button [https://github.com/WordPress/gutenberg/pull/54281]
1.103.1
---
* [**] Fix long-press gestures not working in RichText component [Android] [https://github.com/WordPress/gutenberg/pull/54213]
1.103.0
---
* [*] Remove third-party dependency on react-native-hsv-color-picker [https://github.com/WordPress/gutenberg/pull/53329]
* [*] Search Control - Prevent calling TextInput's methods when undefined [https://github.com/wordpress-mobile/gutenberg-mobile/pull/6090]
* [**] Add basic support to view, relocate, and remove the Jetpack Paywall block. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/6076]
* [*] Columns block - Fix transforming into a Group block crash [https://github.com/wordpress-mobile/gutenberg-mobile/pull/6129]
* [**] Add block outline to all Social Link blocks when selected [https://github.com/WordPress/gutenberg/pull/54011]
1.102.1
---
* [**] Fix Voice Over and assistive keyboards [https://github.com/wordpress-mobile/gutenberg-mobile/pull/6102]
1.102.0
---
* [**] Add outline around selected Social Link block [https://github.com/WordPress/gutenberg/pull/53377]
* [*] Display custom color value in mobile Cover Block color picker [https://github.com/wordpress-mobile/gutenberg-mobile/pull/5852]
* [**] Fixes font customization not getting updated on iOS [https://github.com/wordpress-mobile/gutenberg-mobile/pull/6036]
1.101.2
---
* [**] Fix Voice Over and assistive keyboards [https://github.com/wordpress-mobile/gutenberg-mobile/pull/6102]
1.101.1
---
* [**] Fixed images not rendering in Help section on iOS [https://github.com/wordpress-mobile/gutenberg-mobile/pull/6067]
* [**] Fix the dynamic height when opening/closing navigation screens within the bottom sheet. [https://github.com/WordPress/gutenberg/pull/53608]
1.101.0
---
* [*] Remove visual gap in mobile toolbar when a Gallery block is selected [https://github.com/WordPress/gutenberg/pull/52966]
* [*] Remove Gallery caption button on mobile [https://github.com/WordPress/gutenberg/pull/53010]
* [**] Upgrade React Native to 0.71.11 [https://github.com/wordpress-mobile/gutenberg-mobile/pull/5874]
* [*] Upgrade Gradle to 8.2.1 & AGP to 8.1.0 [https://github.com/wordpress-mobile/gutenberg-mobile/pull/5989]
* [*] Fix Gallery block selection when adding media [https://github.com/WordPress/gutenberg/pull/53127]
1.100.2
---
* [**] Fix iOS Focus loop for RichText components [https://github.com/wordpress-mobile/gutenberg-mobile/pull/6009]
1.100.1
---
* [**] Fix crash when registering non-core blocks [https://github.com/wordpress-mobile/gutenberg-mobile/pull/5982]
1.100.0
---
* [**] Add media inserter buttons to editor toolbar [https://github.com/wordpress-mobile/gutenberg-mobile/pull/5900]
* [**] Update native BlockOutline component styles to remove blue border from blocks [https://github.com/wordpress-mobile/gutenberg-mobile/pull/5833]
* [**] Move the undo/redo buttons to the navigation bar [https://github.com/wordpress-mobile/gutenberg-mobile/pull/5889]
* [**] Update Editor block inserter button styles and default text input placeholder/selection styles [https://github.com/wordpress-mobile/gutenberg-mobile/pull/5941]
* [**] Update Editor toolbar icons and colors [https://github.com/wordpress-mobile/gutenberg-mobile/pull/5940]
* [**] Update media placeholders and block outline [https://github.com/wordpress-mobile/gutenberg-mobile/pull/5969]
1.99.1
---
* [**] Fix crash related to removing a block under certain conditions [https://github.com/WordPress/gutenberg/pull/52595]
1.99.0
---
* [*] Rename "Reusable blocks" to "Synced patterns", aligning with the web editor. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/5885]
* [**] Fix a crash related to Reanimated when closing the editor [https://github.com/wordpress-mobile/gutenberg-mobile/pull/5938]
1.98.1
---
* [*] fix: Display heading level dropdown icons and labels [https://github.com/wordpress-mobile/gutenberg-mobile/pull/5911]
1.98.0
---
* [*] Image block - Fix issue where in some cases the image doesn't display the right aspect ratio [https://github.com/wordpress-mobile/gutenberg-mobile/pull/5869]
* [*] Fix cursor positioning when dictating text on iOS [https://github.com/WordPress/gutenberg/issues/51227]
1.97.1
---
* [**] Fix crash when using the delete key to remove a single button [https://github.com/WordPress/gutenberg/pull/51435]
* [*] Ensure text input field is not editable when Bottom sheet cell is disabled [https://github.com/WordPress/gutenberg/pull/51567]
1.97.0
---
* [**] [iOS] Fix dictation regression, in which typing/dictating at the same time caused content loss. [https://github.com/WordPress/gutenberg/pull/49452]
* [*] [internal] Upgrade compile and target sdk version to Android API 33 [https://github.com/wordpress-mobile/gutenberg-mobile/pull/5789]
* [*] Display lock icon in disabled state of `Cell` component [https://github.com/wordpress-mobile/gutenberg-mobile/pull/5798]
* [*] Show "No title"/"No description" placeholder for not belonged videos in VideoPress block [https://github.com/wordpress-mobile/gutenberg-mobile/pull/5840]
1.96.1
---
* [**] Fix Android-only issue related to block toolbar not being displayed on some blocks in UBE [https://github.com/WordPress/gutenberg/pull/51131]
1.96.0
---
* [*] Add disabled style to `Cell` component [https://github.com/WordPress/gutenberg/pull/50665]
* [**] Fix undo/redo history when inserting a link configured to open in a new tab [https://github.com/WordPress/gutenberg/pull/50460]
* [**] Disable details settings for not belonged VideoPress videos [https://github.com/wordpress-mobile/gutenberg-mobile/pull/5782]
* [***] Enable VideoPress block on Android (only available in Simple WPCOM sites) [https://github.com/wordpress-mobile/gutenberg-mobile/pull/5780]
* [**] Tapping any type of nested block moves focus to the nested block directly, rather than requiring multiple taps to navigate down each nesting levels. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/5781]
* [*] [List block] Fix an issue when merging a list item into a Paragraph would remove its nested list items [https://github.com/wordpress-mobile/gutenberg-mobile/pull/5785]
1.95.0
---
* [**] Add fullscreen embed preview to Android [https://github.com/wordpress-mobile/gutenberg-mobile/pull/5743]
* [*] Fix crash when trying to convert to regular blocks an undefined/deleted reusable block [https://github.com/WordPress/gutenberg/pull/50475]
* [**] Tapping on nested text blocks gets focus directly instead of having to tap multiple times depending on the nesting levels. [https://github.com/WordPress/gutenberg/pull/50108]
* [*] Use host app namespace in reusable block message [https://github.com/WordPress/gutenberg/pull/50478]
1.94.0
---
* [***] Enable VideoPress block (only on iOS and Simple WPCOM sites) [#5692]
* [*] Allow content that is pasted into the post title to populate the post body correctly [https://github.com/WordPress/gutenberg/pull/37169]
1.93.1
---
* [**] Fix regression with the Color hook and ColorPanel [https://github.com/wordpress-mobile/gutenberg-mobile/pull/5683]
1.93.0
---
* [***] [iOS] Fixed iOS scroll jumping issue by refactoring KeyboardAwareFlatList improving writing flow and caret focus handling [https://github.com/wordpress-mobile/gutenberg-mobile/pull/5533]
1.92.1
---
* [*] Avoid empty Gallery block error [https://github.com/wordpress-mobile/gutenberg-mobile/pull/5627]
1.92.0
---
* No User facing changes *
1.91.0
---
* [*] Allow new block transformations for most blocks. [https://github.com/WordPress/gutenberg/pull/48792]
1.90.0
---
* [*] Fix parsing of css units for null matched values [https://github.com/wordpress-mobile/gutenberg-mobile/pull/5516]
* [*] Spacer block - Add initial support for spacing presets [https://github.com/wordpress-mobile/gutenberg-mobile/pull/5410]
* [*] Add visual tests support [https://github.com/wordpress-mobile/gutenberg-mobile/pull/5456]
* [*] Add metadata parameter to media upload events [https://github.com/wordpress-mobile/gutenberg-mobile/pull/5479]
1.89.1
---
* [*] Fix inaccessible block settings within the unsupported block editor [https://github.com/wordpress-mobile/gutenberg-mobile/pull/5508]
1.89.0
---
* No User facing changes *
1.88.0
---
* [*] Bump Android `minSdkVersion` to 24 [https://github.com/wordpress-mobile/gutenberg-mobile/pull/5435]
* [*] Bump Aztec-Android version to `1.6.3` [https://github.com/wordpress-mobile/gutenberg-mobile/pull/5438]
* [*] Update React Native Reanimated to 2.9.1-wp-3 [https://github.com/wordpress-mobile/gutenberg-mobile/pull/5430]
1.87.3
---
* [*] Fix insert blocks not handling raw string properly in unsupported block editor [https://github.com/WordPress/gutenberg/pull/47472]
1.87.2
---
* [*] Add boolean contentStyle and clientId check to Column Edit InnerBlocks [https://github.com/WordPress/gutenberg/pull/47234]
* [*] Line-height and font-size regression fixes [https://github.com/wordpress-mobile/gutenberg-mobile/pull/5407]
1.87.1
---
* [**] Remove unnecessary negative margin around empty gallery block [https://github.com/wordpress-mobile/gutenberg-mobile/pull/5386]
* [*] RichText - Parse CSS values and avoid setting undefined ones [https://github.com/wordpress-mobile/gutenberg-mobile/pull/5391]
1.87.0
---
* [*] Only register core blocks when `onlyCoreBlocks` capability is enabled [https://github.com/wordpress-mobile/gutenberg-mobile/pull/5293]
1.86.1
---
* [*] Block Actions Menu - Fix block title regression and adds integration tests [https://github.com/wordpress-mobile/gutenberg-mobile/pull/5340]
1.86.0
---
* [**] Upgrade React Native from 0.66.2 to 0.69.4 [https://github.com/wordpress-mobile/gutenberg-mobile/pull/5193]
1.85.1
---
* [**] Prevent error message from unneccesarily firing when uploading to Gallery block [https://github.com/WordPress/gutenberg/pull/46175]
1.85.0
---
* [*] [iOS] Fixed iOS Voice Control support within Image block captions. [https://github.com/WordPress/gutenberg/pull/444850]
1.84.1
---
* [**] Native inner blocks merge where appropriate [https://github.com/wordpress-mobile/gutenberg-mobile/pull/5222]
1.84.0
---
* [*] Upgrade compile and target sdk version to Android API 31 [https://github.com/wordpress-mobile/gutenberg-mobile/pull/5184]
1.83.0
---
* No User facing changes *
1.82.1
---
* [**] List block v2: Fix issues splitting or merging paragraphs into the block [https://github.com/WordPress/gutenberg/pull/43949]
1.82.0
---
* [*] [iOS] Explicitly set tint color for action sheets to always be blue [https://github.com/WordPress/gutenberg/pull/43759]
1.81.2
---
* [**] List V2 - Prevent error when list is empty [https://github.com/WordPress/gutenberg/pull/43861]
1.81.1
---
* [*] List block v2: Fix text color inconsistencies with list items [https://github.com/wordpress-mobile/gutenberg-mobile/pull/5096]
* [*] Use default placeholder text color for native List Item [https://github.com/WordPress/gutenberg/pull/43353]
* [*] Add BlockListCompact [https://github.com/WordPress/gutenberg/pull/43431]
* [*] Fix dynamic React Native version [https://github.com/WordPress/gutenberg/pull/43058]
* [*] Disable FastImage on Android [https://github.com/wordpress-mobile/gutenberg-mobile/pull/5102]
1.81.0
---
* [**] List block V2 [https://github.com/wordpress-mobile/gutenberg-mobile/pull/5054]
1.80.1
---
* [*] Image - Workaround for Android and orientation changes [https://github.com/WordPress/gutenberg/pull/42900]
1.80.0
---
* [**] Prevent validation error when viewing VideoPress markup within app [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4899]
* [*] Add React Native FastImage [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4989]
* [*] Block inserter displays block collections [https://github.com/wordpress-mobile/gutenberg-mobile/pull/5024]
* [*] Fix incorrect spacing within Image alt text footnote [https://github.com/wordpress-mobile/gutenberg-mobile/pull/5031]
* [***] Gallery and Image block - Performance improvements [https://github.com/wordpress-mobile/gutenberg-mobile/pull/5007]
## 1.79.1
---
* [**] Fix a crash when scrolling posts containing Embed blocks (Android 12 only) [https://github.com/wordpress-mobile/gutenberg-mobile/pull/5033]
## 1.79.0
---
- [*] Add 'Insert from URL' option to Video block [https://github.com/WordPress/gutenberg/pull/41493]
- [*] Image block copies the alt text from the media library when selecting an item [https://github.com/WordPress/gutenberg/pull/41839]
- [*] Introduce "block recovery" option for invalid blocks [https://github.com/WordPress/gutenberg/pull/41988]
## 1.78.1
---
* [**] Re-introduce support for v1 of the Gallery block to the native version of the editor [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4928]
* [**] Fix missing translations for locales that include region (only on Android) [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4950]
## 1.78.0
---
* [*] Bump react-native-gesture-handler to version 2.3.2 [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4895]
## 1.77.1
---
* [***] Fix crash on iOS related to JSI and Reanimated [https://github.com/WordPress/gutenberg/pull/41482]
## 1.77.0
---
* [*] [a11y] Improve text read by screen readers for BottomSheetSelectControl [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4854]
* [*] Add 'Insert from URL' option to Image block [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4779]
## 1.76.3
---
* [***] Fix crash on iOS related to JSI and Reanimated [https://github.com/WordPress/gutenberg/pull/41482]
## 1.76.2
---
* [*] Ensure post title gets focused when is notified from native side [https://github.com/WordPress/gutenberg/pull/41371]
## 1.76.1
---
* [*] BlockList - Add internal onLayout from CellRendererComponent to BlockListItemCell [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4865]
* [*] Fix Drag & Drop Chip positioning issue with RTL languages [https://github.com/WordPress/gutenberg/pull/41053]
* [*] Add drag & drop help guide in Help & Support screen [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4857]
* [*] Fix drag mode not being enabled when long-pressing over Shortcode block [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4872]
## 1.76.0
---
* [**] [Cover block] Improve color contrast between background and text [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4808]
* [**] [Buttons block] Fix Android-only issue related to displaying formatting buttons after closing the block settings [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4814]
* [***] Add drag & drop blocks feature [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4832]
* [*] [Gallery block] Fix broken "Link To" settings and add "Image Size" settings [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4841]
* [*] [Unsupported Block Editor] Prevent WordPress.com tour banner from displaying. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4820]
## 1.75.1
---
* [*] Track block movement actions [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4833]
## 1.75.0
---
* [*] [Latest Posts block] Add featured image settings [https://github.com/WordPress/gutenberg/pull/39257]
* [*] Prevent incorrect notices displaying when switching between HTML-Visual mode quickly [https://github.com/WordPress/gutenberg/pull/40415]
* [*] [Embed block] Fix inline preview cut-off when editing URL [https://github.com/WordPress/gutenberg/pull/35326]
* [*] [iOS] Prevent gaps shown around floating toolbar when using external keyboard [https://github.com/WordPress/gutenberg/pull/40266]
## 1.74.1
---
* [**] RichText - Set a default value for selection values [https://github.com/WordPress/gutenberg/pull/40581]
## 1.74.0
---
* [**] [Quote block] Adds support for V2 behind a feature flag [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4744]
* [**] Update "add block" button style in default editor view. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4705]
* [*] Remove banner error notification on upload failure [https://github.com/WordPress/gutenberg/pull/39694]
## 1.73.1
---
* [*] [Spacer block] Fix crash when changing the height value using the text input [https://github.com/WordPress/gutenberg/pull/40053]
## 1.73.0
---
* [*] Update react-native-reanimated version to 2.4.1 [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4653]
* [*] Upgrade Gradle to 7.4 & AGP to 7.1.1 [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4662]
* [*] Add waits to fix editor test flakiness [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4687]
## 1.72.1
---
* [*] Detect GIF badge during render [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4711]
## 1.72.0
---
* [*] Add GIF badge for animated GIFs uploaded to Image blocks [https://github.com/WordPress/gutenberg/pull/38996]
* [*] Small refinement to media upload errors, including centering and tweaking copy. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4597]
* [*] Update gesture handler and reanimated libraries [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4615]
* [*] Fix issue with list's starting index and the order [https://github.com/WordPress/gutenberg/pull/39354]
## 1.71.3
---
* [*] Fix autocorrected Headings applying bold formatting on iOS [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4557]
* [***] Support for multiple color palettes [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4588]
1.71.1
---
* [*] Highlight text: Check if style attribute value is defined during filtering [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4562]
1.71.0
---
* [*] Image block: Replacing the media for an image set as featured prompts to update the featured image [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3930]
* [***] Font size and line-height support for text-based blocks used in block-based themes [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4519]
1.70.3
---
* [*] Highlight text: Check if style attribute value is defined during filtering [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4562]
1.70.2
---
* [**] Rich Text - Validate link colors [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4542]
1.70.1
---
* [**] [Gallery block] Fix crash when adding images and selecting a gallery item [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4515]
* [***] Fix launching video preview on Android 11+ [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4527]
1.70.0
---
* [**] Fix content justification attribute in Buttons block [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4451]
* [*] Hide help button from Unsupported Block Editor. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4352/]
* [*] Add contrast checker to text-based blocks [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4357]
* [*] Fix missing Featured Image translations [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4464]
* [*] Fix missing translations of color settings [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4479]
* [*] Fix cut-off setting labels by properly wrapping the text [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4475]
* [*] Highlight text: fix applying formatting for non-selected text [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4471]
* [**] Fix Android handling of Hebrew and Indonesian translations [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4397]
1.69.1
---
* [*] Fix app freeze when closing link picker while virtual keyboard is hidden [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4443]
* [*] Gallery block - Fix bug when migrating from old galleries format [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4456]
* [*] RichText - Use parsed font size values when comparing new changes [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4463]
1.69.0
---
* [*] Give multi-line block names central alignment in inserter [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4343]
* [**] Fix missing translations by refactoring the editor initialization code [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4332]
* [**] Add Jetpack and Layout Grid translations [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4359]
* [**] Fix text formatting mode lost after backspace is used [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4423]
* [*] Add missing translations of unsupported block editor modal [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4410]
1.68.0
---
* [**] Fix undo/redo functionality in links when applying text format [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4290]
* [**] [iOS] Fix scroll update when typing in RichText component [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4299]
* [*] [Preformatted block] Fix an issue where the background color is not showing up for standard themes [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4292]
* [**] Update Gallery Block to default to the new format and auto-convert old galleries to the new format [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4315]
* [***] Highlight text - enables color customization for specific text within a Paragraph block [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4175]
* [**] Fix empty line appearing when splitting heading blocks on Android 12 [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4365]
1.67.0
---
* [**] Adds Clipboard Link Suggestion to Image block and Button block [https://github.com/WordPress/gutenberg/pull/35972]
* [*] [Embed block] Included Link in Block Settings [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4189]
* [**] Fix tab titles translation of inserter menu [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4248]
* [*] [Media & Text block] Fix an issue where the text font size would be bigger than expected in some cases [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4252]
* [**] [Gallery block] When a gallery block is added, the media options are auto opened for v2 of the Gallery block. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4277]
1.66.0
---
* [**] Image block: Add ability to quickly link images to Media Files and Attachment Pages [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3971]
* [*] Fixed a race condition when autosaving content (Android) [https://github.com/WordPress/gutenberg/pull/36072]
* [**] Fixed a crash that could occur when copying lists from Microsoft Word. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4174]
1.65.1
------
* [**] Fixed a crash that could occur when copying lists from Microsoft Word. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4174]
1.65.0
------
* [**] Search block - Text and background color support [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4127]
* [*] [Embed Block] Fix loading glitch with resolver resolution approach [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4146]
* [*] Fixed an issue where the Help screens may not respect an iOS device's notch. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4110]
* [**] Inserter: Block inserter indicates newly available block types [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4047]
* [*] Add support for the Mark HTML tag [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4162]
1.64.1
------
* [**] Fix updating the block list after block removal [https://github.com/WordPress/gutenberg/pull/35721]
* [**] Cover block: Change dimRatio to 50 if media added and dimRatio is set to 100 [https://github.com/WordPress/gutenberg/pull/35792]
1.64.0
------
* [*] [Unsupported Block Editor] Fix text selection bug for Android [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3937]
* [*] Embed block: Fix inline preview cut-off when editing URL [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4072]
* [**] Embed block: Include Jetpack embed variants [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4008]
* [*] Embed block: Fix URL not editable after dismissing the edit URL bottom sheet with empty value [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4094]
* [**] Embed block: Detect when an embeddable URL is pasted into an empty paragraph. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4048]
* [**] Pullquote block - Added support for text and background color customization [https://github.com/WordPress/gutenberg/pull/34451]
* [**] Preformatted block - Added support for text and background color customization [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4071]
1.63.1
------
* [*] Fixed missing modal backdrop for Android help section [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4106]
* [*] Fixed erroneous overflow within editor Help screens. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4105]
1.63.0
------
* [**] Embed block: Add the top 5 specific embed blocks to the Block inserter list. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3995]
* [*] Embed block: Fix URL update when edited after setting a bad URL of a provider. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4002]
* [**] Users can now contact support from inside the block editor screen. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3975]
1.62.2
------
* Same as 1.62.1 but with a gutenberg changelog.
1.62.1
------
* [**] Image block: fix height and border regression. [https://github.com/WordPress/gutenberg/pull/34957]
* [**] Column block: fix width float attribute cut off. [https://github.com/WordPress/gutenberg/pull/35061]
1.62.0
------
* [**] Enable WordPress embed preview [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3853]
* [**] Embed block: Add error bottom sheet with retry and convert to link actions. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3921]
* [**] Embed block: Implemented the No Preview UI when an embed is successful, but we're unable to show an inline preview [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3927]
* [**] Fix Android-only issue of main toolbar initial position being wrong when RTL [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3923]
* [*] Embed block: Add device's locale to preview content [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3788]
* [*] Embed block: Fix content disappearing on Android when switching light/dark mode [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3859]
* [*] Column block: Translate column width's control labels [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3952]
* [**] Enable embed preview for Instagram and Vimeo providers. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3918]
1.61.2
------
* [*] Image block - Fix height and border regression. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3992]
1.61.1
------
* [*] Fix crash related to reusable blocks in the block picker. [https://github.com/WordPress/gutenberg/pull/34873]
1.61.0
------
* [***] Inserter: Add Inserter Block Search [https://github.com/WordPress/gutenberg/pull/33237]
* [**] Enable embed preview for a list of providers (for now only YouTube and Twitter) [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3900]
1.60.1
------
* [*] RNmobile: Fix the cancel button on Block Variation Picker / Columns Block. [https://github.com/wordpress-mobile/gutenberg/pull/34249]
* [*] Column block: Fix Android close button alignment. [https://github.com/WordPress/gutenberg/pull/34332]
* [*] Layout Grid block: Fix Android close button alignment. [https://github.com/Automattic/block-experiments/pull/239]
1.60.0
------
* [**] Embed block: Add "Resize for smaller devices" setting. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3753]
1.59.2
------
* [*] Inserter: Prevent non-deterministic order of inserter items [https://github.com/WordPress/gutenberg/pull/34078]
* [*] Fix missing block title of core/latest-posts block [https://github.com/WordPress/gutenberg/pull/34116]
1.59.1
------
* [*] Global styles - Add color to the block styles filter list [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3822]
* [*] Rich text - toTree - Add check in replacements before accessing its type [https://github.com/WordPress/gutenberg/pull/34020]
1.59.0
------
* [*] [Android] Fix UBE's inaccessible "more" toolbar item. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3771]
* [*] Image block: Add a "featured" banner and ability to set or remove an image as featured. (iOS only) [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3449]
1.58.3
------
* [*] Fix crash when pasting OBJECT REPLACEMENT CHARACTER special character (Rich text - toTree - Add check in replacements before accessing its type) [https://github.com/WordPress/gutenberg/pull/34020]
1.58.2
------
* [*] Fix issue with text input in alt text settings [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3784]
1.58.1
------
* [*] Global styles: Check for undefined values and merge user colors [https://github.com/WordPress/gutenberg/pull/33707]
* [*] [Embed block] Disable paragraph transform [https://github.com/WordPress/gutenberg/pull/33745]
1.58.0
------
* [***] New Block: Embed block. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3727]
1.57.1
------
* [*] Fix slider and stepper text inputs in dark mode [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3724]
* [*] Fix button block border-radius saving the value + unit [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3723]
1.57.0
------
* [*] Update loading and failed screens for web version of the editor [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3573]
* [*] Handle floating keyboard case - Fix issue with the block selector on iPad. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3687]
1.56.0
------
* [*] Tablet view fixes for inserter button. https://github.com/wordpress-mobile/gutenberg-mobile/pull/3602
* [**] Fixed an issue where pressing enter inside a text-based block was not creating a new block when using Gboard [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3590]
* [*] Tweaks to the badge component's styling, including change of background color and reduced padding. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3642]
* [***] New block: Layout grid. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3513]
1.55.2
------
* [**] Fix incorrect block insertion point after blurring the post title field. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3640]
1.55.1
------
* [*] Fix: RNMobile borderRadius value setting. [https://github.com/WordPress/gutenberg/pull/32717]
* [*] Improve unsupported block message for reusable block. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3621]
1.55.0
------
* [*] Image block: "Set as featured" button within image block settings. (Android only). [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3116]
* [***] Audio block now available on WP.com sites on the free plan. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3523]
1.54.0
------
* [*] The BottomSheet Cell component now supports the help prop so that a hint can be supplied to all Cell based components. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3380]
* [**] Audio block: Add Insert from URL functionality. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3031]
* [***] Slash command to insert new blocks. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3250]
* [***] New Block: Reusable block. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3490]
* [*] Add improvements to the translation pipeline [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3555]
1.53.0
------
* [*] iOS: Fixes frozen editor scrolling in landscape on iPhone [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3504]
* [*] Add Reusable blocks to the inserter menu (https://github.com/wordpress-mobile/gutenberg-mobile/pull/3054]
* [*] Fixes color picker segmented control rendering and scrolling issues [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3394]
1.52.2
------
* [*] Disabled featured image banner on iOS. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3474]
1.52.1
------
* [*] Fixes for the generated localized strings files.
1.52.0
------
* [**] Added transform block capability [#3321]
* [***] New Block: Search Block [#3210]
* [**] The media upload options of the Image, Video and Gallery block automatically opens when the respective block is inserted. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/2700]
* Image block: Add a "featured" banner. (Android only) [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3371]
* [*] Fixed a bug where the Search block was stealing focus from the Image block upon updating image asset [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3442]
* [**] The media upload options of the File and Audio block automatically opens when the respective block is inserted. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3399]
* [*] Remove visual feedback from non-interactive bottom-sheet cell sections [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3404]
1.51.1
------
* [*] Updates relative block-support asset path [https://github.com/WordPress/gutenberg/pull/31184]
1.51.0
------
* [*] a11y: Bug fix: Allow stepper cell to be selected by screenreader [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3362]
* [*] Image block: Improve text entry for long alt text. [https://github.com/WordPress/gutenberg/pull/29670]
* [***] New Block: Jetpack contact info. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3340]
1.50.1
------
* a11y: Fix for screenreader improvements in 1.50.0 [https://github.com/WordPress/gutenberg/issues/30625]
* a11y: Fix an issue with range-cells where screenreader read decimals with too much precision [https://github.com/wordpress-mobile/gutenberg-mobile/issues/3358]
* Quote block: Fix an issue with quote block captions where newlines were adding an extra line [https://github.com/WordPress/gutenberg/issues/30548]
* Fixed react-native-bridge path issue causing crash in Unsupported Block Editor. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3353]
1.50.0
------
* [***] a11y: Screenreader improvements for the UnitControl component [https://github.com/WordPress/gutenberg/pull/29741]
* [*] Block split/merge fix for a (never shipped) regression (Android only) [https://github.com/WordPress/gutenberg/pull/29683]
1.49.0
------
* [*] Remove the cancel button from settings options (Android only) [https://github.com/WordPress/gutenberg/pull/29599]
1.48.0
------
* [**] Buttons block: added width setting. [https://github.com/WordPress/gutenberg/pull/28543]
1.47.2
------
* [**] Add `replaceBlock` method to iOS bridge delegate with a string to match the clientID and the contents to replace. [#3246]
1.47.1
------
* [**] Reduce the number of items per page when fetching reusable blocks to prevent a crash. [#3227]
1.47.0
------
* [*] Fixed block mover title wording for better clarity from 'Move block position' to 'Change block position'. [#3049]
* [**] Add support for setting Cover block focal point. [#3028]
1.46.1
------
* [**] Make inserter long-press options "add to beginning" and "add to end" always available. [#3074]
* [*] Fix crash when Column block width attribute was empty. [https://github.com/WordPress/gutenberg/pull/29015]
1.46.0
------
* [***] New Block: Audio [#2854, #3070]
* [**] Add support for setting heading anchors [#2947]
* [**] Disable Unsupported Block Editor for Reusable blocks [#3067]
* [**] Add proper handling for single use blocks such as the more block [#3042]
1.45.0
------
* No User facing changes *
1.44.1
------
* [**] Fix crash in mobile paragraph blocks with custom font size [#28121]
* [**] Add move to top bottom when long pressing block movers [#27554]
1.44.0
------
* [***] Add support for cross-posting between sites [#2602]
* [***] Full-width and wide alignment support for Columns
* [**] Image block - Add link picker to the block settings and enhance link settings with auto-hide options [https://github.com/WordPress/gutenberg/pull/27292]
* [*] Fix button link setting, rel link will not be overwritten if modified by the user.
1.43.0
------
* [***] New Block: File [https://github.com/wordpress-mobile/gutenberg-mobile/pull/2835]
* [**] Fix issue where a blocks would disappear when deleting all of the text inside without requiring the extra backspace to remove the block. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/2877]
1.42.2
------
* [**] Fix issue where removing blocks some blocks would crash the editor.
* [***] Full-width and wide alignment support for Columns
* [***] New Block: File [https://github.com/wordpress-mobile/gutenberg-mobile/pull/2835]
* [**] Image block - Add link picker to the block settings and enhance link settings with auto-hide options [https://github.com/WordPress/gutenberg/pull/27292]
* [*] Fix button link setting, rel link will not be overwritten if modified by the user.
* [*] Fix minor bug affecting link picker search results [https://github.com/WordPress/gutenberg/pull/27867]
1.42.0
------
* [**] Button block - Add link picker to the block settings [https://github.com/WordPress/gutenberg/pull/26206]
* [**] Fix gradient picker causing crash in some themes (like Spearhead) [https://github.com/WordPress/gutenberg/pull/27307]
* [***] Adding support for selecting different unit of value in Cover and Columns blocks [https://github.com/WordPress/gutenberg/pull/26161]
* [*] Fix theme colors syncing with the editor [https://github.com/WordPress/gutenberg/pull/26821]
1.41.0
------
* [***] Faster editor start and overall operation on Android. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/2780]
* [*] [Android] Enable multiple upload support for Image block. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/2530]
1.40.0
------
1.39.0
------
* [***] Full-width and wide alignment support for Video, Latest-posts, Gallery, Media & text, and Pullquote block. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/2605]
1.38.1
------
* [***] Fix unsupported block bottom sheet is triggered when device is rotated. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/2710]
* [***] Unsupported Block Editor: Fixed issue when cannot view or interact with the classic block on Jetpack site. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/2709]
1.38.0
------
* [**] Increase tap-target of primary action on unsupported blocks. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/2608]
* [***] On Jetpack connected sites, Unsupported Block Editor can be enabled via enabling Jetpack SSO setting directly from within the missing block alert. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/2610]
* [***] Add support for selecting user's post when configuring the link [https://github.com/wordpress-mobile/gutenberg-mobile/pull/2484]
* [**] [Android] Fix for a crash that can occur when long pressing selected images [https://github.com/wordpress-mobile/AztecEditor-Android/pull/924]
* [***] [Android] Added expected double tap for focus behavior for text fields in accessibility mode [https://github.com/WordPress/gutenberg/pull/25384]
1.37.1
------
* [**] [iOS] remove the overlay from the Unsupported Block Editor web view, if Login with WordPress.com is requested. (bug never releases) [https://github.com/wordpress-mobile/gutenberg-mobile/pull/2641]
1.37.0
------
* [***] Full-width and wide alignment support for Group, Cover and Image block [https://github.com/wordpress-mobile/gutenberg-mobile/pull/2559]
* [**] Add support for rounded style in Image block [https://github.com/wordpress-mobile/gutenberg-mobile/pull/2591]
* [***] Fixed a case where adding a paragraph block made toolbar jump [https://github.com/WordPress/gutenberg/pull/24573]
1.36.1
------
* [**] [iOS] Fixed Dark Mode transition for editor menus.
1.36.0
------
* [**] [Android] New block: Pullquote
* [**] Block settings now immediately reflect changes from menu sliders.
1.35.0
------
* [***] Fixed empty text fields on RTL layout. Now they are selectable and placeholders are visible.
* [**] Add settings to allow changing column widths
* [**] Media editing support in Gallery block.
* [*] Improved logic for creating undo levels.
1.34.1
------
* Including 1.33.2 hotfix to 1.34.0 release
1.34.0
------
* Media editing support in Cover block.
* Fixed a bug on the Heading block, where a heading with a link and string formatting showed a white shadow in dark mode.
1.33.2
------
* Fix for editing the Classic Block in the Unsupported block editor
1.33.1
------
* Fixed a bug in the @-mentions feature where dismissing the @-mentions UI removed the @ character from the post.
1.33.0
------
* [***] Media editing support in Media & Text block.
* [***] New block: Social Icons
* [*] Cover block placeholder is updated to allow users start the block with a background color
* [*] Accessibility, update the title VoiceOver label to be more clear when you are editing the post or page title.
1.32.0
------
* [***] Adds Copy, Cut, Paste, and Duplicate functionality to blocks
* [***] Add support for mentions.
* [***] Users can now individually edit unsupported blocks found in posts or pages.
* [*] [iOS] Improved editor loading experience with Ghost Effect.
1.31.1
------
* Fix for pullquote stylying in dark mode.
* Fix for button style.
* Fix missing translations.
1.31.0
------
* [**] Add support for customizing gradient type and angle in Buttons and Cover blocks.
* [*] Show content information (block, word and characters counts).
* [*] [Android] Fix handling of upload completion while re-opening the editor
1.30.0
------
* [**] Adds editor support for theme defined colors and theme defined gradients on cover and button blocks.
* [*] Support for breaking out of captions/citation authors by pressing enter on the following blocks: image, video, gallery, quote, and pullquote.
1.29.1
------
* Revert Creating undo levels less frequently
1.29.0
------
* [**] Add support for changing overlay color settings in Cover block
* Add enter/exit animation in FloatingToolbar
* [***] New block: Verse
* [*] Fix merging of text blocks when text had active formatting (bold, italic, strike, link)
* [***] Trash icon that is used to remove blocks is moved to the new menu reachable via ellipsis button in the block toolbar
* [**] Block toolbar can now collapse when the block width is smaller than the toolbar content
* [**] Creating undo levels less frequently
* [**] Tooltip for page template selection buttons
* [*] Fix button alignment in page templates and make strings consistent
* [*] Add support for displaying radial gradients in Buttons and Cover blocks
1.28.2
------
* [***] Disable Pullquote Block on Android
1.28.1
------
* [**] Avoid crash when editor selection state becomes invalid
1.28.0
------
* [***] New block: Pullquote
* [**] Add support for changing background and text color in Buttons block
* [*] Fix the icons and buttons in Gallery, Paragraph, List and MediaText block on RTL mode
* [**] Remove Subscription Button from the Blog template since it didn't have an initial functionality and it is hard to configure for users.
* [**] [iOS] Add support for the subscript `<sub>` and superscript `<sup>`HTML elements in text blocks
* [**] Update page templates to use recently added blocks
1.27.1
------
* Remove Subscription Button from the Blog template since it didn't have an initial functionality and it is hard to configure for users.
1.27.0
------
* Block Editor: Add dialog for mentioning other users in your post
* Prefill caption for image blocks when available on the Media library
* New block: Buttons. From now you’ll be able to add the individual Button block only inside the Buttons block
* Fix bug where whitespaces at start of text blocks were being removed
* Add support for upload options in Cover block
* [Android] Floating toolbar, previously located above nested blocks, is now placed at the top of the screen
* [iOS] Floating toolbar, previously located above nested blocks, is now placed at the bottom of the screen
* Fix the icons in FloatingToolbar on RTL mode
* [Android] Add alignment options for heading block
* Fix Quote block so it visually reflects selected alignment
* Fix bug where buttons in page templates were not rendering correctly on web
1.26.0
------
* [iOS] Disable ripple effect in all BottomSheet's controls.
* [Android] Disable ripple effect for Slider control
* New block: Columns
* New starter page template: Blog
* Make Starter Page Template picker buttons visible only when the screen height is enough
* Fix a bug which caused to show URL settings modal randomly when changing the device orientation multiple times during the time Starter Page Template Preview is open
1.25.0
------
* New block: Cover
* [Android] Dark Mode
* [Android] Improve icon on the "Take a Video" media option