-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
RELEASE-NOTES.txt
1670 lines (1498 loc) · 130 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
25.6
-----
* [*] [internal] Update Gravatar SDK to 3.0.0 [#23701]
25.5
-----
25.4
-----
25.3
-----
25.2
-----
* [*] [Jetpack-only] Stats: Made optimizations to enhance scrolling performance. [#22847]
* [*] Simplify post list context menu sections [#23356]
* [*] Fix an issue with incorrect snackbar shown when saving drafts manually [#23358]
* [**] Support editing media metadata for sites not powered by Jetpack and reliant on XML-RPC [#23316]
* [*] Fix rare crash in the unsupported block editor [#23379]
* [**] Block editor: Fixed an issue preventing some users from editing or creating content [https://github.com/wordpress-mobile/gutenberg-mobile/pull/6967]
* [*] Block editor: Added partial prefix support for creating Headings, List, and Quote blocks [https://github.com/WordPress/gutenberg/pull/62576]
25.1
-----
* [*] [internal] Block editor: Add onContentUpdate bridge functionality [#23234]
* [*] Fix a rare crash when trashing posts [#23321]
* [*] Fix an issue with a missing navigation bar background in Post Settings [#23334]
* [*] Fix an issue where the app will sometimes save empty drafts [#23342]
* [*] Add `.networkConnectionLost` to the list of "offline" scenarios so that the "offline changes" badge and fast retries work for this use case [#23348]
* [*] If draft sync fails, the app will now show the "Retry" button in the context menu along with the error message [#23355]
* [*] Fix an issue with post content structure not loading in some scenarios [#23347]
* [*] Fix a rare crash when updating posts with categories [#23354]
* [*] Fix an issue where a Page editor will not close automatically after trying to update a permanently deleted post [#23363]
* [*] Fix an issue where you could remove the scheduled date on a scheduled post [#23360]
* [*] The Post List screen now fetches updates faster and shows a spinner when refreshing stale data [#23362]
25.0
-----
* [*] Fix button overlap in the "Post Published" sheet on small devices [#23210]
* [*] [internal] Incorporate a parser to handle Gutenberg blocks more efficiently for improved performance [#22886]
* [**] Improve performance of Image and Gallery block processors to avoid long delay when saving a post [#22896]
* [*] Improve performance of File block processor [#22897]
* [*] [internal] Prompt users to keep the app up to date on their devices, so they can try new features, as well as benefit from performance improvements and bug fixes [#23195, #23216, #23218, #23211]
* [**] [Jetpack-only] Reader: Add a new feed dedicated to tags [#23242]
24.9.1
-----
* [**] Fix bug where the option to switch to the Jetpack app is broken [#23276]
24.9
-----
* [*] Add "Parent Page" to "Page Settings" [#23136]
* [*] Add "Slug" and "Excerpt" fields to "Page Settings" [#23135]
* [*] Make it easier to "Share" and "Blaze" a published post with an updated success view [##23128]
* [*] Add support for viewing trashed posts and pages and restoring them from the editor [#23142]
* [***] [Jetpack-only] Reorganized Stats to include updated Traffic and Insights tabs, along with a newly added Subscribers tab to improve subscriber metrics analysis [#23159]
* [*] Impove the "Post Settings" screen groups/ordering to better align with Gutenberg [#23164]
* [*] Update the "More" menu in the Editor to use modern iOS design and update copy to match Gutenberg [#23145]
* [*] Update the "Revisions" list design and fix an issue with the footer displaying incorrect "Date Created" for drafts [#23145]
* [***] Fix multiple post sync issues: [#21895], [#22037], [#8111], [#10168], [#17343], [#14221], [#12800], [#12073], [#14572], [#9319], [#21941], [#3070], [#3978], [#9449], [#13023], [#21472]
* [**] Fix [#4870], [#14798], an issue where the app sometimes overwrites the changes made on the remote. The app will now show a new "Conflict Resolution" screen if there is a conflict. It will also no longer try to auto-upload changes to an existing published post or publish a draft, eliminating multiple possible failure points.
* [**] Fix [#12121], [#13724], [#14251], [#18517], [#17086], [#15767], [#16514], [#13654] and other untracked issues with the "Publish Date" field in Post Settings. The app now has a new date picker that makes it easier to pick and remove the selected date. It also makes it clear if the blog is in a different time zones from your local timezone. The "Publish Date" field was also removed from the Post Settings screen for draft posts – the date needs to be selected right before publishing.
* [**] Add a new "Media Uploads" screen to the "Publishing Sheet" where you can see the status of the pending uploads. It also shows error messages for each individual upload (if any) and allows you to cancel the failing uploads.
* [*] Fix [#21940], [#13432], [#11435], issues where "Discard Changes" would sometimes delete the entire draft or appear when no changes were made
* [*] Fix [#12099] by removing the "Status" field from Post Settings that was leading to multiple unexpected and confusing scenarios. The app now manages the transitions between state the same way as Gutenberg, so it should feel more familiar to the users.
* [*] Fix [#10663], an issue with unclear error messages. The messages for "synchronous" operations will not appear as alerts with detailed information about the error. The error for drafts will also appear more clearly.
* [*] Update the "Autosave Available" dialog to work the same way as in Gutenberg and to better represent what this feature is – it can no longer be confused with a "Data Conflict" dialog (fixes [#13093])
* [*] Fix [#22107], [#19540], [#13632] by removing the "Draft Uploaded" snackbar
* [*] Fix editor state restoration in the Jetpack app
* [*] Update the support for pending posts to have clearer flows for both admins and contributors
* [*] Fix [#19886], an issue with a missing error message when selecting a page author that's not eligible to be a page author
* [*] Fix [#22969] an issue where Post List content occasionally stops updating
* [*] Fix [#3862] by adding a "Password Protected" badge in [#23154]
* [*] Fix [#21093], a rare crash in "View Stats for Posts" – [#23155]
* [*] Fix [#22247], a rare crash in Post List
* [*] Update the app to use `wp.createPost` and `wp.editPost` instead of the respective deprecated `metaWeblog.*` methods (closes [#1385])
24.8
-----
* [*] [internal] Update Reachability. [#23030]
* [*] Move "Settings" context menu action in "Pages" from the submenu to a separate section to make it easily discoverable and make it available for unpublished posts [#23065]
* [*] [Jetpack-only] Add "Stats" context menu action to "Pages" [#23065]
24.7
-----
* [**] [Jetpack-only] Reader: Introducing Reading Preferences, an experimental feature that allows users to customize their Reader post content screen with the color, font, and size that they like the most. [#22999]
* [*] [Jetpack-only] Stats: Optimized the Insights tab to enhance loading and scrolling performance. [#22592]
24.6
-----
* [**] Block editor: Highlight text fixes [https://github.com/WordPress/gutenberg/pull/57650]
* [*] [Jetpack-only] Stats: Eliminated common error causes in the Insights tab. [#22890]
* [*] [Jetpack-only] Reader: Fix displaying stale site information [#22885]
24.5
-----
* [*] [internal] Block editor: Remove code associated to Story block [#22758]
* [**] [internal] Block editor: Upgrade React Native to version 0.73.3 [#22588]
* [*] Remove "Edit" button from "Post Published" screen [#22762]
* [*] Remove "Publish" button from "Preview" screen [#22763]
* [**] Block editor: Add error boundary components and exception logging [#22655]
24.4
-----
* [***] [Jetpack-only] Improved Notifications experience with richer UI elements and interactions
* [**] [Jetpack-only] Block editor: Introduce VideoPress v5 support, to fix issues using video block with dotcom and Jetpack sites [https://github.com/wordpress-mobile/gutenberg-mobile/pull/6634]
* [*] Block editor: Prevent crash when autoscrolling to blocks [https://github.com/WordPress/gutenberg/pull/59110]
* [*] Block editor: Remove opacity change when images are being uploaded [https://github.com/WordPress/gutenberg/pull/59264]
* [*] Block editor: Media & Text blocks correctly show an error message when the attached video upload fails [https://github.com/WordPress/gutenberg/pull/59288]
* [**] [internal] Refactored .org REST API calls. [#22612]
* [**] [internal] Update loading images in Reader posts list and Posts list. [#22707]
* [***] [Jetpack-only] Stats: Introducing Traffic tab, delivering improved graphs, and combining Days/Weeks/Months/Years tabs into one, behind a feature flag. [#22746]
24.3
-----
* [***] [internal] Refactored websocket connections to Pinghub. [#22611]
* [**] Multiple pre-publishing sheet fixes and improvements [#22606]
* [*] Gravatar: Adds informative new view about Gravatar to the profile editing page. [#22615]
* [*] [internal][WordPress-only] Updates Jetpack banners and badges copy for consistency [#20123]
24.2
-----
* [*] [Jetpack-only] Fixed a UI bug where the Dynamic Dashboard Card would slightly jump on first launch.
* [**] Prevent images from temporarily disappearing when uploading media [https://github.com/WordPress/gutenberg/pull/57869]
* [*] [Jetpack-only] Site Monitoring: Add Metrics, PHP Logs, and Web Server Logs under Site Monitoring [#22475, #22499, #22504, #22500]
* [***] [Jetpack-only] Reader: introduced new UI/UX for content navigation and filtering [#22536]
24.0.1
-----
* [**] Fix crash when RichText values are not defined [https://github.com/wordpress-mobile/gutenberg-mobile/pull/6563]
24.1
-----
* [*] Block Editor: Fix missing custom color indicator for custom gradients [https://github.com/WordPress/gutenberg/pull/57605]
* [**] Block Editor: Display a notice when a network connection is unavailable [https://github.com/WordPress/gutenberg/pull/56934]
* [**] Block Editor: Image block media uploads display a custom error message when there is no internet connection [https://github.com/wordpress-mobile/WordPress-iOS/pull/22282]
* [**] Image block media uploads display a custom error message when there is no internet connection [https://github.com/wordpress-mobile/WordPress-iOS/pull/22282]
* [**] Improve media previews on long-press: load higher-resolution thumbnails and increase the preview size, add support for GIFs and video playback, enable for documents and other files [#22274]
* [*] Add prefetching to Site Media details screen [#22292]
* [*] Allow trashing draft and scheduled posts with no confirmation [#22337]
* [*] Add "Share" action to the site context menu [#22298]
* [*] Update the post "Publish" context action for Contributors to "Submit for Review" instead of "Publish" [#22358]
* [**] Add a pre-publishing sheet to the "Publish" flow invoked from the post context menu as a replacement for a simple confirmation sheet [#22358]
* [**] Block Editor: Media uploads that failed due to lack of internet connectivity automatically retry once a connection is re-established [https://github.com/wordpress-mobile/WordPress-iOS/pull/22238]
* [**] Block Editor: Manually retrying a single failed media upload will retry all failed media uploads in a post [https://github.com/wordpress-mobile/WordPress-iOS/pull/22240]
* [*] [internal] Drop iOS 14 Support: Remove deprecated UIDocumentPickerViewController API [#22286]
* [**] [internal] Site creation is re-enabled for WordPress users with no sites. [#22415]
* [***] [internal] Refactor WP.com sign in API requests [#22421]
* [*] Add In-App Feedback Prompt. [#22050]
* [**] Disabled the ability of creating new Story posts. [#22453]
* [**] Disabled Story block [#22449]
24.0
-----
* [**] [internal] A minor refactor in authentication flow, including but not limited to social sign-in and two factor authentication. [#22086]
* [***] [Jetpack-only] Plans: Upgrade to a WPCOM plan from domains dashboard in Jetpack app. [#22261]
* [**] [internal] Refactor domain selection flows to use the same domain selection UI. [22254]
* [**] Re-enable the support for using Security Keys as a second factor during login [#22258]
* [*] Fix crash in editor that sometimes happens after modifying tags or categories [#22265]
* [**] Updated login screen's colors to highlight WordPress - Jetpack brand relationship
* [*] Add defensive code to make sure the retain cycles in the editor don't lead to crashes [#22252]
* [*] [Jetpack-only] Updated Site Domains screen to make domains management more convenient [#22294, #22311]
* [**] [internal] [Jetpack-only] Adds support for dynamic dashboard cards driven by the backend [#22326]
* [**] [internal] Add support for the Phase One Fast Media Uploads banner [#22330]
* [*] [internal] Remove personalizeHomeTab feature flag [#22280]
* [*] Fix a rare crash in post search related to tags [#22275]
* [*] Fix a rare crash when deleting posts [#22277]
* [*] Fix a rare crash in Site Media prefetching cancellation [#22278]
* [*] Fix an issue with BlogDashboardPersonalizationService being used on the background thread [#22335]
* [***] Block Editor: Avoid keyboard dismiss when interacting with text blocks [https://github.com/WordPress/gutenberg/pull/57070]
* [**] Block Editor: Auto-scroll upon block insertion [https://github.com/WordPress/gutenberg/pull/57273]
* [**] Fix an issue in Pages List where the pages are not displayed in a hierarchical order [#22345]
23.9
-----
* [**] Updates the My Site header to show site actions in a context menu [#22151]
* [**] Add media fitlers to the Site Media screen [#22096]
* [*] The "aspect ratio" mode on the Site Media screen is now also available on iPhone via the new title menu [#22096]
* [**] Update the classic editor to use the new Photos and Site Media pickers [#22060]
* [**] [internal] Remove WPMediaPicker dependency [#22103]
* [*] [internal] Rework Tenor (Free GIF) and Stock Photos (Free Photos) pickers [#22066, #22074]
* [*] [internal] Remove MediaThumbnailService and reduce the size of the large thumbnails, reducing disk usage [#22106]
* [*] [Jetpack-only] Fix an occasional crash when changing Reader comment status [#22155]
* [*] [Jetpack-only] Fix an occasional crash when logging out after interacting with Reader [#22147]
* [*] Fix an issue where the Compliance Popover breaks other screens presentation. [#22085]
* [*] [Jetpack-only] Fix an occassional crash when logging out after interacting with Reader [#22147]
* [*] [Jetpack-only] Fix an issue where VoiceOver could lose focus when liking posts in Reader. [#22232]
23.8
-----
* [**] Add Optimize Images setting for image uploads and enable it by default [#21981]
* [*] Fix the media item details screen layout on iPad [#22042]
* [*] Improve the performance of loading thumbnails and original images in the Site Media screen [#22043]
* [*] Integrate native photos picker (`PHPickerViewController`) in Story Editor [#22059]
* [*] Fix an issue [#21959] where WordPress → Jetpack migration was not working for accounts with no sites. These users are now presented with a shortened migration flow. The "Uninstall WordPress" prompt will now also appear only as a card on the Dashboard. [#22064]
* [*] Add Select and Deselect button to previews in Site Media picker [#22078]
* [*] [internal] Fix an issue with scheduling of posts not working on iOS 17 with Xcode 15 [#22012]
* [*] [internal] Remove SDWebImage dependency from the app and improve cache cost calculation for GIFs [#21285]
* [*] Stats: Fix an issue where sites for clicked URLs do not open [#22061]
* [*] Improve pages list performance when there are hundreds of pages in the site [#22070]
* [*] Fix an issue with local thumbnails for GIFs inserted to Site Media not being animated [#22083]
* [*] [internal] Make Reader web views inspectable on iOS 16.4 and higher [#22077]
* [*] [internal] Add workarounds for large emoji on P2. [#22080]
* [*] [Jetpack-only] Block Editor: Ensure text is always visible within Contact Info block [https://github.com/Automattic/jetpack/pull/33873]
* [*] Block Editor: Ensure uploaded audio is always visible within Audio block [https://github.com/WordPress/gutenberg/pull/55627]
* [*] Block Editor: In the deeply nested block warning, only display the ungroup option for blocks that support it [https://github.com/WordPress/gutenberg/pull/56445]
* [**] Refactor deleting media [#21748]
* [*] [Jetpack-only] Add a dashboard card for Bloganuary. [https://github.com/wordpress-mobile/WordPress-iOS/pull/22136]
* [*] Fix an issue where the Compliance Popover breaks other screens presentation. [#22085]
23.7
-----
* [**] Posts & Pages: Redesigned the posts and pages screen. We’ve consolidated the “default” and “compact” display options (#21804, #21842)
* [*] Posts & Pages: Moved actions to a context menu and added new actions such as “Comments”, “Settings”, and “Set as regular page”. Made the context menu available via long-press (#21886, #21965, #21963, #21967)
* [*] Posts & Pages: Added swipe actions - left to view, right to share and/or delete (#21917)
* [***] Posts & Pages: Added paging, full-text search, and searching via “author” / “tag” filters (#21789)
* [*] Posts & Pages: Search now works across all authors unless you explicitly add the author filter (#21966)
* [*] Posts & Pages: Fix an issue with the Pages list not refreshing when the pages are added or modified
* [*] Posts & Pages: Fix an issue where “View” action was available for Trashed posts (#21958)
* [*] Posts & Pages: Fix rare crashes in Posts & Pages (#21298)
* [***] Site Media: Update the design of the Site Media screen with an improved selection mode, updated context menus, a way to share more than one item at a time, better support for animated GIFs, fix a couple of visual issues with state views and search, and more [#21457]
* [**] Site Media: Improve performance by moving the work to the background, reducing memory usage, prefetching images, decompressing jpegs in the background, canceling unneeded requests, and more [#21470], [#21615], [#21664]
* [**] Site Media: Add support for selecting site media with a pan gesture [#21702]
* [*] Site Media: Add storage quota shown proactively in the context menu when adding media [#22013]
* [*] Site Media: Add aspect ratio mode to Site Media on iPad, which is a new default [#22009]
* [**] Site Media: Update the design of the Site Media details view that now allows swiping between photos, makes it easier to modify metadata, and delete items [#22008]
* [*] Site Media: Fix an issue with blank image placeholders on the Site Media screen [#21457]
* [*] Site Media: Fix an issue with 'you have no media' appears just before the media does [#9922] [#21457]
* [*] Site Media: Fix an issue with media occasionally flashing white on the Site Media screen
* [*] Site Media: Fix rare crashes in the Site Media screen and media picker [#21572]
* [*] Site Media: Fix an issue with sharing PDF and other documents [#22021]
* [*] Bug fix: Reader now scrolls to the top when tapping the status bar. [#21914]
* [*] Fix an issue with incorrect description for "Hidden" post privacy status [#21955]
* [*] [internal] Refactor sending the API requests for searching posts and pages. [#21976]
* [*] Fix an issue in Menu screen where it fails to create default menu items. [#21949]
* [*] [internal] Refactor how site's pages are loaded in Site Settings -> Homepage Settings. [#21974]
* [*] Block Editor: Fix error when pasting deeply nested structure content [https://github.com/WordPress/gutenberg/pull/55613]
* [*] Block Editor: Fix crash related to accessing undefined value in `TextColorEdit` [https://github.com/WordPress/gutenberg/pull/55664]
* [***] [Jetpack-only] Added the All Domains screen enabling the users to manage their domains from within the app [#22033]
23.6
-----
* [***] Added support for logging in with security keys [#22001]
* [***] [Jetpack-only] Added paid domain selection, plan selection, and checkout screens in site creation flow [#21688]
* [**] When moving a post to trash, show a toast message with undo action instead of an inline undo row. [#21724]
* [*] Site Domains: Fixed an issue where the message shared while adding a domain was inaccurate. [#21827]
* [*] Fix an issue where login with site address is blocked after failing the first attempt. [#21848]
* [*] Fix an issue with an issue [#16999] with HTML not being stripped from post titles [#21846]
* [*] Fix an issue that leads to an ambiguous error message when an incorrect SMS 2FA code is submitted. [#21863]
* [*] Fix an issue where two 2FA controllers were being opened at the same time when logging in. [#21865]
* [*] Block Editor Social Icons: Fix visibility of inactive icons when used with block based themes in dark mode [https://github.com/WordPress/gutenberg/pull/55398]
* [*] Block Editor Classic block: Add option to convert to blocks [https://github.com/WordPress/gutenberg/pull/55461]
* [*] Block Editor Synced Patterns: Fix visibility of heading section when used with block based themes in dark mode [https://github.com/WordPress/gutenberg/pull/55399]
23.5
-----
* [*] Fix a crash when the blog's blogging prompt settings contain invalid JSON [#21677]
* [*] [WordPress-only] Fixes an issue where users would land on the Reader after signup while it should not be accessible. [#21751]
* [*] Block Editor: Split formatted text on triple Enter [https://github.com/WordPress/gutenberg/pull/53354]
* [*] Block Editor: Quote block: Ensure border is visible with block-based themes in dark [https://github.com/WordPress/gutenberg/pull/54964]
* [*] (Internal) Remove .nativePhotoPicker feature flag and the disabled code [#21681](https://github.com/wordpress-mobile/WordPress-iOS/pull/21681)
* [*] [WordPress-only] fixes an issue where users attempting to create a .com site in the post-sign-up flow are presented with two consecutive overlays. [#21752]
* [**] [Jetpack-only] Reader: Improvement of core UI elements, including feed cards, tag and site headers, buttons and recommendation sections. [#21772]
23.4
-----
* [*] Resolve the unresponsiveness of the compliance popover on iPhone SE devices when large fonts are enabled. [#21609]
* [*] Fix an issue with a New Page action visible for Contributors [https://github.com/wordpress-mobile/WordPress-iOS/pull/21659]
* [*] Block Editor: Prevent crash from invalid media URLs [https://github.com/WordPress/gutenberg/pull/54834]
* [*] Fix an issue with contributors seeing pre-publishing popup and a wrong confirmation message after submitting a post for review [https://github.com/wordpress-mobile/WordPress-iOS/pull/21658]
* [*] Block Editor: Limit inner blocks nesting depth to avoid call stack size exceeded crash [https://github.com/WordPress/gutenberg/pull/54382]
* [*] Fix an issue with non-admins being able to see the plugin menu on the Atomic sites [https://github.com/wordpress-mobile/WordPress-iOS/pull/21657]
* [**] Block Editor: Fallback to Twitter provider when embedding X URLs [https://github.com/WordPress/gutenberg/pull/54876]
23.3.1
-----
* [*] Resolve the unresponsiveness of the compliance popover on iPhone SE devices when large fonts are enabled. [#21609]
23.3
-----
* [***] [Jetpack-only] Lock Screen Widgets are now available on Jetpack. Quickly view your site stats without unlocking your phone. [#21535]
* [*] Block editor: 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]
* [**] Block editor: Updated placeholder text colors for block-based themes [https://github.com/wordpress-mobile/gutenberg-mobile/pull/6182]
* [**] Update the main site navigation on the My Site screen, making it easier to access the common site sections. The new shortcuts can be modified using the Personalize Home Tab screen. [21502](https://github.com/wordpress-mobile/WordPress-iOS/pull/21502)
* [**] [internal] Refactor fetching one single media item. [#21567]
* [**] [internal] Refactored how the total number of WordPress Media is fetched. [#21568]
* [**] [internal] Refactor fetching metadata of VideoPress videos. [#21569]
23.2
-----
* [**] Integrate the native media picker (`PHPickerViewController`), which is familiar to all Apple Photos users. It has a powerful search; you can filter by favorites, zoom in, filter by different media types, and more. And it doesn't require any access permissions or dialogs to work and handles large Photos libaries with ease. [#21190](https://github.com/wordpress-mobile/WordPress-iOS/issues/21190).
* [*] Remove the "New Photo Post" app quick action [#21369](https://github.com/wordpress-mobile/WordPress-iOS/pull/21369)
* [*] (Internal) Fix unbounded growth of number media observers in Post Editor (performance issue) [#21352](https://github.com/wordpress-mobile/WordPress-iOS/pull/21352)
* [**] [internal] Fix a crash when disconnecting the app from the "Connected Applications" on WordPress.com. [#21375]
* [*] Fix an issue where the "Take Photo" flow was not working without the "All Photos" access [#21398](https://github.com/wordpress-mobile/WordPress-iOS/pull/21398)
* [*] Fix a couple of small issues with media uploads error handling [#21411](https://github.com/wordpress-mobile/WordPress-iOS/pull/21411)
* [*] [internal] Change how a post is fetched when selecting a post in Spotlight search result. [#21439]
* [*] [internal] Change how a post's revision is fetched from the post history screen. [#21440]
* [**] [internal] Replace the progress indicator implementation in uploading featured image from "Post Settings" [#21438]
* [**] [Jetpack-only] Block Editor: Add basic support to view, relocate, and remove the Jetpack Paywall block. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/6076]
* [*] Block Editor: Columns block - Fix transforming into a Group block crash [https://github.com/wordpress-mobile/gutenberg-mobile/pull/6129]
* [**] Block Editor: Add block outline to all Social Link blocks when selected [https://github.com/WordPress/gutenberg/pull/54011]
* [***] [Jetpack-only] Contact Support: Add a new chat-based support channel where users can get answers from a bot trained to help app users. Users can still create a support ticket to talk to a Happiness Engineer if they don't find the answer they're looking for [#21467]
* [*] Fix a crash on the pages list when the authentication token is invalid. [#21471]
* [**] Me tab: move Me to the bottom tab bar [https://github.com/wordpress-mobile/WordPress-iOS/pull/21348]
* [*] Fix Stats menu option not visible for self-hosted sites without a Jetpack connection. [#21548]
23.0.1
-----
* [**] Fix Voice Over and assistive keyboards [https://github.com/WordPress/gutenberg/pull/53895]
23.1
-----
* [*] Block editor: Hide undo/redo buttons when using the HTML editor [#21253]
* [*] Block editor: Display custom color value in mobile Cover Block color picker [https://github.com/WordPress/gutenberg/pull/51414]
* [**] Block editor: Display outline around selected Social Link block [https://github.com/WordPress/gutenberg/pull/53377]
* [**] Block editor: Fix font customization not getting updated. [https://github.com/WordPress/gutenberg/pull/53391]
* [*] [internal] Fix Core Data multithreaded access exception in Blogging Reminders [#21232]
* [*] [internal] Remove one of the image loading subsystems for avatars and consolidate the cache [#21259]
* [*] Fixed a crash that could occur when following sites in Reader. [#21341]
* [**] [Jetpack-only] Add a "Domain Focus" Card to the Dashboard that opens a screen that allows tranfer of Google Domains. This card can also be hidden across all sites of the account by accesing the More button. [#21368]
* [**] Fix Voice Over and assistive keyboards [https://github.com/WordPress/gutenberg/pull/53895]
* [*] Fix an issue with widget data sometimes showing zeros [https://github.com/wordpress-mobile/WordPress-iOS/pull/21430]
23.0
-----
* [***] [Jetpack-only] Jetpack Social: UI improvements to access and control your social sharing from more locations throughout the app [#21258]
* [**] [Jetpack-only] Blaze Manage Campaigns: Added a dashboard card that displays the most recent campaign, a campaigns list screen, and a campaign details screen. [#20821, #20977, #20950]
* [**] [Jetpack-only] Made significant performance improvements for Total Likes stats card. [#21168]
* [**] [internal] Upgrade React Native to 0.71.11 [#20956]
* [*] Fix incorrect WordPress Media images count in Media Picker. [#21181]
* [*] [Jetpack-only] Fix app hangs on the Stats screen [#21067]
* [*] Fix an issue with the size of the thumbnails in the media picker so it now loads faster and uses less memory [#21204]
* [*] Fix an issue with unstable order of assets on the media screen [#21210]
* [*] Fix an issue with media screen flashing when opened [#21211]
* [*] Block editor: Remove visual gap in mobile toolbar when a Gallery block is selected [https://github.com/WordPress/gutenberg/pull/52966]
* [*] Block editor: Remove Gallery caption button on mobile [https://github.com/WordPress/gutenberg/pull/53010]
* [*] Block editor: Fix Gallery block selection when adding media [https://github.com/WordPress/gutenberg/pull/53127]
* [*] [internal] Fix an issue with some media pickers not deallocating after selection in post editor [#21225]
* [*] Fix occasional crashes when updating Notification, Posts, and Reader content [#21250]
* [*] Fix an issue in Reader topics cleanup that could cause the app to crash. [#21243]
* [*] [internal] Fix incorrectly terminated background task [#21254]
* [**] [internal] Refactor how image is downloaded in Gutenberg Editor and Aztec Editor. [#21227]
* [**] Fixed an occassional crash when reloading Media picker. [#21337]
22.9
-----
* [*] [internal] Fix multiple memory leaks after logging in and logging out. [#21047, #21092]
* [**] Block editor: Move undo/redo buttons to the navigation bar. [#20930]
* [*] Fixed an issue that caused the UI to be briefly unresponsive in certain case when opening the app. [#21065]
* [**] Blogging Prompts: Fixed a crash in Reader after tapping on a blogging prompt multiple times. [#21112]
* [*] [internal] Update calls to use UserDefaults singleton. [#21088]
* [*] Fix memory leaks in setting up Jetpack connection. [#21052]
* [*] Fix a memory leak caused by the theme customization web view. [#21051]
* [**] [internal] Updated the code that enables Gutenberg editor in all blogs when the user is in the Gutenberg rollout group. [#21146]
* [**] [internal] Fix a few potential Core Data issues in Blogging Prompts & Reminders. [#21016]
* [*] [Jetpack-only] Made performance improvements for Posting Activity stats. [#21136]
* [*] Fixed a crash that could occur when following sites in Reader. [#21140]
* [*] Fix an issue with avatars not loading in mentions [#21169]
* [*] [Jetpack-only] Fixed a crash that could occur when the user deletes the WordPress app upon a successful migration. [#21167]
* [*] Fixed a crash that occurs in Weekly Roundup Background task due to a Core Data Concurrency violation. [#21076]
* [***] Block editor: Editor UX improvements with new icons, colors and additional design enhancements. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/5985]
* [**] Fixed an occassional crash when opening Media picker. [#21231]
22.8
-----
* [*] Blogging Reminders: Disabled prompt for self-hosted sites not connected to Jetpack. [#20970]
* [**] [internal] Do not save synced blogs if the app has signed out. [#20959]
* [**] [internal] Make sure synced posts are saved before calling completion block. [#20960]
* [**] [internal] Fix observing Quick Start notifications. [#20997]
* [**] [internal] Fixed an issue that was causing a memory leak in the domain selection flow. [#20813]
* [*] [Jetpack-only] Block editor: Rename "Reusable blocks" to "Synced patterns", aligning with the web editor. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/5885]
* [**] [internal] Block editor: Fix a crash related to Reanimated when closing the editor [https://github.com/wordpress-mobile/gutenberg-mobile/pull/5938]
22.7
-----
* [**] [internal] Blaze: Switch to using new canBlaze property to determine Blaze eligiblity. [#20916]
* [**] Fixed crash issue when accessing drafts that are mid-upload from the Home 'Work on a Draft Post' card. [#20872]
* [**] [internal] Make sure media-related features function correctly. [#20889], [20887]
* [*] [internal] Posts list: Disable action bar/menu button when a post is being uploaded [#20885]
* [*] Block editor: 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]
* [*] Block editor: Fix cursor positioning when dictating text on iOS [https://github.com/WordPress/gutenberg/issues/51227]
22.6
-----
* [**] [internal] Check required WordPress version to set "galleryWithImageBlocks" flag [#20736]
* [**] [Jetpack-only] Add a "Personalize Home Tab" button to the bottom of the My Site Dashboard that opens a new screen where you can customize which dashboard cards are visible. You can now also hide any of the dashboard cards directly from My Site Dashboard using the "more" menu. [#20296]
* [*] [Jetpack-only] Domains selection: Show error message when selecting unsupported domains. [#20786]
* [***] [Jetpack-only] Plans: Bringing WPCOM plans to Jetpack app. [#20822]
* [**] Block editor: [iOS] Fix dictation regression, in which typing/dictating at the same time caused content loss. [https://github.com/WordPress/gutenberg/pull/49452]
* [*] Block editor: Display lock icon in disabled state of `Cell` component [https://github.com/wordpress-mobile/gutenberg-mobile/pull/5798]
* [*] Block editor: Show "No title"/"No description" placeholder for not belonged videos in VideoPress block [https://github.com/wordpress-mobile/gutenberg-mobile/pull/5840]
22.5.1
-----
* [*] Resolve an issue that was causing the app crash when `CrashLogging.logError` is called from a background thread. [#20846]
* [**] [internal] Make sure a database tidy-up task (null blog property sanitizer) is completed before any other Core Data queries. [#20867]
22.5
-----
* [*] [Jetpack-only] Reader: Fix the display of the followed topics in the filter sheet when they're written in non-latin languages. [#20702]
* [*] [Jetpack-only] Reader: Fixed an issue that was causing the Report and Block actions to be missing from Post Menu actions sheet. [#20705]
* [***] Enables editing of the site homepage for sites using block-based themes directly from the pages list. [#20713]
* [*] Block editor: Add disabled style to `Cell` component [https://github.com/WordPress/gutenberg/pull/50665]
* [**] Block editor: Fix undo/redo history when inserting a link configured to open in a new tab [https://github.com/WordPress/gutenberg/pull/50460]
* [**] [Jetpack-only] Block editor: Disable details settings for not belonged VideoPress videos [https://github.com/wordpress-mobile/gutenberg-mobile/pull/5782]
* [*] Block editor: [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]
* [**] Block editor: 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]
22.4
-----
* [*] [internal] [Jetpack-only] Domains Dashboard Card: Immediately opening domains search after tapping the card. [#20638]
* [**] [Jetpack-only] Adds a dashboard card for viewing activity log. [#20569]
* [**] [Jetpack-only] Adds a dashboard card for viewing pages. [#20524]
* [*] [Jetpack-only] Block editor: Fix crash when trying to convert to regular blocks an undefined/deleted reusable block [https://github.com/WordPress/gutenberg/pull/50475]
* [**] Block editor: Tapping on a nested block now gets focus directly instead of having to tap multiple times depending on the nesting levels. [https://github.com/WordPress/gutenberg/pull/50108]
* [*] [Jetpack-only] Block editor: Use host app namespace in reusable block message [https://github.com/WordPress/gutenberg/pull/50478]
* [*] [internal] [Jetpack-only] Enables domain purchases in site creation A/B experiment. [#20670]
* [*] Classic Block: Fixes a crash that happens when attempting to add media to a classic block while the library permissions are missing. [#20666]
22.3
-----
* [*] [internal] Allow updating specific fields when updating media details. [#20606]
* [**] Block Editor: Enable VideoPress block (only on Simple WPCOM sites) [#20580]
* [**] [internal] Attempt to fix an image loading crash in post editor. [#20633]
22.2
-----
* [**] [Jetpack-only] Added a dashboard card for purchasing domains. [#20424]
* [*] [internal] [Jetpack-only] Redesigned the migration success card. [#20515]
* [**] [internal] Refactored Google SignIn implementation to not use the Google SDK [#20128]
* [***] Block Editor: Resolved scroll-jump issues and enhanced caret focus management [https://github.com/WordPress/gutenberg/pull/48791]
* [**] [Jetpack-only] Blogging Prompts: adds the ability to view other users' responses to a prompt. [#20540]
22.1
-----
* [**] [internal] Refactor updating account related Core Data operations, which ususally happens during log in and out of the app. [#20394]
* [***] [internal] Refactor uploading photos (from the device photo, the Free Photo library, and other sources) to the WordPress Media Library. Affected areas are where you can choose a photo and upload, including the "Media" screen, adding images to a post, updating site icon, etc. [#20322]
* [**] [WordPress-only] Warns user about sites with only individual plugins not supporting core app features and offers the option to switch to the Jetpack app. [#20408]
* [*] [Reader] Fix an issue that was causing the app to crash when tapping the More or Share buttons in Reader Detail screen. [#20490]
* [*] Block editor: Avoid empty Gallery block error [https://github.com/WordPress/gutenberg/pull/49557]
22.0
-----
* [*] Remove large title in Reader and Notifications tabs. [#20271]
* [*] Reader: Change the following button cog icon. [#20274]
* [*] [Jetpack-only] Change the dark background color of toolbars and top tabs across the whole app. [#20278]
* [*] Change the Reader's navigation bar background color to match other screens. [#20278]
* [*] Tweak My Site Dashboard Cards UI. [#20303]
* [*] [Jetpack-only] Change My Sites tab bar icon. [#20310]
* [*] [internal] Refactored the Core Data operations (saving the site data) after a new site is created. [#20270]
* [*] [internal] Refactored updating user role in the "People" screen on the "My Sites" tab. [#20244]
* [*] [internal] Refactor managing social connections and social buttons in the "Sharing" screen. [#20265]
* [*] [internal] Refactor uploading media assets. [#20294]
* [*] Block editor: Allow new block transforms for most blocks. [https://github.com/WordPress/gutenberg/pull/48792]
* [*] Visual improvements were made to the in-app survey along with updated text to differentiate between the WordPress and Jetpack apps. [#20276]
* [*] Reader: Resolve an issue that could cause the app to crash when blocking a post author. [#20421]
21.9
-----
* [*] [internal] Refactored fetching posts in the Reader tab, including post related operations (i.e. like/unlike, save for later, etc.) [#20197]
* [**] Reader: Add a button in the post menu to block an author and stop seeing their posts. [#20193]
* [**] [Jetpack-only] Jetpack individual plugin support: Warns user about sites with only individual plugins not supporting all features of the app yet and gives the ability to install the full Jetpack plugin. [#20223]
* [**] [Jetpack-only] Help: Display the Jetpack app FAQ card on Help screen when switching from the WordPress app to the Jetpack app is complete. [#20232]
* [***] [Jetpack-only] Blaze: We added support for Blaze in the app. The user can now promote a post or page from the app to reach new audiences. [#20253]
21.8.1
-----
* [**] [internal] Fixes a crash that happens in the background when the weekly roundup notification is being processed. [#20275]
21.8
-----
* [*] [WordPress-only] We have redesigned and simplified the landing screen. [#20061]
* [*] [internal] Refactored account related operations (i.e. log in and out of the app). [#19893]
* [*] [internal] Refactored comment related operations (i.e. like a comment, reply to a post or comment).
* [*] [internal] Refactored how reader topics are fetched from the database. [#20129]
* [*] [internal] Refactored blog related operations (i.e. loading blogs of the logged in account, updating blog settings). [#20047]
* [*] Reader: Add ability to block a followed site. [#20053]
* [*] Reader: Add ability to report a post's author. [#20064]
* [*] [internal] Refactored the topic related features in the Reader tab (i.e. following, unfollowing, and search). [#20150]
* [*] Fix inaccessible block settings within the unsupported block editor [https://github.com/WordPress/gutenberg/pull/48435]
21.7
-----
* [*] [Jetpack-only] Fixed an issue where stats were not displaying latest data when the system date rolls over to the next day while the app is in background. [#19989]
* [*] [Jetpack-only] Hide Scan Login Code when logged into an account with 2FA. [#19567]
* [**] [Jetpack-only] Blogging Prompts: add the ability to answer previous prompts, disable prompts, and other minor enhancements. [#20055]
21.6
-----
* [*] Fix a layout issue impacting the "No media matching your search" empty state message of the Media Picker screen. [#19820]
* [**] [internal] Refactor saving changes in the "Account Settings" page. [#19910]
* [*] The Migration flow doesn't complete automatically if the user interrupts the migration mid flow. [#19888]
* [**] [internal] Refactored fetching blog editor settings. [#19915]
* [*] [Jetpack-only] The Migration flow doesn't complete automatically if the user interrupts the migration mid flow. [#19888]
* [***] [Jetpack-only] Stats Insights Update. Helps you understand how your content is performing and what’s resonating with your audience. [#19909]
* [***] [internal] Delete all the activity logs after logging out. [#19930]
* [*] [Jetpack-only] Fixed an issue where Stats Followers details did not update on Pull-to-refresh in the Stats Followers Details screen [#19935]
* [**] Refactored loading WP.com plans. [#19949]
* [*] Resolve an edge case that was causing the user to be stuck in the "Onboading Questions" screen. [#19791]
* [*] [Jetpack-only] Tweak Migration Screens UI when fonts are enlarged. [#19944]
21.5.1
-----
* [*] [Jetpack-only] Fixed a bug where the Login flow was restarting every time the app enters the foreground. [#19961]
21.5
-----
* [***] [internal] A significant refactor to the app’s architecture was made to allow for the new simplified UI. Regression testing on the app’s main flows is needed. [#19817]
* [**] [internal] Disable Story posts when Jetpack features are removed [#19823]
* [*] [internal] Editor: Only register core blocks when `onlyCoreBlocks` capability is enabled [https://github.com/wordpress-mobile/gutenberg-mobile/pull/5293]
* [**] [internal] Disable StockPhoto and Tenor media sources when Jetpack features are removed [#19826]
* [*] [Jetpack-only] Fixed a bug where analytics calls weren't synced to the user account. [#19926]
21.4
-----
* [*] Fixed an issue where publishing Posts and Pages could fail under certain conditions. [#19717]
* [*] Share extension navigation bar is no longer transparent [#19700]
* [***] [Jetpack-only] Adds a smooth, opt-in transition to the Jetpack app for users migrating from the WordPress app. [#19759]
* [***] You can now migrate your site content to the Jetpack app without a hitch. [#19759]
* [**] [internal] Upgrade React Native from 0.66.2 to 0.69.4 [https://github.com/wordpress-mobile/gutenberg-mobile/pull/5193]
* [*] [internal] When a user migrates to the Jetpack app and allows notifications, WordPress app notifications are disabled. [#19616, #19611, #19590]
* [*] Reader now scrolls to the top if the tab bar button is tapped. [#19769]
* [*] [Internal] Update WordPressShared, WordPressKit, and WordPressAuthenticator to their latest versions. [#19643]
21.3
-----
* [*] Fixed a minor UI issue where the segmented control under My SIte was being clipped when "Home" is selected. [#19595]
* [*] Fixed an issue where the site wasn't removed and the app wasn't refreshed after disconnecting the site from WordPress.com. [#19634]
* [*] [internal] Fixed an issue where Jetpack extensions were conflicting with WordPress extensions. [#19665]
21.2
-----
* [*] [internal] Refactored fetching posts in the Reader tab. [#19539]
* [*] Fixed an issue where the message "No media matching your search" for the media picker is not visible [#19555]
21.1
-----
* [**] [Jetpack-only] We added a new landing screen with a cool animation that responds to device motion! [#19251, #19264, #19277, #19381, #19404, #19410, #19432, #19434, #19442, #19443, #19468, #19469]
* [*] [internal] Database access change: the 'new Core Data context structure' feature flag is turned on by default. [#19433]
* [***] [Jetpack-only] Widgets are now on Jetpack. Find Today, This Week, and All Time Widgets to display your Stats on your home screen. [#19479]
* [*] Block Editor: Fixed iOS Voice Control support within Image block captions. [https://github.com/WordPress/gutenberg/pull/44850]
* [***] Dropped support for iOS 13. Now supporting iOS 14.0 and above. [#19509]
21.0
-----
* [*] Fixed an issue where the cached notifications are retained after logging out of WordPress.com account [#19360]
* [**] [Jetpack-only] Added a share extension. Now users can share content to Jetpack through iOS's share sheet. This was previously only available on the WordPress app. [#19383]
* [*] Update launch screen. [#19341]
* [*] [Jetpack-only] Add ability to set custom app icon for Jetpack app. [#19378]
* [**] [Jetpack-only] Added a "Save as Draft" extension. Now users can save content to Jetpack through iOS's share sheet. This was previously only available on the WordPress app. [#19414]
* [**] [Jetpack-only] Enables Rich Notifications for the Jetpack app. Now we display more details on most of the push notifications. This was previously only available on the WordPress app. [#19415]
* [*] Reader: Comment Details have been redesigned. [#19387]
* [*] [internal] A refactor in weekly roundup notification scheduler. [#19422]
* [*] [internal] A low level database refactor around fetching cards in the Reader tab. [#19427]
* [*] Stories: Fixed an issue where the keyboard would overlap with the publish dialog in landscape. [#19350]
* [*] [internal] A refactor in fetch Reader posts and their comments. [#19458]
* [*] Fixed an issue where the navigation bar becomes invisible when swiping back to Login Prologue screen. [#19461]
20.9
-----
* [*] Login Flow: Provide ability for user to cancel login WP.com flow when already logged in to a self-hosted site [#19349]
* [*] [WordPress-only] Powered by Jetpack banner: Fixed an edge case where some scroll views could momentarily become unresponsive to touch. [#19369]
* [*] [Jetpack-only] Weekly roundup: Adds support for weekly roundup notifications to the Jetpack app. [#19364]
* [*] Fixed an issue where the push notifications prompt button would overlap on iPad. [#19304]
* [*] Story Post: Fixed an issue where deleting one image in a story draft would cause the following image not to load. [#16966]
* [*] Fixed an issue where the no result label on the side menu is oversize on iPad. [#19305]
* [*] [internal] Various low level database refactors around posts, pages, and comments. [#19353, #19363, #19386]
20.8
-----
* [*] User Mention: When replying to a post or a comment, sort user-mentions suggestions by prefix first then alphabetically. [#19218]
* [*] User Mention: Fixed an issue where the user-mentions suggestions were disappearing after expanding/collapsing the reply field. [#19248]
* [***] [internal] Update Sentry, our crash monitoring tool, to its latest major version [#19315]
20.7
-----
* [*] [Jetpack-only] Block Editor: Update link colors in action sheets from green to blue [https://github.com/WordPress/gutenberg/pull/42996]
* [*] Jetpack Social: Rebrand Publicize to Jetpack Social [https://github.com/wordpress-mobile/WordPress-iOS/pull/19262]
20.6
-----
* [*] [Jetpack-only] Recommend App: you can now share the Jetpack app with your friends. [#19174]
* [*] [Jetpack-only] Feature Announcements: new features are highlighted via the What's New modals. [#19176]
* [**] [Jetpack-only] Self-hosted sites: enables logging in via a self-hosted site / adding a self-hosted site [#19194]
* [*] Pages List: Fixed an issue where the app would freeze when opening the pages list if one of the featured images is a GIF. [#19184]
* [*] Stats: Fixed an issue where File Downloads section was being displayed for Jetpack sites even though it's not supported. [#19200]
20.5
-----
* [*] [Jetpack-only] Block Editor: Makes some small changes to the editor's accent colours for consistency. [#19113]
* [*] User Mention: Split the suggestions list into a prominent section and a regular section. [#19064]
* [*] Use larger thumbnail previews for recommended themes during site creation [https://github.com/wordpress-mobile/WordPress-iOS/pull/18972]
* [***] [internal] Block Editor: List block: Adds support for V2 behind a feature flag [https://github.com/WordPress/gutenberg/pull/42702]
* [**] Fix for Referrers Card Not Showing Search Engine Details [https://github.com/wordpress-mobile/WordPress-iOS/pull/19158]
* [*] WeeklyRoundupBackgroundTask - format notification body [https://github.com/wordpress-mobile/WordPress-iOS/pull/19144]
20.4
-----
* [*] Site Creation: Fixed a bug in the design picker where the horizontal position of designs could be reset. [#19020]
* [*] [internal] Block Editor: Add React Native FastImage [https://github.com/WordPress/gutenberg/pull/42009]
* [*] Block Editor: Inserter displays block collections [https://github.com/WordPress/gutenberg/pull/42405]
* [*] Block Editor: Fix incorrect spacing within Image alt text footnote [https://github.com/WordPress/gutenberg/pull/42504]
* [***] Block Editor: Gallery and Image block - Performance improvements [https://github.com/WordPress/gutenberg/pull/42178]
* [**] [WP.com and Jetpack sites with VideoPress] Prevent validation error when viewing VideoPress markup within app [https://github.com/Automattic/jetpack/pull/24548]
* [*] [internal] Add Jetpack branding elements (badges and banners) [#19007, #19040, #19049, #19059, #19062, #19065, #19071, #19073, #19103, #19074, #19085, #19094, #19102, #19104]
20.3
-----
* [*] Stories: Fixed a crash that could occur when adding multiple items to a Story post. [#18967]
* [*] User Mention: When replying to a post or a comment, the post author or comment author shows up at the top of the suggestions list. [#18979]
* [*] Block Editor: Fixed an issue where the media picker search query was being retained after dismissing the picker and opening it again. [#18980]
* [*] Block Editor: Add 'Insert from URL' option to Video block [https://github.com/WordPress/gutenberg/pull/41493]
* [*] Block Editor: Image block copies the alt text from the media library when selecting an item [https://github.com/WordPress/gutenberg/pull/41839]
* [*] Block Editor: Introduce "block recovery" option for invalid blocks [https://github.com/WordPress/gutenberg/pull/41988]
20.2
-----
* [*] Preview: Post preview now resizes to account for device orientation change. [#18921]
* [***] [Jetpack-only] Enables QR Code Login scanning from the Me menu. [#18904]
* [*] Reverted the app icon back to Cool Blue. Users can reselect last month's icon in Me > App Settings > App Icon if they'd like. [#18934]
20.1
-----
* [*] Notifications: Fixed an issue where the first notification opened in landscape mode was not scrollable. [#18823]
* [*] Site Creation: Enhances the design selection screen with recommended designs. [#18740]
* [***] [Jetpack-only] Introducing blogging prompts. Build a writing habit and support creativity with a periodic prompt for inspiration. [#18860]
* [**] Follow Conversation: A tooltip has been added to highlight the follow conversation feature. [#18848]
* [*] [internal] Block Editor: Bump react-native-gesture-handler to version 2.3.2. [#18742]
* [*] People Management: Fixed a crash that can occur when loading the People view. [#18907]
20.0
-----
* [*] Quick Start: The "Get to know the WordPress app" card has a fresh new look [#18688, #18747]
* [*] Block Editor: A11y: Improve text read by screen readers for BottomSheetSelectControl [https://github.com/WordPress/gutenberg/pull/41036]
* [*] Block Editor: Add 'Insert from URL' option to Image block [https://github.com/WordPress/gutenberg/pull/40334]
* [*] App Settings: refreshed the UI with updated colors for Media Cache Size controls, Clear Spot Index row button, and Clear Siri Shortcut Suggestions row button. From destructive (red color) to standard and brand colors. [#18636]
* [*] [internal] Quick Start: Fixed an issue where the Quick Start modal was not displayed after login if the user's default tab is Home. [#18721]
* [*] Quick Start: The Next Steps modal has a fresh new look [#18711]
* [*] [internal] Quick Start: Fixed a couple of layout issues with the Quick Start notices when rotating the device. [#18758]
19.9
-----
* [*] Site Settings: we fixed an issue that prevented the site title to be updated when it changed in Site Settings [#18543]
* [*] Media Picker: Fixed an issue where the empty state view was being displayed incorrectly. [#18471]
* [*] Quick Start: We are now showing a different set of Quick Start tasks for existing sites and new sites. The existing sites checklist includes new tours such as: "Check your notifications" and "Upload photos or videos". [#18395, #18412, #18443, #18471]
* [*] Site Creation: we fixed an issue where the navigation buttons were not scaling when large fonts were selected on the device [#18559]
* [**] Block Editor: Cover Block: Improve color contrast between background and text [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4808]
* [***] Block Editor: Add drag & drop blocks feature [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4832]
* [*] Block Editor: Gallery block: Fix broken "Link To" settings and add "Image Size" settings [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4841]
* [*] Block Editor: Unsupported Block Editor: Prevent WordPress.com tour banner from displaying. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4820]
* [*] Widgets: we fixed an issue where text appeared flipped in rtl languages [#18567]
* [*] Stats: we fixed a crash that occurred sometimes in Stats [#18613]
* [*] Posts list: we fixed an issue where the create button was not shown on iPad in split screen [#18609]
19.8
-----
* [**] Self hosted sites are not restricted by video length during media uploads [https://github.com/wordpress-mobile/WordPress-iOS/pull/18414]
* [*] [internal] My Site Dashboard: Made some changes to the code architecture of the dashboard. The majority of the changes are related to the posts cards. It should have no visible changes but could cause regressions. Please test it by creating/trashing drafts and scheduled posts and testing that they appear correctly on the dashboard. [#18405]
* [*] Quick Start: Updated the Stats tour. The tour can now be accessed from either the dashboard or the menu tab. [#18413]
* [*] Quick Start: Updated the Reader tour. The tour now highlights the Discover tab and guides users to follow topics via the Settings screen. [#18450]
* [*] [internal] Quick Start: Deleted the Edit your homepage tour. [#18469]
* [*] [internal] Quick Start: Refactored some code related to the tasks displayed in the Quick Start Card and the Quick Start modal. It should have no visible changes but could cause regressions. [#18395]
* [**] Follow Conversation flow now enables in-app notifications by default. They were updated to be opt-out rather than opt-in. [#18449]
* [*] Block Editor: Latest Posts block: Add featured image settings [https://github.com/WordPress/gutenberg/pull/39257]
* [*] Block Editor: Prevent incorrect notices displaying when switching between HTML-Visual mode quickly [https://github.com/WordPress/gutenberg/pull/40415]
* [*] Block Editor: Embed block: Fix inline preview cut-off when editing URL [https://github.com/WordPress/gutenberg/pull/35326]
* [*] Block Editor: Prevent gaps shown around floating toolbar when using external keyboard [https://github.com/WordPress/gutenberg/pull/40266]
* [**] We'll now ask users logging in which area of the app they'd like to focus on to build towards a more personalized experience. [#18385]
19.7
-----
* [*] a11y: VoiceOver has been improved on the Menus view and now announces changes to ordering. [#18155]
* [*] Notifications list: remove comment Trash swipe action. [#18349]
* [*] Web previews now abide by safe areas when a toolbar is shown [#18127]
* [*] Site creation: Adds a new screen asking the user the intent of the site [#18367]
* [**] Block Editor: Quote block: Adds support for V2 behind a feature flag [https://github.com/WordPress/gutenberg/pull/40133]
* [**] Block Editor: Update "add block" button's style in default editor view [https://github.com/WordPress/gutenberg/pull/39726]
* [*] Block Editor: Remove banner error notification on upload failure [https://github.com/WordPress/gutenberg/pull/39694]
* [*] My Site: display site name in My Site screen nav title [#18373]
* [*] [internal] Site creation: Adds a new screen asking the user the name of the site [#18280]
19.6
-----
* [*] Enhances the exit animation of notices. [#18182]
* [*] Media Permissions: display error message when using camera to capture photos and media permission not given [https://github.com/wordpress-mobile/WordPress-iOS/pull/18139]
* [***] My Site: your My Site screen now has two tabs, "Menu" and "Home". Under "Home", you'll find contextual cards with some highlights of whats going on with your site. Check your drafts or scheduled posts, your today's stats or go directly to another section of the app. [#18240]
* [*] [internal] Site creation: Adds a new screen asking the user the intent of the site [#18270]
19.5
-----
* [*] Improves the error message shown when trying to create a new site with non-English characters in the domain name [https://github.com/wordpress-mobile/WordPress-iOS/pull/17985]
* [*] Quick Start: updated the design for the Quick Start cell on My Site [#18095]
* [*] Reader: Fixed a bug where comment replies are misplaced after its parent comment is moderated [#18094]
* [*] Bug fix: Allow keyboard to be dismissed when the password field is focused during WP.com account creation.
* [*] iPad: Fixed a bug where the current displayed section wasn't selected on the menu [#18118]
* [**] Comment Notifications: updated UI and functionality to match My Site Comments. [#18141]
* [*] Block Editor: Add GIF badge for animated GIFs uploaded to Image blocks [https://github.com/WordPress/gutenberg/pull/38996]
* [*] Block Editor: Small refinement to media upload errors, including centering and tweaking copy. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4597]
* [*] Block Editor: Fix issue with list's starting index and the order [https://github.com/WordPress/gutenberg/pull/39354]
* [*] Quick Start: Fixed a bug where a user creating a new site is displayed a quick start tour containing data from their presviously active site.
19.4
-----
* [*] Site Creation: Fixed layout of domain input field for RTL languages. [#18006]
* [*] [internal] The FAB (blue button to create posts/stories/pages) creation/life cycle was changed [#18026]
* [*] Stats: we fixed a variety of performance issues in the Insight screen. [#17926, #17936, #18017]
* [*] Stats: we re-organized the default view in Insights, presenting more interesting data at a glance [#18072]
* [*] Push notifications will now display rich media when long pressed. [#18048]
* [*] Weekly Roundup: We made some further changes to try and ensure that Weekly Roundup notifications are showing up for everybody who's enabled them [#18029]
* [*] Block editor: Autocorrected Headings no longer apply bold formatting if they weren't already bold. [#17844]
* [***] Block editor: Support for multiple color palettes [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4588]
* [**] User profiles: Fixed issue where the app wasn't displaying any of the device photos which the user had granted the app access to.
19.3
-----
* [*] Site previews: Reduced visual flickering when previewing sites and templates. [#17861]
* [*] Stats: Scroll to new Insights card when added. [#17894]
* [*] Add "Copy Link" functionality to Posts List and Pages List [#17911]
* [*] [Jetpack-only] Enables the ability to use and create WordPress.com sites, and enables the Reader tab. [#17914, #17948]
* [*] Block editor: Additional error messages for media upload failures. [#17971]
* [**] Adds animated Gif support in notifications and comments [#17981]
19.2
-----
* [*] Site creation: Fixed bug where sites created within the app were not given the correct time zone, leading to post scheduling issues. [#17821]
* [*] Block editor: Replacing the media for an image set as featured prompts to update the featured image [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3930]
* [***] Block editor: Font size and line-height support for text-based blocks used in block-based themes [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4519]
* [**] Some of the screens of the app has a new, fresh and more modern visual, including the initial one: My Site. [#17812]
* [**] Notifications: added a button to mark all notifications in the selected filter as read. [#17840]
* [**] People: you can now manage Email Followers on the People section! [#17854]
* [*] Stats: fix navigation between Stats tab. [#17856]
* [*] Quick Start: Fixed a bug where a user logging in via a self-hosted site not connected to Jetpack would see Quick Start when selecting "No thanks" on the Quick Start prompt. [#17855]
* [**] Threaded comments: comments can now be moderated via a drop-down menu on each comment. [#17888]
* [*] Stats: Users can now add a new Insights card from the navigation bar. [#17867]
* [*] Site creation: The checkbox that appears when choosing a design no longer flickers when toggled. [#17868]
19.1
-----
* [*] Signup: Fixed bug where username selection screen could be pushed twice. [#17624]
* [**] Reader post details Comments snippet: added ability to manage conversation subscription and notifications. [#17749]
* [**] Accessibility: VoiceOver and Dynamic Type improvements on Activity Log and Schedule Post calendars [#17756, #17761, #17780]
* [*] Weekly Roundup: Fix a crash which was preventing weekly roundup notifications from appearing [#17765]
* [*] Self-hosted login: Improved error messages. [#17724]
* [*] Share Sheet from Photos: Fix an issue where certain filenames would not upload or render in Post [#16773]
* [*] Block editor: Fixed an issue where video thumbnails could show when selecting images, and vice versa. [#17670]
* [**] Media: If a user has only enabled limited device media access, we now show a prompt to allow the user to change their selection. [#17795]
* [**] Block editor: Fix content justification attribute in Buttons block [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4451]
* [*] Block editor: Hide help button from Unsupported Block Editor. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4352]
* [*] Block editor: Add contrast checker to text-based blocks [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4357]
* [*] Block editor: Fix missing translations of color settings [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4479]
* [*] Block editor: Highlight text: fix applying formatting for non-selected text [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4471]
* [***] Self-hosted sites: Fixed a crash when saving media and no Internet connection was available. [#17759]
* [*] Publicize: Fixed an issue where a successful login was not automatically detected when connecting a Facebook account to Publicize. [#17803]
19.0
-----
* [**] Video uploads: video upload is now limited to 5 minutes per video on free plans. [#17689]
* [*] Block editor: Give multi-line block names central alignment in inserter [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4343]
* [**] Block editor: Fix missing translations by refactoring the editor initialization code [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4332]
* [**] Block editor: Add Jetpack and Layout Grid translations [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4359]
* [**] Block editor: Fix text formatting mode lost after backspace is used [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4423]
* [*] Block editor: Add missing translations of unsupported block editor modal [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4410]
* [**] Time zone suggester: we have a new time zone selection screen that suggests the time zone based on the device, and improves search. [#17699]
* [*] Added the "Share WordPress with a friend" row back to the Me screen. [#17748]
* [***] Updated default app icon. [#17793]
18.9
-----
* [***] Reader Comments: Updated comment threads with a new design and some new capabilities. [#17659]
* [**] Block editor: Fix issue where editor doesn't auto-scroll so you can see what is being typed. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4299]
* [*] Block editor: 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]
* [**] Block editor: 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]
* [***] Block editor: Highlight text: Enables color customization for specific text within a Paragraph block. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4175]
* [**] Reader post details: a Comments snippet is now displayed after the post content. [#17650]
18.8
-----
* [*] Added a new About screen, with links to rate the app, share it with others, visit our Twitter profile, view our other apps, and more. [https://github.com/orgs/wordpress-mobile/projects/107]
* [*] Editor: Show a compact notice when switching between HTML or Visual mode. [https://github.com/wordpress-mobile/WordPress-iOS/pull/17521]
* [*] Onboarding Improvements: Need a little help after login? We're here for you. We've made a few changes to the login flow that will make it easier for you to start managing your site or create a new one. [#17564]
* [***] Fixed crash where uploading image when offline crashes iOS app. [#17488]
* [***] Fixed crash that was sometimes triggered when deleting media. [#17559]
* [***] Fixes a crasher that was sometimes triggered when seeing the details for like notifications. [#17529]
* [**] Block editor: Add clipboard link suggestion to image block and button block. [https://github.com/WordPress/gutenberg/pull/35972]
* [*] Block editor: Embed block: Include link in block settings. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4189]
* [**] Block editor: Fix tab titles translation of inserter menu. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4248]
* [**] Block editor: 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]
* [*] Block editor: 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]
18.7
-----
* [*] Comment Reply: updated UI. [#17443, #17445]
* [***] Two-step Authentication notifications now require an unlocked device to approve or deny them.
* [***] Site Comments: Updated comment details with a fresh new look and capability to display rich contents. [#17466]
* [**] Block editor: Image block: Add ability to quickly link images to Media Files and Attachment Pages [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3971]
* [**] Block editor: Fixed a crash that could occur when copying lists from Microsoft Word. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4174]
* [***] Fixed an issue where trying to upload an image while offline crashes the app. [#17488]
18.6
-----
* [**] Comments: Users can now follow conversation via notifications, in addition to emails. [#17363]
* [**] Block editor: Block inserter indicates newly available block types [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4047]
* [*] Reader post comments: fixed an issue that prevented all comments from displaying. [#17373]
* [**] Stats: added Reader Discover nudge for sites with low traffic in order to increase it. [#17349, #17352, #17354, #17377]
* [**] Block editor: Search block - Text and background color support [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4127]
* [*] Block editor: Fix Embed Block loading glitch with resolver resolution approach [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4146]
* [*] Block editor: Fixed an issue where the Help screens may not respect an iOS device's notch. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4110]
* [**] Block editor: Block inserter indicates newly available block types [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4047]
* [*] Block editor: Add support for the Mark HTML tag [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4162]
* [*] Stats Insights: HTML tags no longer display in post titles. [#17380]
18.5
-----
* [**] Block editor: Embed block: Include Jetpack embed variants. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4008]
* [*] Fixed a minor visual glitch on the pre-publishing nudge bottom sheet. [https://github.com/wordpress-mobile/WordPress-iOS/pull/17300]
* [*] Improved support for larger text sizes when choosing a homepage layout or page layout. [#17325]
* [*] Site Comments: fixed an issue that caused the lists to not refresh. [#17303]
* [*] Block editor: Embed block: Fix inline preview cut-off when editing URL [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4072]
* [*] Block editor: 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]
* [**] Block editor: Embed block: Detect when an embeddable URL is pasted into an empty paragraph. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4048]
* [**] Block editor: Pullquote block - Added support for text and background color customization [https://github.com/WordPress/gutenberg/pull/34451]
* [**] Block editor: Preformatted block - Added support for text and background color customization [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4071]
* [**] Stats: added Publicize and Blogging Reminders nudges for sites with low traffic in order to increase it. [#17142, #17261, #17294, #17312, #17323]
* [**] Fixed an issue that made it impossible to log in when emails had an apostrophe. [#17334]
18.4
-----
* [*] Improves our user images download logic to avoid synchronization issues. [#17197]
* [*] Fixed an issue where images point to local URLs in the editor when saving a post with ongoing uploads. [#17157]
* [**] 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]
* [**] Block editor: Help menu with guides about how to work with blocks [#17265]
18.3
-----
* [*] Fixed a bug on Reader that prevented Saved posts to be removed
* [*] Share Extension: Allow creation of Pages in addition to Posts. [#16084]
* [*] Updated the wording for the "Posts" and "Pages" entries in My Site screen [https://github.com/wordpress-mobile/WordPress-iOS/pull/17156]
* [**] Fixed a bug that prevented sharing images and videos out of your site's media library. [#17164]
* [*] Fixed an issue that caused `Follow conversation by email` to not appear on some post's comments. [#17159]
* [**] Block editor: Embed block: Enable WordPress embed preview [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3853]
* [**] Block editor: Embed block: Add error bottom sheet with retry and convert to link actions. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3921]
* [**] Block editor: 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]
* [*] Block editor: Embed block: Add device's locale to preview content [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3788]
* [*] Block editor: Column block: Translate column width's control labels [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3952]
* [**] Block editor: Embed block: Enable embed preview for Instagram and Vimeo providers. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3918]
18.2
-----
* [internal] Fixed an issue where source and platform tags were not added to a Zendesk ticket if the account has no blogs. [#17084]
* [*] Set the post formats to have 'Standard' first and then alphabetized the remaining items. [#17074]
* [*] Fixed wording of theme customization screen's menu bar by using "Activate" on inactive themes. [#17060]
* [*] Added pull-to-refresh to My Site. [#17089]
* [***] Weekly Roundup: users will receive a weekly notification that presents a summary of the activity on their most used sites [#17066, #17116]
* [**] Site Comments: when editing a Comment, the author's name, email address, and web address can now be changed. [#17111]
* [**] Block editor: Enable embed preview for a list of providers (for now only YouTube and Twitter) [https://github.com/WordPress/gutenberg/pull/34446]
* [***] Block editor: Add Inserter Block Search [https://github.com/WordPress/gutenberg/pull/33237]
18.1
-----
* [*] Reader: Fixes an issue where the top of an article could be cropped after rotating a device. [#17041]
* [*] Posts Settings: Removed deprecated Location feature. [#17052]
* [**] Added a time selection feature to Blogging Reminders: users can now choose at what time they will receive the reminders [#17024, #17033]
* [**] Block editor: Embed block: Add "Resize for smaller devices" setting. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3753]
* [**] Account Settings: added the ability to close user account.
* [*] Users can now share WordPress app with friends. Accessible from Me and About screen. [#16995]
18.0
-----
* [*] Fixed a bug that would make it impossible to scroll the plugins the first time the plugin section was opened.
* [*] Resolved an issue where authentication tokens weren't be regenerated when disabled on the server. [#16920]
* [*] Updated the header text sizes to better support large texts on Choose a Domain and Choose a Design flows. [#16923]
* [internal] Made a change to how Comment content is displayed. Should be no visible changes, but could cause regressions. [#16933]
* [internal] Converted Comment model properties to Swift. Should be no functional changes, but could cause regressions. [#16969, #16980]
* [internal] Updated GoogleSignIn to 6.0.1 through WordPressAuthenticator. Should be no visible changes, but could cause regression in Google sign in flow. [#16974]
* [internal] Converted Comment model properties to Swift. Should be no functional changes, but could cause regressions. [#16969]
* [*] Posts: Ampersands are correctly decoded in publishing notices instead of showing as HTML entites. [#16972]
* [***] Adjusted the image size of Theme Images for more optimal download speeds. [#16914]
* [*] Comments and Notifications list are now displayed with a unified design. [#16985]
* [*] Block editor: Add a "featured" banner and ability to set or remove an image as featured. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3449]
17.9
-----
* [internal] Redirect Terms and service to open the page in an external web view [#16907]
* [internal] Converted Comment model methods to Swift. Should be no functional changes, but could cause regressions. [#16898, #16905, #16908, #16913]
* [*] Enables Support for Global Style Colors with Full Site Editing Themes [#16823]
* [***] Block editor: New Block: Embed block. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3727]
17.8
-----
* [*] Authors and Contributors can now view a site's Comments via My Site > Comments. [#16783]
* [*] [Jetpack-only] Fix bugs when tapping to notifications
* [*] Fixed some refresh issues with the site follow buttons in the reader. [#16819]
* [*] Block editor: Update loading and failed screens for web version of the editor [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3573]
* [*] Block editor: Handle floating keyboard case - Fix issue with the block selector on iPad. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3687]
* [**] Block editor: Added color/background customization for text blocks. [https://github.com/WordPress/gutenberg/pull/33250]
17.7
-----
* [***] Added blogging reminders. Choose which days you'd like to be reminded, and we'll send you a notification prompting you to post on your site
* [** Does not apply to Jetpack app] Self hosted sites that do not use Jetpack can now manage (install, uninstall, activate, and deactivate) their plugins [#16675]
* [*] Upgraded the Zendesk SDK to version 5.3.0
* [*] You can now subscribe to conversations by email from Reader lists and articles. [#16599]
* [*] Block editor: Tablet view fixes for inserter button. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3602]
* [*] Block editor: Tweaks to the badge component's styling, including change of background color and reduced padding. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3642]
* [***] Block editor: New block Layout grid. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3513]
* [*] Fixed an issue where the SignUp flow could not be dismissed sometimes. [#16824]
17.6
-----
* [**] Reader Post details: now shows a summary of Likes for the post. Tapping it displays the full list of Likes. [#16628]
* [*] Fix notice overlapping the ActionSheet that displays the Site Icon controls. [#16579]
* [*] Fix login error for WordPress.org sites to show inline. [#16614]
* [*] Disables the ability to open the editor for Post Pages [#16369]
* [*] Fixed an issue that could cause a crash when moderating Comments. [#16645]
* [*] Fix notice overlapping the ActionSheet that displays the QuickStart Removal. [#16609]
* [*] Site Pages: when setting a parent, placeholder text is now displayed for pages with blank titles. [#16661]
* [***] Block Editor: Audio block now available on WP.com sites on the free plan. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3523]
* [**] You can now create a Site Icon for your site using an emoji. [#16670]
* [*] Fix notice overlapping the ActionSheet that displays the More Actions in the Editor. [#16658]
* [*] The quick action buttons will be hidden when iOS is using a accessibility font sizes. [#16701]
* [*] Block Editor: Improve unsupported block message for reusable block. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3621]
* [**] Block Editor: Fix incorrect block insertion point after blurring the post title field. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3640]
* [*] Fixed a crash when sharing photos to WordPress [#16737]
17.5
-----
* [*] Fixed a crash when rendering the Noticons font in rich notification. [#16525]
* [**] Block Editor: Audio block: Add Insert from URL functionality. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3031]
* [***] Block Editor: Slash command to insert new blocks. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3250]
* [**] Like Notifications: now displays all users who liked a post or comment. [#15662]
* [*] Fixed a bug that was causing some fonts to become enormous when large text was enabled.
* [*] Fixed scrolling and item selection in the Plugins directory. [#16087]
* [*] Improved large text support in the blog details header in My Sites. [#16521]
* [***] Block Editor: New Block: Reusable block. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3490]
* [***] Block Editor: Add reusable blocks to the block inserter menu. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3054]
* [*] Fixed a bug where the web version of the editor did not load when using an account created before December 2018. [#16586]
17.4
-----
* [**] A new author can be chosen for Posts and Pages on multi-author sites. [#16281]
* [*] Fixed the Follow Sites Quick Start Tour so that Reader Search is highlighted. [#16391]
* [*] Enabled approving login authentication requests via push notification while the app is in the foreground. [#16075]
* [**] Added pull-to-refresh to the My Site screen when a user has no sites. [#16241]
* [***] Fixed a bug that was causing uploaded videos to not be viewable in other platforms. [#16548]
17.3
-----
* [**] Fix issue where deleting a post and selecting undo would sometimes convert the content to the classic editor. [#16342]
* [**] Fix issue where restoring a post left the restored post in the published list even though it has been converted to a draft. [#16358]
* [**] Fix issue where trashing a post converted it to Classic content. [#16367]
* [**] Fix issue where users could not leave the username selection screen due to styling issues. [#16380]
* [*] Comments can be filtered to show the most recent unreplied comments from other users. [#16215]
* [*] Fixed the background color of search fields. [#16365]
* [*] Fixed the navigation bar color in dark mode. [#16348]
* [*] Fix translation issues for templates fetched on the site creation design selection screen. [#16404]
* [*] Fix translation issues for templates fetched on the page creation design selection screen. [#16404]
* [*] Fix translation issue for the Choose button on the template preview in the site creation flow. [#16404]
* [***] Block Editor: New Block: Search Block [#https://github.com/wordpress-mobile/gutenberg-mobile/pull/3210]
* [**] Block Editor: 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]
* [**] Block Editor: 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]
* [*] Block Editor: Remove visual feedback from non-interactive bottom-sheet cell sections [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3404]
* [*] Block Editor: Fixed an issue that was causing the featured image badge to be shown on images in an incorrect manner. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3494]
17.2
-----
* [**] Added transform block capability [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3321]
* [*] Fixed an issue where some author display names weren't visible for self-hosted sites. [#16297]
* [***] Updated custom app icons. [#16261]
* [**] Removed Site Switcher in the Editor
* [*] 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]
17.1
-----
* [*] Reordered categories in page layout picker [#16156]
* [*] Added preview device mode selector in the page layout previews [#16141]
* [***] Block Editor: Improved the accessibility of range and step-type block settings. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3255]
* [**] Block Editor: Added Contact Info block to sites on WPcom or with Jetpack version >= 8.5.
* [**] We updated the app's color scheme with a brighter new blue used throughout. [#16213, #16207]
* [**] We updated the login prologue with brand new content and graphics. [#16159, #16177, #16185, #16187, #16200, #16217, #16219, #16221, #16222]
* [**] We updated the app's color scheme with a brighter new blue used throughout. [#16213, #16207]
* [**] Updated the app icon to match the new color scheme within the app. [#16220]
* [*] Fixed an issue where some webview navigation bar controls weren't visible. [#16257]
17.0
-----