forked from WordPress/gutenberg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
changelog.txt
6106 lines (5638 loc) · 424 KB
/
changelog.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
== Changelog ==
= 7.2.0-rc.1 =
### New Features
- Add a new Buttons block. [#17352](https://github.com/wordpress/gutenberg/pull/17352)
- Support adding links to Media & Text block image. [#18139](https://github.com/wordpress/gutenberg/pull/18139)
- Navigation block: Support changing the font size. [#19127](https://github.com/wordpress/gutenberg/pull/19127)
- Gallery block: Add images size selector. [#18581](https://github.com/wordpress/gutenberg/pull/18581)
### Enhancements
- Improve the block inserter search algorithm. [#19122](https://github.com/wordpress/gutenberg/pull/19122)
- Improve the block placeholders design and responsiveness. [#18745](https://github.com/wordpress/gutenberg/pull/18745)
- Navigation mode: Auto-enable when tabbing to the block list with an existing block selection. [#19238](https://github.com/wordpress/gutenberg/pull/19238) [#19298](https://github.com/wordpress/gutenberg/pull/19298)
- Use tabs for gradient and color. [#19133](https://github.com/wordpress/gutenberg/pull/19133)
- Add "download" keyword to the File block. [#18995](https://github.com/wordpress/gutenberg/pull/18995)
- Add "poem" keyword to the Verse block. [#19355](https://github.com/wordpress/gutenberg/pull/19355)
- Convert to blocks:
- preserve text alignment. [#19097](https://github.com/wordpress/gutenberg/pull/19097)
- Skip shortcode if not on its own line. [#19059](https://github.com/wordpress/gutenberg/pull/19059)
- Writing flow: Improve tabbing for Edit mode. [#19235](https://github.com/wordpress/gutenberg/pull/19235)
- Use Popover for the block toolbar. [#18779](https://github.com/wordpress/gutenberg/pull/18779)
- Improve the block multi-selection styles. [#19094](https://github.com/wordpress/gutenberg/pull/19094) [#19121](https://github.com/wordpress/gutenberg/pull/19121)
- Support reduced-motion for Social Links transitions. [#18750](https://github.com/wordpress/gutenberg/pull/18750)
- Use the default cursor for Select Tool [#19157](https://github.com/wordpress/gutenberg/pull/19157)
- Round position attributes on cover focal point save. [#19183](https://github.com/wordpress/gutenberg/pull/19183)
- Remove block inserter shortcuts. [#19045](https://github.com/wordpress/gutenberg/pull/19045)
- Navigation block:
- Clarify the placeholder label. [#19105](https://github.com/wordpress/gutenberg/pull/19105)
- Removes the reusable block option from the items. [#19250](https://github.com/wordpress/gutenberg/pull/19250)
- Sub-items white background adjustment. [#18976](https://github.com/wordpress/gutenberg/pull/18976)
- Adjustments to the welcome guide. [#19195](https://github.com/wordpress/gutenberg/pull/19195)
- Audio block: Don't render an empty audio tag. [#18850](https://github.com/wordpress/gutenberg/pull/18850)
- Make validation of block html tags and attributes case insensitive [#19207](https://github.com/wordpress/gutenberg/pull/19207)
- Block examples: concatenate strings and add translators notes. [#19048](https://github.com/wordpress/gutenberg/pull/19048)
- Show the trash button as a link. [#19131](https://github.com/wordpress/gutenberg/pull/19131)
- Removed the bottom-margin for the RadioControl component. [#19340](https://github.com/wordpress/gutenberg/pull/19340)
- Copy:
- Capitalize "Manager" in Block Manager. [#19375](https://github.com/wordpress/gutenberg/pull/19375)
- Expand on sentence case usage. [#18758](https://github.com/wordpress/gutenberg/pull/18758) [#19377](https://github.com/wordpress/gutenberg/pull/19377)
- Update the copy of the Experiments page [#18233](https://github.com/wordpress/gutenberg/pull/18233)
- Removes title case from alignments for text and image. [#18757](https://github.com/wordpress/gutenberg/pull/18757)
- Unify not capitalizing the heading for each of the attributes. [#19374](https://github.com/wordpress/gutenberg/pull/19374)
- Updates description of the navigation block. [#19098](https://github.com/wordpress/gutenberg/pull/19098)
### Performance:
- Remove the BlockAsyncRenderProvider and render parents asynchronously [#19343](https://github.com/wordpress/gutenberg/pull/19343)
### Bugs:
- A11y:
- Make text alignment items radio menu items. [#19233](https://github.com/wordpress/gutenberg/pull/19233)
- Add group role to the block wrapper element. [#19213](https://github.com/wordpress/gutenberg/pull/19213)
- Prevent tabbing to the block drag handle. [#19211](https://github.com/wordpress/gutenberg/pull/19211)
- Add a label attribute to the Social Icons block. [#18651](https://github.com/wordpress/gutenberg/pull/18651)
- Improve Welcome guide and modal component. [#19261](https://github.com/wordpress/gutenberg/pull/19261) [#19290](https://github.com/wordpress/gutenberg/pull/19290)
- Pasting:
- Content that results in a new block shouldn't be treated as inline content. [#19084](https://github.com/wordpress/gutenberg/pull/19084)
- Preserve inline images. [#19064](https://github.com/wordpress/gutenberg/pull/19064)
- Remove trailing br elements. [#19035](https://github.com/wordpress/gutenberg/pull/19035)
- Remove windows paste markers. [#19040](https://github.com/wordpress/gutenberg/pull/19040)
- Strip HTML formatting space for inline text. [#19043](https://github.com/wordpress/gutenberg/pull/19043)
- Apply active formats when pasting inline. [#14815](https://github.com/wordpress/gutenberg/pull/14815)
- Rich Text:
- Fix applying a format across 2 other formats. [#19053](https://github.com/wordpress/gutenberg/pull/19053)
- Fix using composed characters on Safari. [#19171](https://github.com/wordpress/gutenberg/pull/19171)
- Fix block navigation using the up arrow key. [#19135](https://github.com/wordpress/gutenberg/pull/19135)
- Fix Welcome Guide modal display for Internet Explorer. [#19201](https://github.com/wordpress/gutenberg/pull/19201)
- Fix Gallery block crashing on the contributor role. [#19060](https://github.com/wordpress/gutenberg/pull/19060)
- Only show available image sizes for Image and Gallery blocks. [#19301](https://github.com/wordpress/gutenberg/pull/19301)
- Remove the circle mask style from the Image block, and add a "rounded" style instead. [#19028](https://github.com/wordpress/gutenberg/pull/19028)
- Fix the Jest Preset Default package: Update preset file extension for inclusion in NPM deployments. [#19306](https://github.com/wordpress/gutenberg/pull/19306)
- Fix the Base Styles package: Import colors into variables. [#19159](https://github.com/wordpress/gutenberg/pull/19159)
- Limit the Next Page (Page Break) block to root level only. [#18260](https://github.com/wordpress/gutenberg/pull/18260)
- Navigation mode: fix reverse tabbing to the post title. [#19305](https://github.com/wordpress/gutenberg/pull/19305)
- Reposition Popovers on click. [#19268](https://github.com/wordpress/gutenberg/pull/19268)
- Fix RangeControl initialPosition prop to accept 0 as a value. [#18611](https://github.com/wordpress/gutenberg/pull/18611) [#19202](https://github.com/wordpress/gutenberg/pull/19202)
- CustomSelectControl: Use items width instead of 100%. [#19150](https://github.com/wordpress/gutenberg/pull/19150)
- Verse block: fix white space. [#19173](https://github.com/wordpress/gutenberg/pull/19173)
- Add missing i18n to the Latest Posts block settings strings [#19032](https://github.com/wordpress/gutenberg/pull/19032)
- Fix ColorPicker alpha value normalization. [#18991](https://github.com/wordpress/gutenberg/pull/18991)
- Fix Post title encoding. [#19187](https://github.com/wordpress/gutenberg/pull/19187)
- Fix dates alignments in the picker. [#19294](https://github.com/wordpress/gutenberg/pull/19294)
- Media Replace Flow: Don't show the URL option unless there is a handler. [#19063](https://github.com/wordpress/gutenberg/pull/19063)
- Popover: don't render fallback anchor if anchorRef is defined. [#19308](https://github.com/wordpress/gutenberg/pull/19308)
- Fix cursor position when splitting blocks with IME keyboard. [#19055](https://github.com/wordpress/gutenberg/pull/19055)
- URLInput: Avoid showing the suggestions loader when disabled. [#18979](https://github.com/wordpress/gutenberg/pull/18979)
- Translate block example strings. [#18162](https://github.com/wordpress/gutenberg/pull/18162)
- Writing flow: simplify & fix tabbing out of block. [#19312](https://github.com/wordpress/gutenberg/pull/19312)
### New APIs:
- Button component:
- Support the icon prop and use a consistent button height. [#19193](https://github.com/wordpress/gutenberg/pull/19193) [#19366](https://github.com/wordpress/gutenberg/pull/19366) [#19123](https://github.com/wordpress/gutenberg/pull/19123) [#19058](https://github.com/wordpress/gutenberg/pull/19058)
- Deprecate IconButton and replace its usage with Button. [#19299](https://github.com/wordpress/gutenberg/pull/19299) [#19241](https://github.com/wordpress/gutenberg/pull/19241)
- Support isPressed prop in Button and SVG components. [#17748](https://github.com/wordpress/gutenberg/pull/17748)
- New the @wordpress/keyboard-shortcuts package:
- Add the package. [#19100](https://github.com/wordpress/gutenberg/pull/19100)
- Optimize useShortcut performance. [#19341](https://github.com/wordpress/gutenberg/pull/19341)
- Refactor KeyboardShortcuts component to rely on useKeyboardShortcut hook. [#19325](https://github.com/wordpress/gutenberg/pull/19325)
- Refactor existing editor shortcuts to rely on the package. [#19320](https://github.com/wordpress/gutenberg/pull/19320) [#19327](https://github.com/wordpress/gutenberg/pull/19327) [#19332](https://github.com/wordpress/gutenberg/pull/19332) [#19318](https://github.com/wordpress/gutenberg/pull/19318) [#19334](https://github.com/wordpress/gutenberg/pull/19334) [#19385](https://github.com/wordpress/gutenberg/pull/19385) [#19395](https://github.com/wordpress/gutenberg/pull/19395)
- New React hook: useInstanceId. [#19091](https://github.com/wordpress/gutenberg/pull/19091)
- Support running arbitrary commands on the @wordpress/env containers and use it for linting and server registered fixtures. [#18986](https://github.com/wordpress/gutenberg/pull/18986)
- Font Size Picker: Add default size [#18273](https://github.com/wordpress/gutenberg/pull/18273)
### Experiments
- Full Site Editing:
- Add package with barebones site editor screen. [#19054](https://github.com/wordpress/gutenberg/pull/19054)
- Add Multi-Entity Saving flow. [#18029](https://github.com/wordpress/gutenberg/pull/18029) [#19155](https://github.com/wordpress/gutenberg/pull/19155)
- Widgets screen & customizer:
- Fix Customiser block editor crash. [#19023](https://github.com/wordpress/gutenberg/pull/19023)
- Fix Drag & Drop not working on the widgets screen. [#19029](https://github.com/wordpress/gutenberg/pull/19029)
- Allow parent Block to consume child Block's toolbar. [#18440](https://github.com/wordpress/gutenberg/pull/18440)
- Allow disabling the Block UI. [#18173](https://github.com/wordpress/gutenberg/pull/18173)
- Block Directory:
- Update the regular expression that determines whether the plugin is using an img URL or an icon slug. [#19316](https://github.com/wordpress/gutenberg/pull/19316)
- Use the block's title for alt text on block directory plugin items. [#19263](https://github.com/wordpress/gutenberg/pull/19263)
### Documentation
- Add types documention:
- @wordpress/a11y [#19096](https://github.com/wordpress/gutenberg/pull/19096)
- @wordpress/blob [#19092](https://github.com/wordpress/gutenberg/pull/19092)
- @wordpress/dom-ready [#19089](https://github.com/wordpress/gutenberg/pull/19089)
- @wordpress/is-shallow-equal [#19090](https://github.com/wordpress/gutenberg/pull/19090)
- @wordpress/priority-queue [#18997](https://github.com/wordpress/gutenberg/pull/18997)
- @wordpress/i18n [#19099](https://github.com/wordpress/gutenberg/pull/19099)
- Document the CustomSelectControl component. [#19026](https://github.com/wordpress/gutenberg/pull/19026)
- Document the WritingFlow component. [#19314](https://github.com/wordpress/gutenberg/pull/19314)
- Link to the User Support Documentation. [#19361](https://github.com/wordpress/gutenberg/pull/19361)
- Add more documentation for @wordpress/env. [#19194](https://github.com/wordpress/gutenberg/pull/19194)
- Add nested block / InnerBlocks tutorial. [#17559](https://github.com/wordpress/gutenberg/pull/17559)
- Add Developer Tools setup in Getting Started. [#19074](https://github.com/wordpress/gutenberg/pull/19074)
- Use ESNext as default code example format. [#17873](https://github.com/wordpress/gutenberg/pull/17873)
- Add standalone npm package release docs [#19381](https://github.com/wordpress/gutenberg/pull/19381)
- Typos and tweaks: [#19280](https://github.com/wordpress/gutenberg/pull/19280) [#19236](https://github.com/wordpress/gutenberg/pull/19236) [#19376](https://github.com/wordpress/gutenberg/pull/19376) [#19146](https://github.com/wordpress/gutenberg/pull/19146) [#19022](https://github.com/wordpress/gutenberg/pull/19022) [#19005](https://github.com/wordpress/gutenberg/pull/19005) [#18423](https://github.com/wordpress/gutenberg/pull/18423) [#19347](https://github.com/wordpress/gutenberg/pull/19347)
### Various
- Block Editor: Remove legacy "editor-" class name compatibility. [#19050](https://github.com/wordpress/gutenberg/pull/19050)(https://github.com/wordpress/gutenberg/pull/19046)
- Block Editor: Test ContrastChecker notices by string comparison. [#19169](https://github.com/wordpress/gutenberg/pull/19169)
- Fix useColors crashes on storybook. [#19046]
- Data: Remove unused forceRender argument [#19206](https://github.com/wordpress/gutenberg/pull/19206)
- Define useSelect dependencies properly. [#19044](https://github.com/wordpress/gutenberg/pull/19044)
- Deprecate @wordpress/nux package. [#18981](https://github.com/wordpress/gutenberg/pull/18981)
- E2E Test Utils: Remove empty, unused KeyboardMode file. [#19166](https://github.com/wordpress/gutenberg/pull/19166)
- Popover: remove buffer options [#19283](https://github.com/wordpress/gutenberg/pull/19283)
- Refactor the MediaReplaceFlow component to use Dropdown. [#19126](https://github.com/wordpress/gutenberg/pull/19126)
- Remove unused is-hovered class from the block wrapper. [#19390](https://github.com/wordpress/gutenberg/pull/19390)
- RichText:
- Rewrite withFilters with hooks. [#19117](https://github.com/wordpress/gutenberg/pull/19117)
- split out boundary style calculation. [#19319](https://github.com/wordpress/gutenberg/pull/19319)
- WritingFlow: rewrite with hooks. [#19393](https://github.com/wordpress/gutenberg/pull/19393)
- Project management: Add prepublish packages command for npm releases. [#19214](https://github.com/wordpress/gutenberg/pull/19214)
- Remove unused blocks-font-size classname. [#19208](https://github.com/wordpress/gutenberg/pull/19208)
- Add a pre-commit hook to check whether API docs are updated. [#18820](https://github.com/wordpress/gutenberg/pull/18820)
- Add mechanism to set a width on withViewportMatch. [#17085](https://github.com/wordpress/gutenberg/pull/17085)
- Add minimum and maximum values to the Gallery columns attribute. [#16314](https://github.com/wordpress/gutenberg/pull/16314)
- Include demo block templates in build ZIP. [#19072](https://github.com/wordpress/gutenberg/pull/19072)
- Fix CSS Coding Standards issue. [#19272](https://github.com/wordpress/gutenberg/pull/19272)
- Resolve WordPress package type imports. [#18927](https://github.com/wordpress/gutenberg/pull/18927)
- Add e2e tests:
- Splitting and merging text. [#19049](https://github.com/wordpress/gutenberg/pull/19049)
- InnerBlocks renderAppender. [#14996](https://github.com/wordpress/gutenberg/pull/14996)
- Navigation block. [#19189](https://github.com/wordpress/gutenberg/pull/19189)
- Validate embed rendering before proceeding to next [#19042](https://github.com/wordpress/gutenberg/pull/19042)
- Add unit tests to the useViewportMatch and useMediaQuery React hooks. [#19019](https://github.com/wordpress/gutenberg/pull/19019)
= 7.1.0 =
### Features
* Adding a menu to visually [switch between edit and](https://github.com/WordPress/gutenberg/pull/18624) [navigation](https://github.com/WordPress/gutenberg/pull/18829) [modes](https://github.com/WordPress/gutenberg/pull/18805) and announce the mode changes to screen reader users.
* Support adding [a caption to the Table block](https://github.com/WordPress/gutenberg/pull/15554).
* Implement a [Welcome Guide](https://github.com/WordPress/gutenberg/pull/18041) modal.
### Enhancements
* Use a [Fixed Block](https://github.com/WordPress/gutenberg/pull/18686) [Toolbar](https://github.com/WordPress/gutenberg/pull/18945https://github.com/WordPress/gutenberg/pull/18945) [on](https://github.com/WordPress/gutenberg/pull/19014) Mobile Web.
* Block UI:
* [Remove the parent block from the block title](https://github.com/WordPress/gutenberg/pull/18795) component.
* [Remove dashed](https://github.com/WordPress/gutenberg/pull/18105) [outlines](https://github.com/WordPress/gutenberg/pull/18865) for child and parent blocks.
* Remove [hover](https://github.com/WordPress/gutenberg/pull/18862) [styles](https://github.com/WordPress/gutenberg/pull/18904).
* Navigation block:
* Keep a single place to trigger the “[Open in a new tab](https://github.com/WordPress/gutenberg/pull/18532)” option.
* Fix overflow by allowing [wrapping of menu items](https://github.com/WordPress/gutenberg/pull/18431).
* Fix [double click to open the appender](https://github.com/WordPress/gutenberg/pull/18379).
* Add a **type=submit** to the [search suggestion buttons](https://github.com/WordPress/gutenberg/pull/18933).
* Support [justifying the menu items](https://github.com/WordPress/gutenberg/pull/18909).
* Use [correct classnames](https://github.com/WordPress/gutenberg/pull/18926) for navigation link block save output.
* Remove the [inspector controls](https://github.com/WordPress/gutenberg/pull/18948).
* Improve the block multi-selection:
* A11y: [Use the browser’s selection](https://github.com/WordPress/gutenberg/pull/16835) default color.
* Polish the [styles](https://github.com/WordPress/gutenberg/pull/18867).
* [Responsive](https://github.com/WordPress/gutenberg/pull/18915) multi-selection.
* [Allow pasting](https://github.com/WordPress/gutenberg/pull/18746) on multi-selection.
* Improve the [Image blocks replacement flow/UI](https://github.com/WordPress/gutenberg/pull/16200).
* Disable the [HTML mode in the Cover block](https://github.com/WordPress/gutenberg/pull/18730).
* Add [friendly offline error messages](https://github.com/WordPress/gutenberg/pull/17961) on Rest API request failures.
* [Round the focal point](https://github.com/WordPress/gutenberg/pull/18765) coordinates.
* Popover & Dropdowns: Consistently and [smoothly](https://github.com/WordPress/gutenberg/pull/18813) [adjust](https://github.com/WordPress/gutenberg/pull/18936) the [position on scroll](https://github.com/WordPress/gutenberg/pull/17867).
* Remove [clearing the block selection](https://github.com/WordPress/gutenberg/pull/18621) on sidebar tab switch.
* [Separate editor notices](https://github.com/WordPress/gutenberg/pull/18871) by border instead of margin.
* Allow [drag and dropping images into the featured image](https://github.com/WordPress/gutenberg/pull/17486https://github.com/WordPress/gutenberg/pull/17486) box.
### Bug Fixes
* Prevent [resized Image blocks](https://github.com/WordPress/gutenberg/pull/18728) from overlapping the boundaries of the block.
* Fix [wrong link to attachment page](https://github.com/WordPress/gutenberg/pull/18731) after replacing images.
* Fix Media & Text block: "[Crop image to fill entire column](https://github.com/WordPress/gutenberg/pull/18729)" reset on image change.
* Fix the [Snackbar notices position](https://github.com/WordPress/gutenberg/pull/18801).
* Save the [Verse block line breaks](https://github.com/WordPress/gutenberg/pull/18372) as single characters.
* [Remove has-background-dim-NaN classname](https://github.com/WordPress/gutenberg/pull/18011) from the Cover block.
* Normalize the keys of the [apiFetch preloaded data](https://github.com/WordPress/gutenberg/pull/18724) to avoid unnecessary Rest API calls.
* Fix [CSS styles of the ColorPicker](https://github.com/WordPress/gutenberg/pull/18448) component.
* Update the Inspector slots to use the bubblesVirtually slots Fixing [RichText usage in Inspector controls](https://github.com/WordPress/gutenberg/pull/16807).
* Move the [Modals and Popovers](https://github.com/WordPress/gutenberg/pull/18775) to the right position in the DOM.
* Fix [alignment of date picker days](https://github.com/WordPress/gutenberg/pull/18856) when used in block.
* Fix alignment of [ToggleControl label](https://github.com/WordPress/gutenberg/pull/18815).
* Fix [the toggled state](https://github.com/WordPress/gutenberg/pull/18868) in the block toolbar buttons.
* Fix the [multi-select inspector padding](https://github.com/WordPress/gutenberg/pull/18847).
* Fix the behavior that allows writing by [clicking anywhere in the canvas](https://github.com/WordPress/gutenberg/pull/18732).
* Prevent [private posts with a future date](https://github.com/WordPress/gutenberg/pull/18834) from becoming public on update.
* Fix [useColors crashes if contrast checkers](https://github.com/WordPress/gutenberg/pull/18884) are not specified.
* Render [metaboxes as a single seemless unit](https://github.com/WordPress/gutenberg/pull/18873) to fix styling issues for themes with colored backgrounds.
* Fix the [FontSizePicker custom option](https://github.com/WordPress/gutenberg/pull/18842).
* Fix [reusable blocks](https://github.com/WordPress/gutenberg/pull/18902) showing up as too tall.
* Fix [Drop Cap + alignment](https://github.com/WordPress/gutenberg/pull/18831) producing a gap between paragraphs.
* Fix [Cover to Image block transform](https://github.com/WordPress/gutenberg/pull/18023) when no image is used in the Cover block.
* Ensure [empty classname is not output](https://github.com/WordPress/gutenberg/pull/18861) onto table element.
* Fix [scrolling the sidebar on mobile](https://github.com/WordPress/gutenberg/pull/18937).
* I18: Fix the [Code block](https://github.com/WordPress/gutenberg/pull/18964) [example](https://github.com/WordPress/gutenberg/pull/18993) [string](https://github.com/WordPress/gutenberg/pull/18973).
### APIs
* Support a [**disabled** prop in the RichText](https://github.com/WordPress/gutenberg/pull/18792) component.
* Add a [new](https://github.com/WordPress/gutenberg/pull/18827) [CustomSelectControl](https://github.com/WordPress/gutenberg/pull/17926) [component](https://github.com/WordPress/gutenberg/pull/18944).
* Add a new [TextHighlight](https://github.com/WordPress/gutenberg/pull/18609) component.
* Add a new [CustomGradientPicker](https://github.com/WordPress/gutenberg/pull/17603) component.
* Add [useViewportMatch](https://github.com/WordPress/gutenberg/pull/18816) [React hook](https://github.com/WordPress/gutenberg/pull/18950) to the @wordpress/compose package.
* Allowing [changing the aXe config](https://github.com/WordPress/gutenberg/pull/18712) in the @wordpress/just-puppeteer-axe package.
### Experiments
* Block Content Areas:
* Add a [demo templates](https://github.com/WordPress/gutenberg/pull/18554) directory.
* Add the [Template Part](https://github.com/WordPress/gutenberg/pull/18736) block.
* Add [documentation](https://github.com/WordPress/gutenberg/pull/18890) for the current state of the experiment.
* Widgets screen:
* Clear the block selection when [clicking outside the widget areas](https://github.com/WordPress/gutenberg/pull/17851).
* APIs:
* Add a new [\_\_experimentalResolveSelect](https://github.com/WordPress/gutenberg/pull/17558https://github.com/WordPress/gutenberg/pull/17558) API to the data package.
* Add [color detection and contrast checks support](https://github.com/WordPress/gutenberg/pull/18547) to the useColors hook.
### Documentation
* Improvements to the [Getting Started](https://github.com/WordPress/gutenberg/pull/18769) documentation.
* Include [TypeScript type checking](https://github.com/WordPress/gutenberg/pull/18879) in Testing Overview.
* Add [JSDoc recommendations](https://github.com/WordPress/gutenberg/pull/18920).
* Reintroduce [NodeJS LTS](https://github.com/WordPress/gutenberg/pull/18923) support commitment.
* Typos and tweaks: [1](https://github.com/WordPress/gutenberg/pull/18752), [2](https://github.com/WordPress/gutenberg/pull/18882), [3](https://github.com/WordPress/gutenberg/pull/18882), [4](https://github.com/WordPress/gutenberg/pull/18916), [5](https://github.com/WordPress/gutenberg/pull/18961), [6](https://github.com/WordPress/gutenberg/pull/19012).
### Performance
* Avoid [rerendering the EditorRegions component](https://github.com/WordPress/gutenberg/pull/18776) on each click.
* Flatten and simplify the [align hook](https://github.com/WordPress/gutenberg/pull/18963) [rendering](https://github.com/WordPress/gutenberg/pull/19008).
* Shim the [meta attribute source](https://github.com/WordPress/gutenberg/pull/18960) on block registration.
### Various
* Storybook: Add [StoryShots integration](https://github.com/WordPress/gutenberg/pull/18031) to generate unit tests.
* Work on the stability of e2e tests: [1](https://github.com/WordPress/gutenberg/pull/18662), [2](https://github.com/WordPress/gutenberg/pull/18754), [3](https://github.com/WordPress/gutenberg/pull/18753), [4](https://github.com/WordPress/gutenberg/pull/18773), [5](https://github.com/WordPress/gutenberg/pull/18771).
* Use [consistent theme colors and font sizes](https://github.com/WordPress/gutenberg/pull/18761) in e2e tests.
* Travis: [Skip the deploy stage](https://github.com/WordPress/gutenberg/pull/18788) on PRs.
* And a Travis job to check the [IE11 compatibility of the produced JavaScript builds](https://github.com/WordPress/gutenberg/pull/18774).
* Avoid usage of [editor store on block editor](https://github.com/WordPress/gutenberg/pull/18784) reusable blocks inserter.
* Replace the [fs-extra dependency with rimraf](https://github.com/WordPress/gutenberg/pull/18790).
* RSS block: Remove [PHP 5.2 compatibility code](https://github.com/WordPress/gutenberg/pull/15806).
* Update the [Columns block to use the Patterns API](https://github.com/WordPress/gutenberg/pull/18283).
* Refactor the [BlockToolbar component](https://github.com/WordPress/gutenberg/pull/18843) to use React hooks.
* Refactor the [BlockDraggable](https://github.com/WordPress/gutenberg/pull/18756) component for a simpler React tree.
* Refactor the [BlockHTML](https://github.com/WordPress/gutenberg/pull/18968) component to use React hooks.
* Refactor the [BlockList](https://github.com/WordPress/gutenberg/pull/18821) component to use React hooks.
* Refactor the [BlockInsertionPoint](https://github.com/WordPress/gutenberg/pull/18821) component to use React hooks.
* [Split @wordpress/urls into multiple modules](https://github.com/WordPress/gutenberg/pull/18689https://github.com/WordPress/gutenberg/pull/18689)/files to allow better tree-shaking.
* Improve the Storybook setup to allow [updates on style changes](https://github.com/WordPress/gutenberg/pull/18676).
* Enforce consistent usage of [Button and ToolbarGroup](https://github.com/WordPress/gutenberg/pull/18817) components.
* Use the [colors hook in the Paragraph block](https://github.com/WordPress/gutenberg/pull/18148).
* Add missing actions and tests for [lockPostAutosaving, unlockPostAutosaving](https://github.com/WordPress/gutenberg/pull/18854).
* [Collapse passed](https://github.com/WordPress/gutenberg/pull/16755) [tests](https://github.com/WordPress/gutenberg/pull/18896) in Travis jobs.
* Add [side effects property to the @wordpress/components package](https://github.com/WordPress/gutenberg/pull/18911) to allow tree-shaking.
* Add a [script to perform patch releases](https://github.com/WordPress/gutenberg/pull/18938) for old npm package versions.
* Reuse the [URLInput component in the Social Links](https://github.com/WordPress/gutenberg/pull/18905) block and [disable suggestions](https://github.com/WordPress/gutenberg/pull/18946).
* Improve and simplify [reusable block](https://github.com/WordPress/gutenberg/pull/18903) [styles](https://github.com/WordPress/gutenberg/pull/18958).
* Refactor the [Gallery edit component](https://github.com/WordPress/gutenberg/pull/18265) to be semi-cross-platform.
* Run tests using the same [environment](https://github.com/WordPress/gutenberg/pull/18703) version used for development.
* Add [CPU/Network slowdown configuration](https://github.com/WordPress/gutenberg/pull/18770) options to the e2e tests setup.
* Enable [Type checking for the @wordpress/token-list](https://github.com/WordPress/gutenberg/pull/18839) package.
* Move the [changelog.txt and readme.txt files](https://github.com/WordPress/gutenberg/pull/18828) to the Github repository.
= 7.0.0 =
### Features
* Add a new Navigation block (previously available as an experiment)
* [Highlight menu items](https://github.com/WordPress/gutenberg/pull/18435) without defined URL.
* Prevent [error in Firefox](https://github.com/WordPress/gutenberg/pull/18455) when removing the block.
* [Remove background color](https://github.com/WordPress/gutenberg/pull/18407) from the Navigation block and rely on the Group block.
* Remove the [background shadow](https://github.com/WordPress/gutenberg/pull/18485) for the submenus dropdown.
* [Rename "Navigation Menu Item"](https://github.com/WordPress/gutenberg/pull/18422https://github.com/WordPress/gutenberg/pull/18422) block to "Link".
* Remove [unnecessary color attributes](https://github.com/WordPress/gutenberg/pull/18540).
* Allow [addition CSS](https://github.com/WordPress/gutenberg/pull/18466) [classes](https://github.com/WordPress/gutenberg/pull/18629).
* Drop the [“menu” suffix from the block name](https://github.com/WordPress/gutenberg/pull/18551).
* [Escape special](https://github.com/WordPress/gutenberg/pull/18607) [characters](https://github.com/WordPress/gutenberg/pull/18617) in the frontend.
* Remove from [experimental features](https://github.com/WordPress/gutenberg/pull/18594).
* Add [style variations](https://github.com/WordPress/gutenberg/pull/18553).
### Enhancements
* Use [gradient classnames](https://github.com/WordPress/gutenberg/pull/18590) instead of inline styles for the Cover block.
* Inserter: Add [keyboard shortcut styling](https://github.com/WordPress/gutenberg/pull/18623) to "/" in the default tip.
* [Restore the caret position](https://github.com/WordPress/gutenberg/pull/17824) properly on undo.
* Add keywords to improve the [discoverability of the Audio block](https://github.com/WordPress/gutenberg/pull/18673).
* Show [video preview on Cover block](https://github.com/WordPress/gutenberg/pull/18009) inspector panel.
### Bug Fixes
* Fix [hidden nested images](https://github.com/WordPress/gutenberg/pull/18347) in the content column.
* Fix [double border issue](https://github.com/WordPress/gutenberg/pull/18358) in the keyboard shortcuts modal.
* Fix [off-centered publish button](https://github.com/WordPress/gutenberg/pull/17726).
* Fix [error when isRTL config is not provided](https://github.com/WordPress/gutenberg/pull/18526) in the block editor settings.
* Fix [full width Table block](https://github.com/WordPress/gutenberg/pull/18469) mobile regression.
* A11y: Add a screen reader text [label for the Search block](https://github.com/WordPress/gutenberg/pull/17983).
* Fix [text patterns undo](https://github.com/WordPress/gutenberg/pull/18533) after mouse move.
* Fix block [drag and drop for the contributor role](https://github.com/WordPress/gutenberg/pull/15054).
* [Update the link when switching the image used](https://github.com/WordPress/gutenberg/pull/17226) in the Image block.
* Fix php [error triggered when **gutenberg_register_packages_scripts**](https://github.com/WordPress/gutenberg/pull/18599) is run more than once.
* Fix special characters [escaping for the post title](https://github.com/WordPress/gutenberg/pull/18616).
* Fix [JavaScript errors triggered when selectors are called](https://github.com/WordPress/gutenberg/pull/18559) before the editor being initialized.
* Fix [BaseControl component label](https://github.com/WordPress/gutenberg/pull/18646) when no id is passed.
* [Preserve whitespace](https://github.com/WordPress/gutenberg/pull/18656) when converting blocks Preformatted and Paragraph blocks.
* Fix [multiple paste issues](https://github.com/WordPress/gutenberg/pull/17470) creating unnecessary empty spaces.
### New APIs
* Add a new [Card component](https://github.com/WordPress/gutenberg/pull/17963) [to](https://github.com/WordPress/gutenberg/pull/18681) @wordpress/components.
* Add [label support for the URLInput](https://github.com/WordPress/gutenberg/pull/15669) [component](https://github.com/WordPress/gutenberg/pull/18488).
* Support the [isMatch option for the shorcode transforms](https://github.com/WordPress/gutenberg/pull/18459).
### Experiments
* Block Content areas:
* Add [Post Title and Post Content](https://github.com/WordPress/gutenberg/pull/18461) [blocks](https://github.com/WordPress/gutenberg/pull/18543).
* Add [template parts](https://github.com/WordPress/gutenberg/pull/18339) CPT and the theme resolution logic.
* Widgets Screen:
* [Refactor the legacy widgets block](https://github.com/WordPress/gutenberg/pull/15801) to support all blocks.
* Fix [widget areas margins](https://github.com/WordPress/gutenberg/pull/18528).
* Add [isRTL setting](https://github.com/WordPress/gutenberg/pull/18545).
* APIs
* **useColors** hook: Enhance the [contrast checking API](https://github.com/WordPress/gutenberg/pull/18237) and provide [access to the color value](https://github.com/WordPress/gutenberg/pull/18544).
* Introduce [createInterpolateElement](https://github.com/WordPress/gutenberg/pull/17376) to allow translation of complex strings with HTML content.
* A11y: Refactor the [accessibility behavior of the Toolbar](https://github.com/WordPress/gutenberg/pull/18534) component.
* Social Links:
* [Capitalize LinkedIn](https://github.com/WordPress/gutenberg/pull/18638) and [GitHub](https://github.com/WordPress/gutenberg/pull/18714) properly.
* Fix frontend [styling](https://github.com/WordPress/gutenberg/pull/18410).
### Documentation
* Add a [Backward Compatibility policy](https://github.com/WordPress/gutenberg/pull/18499) document.
* Clarify the [npm packages release](https://github.com/WordPress/gutenberg/pull/18516) documentation.
* Add documentation for the [@wordpress/env wp-env.json config file](https://github.com/WordPress/gutenberg/pull/18643).
* Typos and tweaks: [1](https://github.com/WordPress/gutenberg/pull/18400), [2](https://github.com/WordPress/gutenberg/pull/18404), [3](https://github.com/WordPress/gutenberg/pull/18449), [4](https://github.com/WordPress/gutenberg/pull/18403), [5](https://github.com/WordPress/gutenberg/pull/18452), [6](https://github.com/WordPress/gutenberg/pull/18460), [7](https://github.com/WordPress/gutenberg/pull/18475), [8](https://github.com/WordPress/gutenberg/pull/18507), [9](https://github.com/WordPress/gutenberg/pull/18059), [10](https://github.com/WordPress/gutenberg/pull/17911), [11](https://github.com/WordPress/gutenberg/pull/18558), [12](https://github.com/WordPress/gutenberg/pull/18277), [13](https://github.com/WordPress/gutenberg/pull/18572), [14](https://github.com/WordPress/gutenberg/pull/18587), [15](https://github.com/WordPress/gutenberg/pull/18592), [16](https://github.com/WordPress/gutenberg/pull/18436), [17](https://github.com/WordPress/gutenberg/pull/18446), [18](https://github.com/WordPress/gutenberg/pull/18707), [19](https://github.com/WordPress/gutenberg/pull/18450), [20](https://github.com/WordPress/gutenberg/pull/18713).
### Various
* Refactor the [RichText component](https://github.com/WordPress/gutenberg/pull/17779): Remove the inner Editable component.
* Integrate [the](https://github.com/WordPress/gutenberg/pull/18514) [Gutenberg Playground](https://github.com/WordPress/gutenberg/pull/18191) into Storybook.
* Increase [WordPress minimum supported](https://github.com/WordPress/gutenberg/pull/15809) by the plugin to 5.2.0.
* Refactor the [Paragraph block edit function](https://github.com/WordPress/gutenberg/pull/18125) as a functional component.
* Refactor the [Cover block edit function](https://github.com/WordPress/gutenberg/pull/18116) as a functional component.
* Add new components to Storybook.
* [RadioControl](https://github.com/WordPress/gutenberg/pull/18474) component.
* [TabPanel](https://github.com/WordPress/gutenberg/pull/18402) component.
* [Popover](https://github.com/WordPress/gutenberg/pull/18096) component.
* [BaseControl](https://github.com/WordPress/gutenberg/pull/18648) component.
* [Tip](https://github.com/WordPress/gutenberg/pull/18542) component.
* Include [WordPress eslint plugin](https://github.com/WordPress/gutenberg/pull/18457) in React eslint ruleset in @wordpress/eslint-plugin.
* [Block PRs on mobile unit test failures](https://github.com/WordPress/gutenberg/pull/18454) in Travis.
* Polish the [PostSchedule popover styling](https://github.com/WordPress/gutenberg/pull/18235).
* Fix the [API documentation generation tool](https://github.com/WordPress/gutenberg/pull/18253) when spaces are used in folder names.
* Add [missing @babel/runtime dependency](https://github.com/WordPress/gutenberg/pull/18626) to the @wordpress/jest-puppeteer-axe.
* [Refactor the Layout component](https://github.com/WordPress/gutenberg/pull/18044) [to](https://github.com/WordPress/gutenberg/pull/18658) [separate](https://github.com/WordPress/gutenberg/pull/18683) the UI from the content.
* Align [Dropdown and DropdownMenu](https://github.com/WordPress/gutenberg/pull/18631) components styling.
* Remove [max-width style from the Image block](https://github.com/WordPress/gutenberg/pull/14911).
* Remove the [CollegeHumor embed](https://github.com/WordPress/gutenberg/pull/18591) block.
* Add unit tests:
* Ensure [consecutive edits](https://github.com/WordPress/gutenberg/pull/17917) to the same attribute are considered persistent.
* Test the [core-data undo reducer](https://github.com/WordPress/gutenberg/pull/18642).
= 6.9.0 =
### Features
* Support changing the [image title attribute](https://github.com/WordPress/gutenberg/pull/11070) in the Image block.
### Bugs
* Fix [invalid Pullquote blocks](https://github.com/WordPress/gutenberg/pull/18194) when setting a color from the palette presets.
* Fix the columns left/right [full-width margins](https://github.com/WordPress/gutenberg/pull/18021).
* Prevent [fast consecutive updates](https://github.com/WordPress/gutenberg/pull/18219) from triggering blocks reset.
* Fix block [movers for floated blocks](https://github.com/WordPress/gutenberg/pull/18230).
* Fix [Radio buttons styling](https://github.com/WordPress/gutenberg/pull/18183) in meta boxes.
* Fix the [default image sizes used for featured images](https://github.com/WordPress/gutenberg/pull/15844) displayed in the editor.
* Prevent the unsaved changes warning from popping-up when [deleting posts](https://github.com/WordPress/gutenberg/pull/18275).
* Revert [img and iframe styles](https://github.com/WordPress/gutenberg/pull/18287) to block editor container scope.
* Block Merge: guard for [undefined attribute definition](https://github.com/WordPress/gutenberg/pull/17937).
### Enhancements
* Inserter: [Immediately insert block](https://github.com/WordPress/gutenberg/pull/16708) when only one block type is allowed.
* Update the list of the [default available gradients](https://github.com/WordPress/gutenberg/pull/18214).
* [Disable indent/outdent buttons](https://github.com/WordPress/gutenberg/pull/17819) when necessary in the List block.
### New APIs
* Add theme support API to define [custom gradients presets](https://github.com/WordPress/gutenberg/pull/17841).
* Mark the [AsyncMode](https://github.com/WordPress/gutenberg/pull/18154) data module API as stable.
* Mark the [mediaUpload @wordpress/block-editor setting](https://github.com/WordPress/gutenberg/pull/18156) as stable.
* Add a **wpenv.json** [config file support for](https://github.com/WordPress/gutenberg/pull/18121) [@wordpress/env](https://github.com/WordPress/gutenberg/pull/18294).
### Various
* Refactor the way [HTML is escaped by the RichText](https://github.com/WordPress/gutenberg/pull/17994) component.
* Refactor and [simplify the block margins CSS](https://github.com/WordPress/gutenberg/pull/18346) in the editor.
* Use [HTTPS git clone](https://github.com/WordPress/gutenberg/pull/18136) in the Gutenberg release tool for more stability.
* Update [ExternalLink](https://github.com/WordPress/gutenberg/pull/18142), [BaseControl and FormTokenField](https://github.com/WordPress/gutenberg/pull/18165) components to use the VisuallyHidden component for the screen reader text.
* Add several components to Storybook:
* [Spinner](https://github.com/WordPress/gutenberg/pull/18145),
* [Draggable](https://github.com/WordPress/gutenberg/pull/18070),
* [RangeControl](https://github.com/WordPress/gutenberg/pull/17846),
* [FontSizePicker](https://github.com/WordPress/gutenberg/pull/18149),
* [Modal](https://github.com/WordPress/gutenberg/pull/18083),
* [Snackbar](https://github.com/WordPress/gutenberg/pull/18386),
* [ToggleControl](https://github.com/WordPress/gutenberg/pull/18388),
* [ResizableBox](https://github.com/WordPress/gutenberg/pull/18097/files).
* Refactor the [block-directory search to insert](https://github.com/WordPress/gutenberg/pull/17576) as an Inserter plugin.
* Improve the experimental [useColors React](https://github.com/WordPress/gutenberg/pull/18147) [hook](https://github.com/WordPress/gutenberg/pull/18286).
* Upgrade [Puppeteer](https://github.com/WordPress/gutenberg/pull/18205) to the last version.
* Update to the [last version of npm-package-json-lint](https://github.com/WordPress/gutenberg/pull/18160).
* **i18n**: Fix string concatenation in the [Verse block example](https://github.com/WordPress/gutenberg/pull/18365) and add `translators` string.
* Change Detection: Add an [e2e test case for post trashing](https://github.com/WordPress/gutenberg/pull/18290).
* Fix the [e2e tests watch command](https://github.com/WordPress/gutenberg/pull/18391).
### Experimental
* Block Content Areas:
* Support [loading block templates](https://github.com/WordPress/gutenberg/pull/18247) from themes.
* Navigation block:
* Add [default frontend styles](https://github.com/WordPress/gutenberg/pull/18094) for the Navigation block.
* Use [RichText for navigation menu item](https://github.com/WordPress/gutenberg/pull/18182) instead of TextControl.
* Add [block navigator](https://github.com/WordPress/gutenberg/pull/18202) to the inspector panel.
* Use an [SVG icon](https://github.com/WordPress/gutenberg/pull/18222) for the color selector.
* Add a new API for [horizontal movers](https://github.com/WordPress/gutenberg/pull/16615) and [use](https://github.com/WordPress/gutenberg/pull/18234) it for the navigation block.
* Add a new [Link creation](https://github.com/WordPress/gutenberg/pull/17846) [and](https://github.com/WordPress/gutenberg/pull/18405) [edition](https://github.com/WordPress/gutenberg/pull/18225) [UI](https://github.com/WordPress/gutenberg/pull/18285) and [use](https://github.com/WordPress/gutenberg/pull/18062) it for the navigation block.
* Add an [appender](https://github.com/WordPress/gutenberg/pull/18100) to the block navigator.
* Add a block [placeholder](https://github.com/WordPress/gutenberg/pull/18363).
* Various fixes and refactorings: [1](https://github.com/WordPress/gutenberg/pull/18189), [2](https://github.com/WordPress/gutenberg/pull/18178), [3](https://github.com/WordPress/gutenberg/pull/18188), [4](https://github.com/WordPress/gutenberg/pull/18153), [5](https://github.com/WordPress/gutenberg/pull/18221), [6](https://github.com/WordPress/gutenberg/pull/18278), [7](https://github.com/WordPress/gutenberg/pull/18172), [8](https://github.com/WordPress/gutenberg/pull/18346), [9](https://github.com/WordPress/gutenberg/pull/18376), [10](https://github.com/WordPress/gutenberg/pull/18150), [11](https://github.com/WordPress/gutenberg/pull/18292), [12](https://github.com/WordPress/gutenberg/pull/18374), [13](https://github.com/WordPress/gutenberg/pull/18367), [14](https://github.com/WordPress/gutenberg/pull/18350), [15](https://github.com/WordPress/gutenberg/pull/18412).
* Add [ResponsiveBlockControl](https://github.com/WordPress/gutenberg/pull/16790) component.
* Add initial [API for block patterns](https://github.com/WordPress/gutenberg/pull/18270).
### Documentation
* Add an introduction [README for Storybook](https://github.com/WordPress/gutenberg/pull/18245).
* Typos and fixes: [1](https://github.com/WordPress/gutenberg/pull/18187), [2](https://github.com/WordPress/gutenberg/pull/18198), [3](https://github.com/WordPress/gutenberg/pull/18204https://github.com/WordPress/gutenberg/pull/18204), [4](https://github.com/WordPress/gutenberg/pull/18218), [5](https://github.com/WordPress/gutenberg/pull/18221), [6](https://github.com/WordPress/gutenberg/pull/18226).
= 6.8.0 =
### Features
* [Support gradients](https://github.com/WordPress/gutenberg/pull/18001) in Cover block.
* Add a breadcrumb bar to support [block hierarchy selection](https://github.com/WordPress/gutenberg/pull/17838).
### Enhancements
* Cover block: change the [minimum height input step size](https://github.com/WordPress/gutenberg/pull/17927) to one.
* Allow setting a [display name for blocks](https://github.com/WordPress/gutenberg/pull/17519) based on their content in the BlockNavigator.
* [Hide the gradients panel](https://github.com/WordPress/gutenberg/pull/18091) if an empty set of gradients is explicitly defined.
* [Do not transform list items into paragraphs](https://github.com/WordPress/gutenberg/pull/18032) when deleting first list item and list is not empty.
* Replace inline styles with [classnames for the gradient palette](https://github.com/WordPress/gutenberg/pull/18008).
* [Preserve list attributes](https://github.com/WordPress/gutenberg/pull/17144) (start, type and reversed) when pasting or converting HTML to blocks.
### Bugs
* [Clear local autosaves](https://github.com/WordPress/gutenberg/pull/18051) after successful saves.
* Fix the [columns block](https://github.com/WordPress/gutenberg/pull/17968) width overflow issue when using more than two columns.
* Fix the [Link Rel input](https://github.com/WordPress/gutenberg/pull/17398) not showing the saved value of the link rel attribute.
* Fix JavaScript errors triggered when using [links without href](https://github.com/WordPress/gutenberg/pull/17928) in HTML mode.
* Move the [default list styles](https://github.com/WordPress/gutenberg/pull/17958) to the theme editor styles.
* Fix [Invalid import](https://github.com/WordPress/gutenberg/pull/17969) statement for deprecated call in the Modal component.
* Fix a small visual glitch in the [Publish button](https://github.com/WordPress/gutenberg/pull/18016).
* Prevent blank page when using the [Media Modal Edit Image "back"](https://github.com/WordPress/gutenberg/pull/18007) button.
* Allow the [shortcode transform](https://github.com/WordPress/gutenberg/pull/17925) to apply to all the provided shortcode aliases.
* Fix JavaScript error triggered when using arrows on an [empty URLInput](https://github.com/WordPress/gutenberg/pull/18088).
* Fix [extra margins added to Gallery blocks](https://github.com/WordPress/gutenberg/pull/18019) by list editor styles.
* Fix [custom button background color](https://github.com/WordPress/gutenberg/pull/18037) not reflected on reload.
* [Preserve List block attributes](https://github.com/WordPress/gutenberg/pull/18102) when splitting into multiple lists.
* Fix [checkbox styles](https://github.com/WordPress/gutenberg/pull/18108) when used in metaboxes.
* Make the [FontSizePicker style](https://github.com/WordPress/gutenberg/pull/18078) independent from WordPress core styles.
* Fix overlapping controls in the [Inline Image formatting toolbar](https://github.com/WordPress/gutenberg/pull/18090).
* Fix [strikethrough formatting](https://github.com/WordPress/gutenberg/pull/17187) when copy/pasting from Google Docs in Safari.
* Allow [media upload post processing](https://github.com/WordPress/gutenberg/pull/18106) for all 5xx REST API responses.
## Experiments
* Navigation block:
* Support [color customization](https://github.com/WordPress/gutenberg/pull/17832).
* Improve the [Link edition UI](https://github.com/WordPress/gutenberg/pull/17986).
* Block Content Areas:
* Implement a frontend [template loader](https://github.com/WordPress/gutenberg/pull/17626) based on the **wp_template** CPT.
* Add a temporary [UI to edit **wp_template**](https://github.com/WordPress/gutenberg/pull/17625) CPT posts.
* Add a [Site title block](https://github.com/WordPress/gutenberg/pull/17207).
### New APIs
* Add [VisuallyHidden](https://github.com/WordPress/gutenberg/pull/18022) component.
* Add [**@wordpress/base-styles**](https://github.com/WordPress/gutenberg/pull/17883) package to share the common variables/mixins used by the WordPress packages.
* Add [Platform component](https://github.com/WordPress/gutenberg/pull/18058) to allow writing platform (web, mobile) specific logic.
* Add isInvalidDate prop to [DatePicker](https://github.com/WordPress/gutenberg/pull/17498).
* @wordpress/env improvements:
* Support [custom ports](https://github.com/WordPress/gutenberg/pull/17697).
* Support using it for [themes](https://github.com/WordPress/gutenberg/pull/17732).
* Add a new experimental React hook to [support colors in blocks](https://github.com/WordPress/gutenberg/pull/16781).
* Add a new experimental [DimentionControl](https://github.com/WordPress/gutenberg/pull/16791) component.
### Various
* Storybook:
* Add a story for the [CheckboxControl](https://github.com/WordPress/gutenberg/pull/17891) component.
* Add a story for the [Dashicon](https://github.com/WordPress/gutenberg/pull/18027) component.
* Add a story for the [ColorPalette](https://github.com/WordPress/gutenberg/pull/17997) component.
* Add a story for the [ColorPicker](https://github.com/WordPress/gutenberg/pull/18013) component.
* Add a story for the [ExternalLink](https://github.com/WordPress/gutenberg/pull/18084) component.
Add knobs to the [ColorIndicator Story](https://github.com/WordPress/gutenberg/pull/18015).
* Several other [enhancements to existing stories](https://github.com/WordPress/gutenberg/pull/18030).
* [Linting fixes](https://github.com/WordPress/gutenberg/pull/17981) for Storybook config.
* Fix Lint warnings triggered by [JSDoc definitions](https://github.com/WordPress/gutenberg/pull/18025).
* [Reorganize e2e tests](https://github.com/WordPress/gutenberg/pull/17990) [specs](https://github.com/WordPress/gutenberg/pull/18020) into three folders: editor, experimental and plugin.
* Cleanup [skipped e2e tests](https://github.com/WordPress/gutenberg/pull/18003).
* Add a [link to Storybook](https://github.com/WordPress/gutenberg/pull/17982) from the Gutenberg playground.
* Optimize the **@wordpress/compose** package to [support tree-shaking](https://github.com/WordPress/gutenberg/pull/17945).
* Code Quality:
* Refactor the [Button block edit function](https://github.com/WordPress/gutenberg/pull/18006) to use a functional component.
* Change the name of the [accumulated variables](https://github.com/WordPress/gutenberg/pull/17893) in reduce functions.
* Remove wrapper around the [Table block cells](https://github.com/WordPress/gutenberg/pull/17711).
* Fix several issues related to [Node 12](https://github.com/WordPress/gutenberg/pull/18054) [becoming](https://github.com/WordPress/gutenberg/pull/18057) LTS.
* Add the [Block Inspector](https://github.com/WordPress/gutenberg/pull/18077) to the Gutenberg playground.
### Documentation
* Enhance the [Git workflow](https://github.com/WordPress/gutenberg/pull/17662) documentation.
* Clarify [block naming conventions](https://github.com/WordPress/gutenberg/pull/18117).
* Tweaks and typos: [1](https://github.com/WordPress/gutenberg/pull/17980), [2](https://github.com/WordPress/gutenberg/pull/18039).
= 6.7.0 =
### Features
* Add [gradient backgrounds support](https://github.com/WordPress/gutenberg/pull/17169) to the Button block.
### Bug Fixes
* i18n : Include the plural version of the “[remove block](https://github.com/WordPress/gutenberg/pull/17665)” string.
* Update dropdown menu items to match [hover](https://github.com/WordPress/gutenberg/pull/17621) [style](https://github.com/WordPress/gutenberg/pull/17581) in other places.
* Smoothly [reposition Popovers on scroll](https://github.com/WordPress/gutenberg/pull/17699).
* Fix [margin styles for Gallery](https://github.com/WordPress/gutenberg/pull/17694) and Social links blocks.
* Fix [popovers hidden on mobile](https://github.com/WordPress/gutenberg/pull/17696).
* Ensure [sidebar plugins do not get auto-closed](https://github.com/WordPress/gutenberg/pull/17712) when opened on small screens.
* Fix the design of the [Checkbox component in IE11](https://github.com/WordPress/gutenberg/pull/17714).
* Add [has-text-color](https://github.com/WordPress/gutenberg/pull/17742) classname to heading block.
* Prevent [figure margin reset CSS](https://github.com/WordPress/gutenberg/pull/17737) from being included in the frontend.
* Fix the [scaling of the pinned plugins menu icons](https://github.com/WordPress/gutenberg/pull/17752).
* Fix [Heading and paragraph colors](https://github.com/WordPress/gutenberg/pull/17728) not applied inside the cover block.
* [Close Nux tips](https://github.com/WordPress/gutenberg/pull/17663) when clicking outside the tip.
* Fix [meta attribute source](https://github.com/WordPress/gutenberg/pull/17820) for post types other than post.
* Fix ”[Open in New Tab](https://github.com/WordPress/gutenberg/pull/17794)” not being persisted.
* Fix [redo](https://github.com/WordPress/gutenberg/pull/17827) [behavior](https://github.com/WordPress/gutenberg/pull/17861) and expand test coverage.
* I18n: Fix missing translation for the [“All content copied” string](https://github.com/WordPress/gutenberg/pull/17828).
* Fix the [block preview padding](https://github.com/WordPress/gutenberg/pull/17807) in themes with custom backgrounds.
* Fix [merging list blocks](https://github.com/WordPress/gutenberg/pull/17845) with indented list items.
* Fix [inline image controls](https://github.com/WordPress/gutenberg/pull/17750) display condition.
* Fix clicking the [redirect element](https://github.com/WordPress/gutenberg/pull/17798) focuses the inserted paragraph.
* Fix [editing meta attributes](https://github.com/WordPress/gutenberg/pull/17850) with multiple set to true.
* Add [No Preview Available](https://github.com/WordPress/gutenberg/pull/17848) text to the inserter preview panel.
* [Prevent block controls from disappearing](https://github.com/WordPress/gutenberg/pull/17876) when switching the List block type.
* Avoid [trailing space](https://github.com/WordPress/gutenberg/pull/17842) at the end of a translatable string.
* Fix [left aligned nested blocks](https://github.com/WordPress/gutenberg/pull/17804).
* Fix the top margin of the [RadioControl help text](https://github.com/WordPress/gutenberg/pull/17677).
* Fix [invalid HTML](https://github.com/WordPress/gutenberg/pull/17754) used in the Featured Image panel.
* Make sure that all [edits after saving](https://github.com/WordPress/gutenberg/pull/17888) are considered persistent by default.
* Ensure that [sidebar is closed on the first visit](https://github.com/WordPress/gutenberg/pull/17902) on small screens.
* Update the [columns block example](https://github.com/WordPress/gutenberg/pull/17904) to avoid overlapping issues.
* Remove unnecessary default styles for [H2 heading inside Cover blocks](https://github.com/WordPress/gutenberg/pull/17815).
* Fix [Media & Text block alignment](https://github.com/WordPress/gutenberg/pull/10812) in IE11.
* Remove [unnecessary padding](https://github.com/WordPress/gutenberg/pull/17907https://github.com/WordPress/gutenberg/pull/17907) in the Columns block.
* Fix the [Columns block height](https://github.com/WordPress/gutenberg/pull/17901) in IE11.
* Correctly update [RichText value after undo](https://github.com/WordPress/gutenberg/pull/17840).
* Prevent the [snackbar link components](https://github.com/WordPress/gutenberg/pull/17887) from hiding on focus.
* Fix [block toolbar position](https://github.com/WordPress/gutenberg/pull/17894) in IE11.
* Retry [uploading images](https://github.com/WordPress/gutenberg/pull/17858) on failures.
### Performance
* Avoid [continuously reset browser selection](https://github.com/WordPress/gutenberg/pull/17869) (improve typing performance in iOS).
### Enhancements
* Polish [FontSize Picker design](https://github.com/WordPress/gutenberg/pull/17647).
* Use body color for the [post publish panel](https://github.com/WordPress/gutenberg/pull/17731).
* Limit the width and height of the [pinnable plugins icons](https://github.com/WordPress/gutenberg/pull/17722).
* Add a [max width to the Search block](https://github.com/WordPress/gutenberg/pull/17648) input.
### Experiments
* Menu Navigation block:
* Implement initial state containing [top level pages](https://github.com/WordPress/gutenberg/pull/17637).
* Fix [menu alignment](https://github.com/WordPress/gutenberg/pull/17630).
* Fix the [classname](https://github.com/WordPress/gutenberg/pull/17853) in frontend.
* Block Directory
* Change the [relative time string](https://github.com/WordPress/gutenberg/pull/17535).
* Widgets Screen
* Fix the [styling of the inspector panel](https://github.com/WordPress/gutenberg/pull/17880).
### Documentation
* Fix [@wordpress/data-controls examples](https://github.com/WordPress/gutenberg/pull/17773).
* Typos and tweaks: [1](https://github.com/WordPress/gutenberg/pull/17821), [2](https://github.com/WordPress/gutenberg/pull/17909).
### Various
* Introduce the [@wordpress/env](https://github.com/WordPress/gutenberg/pull/17668) package, A zero-config, self-contained local WordPress environment for development and testing.
* Add [Storybook](https://github.com/WordPress/gutenberg/pull/17475) [to](https://github.com/WordPress/gutenberg/pull/17762) develop and showcase UI components:
* [Add](https://github.com/WordPress/gutenberg/pull/17910) [ButtonGroup](https://github.com/WordPress/gutenberg/pull/17884) component.
* Add [ScrollLock](https://github.com/WordPress/gutenberg/pull/17886) component.
* Add [Animate](https://github.com/WordPress/gutenberg/pull/17890https://github.com/WordPress/gutenberg/pull/17890) component.
* Add [Icon and IconButton](https://github.com/WordPress/gutenberg/pull/17868) components.
* Add [ClipboardButton](https://github.com/WordPress/gutenberg/pull/17913) component.
* Add [ColorIndicator](https://github.com/WordPress/gutenberg/pull/17924) component.
* [Remove RichText](https://github.com/WordPress/gutenberg/pull/17607) [wrapper](https://github.com/WordPress/gutenberg/pull/17713) and use Popover for the inline toolbar.
* Improve the way the [lock file](https://github.com/WordPress/gutenberg/pull/17705) handles local dependencies.
* Refactor [ColorPalette](https://github.com/WordPress/gutenberg/pull/17154) by extracting its design.
* Improve [E2E test reliability](https://github.com/WordPress/gutenberg/pull/17679) by consuming synchronous data and bailing on save failure.
* Replace the [isDismissable prop with isDismissible](https://github.com/WordPress/gutenberg/pull/17689) in the Modal component.
* Add eslint-plugin-jest to the default @wordpress/scripts [linting config](https://github.com/WordPress/gutenberg/pull/17744).
* Update @wordpress/scripts to use the [latest version of webpack](https://github.com/WordPress/gutenberg/pull/17753) for build and start commands.
* Cleanup [Dashicon component](https://github.com/WordPress/gutenberg/pull/17741).
* Update the [Excerpt help link](https://github.com/WordPress/gutenberg/pull/17753).
* [Release tool](https://github.com/WordPress/gutenberg/pull/17717): fix wrong package.json used when bumping the stable released version.
* Fix several [typos](https://github.com/WordPress/gutenberg/pull/17666) in [code](https://github.com/WordPress/gutenberg/pull/17800) and [files](https://github.com/WordPress/gutenberg/pull/17782).
* Update [E2E tests](https://github.com/WordPress/gutenberg/pull/17859) to accommodate WP 5.3 Beta 3 changes.
* Define the “[sideEffects](https://github.com/WordPress/gutenberg/pull/17862)” property for @wordpress packages.
* Add [nested embed e2e test](https://github.com/WordPress/gutenberg/pull/15909).
* I18N: Always return the [translation file](https://github.com/WordPress/gutenberg/pull/17900) prefixed with `gutenberg-`.
* Use [wp.org CDN for images](https://github.com/WordPress/gutenberg/pull/17935) used in block preview.
= 6.6.0 =
### Enhancements
- Turn [Stack on mobile toggle on by default](https://github.com/WordPress/gutenberg/pull/14364) in the Media & Text block.
- Only show the Inserter [help panel in the topbar inserter](https://github.com/WordPress/gutenberg/pull/17545).
- Use minimum height instead of height for [Cover height control label](https://github.com/WordPress/gutenberg/pull/17634).
- Update the [buttons](https://github.com/WordPress/gutenberg/pull/17645) [styling](https://github.com/WordPress/gutenberg/pull/17651) to match core.
- Add [preview examples](https://github.com/WordPress/gutenberg/pull/17493) for multiple core blocks.
### New APIs
- Implement [EntityProvider](https://github.com/WordPress/gutenberg/pull/17153) and use it to refactor the meta block attributes.
### Experimental
- Introduce the [wp_template custom post type](https://github.com/WordPress/gutenberg/pull/17513) to preempt the block content areas work.
- Use the [entities store for the widgets](https://github.com/WordPress/gutenberg/pull/17319) screen.
### Bugs
- Fix javascript error potentially triggered when using [saveEntityRecord action](https://github.com/WordPress/gutenberg/pull/17492).
- Avoid marking the [post as dirty when forcing an undo level](https://github.com/WordPress/gutenberg/pull/17487) (RichText).
- Fix [Post Publish Panel overlapping the user profile](https://github.com/WordPress/gutenberg/pull/17075) dropdown menu.
- Fix and align [collapsing logic for Save Draft and Saved](https://github.com/WordPress/gutenberg/pull/17506) button states.
- [Remove Reusable block name and description](https://github.com/WordPress/gutenberg/pull/17530) from the inserter help panel.
- Fix spacing issues in the [inserter panel previews](https://github.com/WordPress/gutenberg/pull/17531).
- Gallery block: [Don't show the caption gradient overlay](https://github.com/WordPress/gutenberg/pull/17561) unless image is selected or a caption is set.
- Gallery block: Fix [custom alignment layouts](https://github.com/WordPress/gutenberg/pull/17586)
- Fix [dirtiness detection when server-side saving filters](https://github.com/WordPress/gutenberg/pull/17532) are used.
- Remove [wrong i18n](https://github.com/WordPress/gutenberg/pull/17546) [domain](https://github.com/WordPress/gutenberg/pull/17591).
- Fix [invalid block warning](https://github.com/WordPress/gutenberg/pull/17572) panel.
- Fix various issues in related to the [BlockDirectory inserter](https://github.com/WordPress/gutenberg/pull/17517).
- Cover block: [Show Height control](https://github.com/WordPress/gutenberg/pull/17371) only if an image background is selected.
- Fix [RichText composition input](https://github.com/WordPress/gutenberg/pull/17610) issues.
- Fix [block placeholders spacing](https://github.com/WordPress/gutenberg/pull/17616) after Core inputs updates.
- Fix [checkbox design](https://github.com/WordPress/gutenberg/pull/17571) (color and background) after Core updates.
- Fix [radio buttons design](https://github.com/WordPress/gutenberg/pull/17613) after Core updates.
- Remove any existing subscriptions before adding a new save metaboxes sub to [prevent multiple saves](https://github.com/WordPress/gutenberg/pull/17522).
- [Clear auto-draft titles](https://github.com/WordPress/gutenberg/pull/17633) on save if not changed explicitly.
- Fix [block error boundary](https://github.com/WordPress/gutenberg/pull/17602).
- Fix [select elements](https://github.com/WordPress/gutenberg/pull/17646) design in the sidebar after Core updates.
- Allow using [space with modifier keys](https://github.com/WordPress/gutenberg/pull/17611) at the beginning of list items.
- Fix the [inputs height](https://github.com/WordPress/gutenberg/pull/17659) after Core updates.
- fix conflict between [remote and local autosaves](https://github.com/WordPress/gutenberg/pull/17501).
### Performance
- Request the [Image block’s metadata](https://github.com/WordPress/gutenberg/pull/17504) only if the block is selected.
- Improve the performance of the [block reordering animation in Safari](https://github.com/WordPress/gutenberg/pull/17573).
- Remove [Autocomplete component wrappers](https://github.com/WordPress/gutenberg/pull/17580).
### Various
- [Replace registered social links blocks](https://github.com/WordPress/gutenberg/pull/17494) if already registered in Core.
- More stable [List block e2e](https://github.com/WordPress/gutenberg/pull/17482) [tests](https://github.com/WordPress/gutenberg/pull/17599).
- Add e2e tests to validate the [date picker UI](https://github.com/WordPress/gutenberg/pull/17490) behavior.
- Add e2e tests to validate the [local auto-save](https://github.com/WordPress/gutenberg/pull/17503) behavior.
- Mark the [social links block as experimental](https://github.com/WordPress/gutenberg/pull/17526).
- [Update the e2e tests](https://github.com/WordPress/gutenberg/pull/17566) to accommodate the new theme.
- Align the [version of lodash](https://github.com/WordPress/gutenberg/pull/17528) with WordPress core.
- Add phpcs rule to [detect unused variables](https://github.com/WordPress/gutenberg/pull/17300).
- Simplify [Block Selection Reducer](https://github.com/WordPress/gutenberg/pull/17467).
- Add [has-background classes](https://github.com/WordPress/gutenberg/pull/17529) to pullquote and Media & Text blocks for consistency.
- Tidy up [button vertical align styles](https://github.com/WordPress/gutenberg/pull/17601).
- Update [browserslist](https://github.com/WordPress/gutenberg/pull/17643) dependency.
### Documentation
- Add [scripts/styles dependency management](https://github.com/WordPress/gutenberg/pull/17489) documentation.
- Update [docs with the example property](https://github.com/WordPress/gutenberg/pull/17507) used for Inserter previews.
- Typos and tweaks: [1](https://github.com/WordPress/gutenberg/pull/17449), [2](https://github.com/WordPress/gutenberg/pull/17499), [3](https://github.com/WordPress/gutenberg/pull/17514), [4](https://github.com/WordPress/gutenberg/pull/17502), [5](https://github.com/WordPress/gutenberg/pull/17595).
### Mobile
- Add [rounded corners on media placeholder](https://github.com/WordPress/gutenberg/pull/16729) and unsupported blocks.
- Fix link editing when the [cursor is at the beginning of a link](https://github.com/WordPress/gutenberg/pull/17631).
= 6.5.0 =
### Features
* Add a [new](https://github.com/WordPress/gutenberg/pull/17402) [Social links](https://github.com/WordPress/gutenberg/pull/16897) [block](https://github.com/WordPress/gutenberg/pull/17380).
* Support [border radius changes](https://github.com/WordPress/gutenberg/pull/17253) in the Button block.
* Support [adding a caption to the Gallery block](https://github.com/WordPress/gutenberg/pull/17101).
* Support [local autosaves](https://github.com/WordPress/gutenberg/pull/16490).
### Enhancements
* [Disable the click-through](https://github.com/WordPress/gutenberg/pull/17239) behavior in desktop.
* Update the [labels width](https://github.com/WordPress/gutenberg/pull/14478) to fit their content.
* Avoid displaying console warnings when [blocks are upgraded using deprecated versions](https://github.com/WordPress/gutenberg/pull/16862).
* Reduce the [padding around the in-between block inserter](https://github.com/WordPress/gutenberg/pull/17136).
* Improve the design of [the](https://github.com/WordPress/gutenberg/pull/17315) [block movers](https://github.com/WordPress/gutenberg/pull/17216).
* Align the [Gallery block image](https://github.com/WordPress/gutenberg/pull/17316) [controls](https://github.com/WordPress/gutenberg/pull/17374) with the block movers design.
* [Remove child blocks](https://github.com/WordPress/gutenberg/pull/17128) from the block manager.
* [Remove duplicated "Enable" label](https://github.com/WordPress/gutenberg/pull/17375) from the options panel.
* Use [sentence case](https://github.com/WordPress/gutenberg/pull/17336) for all tooltips.
* [Remove the forced gray scale](https://github.com/WordPress/gutenberg/pull/17415) from the category icons.
* Move the [alignment controls to toolbar of the Heading](https://github.com/WordPress/gutenberg/pull/17419) block.
* Use the [featured image frame](https://github.com/WordPress/gutenberg/pull/17410) in the Media modal.
### Bug Fixes
* Update the [Post Schedule label](https://github.com/WordPress/gutenberg/pull/15757) to correctly reflect the date and time display settings.
* Clean up the [block toolbar position](https://github.com/WordPress/gutenberg/pull/17197) for wide full blocks.
* Fix the [cropped focus indicator](https://github.com/WordPress/gutenberg/pull/17215) in the block inserter.
* Browser incompatibilities:
* [Fallback to setTimeout in RichText](https://github.com/WordPress/gutenberg/pull/17213) if no requestIdleCallback is not supported.
* [Block toolbar fixes](https://github.com/WordPress/gutenberg/pull/17214) for IE11.
* Fix [Backspace usage in RichText](https://github.com/WordPress/gutenberg/pull/17256) for IE11.
* Prevent clicking the [next/previous month in the Post Schedule](https://github.com/WordPress/gutenberg/pull/17201) popover from closing it.
* Prevent the [private posts from triggering the unsaved changes](https://github.com/WordPress/gutenberg/pull/17210) [warnings](https://github.com/WordPress/gutenberg/pull/17257) after saving.
* Fix the usage of the [useReducedMotion hook in Node.js](https://github.com/WordPress/gutenberg/pull/17165) context.
* A11y:
* Use [darker form field borders](https://github.com/WordPress/gutenberg/pull/17218).
* Fix the [modal escape key propagation](https://github.com/WordPress/gutenberg/pull/17297).
* [Move focus back from the Modal to the More Menu](https://github.com/WordPress/gutenberg/pull/16964) when it was used to open the Modal.
* [Trim leading and trailing whitespaces](https://github.com/WordPress/gutenberg/pull/17320) when inserting links.
* Prevent using the paragraph block when [pasting unformatted text into RichText](https://github.com/WordPress/gutenberg/pull/17140).
* Fix styling of [classic block's block controls](https://github.com/WordPress/gutenberg/pull/17323).
* Fix the [showing/hiding logic of the **Group** menu item](https://github.com/WordPress/gutenberg/pull/17353) in the block settings menu.
* Fix [invalid HTML nesting](https://github.com/WordPress/gutenberg/pull/17342) of buttons.
* Fix [React warning when using withFocusReturn](https://github.com/WordPress/gutenberg/pull/17354) Higher-order component.
* Fix [lengthy content cuts](https://github.com/WordPress/gutenberg/pull/17365) in the Cover block.
* Disable [multi-selection when resizing](https://github.com/WordPress/gutenberg/pull/17359).
* Fix the [permalink UI in RTL](https://github.com/WordPress/gutenberg/pull/13919) languages.
* Fix multiple issues related to the [reusable blocks](https://github.com/WordPress/gutenberg/pull/14367) editing/previewing UI.
* Remove filter that [unsets auto-draft titles](https://github.com/WordPress/gutenberg/pull/17317).
* Fix the [Move to trash](https://github.com/WordPress/gutenberg/pull/17427) button redirection.
* Prevent [undo/redo history cleaning on autosaves](https://github.com/WordPress/gutenberg/pull/17420).
* Add i18n support for title [Content Blocks string](https://github.com/WordPress/gutenberg/pull/17435).
* Add missing extra [classnames to the Column block](https://github.com/WordPress/gutenberg/pull/17422).
* Fix JavaScript error triggered when using a [multi-line RichText](https://github.com/WordPress/gutenberg/pull/17447).
* Fix [RichText](https://github.com/WordPress/gutenberg/pull/17451) [focus](https://github.com/WordPress/gutenberg/pull/17450) related issues.
* Fix [undo levels](https://github.com/WordPress/gutenberg/pull/17259) [inconsistencies](https://github.com/WordPress/gutenberg/pull/17452).
* Fix [multiple post meta fields edits](https://github.com/WordPress/gutenberg/pull/17455).
* Fix [selecting custom colors](https://github.com/WordPress/gutenberg/pull/17381) in RTL languages.
### Experiments
* Add [one-click search and install blocks](https://github.com/WordPress/gutenberg/pull/17431) from the block directory to the inserter.
* Refactor the [Navigation block](https://github.com/WordPress/gutenberg/pull/16796) [to](https://github.com/WordPress/gutenberg/pull/17343) [be](https://github.com/WordPress/gutenberg/pull/17328) a dynamic block.
* Add a [block navigator to the Navigation](https://github.com/WordPress/gutenberg/pull/17265) [block](https://github.com/WordPress/gutenberg/pull/17446).
* Only show the [customizer block based widgets](https://github.com/WordPress/gutenberg/pull/16956) if the experimental widget screen is enabled.
### APIs
* Add a [disableDropZone prop for MediaPlaceholder](https://github.com/WordPress/gutenberg/pull/17077) component.
* Add [post autosave locking](https://github.com/WordPress/gutenberg/pull/16249).
* [PluginPrePublishPanel](https://github.com/WordPress/gutenberg/pull/16378) and [PluginPostPublishPanel](https://github.com/WordPress/gutenberg/pull/16383) support icon prop and inherits from registerPlugin.
* Allow [disabling the Post Status](https://github.com/WordPress/gutenberg/pull/17117) settings panel.
* Restore the [keepPlaceholderOnFocus](https://github.com/WordPress/gutenberg/pull/17439) [RichText](https://github.com/WordPress/gutenberg/pull/17445) prop.
### Various
* Upgrade [React and React DOM](https://github.com/WordPress/gutenberg/pull/16982) to 16.9.0.
* Add [TypeScript JSDoc linting](https://github.com/WordPress/gutenberg/pull/17014) to the @wordpress/url package.
* Run [npm audit](https://github.com/WordPress/gutenberg/pull/17192) to fix the reported vulnerabilities.
* Switch the local environment to an [environment based on the](https://github.com/WordPress/gutenberg/pull/17004) [Core setup](https://github.com/WordPress/gutenberg/pull/17296).
* Set a constant namespace for [module sourcemaps](https://github.com/WordPress/gutenberg/pull/17024).
* [Refactor the loading animation](https://github.com/WordPress/gutenberg/pull/17106) to rely on the Animate component.
* Code improvements to [block PHP files](https://github.com/WordPress/gutenberg/pull/17288).
* Enable the [duplicate style property](https://github.com/WordPress/gutenberg/pull/17287) linting rule.
* Update [Husky & Lint-staged](https://github.com/WordPress/gutenberg/pull/17310) to the latest versions.
* Restore the usage of the [latest npm version](https://github.com/WordPress/gutenberg/pull/17171) in CI.
* Add [ESLint as peer dependency to eslint-plugin](https://github.com/WordPress/gutenberg/pull/17417).
* [Conditionally include the block styles](https://github.com/WordPress/gutenberg/pull/17429) functionality to avoid conflicts with Core.
* Add missing [deprecated setFocusedElement prop](https://github.com/WordPress/gutenberg/pull/17421) to the RichText component.
* Support [generating assets in PHP format](https://github.com/WordPress/gutenberg/pull/17298) in the webpack dependency extraction plugin.
### Documentation
* Update the [reviews and merging documentation](https://github.com/WordPress/gutenberg/pull/16915).
* Fix [type docs](https://github.com/WordPress/gutenberg/pull/17206) for the Notices package.
* Add a link to the [fixtures tests document](https://github.com/WordPress/gutenberg/pull/17283) in the Testing Overview.
* Adds documentation for the [onClose prop of MediaUpload](https://github.com/WordPress/gutenberg/pull/17403).
* Tweaks and typos: [1](https://github.com/WordPress/gutenberg/pull/17097), [2](https://github.com/WordPress/gutenberg/pull/17285), [3](https://github.com/WordPress/gutenberg/pull/17292), [4](https://github.com/WordPress/gutenberg/pull/17286), [5](https://github.com/WordPress/gutenberg/pull/17304), [6](https://github.com/WordPress/gutenberg/pull/17349), [7](https://github.com/WordPress/gutenberg/pull/17377), [8](https://github.com/WordPress/gutenberg/pull/17436).
= 6.4.0 =
### Features
- Add the option to [select the style that is automatically applied](https://github.com/WordPress/gutenberg/pull/16465).
- Add the option to [resize Cover Block ](https://github.com/WordPress/gutenberg/pull/17143).
- Allow directly setting a [solid background color on Cover](https://github.com/WordPress/gutenberg/pull/17041) block.
- Add [list start, reversed settings](https://github.com/WordPress/gutenberg/pull/15113).
- Add a [help panel to the inserter available in all blocks](https://github.com/WordPress/gutenberg/pull/16813).
- [Typewriter experience](https://github.com/WordPress/gutenberg/pull/16460).
- Add [circle-crop variation](https://github.com/WordPress/gutenberg/pull/16475) to Image block.
### Enhancements
- Add [overflow support inside block switcher](https://github.com/WordPress/gutenberg/pull/16984).
- Update [GitHub action exit codes.](https://github.com/WordPress/gutenberg/pull/17002)
- Core Data: [return updated record in saveEntityRecord](https://github.com/WordPress/gutenberg/pull/17030).
- Latest Posts Block: [(no title) instead of (Untitled) for a post without a title](https://github.com/WordPress/gutenberg/pull/17074).
- [Remove borders around inserter items for blocks with children blocks](https://github.com/WordPress/gutenberg/pull/17083).
- Add [disabled block count](https://github.com/WordPress/gutenberg/pull/17103) in the block manager.
- Writing Flow:
- Add [splitting in the quote block](https://github.com/WordPress/gutenberg/pull/17121).
- Allow [undoing of patterns with BACKSPACE and ESC.](https://github.com/WordPress/gutenberg/pull/14776)
### Experiments
- Widgets Screen:
- Fix: [Blocks are too close together](https://github.com/WordPress/gutenberg/issues/16992).
- Add [Button block appender](https://github.com/WordPress/gutenberg/pull/16971).
### New APIs
- Add [callbacks to ServerSideRenderer](https://github.com/WordPress/gutenberg/pull/16512) to handle failures with custom renderers.
- Add the [block example API](https://github.com/WordPress/gutenberg/pull/17124) and use it for inserter and switcher previews.
- Enable an [optional namespace parameter for hasAction & hasFilter ](https://github.com/WordPress/gutenberg/pull/15362).
### Bug Fixes
- The [duplicate button appears even if the block is not allowed](https://github.com/WordPress/gutenberg/pull/17007).
- [Double scrollbar appearing](https://github.com/WordPress/gutenberg/pull/17031) in full-screen mode.
- RichText: [ignore selection changes during composition](https://github.com/WordPress/gutenberg/pull/16960)
- Missing [default functions as props in BlockEditorProvider](https://github.com/WordPress/gutenberg/pull/17036).
- [Button block does not center](https://github.com/WordPress/gutenberg/pull/17063) on the editor.
- Guard [block component against zombie state](https://github.com/WordPress/gutenberg/pull/17092) bug.
- Add [truthy check for the Popover component](https://github.com/WordPress/gutenberg/pull/17100) onClose prop before calling it.
- Make InnerBlocks [only force the template on directly set lockings](https://github.com/WordPress/gutenberg/pull/16973).
- Check to [ensure focus has intentionally left the wrapped component in withFocusOutside](https://github.com/WordPress/gutenberg/pull/17051) HOC.
- Correctly [transform images with external sources](https://github.com/WordPress/gutenberg/pull/16548) into a gallery.
- [Block toolbar appears above sidebar](https://github.com/WordPress/gutenberg/pull/17108) on medium viewports.
- [Basecontrol name undefined](https://github.com/WordPress/gutenberg/pull/17044/files) triggring eslint-plugin TypeError.
- [Image flickering & focus lose](https://github.com/WordPress/gutenberg/pull/17175) on resizing.
- Add [get_item_schema function to WP_REST_Widget_Areas_Controller ](https://github.com/WordPress/gutenberg/pull/15981).
- [Empty Classic Editor inside innerBlock fatal error](https://github.com/WordPress/gutenberg/pull/17164).
- [Changing month in post publish date closes the popover](https://github.com/WordPress/gutenberg/pull/17164).
### Various
- Update [re-resizable dependency](https://github.com/WordPress/gutenberg/pull/17011)
- Use [mixins in button styles instead of media queries.](https://github.com/WordPress/gutenberg/pull/17012)
- [Fix performance tests with the introduction of the navigation mode](https://github.com/WordPress/gutenberg/pull/17034)
- RichText code improvements: [#16905](https://github.com/WordPress/gutenberg/pull/16905), [#16962](https://github.com/WordPress/gutenberg/pull/16962).
- Scripts:
- Improve the way [test files are discovered](https://github.com/WordPress/gutenberg/pull/17033).
- Improve [recommended settings](https://github.com/WordPress/gutenberg/pull/17027) included in the package.
- Use [the SCSS shared stylelint-config-wordpress config](https://github.com/WordPress/gutenberg/pull/17060).
- [Ignore the WordPress directory](https://github.com/WordPress/gutenberg/pull/16243) in stylelint.
- Fix: [edit post sets some default block appender styles](https://github.com/WordPress/gutenberg/pull/16943).
- Build: [remove global install of latest npm](https://github.com/WordPress/gutenberg/pull/17134).
- Project automation:
- Rewrite [actions using JavaScript](https://github.com/WordPress/gutenberg/pull/17080).
- Fix: [Add first-time contributor label](https://github.com/WordPress/gutenberg/pull/17156).
- Fix: [Add milestone](https://github.com/WordPress/gutenberg/pull/17157).
- Remove [unused CSS from ColorPalette](https://github.com/WordPress/gutenberg/pull/17152) component.
### Documentation
- Add [examples for the lockPostSaving and unlockPostSaving](https://github.com/WordPress/gutenberg/pull/16713)actions.
- Add guidance for [adding/proposing/suggesting new components](https://github.com/WordPress/gutenberg/pull/16845) to the wordpress/components npm package.
- Add section about [updating package after new releases](https://github.com/WordPress/gutenberg/pull/17026).
- Add [ESNext examples to format API](https://github.com/WordPress/gutenberg/pull/16804) tutorial.
- Document [server-side functions that allow registering block styles](https://github.com/WordPress/gutenberg/pull/16997).
### Mobile
- [Reset toolbar scroll on content change](https://github.com/WordPress/gutenberg/pull/16945).
- [Extract caption component](https://github.com/WordPress/gutenberg/pull/16825).
- [Not use ListEdit](https://github.com/WordPress/gutenberg/pull/17070).
- [Hide replaceable blocks when adding blocks](https://github.com/WordPress/gutenberg/pull/16931).
- Make [tapping at the end of post always insert at the end of the post.](https://github.com/WordPress/gutenberg/pull/16934)
= 6.3.0 =
### Features
- A11y: Support [Navigation and Edit modes](https://github.com/WordPress/gutenberg/pull/16500) to ease navigating between blocks.
- [Support text alignments](https://github.com/WordPress/gutenberg/pull/16111) in Table block columns.
- Support changing the [separator block color](https://github.com/WordPress/gutenberg/pull/16784).
### Enhancements
- Improvements to the BlockPreview component:
- Support [previewing a multiple blocks](https://github.com/WordPress/gutenberg/pull/16033) (a template).
- [Unify BlockPreview and BlockPreviewContent](https://github.com/WordPress/gutenberg/pull/16801) into a unique component.
- Hide [block appenders](https://github.com/WordPress/gutenberg/pull/16887).
- [Expose the component](https://github.com/WordPress/gutenberg/pull/16834) in the block-editor module.
- [Scale the preview content](https://github.com/WordPress/gutenberg/pull/16873) according to the width of the preview container.
- Improvements to the Modal component design:
- Increase the [padding of the Modal component](https://github.com/WordPress/gutenberg/pull/16690).
- Correct the [position of the close button](https://github.com/WordPress/gutenberg/pull/16883).
- Use classnames instead of inline styles for text alignments in:
- [Verse block](https://github.com/WordPress/gutenberg/pull/16777).
- [Quote block](https://github.com/WordPress/gutenberg/pull/16779).
- [Paragraph block](https://github.com/WordPress/gutenberg/pull/16794).
- Add a [purple color option](https://github.com/WordPress/gutenberg/pull/16833) to the default color palette.
- A11y: Visible [focus and active styles for Windows high contrast mode](https://github.com/WordPress/gutenberg/pull/16554).
- Improve the design of the [inline image controls](https://github.com/WordPress/gutenberg/pull/16793) in the Gallery block.
- I18n: Align the [Read more string](https://github.com/WordPress/gutenberg/pull/16865) with WordPress Core.
- Removes the word-break :break-all CSS rule from the [table cells](https://github.com/WordPress/gutenberg/pull/16741).
- Update the [Notice dismiss button](https://github.com/WordPress/gutenberg/pull/16926) to match other Gutenberg UI (color and icon).
- Modifies the shortcut hierarchy in the [keyboard shortcuts modal](https://github.com/WordPress/gutenberg/pull/16724).
- Remove [edit gallery toolbar button](https://github.com/WordPress/gutenberg/pull/16778).
- Add the possibility to [disable document settings panels registered by plugins](https://github.com/WordPress/gutenberg/pull/16900).
- [ESLint plugin: Enable `wp` global by default](https://github.com/WordPress/gutenberg/pull/16904) in the `recommended` config.
### Experiments
- Add a settings page to the plugin to [enable/disable experimental features](https://github.com/WordPress/gutenberg/pull/16626).
- Add [padding when interacting with](https://github.com/WordPress/gutenberg/pull/14961) [nested blocks](https://github.com/WordPress/gutenberg/pull/16820) to ease parent block selections.
- Widgets Screen:
- Prevent the [block toolbar from overlapping](https://github.com/WordPress/gutenberg/pull/16765) the widget area header.
- Add the [BlockEditorKeyboardShortcuts](https://github.com/WordPress/gutenberg/pull/16972) component.
- Fixed [block paddings](https://github.com/WordPress/gutenberg/pull/16944).
### New APIs
- Support [Entities](https://github.com/WordPress/gutenberg/pull/16823) [Local Edits](https://github.com/WordPress/gutenberg/pull/16867) in the Core Data Module.
- Support [autosaving entities](https://github.com/WordPress/gutenberg/pull/16903) in the Core Data Module.
- Add support for [disabled dropdown items](https://github.com/WordPress/gutenberg/pull/15976) in SelectControl.
- Add [onFocusOutside](https://github.com/WordPress/gutenberg/pull/14851) prop as a replacement to Popover onClickOutside.
- [Stop using unstable props on DropdownMenu.](https://github.com/WordPress/gutenberg/pull/15968)
### Bug Fixes
- [Prevent tooltips from appearing](https://github.com/WordPress/gutenberg/pull/16800) on mouse down.
- Avoid passing event object to [save button onSave prop](https://github.com/WordPress/gutenberg/pull/16770).
- Prevent [image captions loss](https://github.com/WordPress/gutenberg/pull/15004) when editing a Gallery block.
- Rerender [FormtTokenField](https://github.com/WordPress/gutenberg/pull/14819) component when the suggestions prop changes.
- Handle scalar [return types values in useSelect](https://github.com/WordPress/gutenberg/pull/16669).
- Fix [php notice](https://github.com/WordPress/gutenberg/pull/16189) that can be triggered while using the Search block.
- Fix the [Resolve Block Modal](https://github.com/WordPress/gutenberg/pull/15581) columns sizes.
- Fix [duplicate content when pasting](https://github.com/WordPress/gutenberg/pull/16857) text into newly focused RichText.
- Fix [Table block cell selection](https://github.com/WordPress/gutenberg/pull/16653) when clicking on the edge of the cells.
- Prevent the [CSS reset](https://github.com/WordPress/gutenberg/pull/16856) from applying to the meta boxes.
- Fix [misaligned Block toolbars](https://github.com/WordPress/gutenberg/pull/16858) on floated blocks.
- Fix the [Notice component](https://github.com/WordPress/gutenberg/pull/16861) close button alignment and [height](https://github.com/WordPress/gutenberg/pull/16891).
- [Link to the full size images](https://github.com/WordPress/gutenberg/pull/16011) in the Gallery block.
- Avoid leaking CSS transforms when [disabling block animations](https://github.com/WordPress/gutenberg/pull/16893).
- A11y: Avoid focusing the PostTitle component when [switching between code and visual editor](https://github.com/WordPress/gutenberg/pull/16874).
- A11y: Add a [confirmation step to enable the Custom Fields](https://github.com/WordPress/gutenberg/pull/15688) [option](https://github.com/WordPress/gutenberg/pull/16918).
- [Disable block insertion buttons](https://github.com/WordPress/gutenberg/pull/15024) and [prevent moving blocks](https://github.com/WordPress/gutenberg/pull/14924) depending on the contextual restrictions (template locking and default block availability).
- Fix [Block manager not honoring the allowed_block_types](https://github.com/WordPress/gutenberg/pull/16586) hook.
- [Keep the Image block alt and caption attributes](https://github.com/WordPress/gutenberg/pull/16051) while uploading a new image.
- Don't render [drop zone below the default block appender](https://github.com/WordPress/gutenberg/pull/16119).