forked from WordPress/gutenberg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
changelog.txt
7334 lines (6706 loc) · 528 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 ==
= 8.1.0 =
### New features
- Pattern search ([21944](https://github.com/WordPress/gutenberg/pull/21944))
- Testimonials block pattern. ([20894](https://github.com/WordPress/gutenberg/pull/20894))
- New Transforms:
- Embed blocks into Paragraph blocks. ([17413](https://github.com/WordPress/gutenberg/pull/17413))
- Code to HTML block and the opposite. ([21779](https://github.com/WordPress/gutenberg/pull/21779))
- Add copy action to the blocks. ([22214](https://github.com/WordPress/gutenberg/pull/22214))
### Enhancements
- Implement Block Navigator selection on Nav Menus page. ([22017](https://github.com/WordPress/gutenberg/pull/22017))
- Write block patterns in PHP to allow i18n. ([21946](https://github.com/WordPress/gutenberg/pull/21946))
- Post title: handle paste as blocks. ([21758](https://github.com/WordPress/gutenberg/pull/21758))
- Clear Publish Date Button. ([20914](https://github.com/WordPress/gutenberg/pull/20914))
- Add gap between nested submenus. ([22227](https://github.com/WordPress/gutenberg/pull/22227))
- Block Library: enhance the author's block. ([19894](https://github.com/WordPress/gutenberg/pull/19894))
- Add "black" and "white" color options to default color palette. ([22082](https://github.com/WordPress/gutenberg/pull/22082))
- Light blocks: social links. ([22078](https://github.com/WordPress/gutenberg/pull/22078))
- CustomSelectControl: set aria-hidden to empty option list. ([21298](https://github.com/WordPress/gutenberg/pull/21298))
- Add some more g2 icons. ([21825](https://github.com/WordPress/gutenberg/pull/21825))
- Allow the column block in the inserter. ([20502](https://github.com/WordPress/gutenberg/pull/20502))
- Delete menus in nav menus experimental screen. ([21486](https://github.com/WordPress/gutenberg/pull/21486))
- Visual and experience improvements to existing sub-navigation flow. ([22107](https://github.com/WordPress/gutenberg/pull/22107))
- Reduce font-size and line-height of "it's time". ([21627](https://github.com/WordPress/gutenberg/pull/21627))
- Template Loader: Introduce get_template_hierarchy(), drop gutenberg_template_include_filter(). ([21980](https://github.com/WordPress/gutenberg/pull/21980))
- Make parts of the BlockNavigationList overridable using slots. ([21948](https://github.com/WordPress/gutenberg/pull/21948))
- Change the color alpha input step to match the slider step. ([21953](https://github.com/WordPress/gutenberg/pull/21953))
- Navigation: fallback for undefined orientation. ([22057](https://github.com/WordPress/gutenberg/pull/22057))
- Remove subscription button from blog template. ([22129](https://github.com/WordPress/gutenberg/pull/22129))
- Move the Entities Saved States from Modal to Sidebar. ([21522](https://github.com/WordPress/gutenberg/pull/21522))
### API Changes
- Update the Patterns API to avoid ambiguity. ([21970](https://github.com/WordPress/gutenberg/pull/21970))
- Expose the registered pattern slugs in get_all_registered. ([21619](https://github.com/WordPress/gutenberg/pull/21619))
- Fix doc-building pre-commit API hook issue. ([22116](https://github.com/WordPress/gutenberg/pull/22116))
- REST API: Block directory - Typecast author_block_count as integer. ([17594](https://github.com/WordPress/gutenberg/pull/17594))
- Block API: Block Context: Filter content, prepare attributes at render, pass a block to render. ([21925](https://github.com/WordPress/gutenberg/pull/21925))
### Experimental
- Add undo-redo UI to edit-site and edit-widgets. ([21955](https://github.com/WordPress/gutenberg/pull/21955))
- Light blocks: site title. ([22069](https://github.com/WordPress/gutenberg/pull/22069))
- Update: Use EntityProvider on the widget area. ([22008](https://github.com/WordPress/gutenberg/pull/22008))
- Site editor:
- Extract gutenberg_find_template_post helper. ([21959](https://github.com/WordPress/gutenberg/pull/21959))
- Fix default editor background. ([22182](https://github.com/WordPress/gutenberg/pull/22182))
- Refactor close button slot. ([22179](https://github.com/WordPress/gutenberg/pull/22179))
- Make close button replaceable. ([22001](https://github.com/WordPress/gutenberg/pull/22001))
- Add home icon to template switcher. ([22004](https://github.com/WordPress/gutenberg/pull/22004))
- Updated template content. ([22044](https://github.com/WordPress/gutenberg/pull/22044))
- Fix spelling mistake. ([21991](https://github.com/WordPress/gutenberg/pull/21991))
### Performance
- Reduce re-renders from block nodes context. ([22134](https://github.com/WordPress/gutenberg/pull/22134))
- Move memo() from BlockStyles to BlockPreview. ([21993](https://github.com/WordPress/gutenberg/pull/21993))
- Avoid rerenders of the entire BlockInspector when block attributes change. ([21990](https://github.com/WordPress/gutenberg/pull/21990))
- Optimize BlockStyles by using hooks and React.memo (instead of HOCs). ([21973](https://github.com/WordPress/gutenberg/pull/21973))
### Bug Fixes
- Popover: Fix closest().parentNode null error. ([22264](https://github.com/WordPress/gutenberg/pull/22264))
- Correct color palette in color settings. ([22138](https://github.com/WordPress/gutenberg/pull/22138))
- Remove import of inexistant component. ([22130](https://github.com/WordPress/gutenberg/pull/22130))
- Build Tooling: Run packages build before lint. ([22088](https://github.com/WordPress/gutenberg/pull/22088))
- RangeControl: Fix number input change interaction. ([22084](https://github.com/WordPress/gutenberg/pull/22084))
- Fix entity selection through save panel. ([22011](https://github.com/WordPress/gutenberg/pull/22011))
- ESLint Plugin: Relax check for i18n-text-domain rule. ([21928](https://github.com/WordPress/gutenberg/pull/21928))
- Block Library: Fix React does not recognize isSelected prop in Spacer block. ([21924](https://github.com/WordPress/gutenberg/pull/21924))
- Reinitialize the iframe after the parent block is moved around. ([21916](https://github.com/WordPress/gutenberg/pull/21916))
- Configure the navigation editor with correct __experimentalFetchLinkSuggestions. ([21873](https://github.com/WordPress/gutenberg/pull/21873))
- Create the proper shortcode on paste. ([21864](https://github.com/WordPress/gutenberg/pull/21864))
- Refactor FontSizePicker component. Fix bug on undo. ([21757](https://github.com/WordPress/gutenberg/pull/21757))
- Move caret to the end of pasted content. ([21755](https://github.com/WordPress/gutenberg/pull/21755))
- Embed: use the same SmugMug URL regex as the core. ([21744](https://github.com/WordPress/gutenberg/pull/21744))
- Navigation block: use new icon in placeholder. ([21713](https://github.com/WordPress/gutenberg/pull/21713))
- Fix Template Part placeholder preview. ([21623](https://github.com/WordPress/gutenberg/pull/21623))
- Restore the missing background color on the nested submenus. ([22228](https://github.com/WordPress/gutenberg/pull/22228))
- fix: [#21777] Prevent focusing of FireFox address bar. ([22215](https://github.com/WordPress/gutenberg/pull/22215))
- Fix flaky test in rich text. ([22202](https://github.com/WordPress/gutenberg/pull/22202))
- Fix flaky test: <a> tag "target" attribute. ([22200](https://github.com/WordPress/gutenberg/pull/22200))
- Fix extra tab stop on Modal component. ([22063](https://github.com/WordPress/gutenberg/pull/22063))
- Writing flow: fix vertical arrow nav in table (and generally grid). ([22105](https://github.com/WordPress/gutenberg/pull/22105))
- Gallery block / media-placeholder - Preserve changes made while upload in progress. ([19134](https://github.com/WordPress/gutenberg/pull/19134))
- Add missing dependency. ([22086](https://github.com/WordPress/gutenberg/pull/22086))
### Tooling
- Build Tools: Validate package-lock.json for "resolved" errors. ([22237](https://github.com/WordPress/gutenberg/pull/22237))
- Build Tools: Disable ESLint `no-console` for bin directory. ([22033](https://github.com/WordPress/gutenberg/pull/22033))
- Build Tools: Changelog: Normalize entry to end with period. ([22010](https://github.com/WordPress/gutenberg/pull/22010))
- Add `analyze-bundles` script. ([21827](https://github.com/WordPress/gutenberg/pull/21827))
- Add changelog generator script. ([19866](https://github.com/WordPress/gutenberg/pull/19866))
- Add a method for publishing patches to the lerna scripts. ([21844](https://github.com/WordPress/gutenberg/pull/21844))
- Add additional e2e debugging option. ([21845](https://github.com/WordPress/gutenberg/pull/21845))
- Replace espree with babel. ([21853](https://github.com/WordPress/gutenberg/pull/21853))
- Update diff to 4.0.2 and work around tree-shaking issues. ([21994](https://github.com/WordPress/gutenberg/pull/21994))
- Increase the severity of `jsdoc/no-undefined-types`. . ([21942](https://github.com/WordPress/gutenberg/pull/21942))
### Code Quality
- Block: move new props to hook. ([22212](https://github.com/WordPress/gutenberg/pull/22212))
- Block: avoid useLayoutEffect. ([22108](https://github.com/WordPress/gutenberg/pull/22108))
- Try: Reduced specificity base block margins. ([22051](https://github.com/WordPress/gutenberg/pull/22051))
- Update the audio and video blocks to use a light wrapper in the editor. ([22028](https://github.com/WordPress/gutenberg/pull/22028))
- Remove unused animation lingering in paragraph file. ([22020](https://github.com/WordPress/gutenberg/pull/22020))
- Columns. Remove top and bottom margin from individual column blocks. ([22018](https://github.com/WordPress/gutenberg/pull/22018))
- Try better inserter toggle styling. ([22016](https://github.com/WordPress/gutenberg/pull/22016))
- Block Editor: Rename block context in BlockListBlock. ([21922](https://github.com/WordPress/gutenberg/pull/21922))
- Remove duplicate CopyHanddler. ([21817](https://github.com/WordPress/gutenberg/pull/21817))
- Types: Restore element, icons, primitives types. ([21781](https://github.com/WordPress/gutenberg/pull/21781))
- Convert core toolbar buttons into ToolbarButton. ([20008](https://github.com/WordPress/gutenberg/pull/20008))
- Block Directory: Add end 2 end tests. ([20023](https://github.com/WordPress/gutenberg/pull/20023))
- ClipboardButton: use hooks. ([22220](https://github.com/WordPress/gutenberg/pull/22220))
- ClipboardButton: remove wrapper span. ([22218](https://github.com/WordPress/gutenberg/pull/22218))
- Block Library: Update FSE blocks to use block context. ([21696](https://github.com/WordPress/gutenberg/pull/21696))
- Group: Zero out the intrinsic margin set to every block in the editor. ([22209](https://github.com/WordPress/gutenberg/pull/22209))
- Unset the inherit for links. ([22160](https://github.com/WordPress/gutenberg/pull/22160))
- Template Loader: Get rid of _wp_current_template_part_ids globals. ([22143](https://github.com/WordPress/gutenberg/pull/22143))
- Block Library: Post Author: Reference attributes by argument. ([22114](https://github.com/WordPress/gutenberg/pull/22114))
- Remove pass by reference of the `$scripts` and `$styles` attributes in client-assets.php. ([21987](https://github.com/WordPress/gutenberg/pull/21987))
- Use optional chaining, optional catch binding. ([21967](https://github.com/WordPress/gutenberg/pull/21967))
- Extract block mover buttons so that they can be individually imported. ([22122](https://github.com/WordPress/gutenberg/pull/22122))sss
### Documentation
- Scripts: Mark `env` script as deprecated. ([22158](https://github.com/WordPress/gutenberg/pull/22158))
- Docs: Use InspectorControls from @wordpress/block-editor. ([22153](https://github.com/WordPress/gutenberg/pull/22153))
- Fix bundle analysis change location in changelog. ([22136](https://github.com/WordPress/gutenberg/pull/22136))
- Documentation: Improve the way CHANGELOG files are maintained. ([22126](https://github.com/WordPress/gutenberg/pull/22126))
- ESLint Plugin: Add missing rules to root README. ([22042](https://github.com/WordPress/gutenberg/pull/22042))
- Fix props, in example code for Edit Post module. ([21976](https://github.com/WordPress/gutenberg/pull/21976))
- Document e2e test command options. ([21962](https://github.com/WordPress/gutenberg/pull/21962))
- Add an example for how to choose a style variation for a block variation. ([21927](https://github.com/WordPress/gutenberg/pull/21927))
- Add documentation for onSelectURL property. ([20799](https://github.com/WordPress/gutenberg/pull/20799))
- Document the old patterns API deprecation. ([22177](https://github.com/WordPress/gutenberg/pull/22177))
- Coding Guidelines:
- Document JavaScript language support commitment. ([22030](https://github.com/WordPress/gutenberg/pull/22030))
- Add "gotchas" section about ES2020 optional chaining. ([22029](https://github.com/WordPress/gutenberg/pull/22029))
- Recommend function components. ([22090](https://github.com/WordPress/gutenberg/pull/22090))
### Various
- Expose presets declared via add_theme_support in global styles. ([22076](https://github.com/WordPress/gutenberg/pull/22076))
- Update is-promise package to the latest version. ([21940](https://github.com/WordPress/gutenberg/pull/21940))
- Blocks: Register FSE blocks if experiment is enabled. ([21536](https://github.com/WordPress/gutenberg/pull/21536))
### Mobile App
- Add missing RTL support for some mobile components. ([21502](https://github.com/WordPress/gutenberg/pull/21502))
- Remove separatorType prop from TextControl, RangeControl... ([21365](https://github.com/WordPress/gutenberg/pull/21365))
- Color settings. ([21326](https://github.com/WordPress/gutenberg/pull/21326))
- Global styles provider. ([21637](https://github.com/WordPress/gutenberg/pull/21637))
- Update existing templates to use new blocks. ([21857](https://github.com/WordPress/gutenberg/pull/21857))
- Enable pullquote block. ([21930](https://github.com/WordPress/gutenberg/pull/21930))
- Merge release branch back to master for v1.27.1. ([22234](https://github.com/WordPress/gutenberg/pull/22234))
- Wrap button blocks with buttons blocks in page templates. ([21939](https://github.com/WordPress/gutenberg/pull/21939))
- Components: Create a separate .native entry for ToolbarItem. ([22229](https://github.com/WordPress/gutenberg/pull/22229))
= 8.0.0 =
### Features
- Add subscript and superscript formatting options. ([21819](https://github.com/WordPress/gutenberg/pull/21819))
- Move the Block Patterns UI to the inserter. ([20951](https://github.com/WordPress/gutenberg/pull/20951))
- Improve layout and usability of code editor. ([21643](https://github.com/WordPress/gutenberg/pull/21643))
### Enhancements
- Add inserter previews to more blocks. ([21740](https://github.com/WordPress/gutenberg/pull/21740))
- Performance improvements:
- Import from individual react-dates component. ([21914](https://github.com/WordPress/gutenberg/pull/21914))
- Upgrade showdown Markdown processor library. ([21862](https://github.com/WordPress/gutenberg/pull/21862))
- Allow title and button-based appender to inherit styles. ([21749](https://github.com/WordPress/gutenberg/pull/21749))
- Output float clearing for all centered blocks. ([21608](https://github.com/WordPress/gutenberg/pull/21608))
- Update 'Welcome Guide' illustrations. ([21515](https://github.com/WordPress/gutenberg/pull/21515))
### New APIs
- A new [Block Context API](https://github.com/WordPress/gutenberg/blob/master/docs/designers-developers/developers/block-api/block-context.md) has been partially implemented, currently limited to block settings and editor APIs. PHP APIs will be implemented in the next plugin releases. ([21467](https://github.com/WordPress/gutenberg/pull/21467), [21868](https://github.com/WordPress/gutenberg/pull/21868), [21921](https://github.com/WordPress/gutenberg/pull/21921))
- Add new "G2"-styled icons to the Icons package. ([21209](https://github.com/WordPress/gutenberg/pull/21209))
### Bug Fixes
- Change `wp_make_content_images_responsive` to `wp_filter_content_tags` to resolve warnings in WordPress 5.5-alpha. ([21514](https://github.com/WordPress/gutenberg/pull/21514))
- Collapse selection to end after link insertion. ([17126](https://github.com/WordPress/gutenberg/pull/17126))
- Fix selected category on existing Latest Posts blocks. ([21359](https://github.com/WordPress/gutenberg/pull/21359))
- Fix overlapping column contents for embeds. ([21570](https://github.com/WordPress/gutenberg/pull/21570))
- Fix focus styling for date picker calendar days. ([21600](https://github.com/WordPress/gutenberg/pull/21600))
- NPM Packages
- Fix "Cannot find module '../utils'" error. ([21609](https://github.com/WordPress/gutenberg/pull/21609))
- Types: Hide element, primitives, icons declarations. ([21613](https://github.com/WordPress/gutenberg/pull/21613), [21784](https://github.com/WordPress/gutenberg/pull/21784))
- Inherit font styles in block appender placeholder. ([21725](https://github.com/WordPress/gutenberg/pull/21725))
- Allow default pasting behavior in FontSizePicker. ([21812](https://github.com/WordPress/gutenberg/pull/21812))
- Prevent negative custom text sizes. ([21815](https://github.com/WordPress/gutenberg/pull/21815))
- Fix image center alignment behavior. ([21911](https://github.com/WordPress/gutenberg/pull/21911))
- Fix centered buttons margins. ([21947](https://github.com/WordPress/gutenberg/pull/21947))
- Revert the button block to the previous markup. ([21923](https://github.com/WordPress/gutenberg/pull/21923))
- Avoid using inline RichText element for navigation link. ([21856](https://github.com/WordPress/gutenberg/pull/21856))
- Ensure `resetEditorBlocks` is synchronous. ([21839](https://github.com/WordPress/gutenberg/pull/21839))
- Fix the button outline style for the old button markup. ([21816](https://github.com/WordPress/gutenberg/pull/21816))
- Fix default attribute on audio preload. ([21735](https://github.com/WordPress/gutenberg/pull/21735))
- Fix gradient picker double-click bug. ([21732](https://github.com/WordPress/gutenberg/pull/21732))
- Fix broken links in handbook. ([21686](https://github.com/WordPress/gutenberg/pull/21686))
- Make `useMediaQuery` return the correct value on the first render. ([21682](https://github.com/WordPress/gutenberg/pull/21682))
- Fix visual issue on windows with 782px. ([21661](https://github.com/WordPress/gutenberg/pull/21661))
- Allow wrapping for Navigation block links. ([21632](https://github.com/WordPress/gutenberg/pull/21632))
- Remove redundant margins from the columns block. ([21615](https://github.com/WordPress/gutenberg/pull/21615))
- Fix media Text padding on inner blocks. ([21612](https://github.com/WordPress/gutenberg/pull/21612))
- Restore floated image margins. ([21500](https://github.com/WordPress/gutenberg/pull/21500))
- Fix URL display for scheduled posts. ([21410](https://github.com/WordPress/gutenberg/pull/21410))
- Test keycode modifiers for keyboard event as exclusive set. ([20733](https://github.com/WordPress/gutenberg/pull/20733))
- Fix focus loss for Guide "Finish" button in Internet Explorer. ([20599](https://github.com/WordPress/gutenberg/pull/20599))
- Replace incorrect Snackbar `label` attribute with `aria-label`. ([20540](https://github.com/WordPress/gutenberg/pull/20540))
### Experiments
- Add experimental `useEditorFeature` hook to simplify access to editor features. ([21646](https://github.com/WordPress/gutenberg/pull/21646))
- Navigation menu page:
- Try a fixed toolbar in the navigation page. ([21340](https://github.com/WordPress/gutenberg/pull/21340))
- Fix panel collapsing in navigation page. ([21633](https://github.com/WordPress/gutenberg/pull/21633))
- Fix mobile layout for navigation menu page. ([21638](https://github.com/WordPress/gutenberg/pull/21638))
- Delete empty spaces in menu REST API endpoint strings. ([21453](https://github.com/WordPress/gutenberg/pull/21453))
- Edit site:
- Add current theme to template switcher. ([21578](https://github.com/WordPress/gutenberg/pull/21578), [21768](https://github.com/WordPress/gutenberg/pull/21768))
- Declare attributes for Template Part block in `block.json`. ([21796](https://github.com/WordPress/gutenberg/pull/21796))
- Update end-to-end test for multi-entity saving in site editor. ([21363](https://github.com/WordPress/gutenberg/pull/21363))
- Add preview options component. ([21309](https://github.com/WordPress/gutenberg/pull/21309))
- Improve template parts resolution and saving behavior. ([21766](https://github.com/WordPress/gutenberg/pull/21766))
- Support REST API meta queries. ([21851](https://github.com/WordPress/gutenberg/pull/21851))
- Add extra validation when loading template parts. ([21636](https://github.com/WordPress/gutenberg/pull/21636))
- Block directory:
- Add InserterPanel around block directory results. ([21748](https://github.com/WordPress/gutenberg/pull/21748))
- Widgets:
- Fix legacy widgets z-index issue. ([21586](https://github.com/WordPress/gutenberg/pull/21586))
- Fix legacy widgets visual issues. ([21585](https://github.com/WordPress/gutenberg/pull/21585))
### Deprecations
- Add deprecation notice to `useApiFetch` hook. ([21723](https://github.com/WordPress/gutenberg/pull/21723))
### Code Quality
- Remove nested breakpoint in fullscreen mode CSS. ([21496](https://github.com/WordPress/gutenberg/pull/21496))
- Update npm-package-json-lint from 4.0.3 to 5.0.0. ([21597](https://github.com/WordPress/gutenberg/pull/21597))
- Update npm dependencies that warn. ([21596](https://github.com/WordPress/gutenberg/pull/21596))
- Fix license check script to ignore sub-dependencies of ignored packages. ([21606](https://github.com/WordPress/gutenberg/pull/21606))
- Package TypeScript types improvements:
- Mark addQueryArgs arguments parameter as optional. ([21926](https://github.com/WordPress/gutenberg/pull/21926))
- Relax i18n sprintf arguments type. ([21919](https://github.com/WordPress/gutenberg/pull/21919))
- Update PHPCS to latest version. ([21680](https://github.com/WordPress/gutenberg/pull/21680))
- Unify how editor alignments are applied across blocks. ([21822](https://github.com/WordPress/gutenberg/pull/21822))
- Remove obsolete editor alignment classes. ([21906](https://github.com/WordPress/gutenberg/pull/21906))
- Remove old icons. ([21821](https://github.com/WordPress/gutenberg/pull/21821))
- Implement `block.json` for blocks. ([21794](https://github.com/WordPress/gutenberg/pull/21794), [21783](https://github.com/WordPress/gutenberg/pull/21783), [21782](https://github.com/WordPress/gutenberg/pull/21782), [21775](https://github.com/WordPress/gutenberg/pull/21775), [21787](https://github.com/WordPress/gutenberg/pull/21787), [21774](https://github.com/WordPress/gutenberg/pull/21774), [21792](https://github.com/WordPress/gutenberg/pull/21792))
- Use `register_block_type_from_metadata` in Latest Posts block. ([21788](https://github.com/WordPress/gutenberg/pull/21788))
- Polish RSS block code. ([21773](https://github.com/WordPress/gutenberg/pull/21773))
- Move `camelCaseDash` to the package where it is consumed. ([21736](https://github.com/WordPress/gutenberg/pull/21736))
- Improve URLPopover code from review comments. ([21621](https://github.com/WordPress/gutenberg/pull/21621))
### Documentation
- Remove duplicate sentence in glossary documentation. ([21565](https://github.com/WordPress/gutenberg/pull/21565))
- Update `wp-env` docs to reflect current functionality of package. ([21809](https://github.com/WordPress/gutenberg/pull/21809))
- Extract Block Transforms into its own handbook page. ([21734](https://github.com/WordPress/gutenberg/pull/21734))
- Update the index of Block API to reflect current contents. ([21726](https://github.com/WordPress/gutenberg/pull/21726))
- Clarify attribute type documentation. ([21694](https://github.com/WordPress/gutenberg/pull/21694))
- Add location for components `style.css`. ([21654](https://github.com/WordPress/gutenberg/pull/21654))
- Fix the JSDoc return type for `getEntityRecords`. ([21630](https://github.com/WordPress/gutenberg/pull/21630))
- Update triage links to new document. ([21629](https://github.com/WordPress/gutenberg/pull/21629))
- Update Getting Started instructions for remote server. ([21625](https://github.com/WordPress/gutenberg/pull/21625))
- Update the "patterns" to reflect "user interface" instead. ([21562](https://github.com/WordPress/gutenberg/pull/21562))
- Create document for contributing with triage. ([21350](https://github.com/WordPress/gutenberg/pull/21350))
- Update triage.md to add more clarity and relevant links. ([21802](https://github.com/WordPress/gutenberg/pull/21802))
### Project Management
- Update bug report template to help identify the editor version. ([21564](https://github.com/WordPress/gutenberg/pull/21564))
### Various
- End-to-end tests:
- Add test for template part block creation and insertion. ([21849](https://github.com/WordPress/gutenberg/pull/21849))
- Add test that template part block customizations are loaded from slug and theme attributes. ([21852](https://github.com/WordPress/gutenberg/pull/21852))
- Fix tests by removing unnecessary assertions and properly install dependencies in `@wordpress/api-fetch`. ([21780](https://github.com/WordPress/gutenberg/pull/21780))
- Add end-to-end test for pinned sidebar items. ([21652](https://github.com/WordPress/gutenberg/pull/21652))
- Add test which verifies reusable block after refresh. ([20605](https://github.com/WordPress/gutenberg/pull/20605))
- Update cleanForSlug() to remove additional non-word characters. ([21007](https://github.com/WordPress/gutenberg/pull/21007))
- `@wordpress/scripts`:
- Support debugging with `test-unit-js`. ([21631](https://github.com/WordPress/gutenberg/pull/21631), [21861](https://github.com/WordPress/gutenberg/pull/21861))
- Install Chromium on demand together with `test-e2e` script. ([20215](https://github.com/WordPress/gutenberg/pull/20215))
- `@wordpress/create-block` block scaffold tool:
- Make it easier to provide most popular CLI options. ([21751](https://github.com/WordPress/gutenberg/pull/21751))
- Split JavaScript source files into parts for ESNext template. ([21750](https://github.com/WordPress/gutenberg/pull/21750))
- `@wordpress/env` development environment:
- Expose port 3306 of MySQL container. ([21545](https://github.com/WordPress/gutenberg/pull/21545))
- `@wordpress/eslint-plugin`:
- Add the recommended Prettier config to enforce WP coding styles. ([21602](https://github.com/WordPress/gutenberg/pull/21602))
- Fix `no-unused-vars-before-return` JSX identifier reference. ([21358](https://github.com/WordPress/gutenberg/pull/21358))
- Navigation block:
- Revert changes to data fetching mechanics. ([21721](https://github.com/WordPress/gutenberg/pull/21721))
- Bundle the block autocompleter in the block-editor package. ([21534](https://github.com/WordPress/gutenberg/pull/21534))
- Storybook:
- Add FormToggle component. ([18085](https://github.com/WordPress/gutenberg/pull/18085))
- Simplify Reusable Block description. ([21470](https://github.com/WordPress/gutenberg/pull/21470))
- Build tooling:
- Install Composer dependencies as pre-lint step. ([21537](https://github.com/WordPress/gutenberg/pull/21537))
- Configure Webpack to watch only build files. ([21489](https://github.com/WordPress/gutenberg/pull/21489))
- Exit with non-zero status on docgen failed parse. ([21690](https://github.com/WordPress/gutenberg/pull/21690))
= 7.9.1 =
### Bug Fixes
- Make sidebar plugins pinned by default.
- Fix the button styles for old content.
= 7.9.0 =
### Features
- Add gradients support to Group, Columns and Media & Text blocks. [21375](https://github.com/WordPress/gutenberg/pull/21375)
- Add line height support to the Paragraph block. [20775](https://github.com/WordPress/gutenberg/pull/20775)
- Add font size support to the Heading block. [21431](https://github.com/WordPress/gutenberg/pull/21431)
- Add line height support to the Heading block. [21215](https://github.com/WordPress/gutenberg/pull/21215)
- Add custom height unit support to the Cover block. [20888](https://github.com/WordPress/gutenberg/pull/20888)
### Enhancements
- New Patterns:
- Hero Two Columns [21128](https://github.com/WordPress/gutenberg/pull/21128)
- Numbered Features [21131](https://github.com/WordPress/gutenberg/pull/21131)
- It's Time [21132](https://github.com/WordPress/gutenberg/pull/21132)
- Add a new keyboard shortcut to toggle Fullscreen Mode. [21436](https://github.com/WordPress/gutenberg/pull/21436)
- Insert post title instead of URL, when adding a link to an existing post [21240](https://github.com/WordPress/gutenberg/pull/21240)
- Social links block:
- Update tumblr icon [21329](https://github.com/WordPress/gutenberg/pull/21329)
- Update and massage social links colors. [21474](https://github.com/WordPress/gutenberg/pull/21474)
- Allow reusable block top and bottom paddings to collapse. [21472](https://github.com/WordPress/gutenberg/pull/21472)
- Update all block previews to use the auto-height behavior. [21014](https://github.com/WordPress/gutenberg/pull/21014)
- Disable autocomplete for custom class name inputs. [21110](https://github.com/WordPress/gutenberg/pull/21110)
- Several small tweaks to the new Block UI. [21476](https://github.com/WordPress/gutenberg/pull/21476)
- Unify the focus styles across the UI. [21141](https://github.com/WordPress/gutenberg/pull/21141)
- Improve block focus style. [21498](https://github.com/WordPress/gutenberg/pull/21498)
- Remove the post permalink UI from the post title. [21099](https://github.com/WordPress/gutenberg/pull/21099)
- Style the default toolbar buttons. [21252](https://github.com/WordPress/gutenberg/pull/21252)
- Style tweaks to the patterns library sidebar. [21263](https://github.com/WordPress/gutenberg/pull/21263)
- Smaller space between toolbar and block. [21166](https://github.com/WordPress/gutenberg/pull/21166)
### Performance
- Add block selection performance test. [21230](https://github.com/WordPress/gutenberg/pull/21230)
- Improve the performance of the block moving animation. [21231](https://github.com/WordPress/gutenberg/pull/21231)
- Render the patterns list asynchronously. [21322](https://github.com/WordPress/gutenberg/pull/21322)
### Bug Fixes
- Improve WordPress logo rendering for non-retina displays. [21217](https://github.com/WordPress/gutenberg/pull/21217)
- Fix inserter popover direction. [21556](https://github.com/WordPress/gutenberg/pull/21556)
- Fix Snackbar notice bottom margin. [18858](https://github.com/WordPress/gutenberg/pull/18858)
- Fix YouTube Embed block from flickering and crashing on Safari. [21225](https://github.com/WordPress/gutenberg/pull/21225)
- Fix sibling inserter being unclickable. [21232](https://github.com/WordPress/gutenberg/pull/21232)
- Fix block duplication using keyboard shortcut [21317](https://github.com/WordPress/gutenberg/pull/21317)
- Avoid creating an empty paragraph when selecting the parent's group block [21318](https://github.com/WordPress/gutenberg/pull/21318)
- Fix the Buttons block margins. [21376](https://github.com/WordPress/gutenberg/pull/21376)
- Prevent typing on a Popover from closing the block toolbar [21421](https://github.com/WordPress/gutenberg/pull/21421)
- Prevent copy/paste on number inputs from copying the post content. [21457](https://github.com/WordPress/gutenberg/pull/21457)
- Prevent scroll jumps when focusing long blocks. [21460](https://github.com/WordPress/gutenberg/pull/21460)
- Fix Separator block RTL styles. [21525](https://github.com/WordPress/gutenberg/pull/21525)
- Make dateI18n returns be affected by `gmt` parameter. [18982](https://github.com/WordPress/gutenberg/pull/18982)
- Fixes the read more link added by themes in the Latest Posts block. [20541](https://github.com/WordPress/gutenberg/pull/20541)
- Fix the Latest Posts block when `imageDimensions` is empty [21070](https://github.com/WordPress/gutenberg/pull/21070)
- Fix transparent images used as Cover block backgrounds. [20904](https://github.com/WordPress/gutenberg/pull/20904)
- IE11: fix focus on backspace. [21092](https://github.com/WordPress/gutenberg/pull/21092)
- Fix IE11 breakage when hitting Enter. [21361](https://github.com/WordPress/gutenberg/pull/21361) [21366](https://github.com/WordPress/gutenberg/pull/21366)
- Fix block movers on full-wide blocks. [21097](https://github.com/WordPress/gutenberg/pull/21097)
- Fix Annotations classNames. [21184](https://github.com/WordPress/gutenberg/pull/21184)
- RangeControl: Fix zero value handling with number input. [21187](https://github.com/WordPress/gutenberg/pull/21187)
- Fix reusable block horizontal padding regression. [21312](https://github.com/WordPress/gutenberg/pull/21312)
- Fix fullwide margins regression. [21201](https://github.com/WordPress/gutenberg/pull/21201)
- Prevent the Cover block from overriding the children blocks colors [21254](https://github.com/WordPress/gutenberg/pull/21254)
- Fix overly verbose aria-label in Social Link block [21369](https://github.com/WordPress/gutenberg/pull/21369)
- Fix container block appenders and sibling inserters. [21149](https://github.com/WordPress/gutenberg/pull/21149) [21142](https://github.com/WordPress/gutenberg/pull/21142) [21143](https://github.com/WordPress/gutenberg/pull/21143)
### New APIs
- @wordpress/i18n: Add create-i18n function. [21182](https://github.com/WordPress/gutenberg/pull/21182)
- @wordpress/interface:
- Add screen sidebar extensibility APIs. [20698](https://github.com/WordPress/gutenberg/pull/20698) [21260](https://github.com/WordPress/gutenberg/pull/21260)
- Prepare for npm release. [21417](https://github.com/WordPress/gutenberg/pull/21417)
- Add Fullscreen mode component. [21334](https://github.com/WordPress/gutenberg/pull/21334)
- Add InterfaceSkeleton component. [21335](https://github.com/WordPress/gutenberg/pull/21335)
- @wordpress/icons: Add new icons: tablet, mobile, desktop, font, share... [21261](https://github.com/WordPress/gutenberg/pull/21261) [21278](https://github.com/WordPress/gutenberg/pull/21278)
- Support changing the Group block's DOM element. [20218](https://github.com/WordPress/gutenberg/pull/20218)
- Block API: Add new utility to register block types from metadata in PHP [20794](https://github.com/WordPress/gutenberg/pull/20794)
- Add radio option to the ButtonGroup component. [20805](https://github.com/WordPress/gutenberg/pull/20805)
### Experiments
- Full site editing and Site Editor screen:
- Use the default post comments template for the Post Comments block. [21012](https://github.com/WordPress/gutenberg/pull/21012)
- Use slug as template part display label.[21161](https://github.com/WordPress/gutenberg/pull/21161)
- Remove duplicate queries fetching template parts [18878](https://github.com/WordPress/gutenberg/pull/18878)
- Preload the edited template to avoid the white page effect. [21214](https://github.com/WordPress/gutenberg/pull/21214)
- Move the menu item to the top level. [21273](https://github.com/WordPress/gutenberg/pull/21273)
- Add block breadcrumb; [21274](https://github.com/WordPress/gutenberg/pull/21274)
- Prevent template switcher jumpiness. [21280](https://github.com/WordPress/gutenberg/pull/21280)
- Increase the viewport width used for template previews. [21287](https://github.com/WordPress/gutenberg/pull/21287)
- Add top level inserter. [21328](https://github.com/WordPress/gutenberg/pull/21328)
- Apply the editor styles. [20982](https://github.com/WordPress/gutenberg/pull/20982)
- Update the multi-entity saving flow UI. [21159](https://github.com/WordPress/gutenberg/pull/21159)
- Small updates to template selector. [21202](https://github.com/WordPress/gutenberg/pull/21202)
- New navigation screen:
- Bootstrap the screen. [21036](https://github.com/WordPress/gutenberg/pull/21036)
- Implement the initial styling. [21314](https://github.com/WordPress/gutenberg/pull/21314)
- Add save shortcut. [21342](https://github.com/WordPress/gutenberg/pull/21342)
- Fix editor shortcuts. [21338](https://github.com/WordPress/gutenberg/pull/21338)
- Basic responsive styles. [21414](https://github.com/WordPress/gutenberg/pull/21414)
- Navigation block:
- Make the submenus usable on mobile. [21471](https://github.com/WordPress/gutenberg/pull/21471)
- Fix block for contributor users [18669](https://github.com/WordPress/gutenberg/pull/18669)
- Fix submenus being overlapped by wrapping top-level nav links. [21140](https://github.com/WordPress/gutenberg/pull/21140)
- Add vertical variation. [21296](https://github.com/WordPress/gutenberg/pull/21296)
- Show color controls in toolbar only. [20884](https://github.com/WordPress/gutenberg/pull/20884)
- Add capture toolbars prop to inner blocks. [21095](https://github.com/WordPress/gutenberg/pull/21095)
- Block API Support flags:
- Introduce a support key for support global style colors in blocks. [21021](https://github.com/WordPress/gutenberg/pull/21021) [21428](https://github.com/WordPress/gutenberg/pull/21428)
- Add the possibility to support gradients using the experimental color support flag; [21481](https://github.com/WordPress/gutenberg/pull/21481)
- Add a block support flag for font size. [21153](https://github.com/WordPress/gutenberg/pull/21153)
- Remove experimentalUIParts API. [20979](https://github.com/WordPress/gutenberg/pull/20979)
- Add experimental Text component. [21088](https://github.com/WordPress/gutenberg/pull/21088)
### Documentation
- Docs: Describe tools used in E2E testing. [21295](https://github.com/WordPress/gutenberg/pull/21295)
- WP-env: Add reference to docker log command to show error logs in terminal. [21308](https://github.com/WordPress/gutenberg/pull/21308)
- Docs: Add section in block RFC about register_block_type_from_metadata. [21501](https://github.com/WordPress/gutenberg/pull/21501)
- Update serverSideRender docs to include how to use from the wp global. [18722](https://github.com/WordPress/gutenberg/pull/18722)
- Prescribe latest NPM for development environment. [21017](https://github.com/WordPress/gutenberg/pull/21017)
- Update Documentation on how to update post meta values from a block. [21155](https://github.com/WordPress/gutenberg/pull/21155)
- Document getAnchorRect prop for Popover component. [17709](https://github.com/WordPress/gutenberg/pull/17709)
- Typos and tweaks: [21228](https://github.com/WordPress/gutenberg/pull/21228), [21364](https://github.com/WordPress/gutenberg/pull/21364), [21405](https://github.com/WordPress/gutenberg/pull/21405), [20660](https://github.com/WordPress/gutenberg/pull/20660), [21297](https://github.com/WordPress/gutenberg/pull/21297).
### Code Quality
- Add types to WordPress packages:
- @wordpress/element [21248](https://github.com/WordPress/gutenberg/pull/21248)
- @wordpress/primitives [21482](https://github.com/WordPress/gutenberg/pull/21482)
- @wordpress/icons [21487](https://github.com/WordPress/gutenberg/pull/21487)
- @wordpress/autop, @wordpress/escape-html and @wordpress/html-entities [20669](https://github.com/WordPress/gutenberg/pull/20669)
- @wordpress/i18n [21224](https://github.com/WordPress/gutenberg/pull/21224)
- @wordpress/prettier-config [21381](https://github.com/WordPress/gutenberg/pull/21381) [21053](https://github.com/WordPress/gutenberg/pull/21053)
- @wordpress/block-editor DOM utils. [21362](https://github.com/WordPress/gutenberg/pull/21362)
- Update the Buttons block to use the new color support flag. [21266](https://github.com/WordPress/gutenberg/pull/21266)
- Update the Paragraph block to use the colors support flag. [21037](https://github.com/WordPress/gutenberg/pull/21037)
- Update the Columns block to use the colors support flag. [21038](https://github.com/WordPress/gutenberg/pull/21038)
- Update the Heading block to use the colors support flag. [21039](https://github.com/WordPress/gutenberg/pull/21039)
- Update the Media & Text block to use the colors support flag. [21169](https://github.com/WordPress/gutenberg/pull/21169)
- Refactor env commands into separate files .[21353](https://github.com/WordPress/gutenberg/pull/21353)
- Remove the deprecated `request` dependency. [21398](https://github.com/WordPress/gutenberg/pull/21398)
- Move default styles to editor normalisation stylesheet. [19837](https://github.com/WordPress/gutenberg/pull/19837)
- Replace lodash.assign with vanilla JS. [21054](https://github.com/WordPress/gutenberg/pull/21054)
- Remove the old block preview implementation. [21096](https://github.com/WordPress/gutenberg/pull/21096)
- Make RichText window/document agnostic. [21105](https://github.com/WordPress/gutenberg/pull/21105)
- Polish a11y package. [21148](https://github.com/WordPress/gutenberg/pull/21148)
- Fix two typos in lib rest menu controller. [21418](https://github.com/WordPress/gutenberg/pull/21418)
- Global tips: Add period at the end of sentence. [20601](https://github.com/WordPress/gutenberg/pull/20601)
- Lighter block DOM:
- Verse block [20752](https://github.com/WordPress/gutenberg/pull/20752)
- Code block [21079](https://github.com/WordPress/gutenberg/pull/21079)
- Preformatted block [21146](https://github.com/WordPress/gutenberg/pull/21146)
- Update the padding values on the Card component to align with proposed spacing system. [21111](https://github.com/WordPress/gutenberg/pull/21111)
- Disable scroll in PlainText component. [21115](https://github.com/WordPress/gutenberg/pull/21115)
- Simplify inserter hasItems check. [21138](https://github.com/WordPress/gutenberg/pull/21138)
- Avoid string concatenation for the Latest Post block read more link. [21170](https://github.com/WordPress/gutenberg/pull/21170)
### Various
- Plugin: Bump tested up to info to WP 5.4 [21400](https://github.com/WordPress/gutenberg/pull/21400)
- Output package type declarations. [18942](https://github.com/WordPress/gutenberg/pull/18942)
- Exclude native files from type checking. [21491](https://github.com/WordPress/gutenberg/pull/21491)
- docgen: Optimize README update script. [18840](https://github.com/WordPress/gutenberg/pull/18840)
- Check Latest NPM on npm install. [21521](https://github.com/WordPress/gutenberg/pull/21521)
- E2E Tests:
- Improve stability of image block test [21174](https://github.com/WordPress/gutenberg/pull/21174)
- Improve Allowed Inner Blocks test stability [21175](https://github.com/WordPress/gutenberg/pull/21175)
- Use waitForSelector to wait for sidebar presence [21180](https://github.com/WordPress/gutenberg/pull/21180)
- Unit Tests:
- Fix @wordpress/env testPortNumberValidation unit test. [21394](https://github.com/WordPress/gutenberg/pull/21394)
- Introduce react-testing-library to some existing unit tests. [20428](https://github.com/WordPress/gutenberg/pull/20428)
- Components: Add SlotFill test. [21226](https://github.com/WordPress/gutenberg/pull/21226)
- Fail E2E when page displays warning notices [13452](https://github.com/WordPress/gutenberg/pull/13452)
- Project Management: Prompt user to link GitHub account to WordPress.org profile [21221](https://github.com/WordPress/gutenberg/pull/21221) [21384](https://github.com/WordPress/gutenberg/pull/21384)
- @wordpress/env: Bind "core" files to tests environment [21195](https://github.com/WordPress/gutenberg/pull/21195)
- ESLint Plugin: Continue considering unused variables after encountering exception [21354](https://github.com/WordPress/gutenberg/pull/21354)
- Enable prettier for JSX files [21151](https://github.com/WordPress/gutenberg/pull/21151)
- Increase severity of JSDoc linting to error. [20427](https://github.com/WordPress/gutenberg/pull/20427)
- Add I18N specific ESLint rules. [20555](https://github.com/WordPress/gutenberg/pull/20555) [20574](https://github.com/WordPress/gutenberg/pull/20574)
- Update uuid to v7.0.2. [21258](https://github.com/WordPress/gutenberg/pull/21258)
- Upgrade Reakit to version 1.0.0-rc.0; [21300](https://github.com/WordPress/gutenberg/pull/21300)
- Framework: Add package-lock precommit check for latest NPM. [21306](https://github.com/WordPress/gutenberg/pull/21306)
- Babel Preset: Update Babel version to 7.9.x. [21419](https://github.com/WordPress/gutenberg/pull/21419)
- ESLint Plugin: Update ESLint and related dependencies to 6.8.x. [21424](https://github.com/WordPress/gutenberg/pull/21424)
- Framework: Configure ESLint JSDoc plugin to target TypeScript mode. [18998](https://github.com/WordPress/gutenberg/pull/18998)
- Major version upgrade for Jest in all packages. [20766](https://github.com/WordPress/gutenberg/pull/20766)
- Storybook:
- Add TreeSelect component. [20496](https://github.com/WordPress/gutenberg/pull/20496)
- Update AnglePickerControl title. [21089](https://github.com/WordPress/gutenberg/pull/21089)
- Automated Testing: composer non-interactive flag for Travis. [21118](https://github.com/WordPress/gutenberg/pull/21118)
- REST API error message: Remove unnecessary space. [21178](https://github.com/WordPress/gutenberg/pull/21178)
- SlotFill: Guard property access to possibly-undefined slot. [21205](https://github.com/WordPress/gutenberg/pull/21205)
- Build: Add TypeScript version validation [21208](https://github.com/WordPress/gutenberg/pull/21208)
= 7.8.1 =
= 7.8.0 =
## Enhancements
- Add visible labels to BlockPatternPicker pattern selection buttons [19789](https://github.com/WordPress/gutenberg/pull/19789)
- Adds always on display of media URL [19504](https://github.com/WordPress/gutenberg/pull/19504)
- Adds current menu class to navigation block [20076](https://github.com/WordPress/gutenberg/pull/20076)
- Block: Outline when interacting with Toolbar Block Type/Movers [20938](https://github.com/WordPress/gutenberg/pull/20938)
- Create block: Improve how prompts and values provided are handled [20756](https://github.com/WordPress/gutenberg/pull/20756)
- Expand create block options and add readme.txt template [20694](https://github.com/WordPress/gutenberg/pull/20694)
- Patterns: Make adding patterns easier [20854](https://github.com/WordPress/gutenberg/pull/20854)
- Polish a few icons [20980](https://github.com/WordPress/gutenberg/pull/20980)
- Polish date-picker component [20824](https://github.com/WordPress/gutenberg/pull/20824)
- Improve permalink editing [12009](https://github.com/WordPress/gutenberg/pull/12009)
- Nicer block footprint for social links [20978](https://github.com/WordPress/gutenberg/pull/20978)
- Show inserter only when block selected for nesting contexts [20753](https://github.com/WordPress/gutenberg/pull/20753)
- URL: Use test data from web-platform-tests for isURL spec conformance [20537](https://github.com/WordPress/gutenberg/pull/20537)
- Adds multi-select to categories on Latest Posts [20781](https://github.com/WordPress/gutenberg/pull/20781)
- Add basic nav block example for inserter and styles previews [21011](https://github.com/WordPress/gutenberg/pull/21011)
## Bug Fixes
- Allow media library in gallery mode to be reset [20675](https://github.com/WordPress/gutenberg/pull/20675)
- Autocomplete: Add support for results with long titles [20962](https://github.com/WordPress/gutenberg/pull/20962)
- Compat: Conditionally filter editor settings for image dimensions [20939](https://github.com/WordPress/gutenberg/pull/20939)
- Compat: Use core-js-url-browser for URL polyfill [20225](https://github.com/WordPress/gutenberg/pull/20225)
- Data: Migrate post editor persistence with fullscreenMode false [21082](https://github.com/WordPress/gutenberg/pull/21082)
- Edit Post: Make sidebar header focusable for button focus normalization [21031](https://github.com/WordPress/gutenberg/pull/21031)
- Fix auto-hiding appender regression [20780](https://github.com/WordPress/gutenberg/pull/20780)
- Fix fullscreen mode device preview [21010](https://github.com/WordPress/gutenberg/pull/21010)
- Fix link control search results spacing. [21003](https://github.com/WordPress/gutenberg/pull/21003)
- Fix snackbar container block portion of UI while present [21000](https://github.com/WordPress/gutenberg/pull/21000)
- Make the inner button block not allowed as a reusable block or editable as HTML [20948](https://github.com/WordPress/gutenberg/pull/20948)
- URL: Fix getQueryString incorrect handling of hash fragment [20738](https://github.com/WordPress/gutenberg/pull/20738)
- Update social links block to output a custom class on each individual link [20998](https://github.com/WordPress/gutenberg/pull/20998)
- Update the inserter's block preview to use the AutoHeightPreview [20817](https://github.com/WordPress/gutenberg/pull/20817)
- Latest Posts:
- Fix link for read more markup [20917](https://github.com/WordPress/gutenberg/pull/20917)
- Fixes the categories selector crash when category does not exist [20960](https://github.com/WordPress/gutenberg/pull/20960)
- Fix input rules [20964](https://github.com/WordPress/gutenberg/pull/20964)
- Trim input value in navigation search input field [19832](https://github.com/WordPress/gutenberg/pull/19832)
- Fix mobile header [20946](https://github.com/WordPress/gutenberg/pull/20946)
- Fix visually hidden classnames [20649](https://github.com/WordPress/gutenberg/pull/20649)
- Fix/screen reader text [20607](https://github.com/WordPress/gutenberg/pull/20607)
- Fix SelectControl example code synax highlight [19803](https://github.com/WordPress/gutenberg/pull/19803)
## New APIs
- Add initial API to register patterns from themes and plugins [21074](https://github.com/WordPress/gutenberg/pull/21074)
- Convert \__experimentalCreateInterpolateElement to a stable API [20699](https://github.com/WordPress/gutenberg/pull/20699)
## Experiments
- Site Editor:
- Add Fullscreen mode [20691](https://github.com/WordPress/gutenberg/pull/20691)
- Add fullscreen close button [20989](https://github.com/WordPress/gutenberg/pull/20989)
- Add more menu and fullscreen toggle [21006](https://github.com/WordPress/gutenberg/pull/21006)
- Style resets for top level page [20886](https://github.com/WordPress/gutenberg/pull/20886)
- Get current template part correctly for auto drafts [20438](https://github.com/WordPress/gutenberg/pull/20438)
- Add template preview to the edit site template switcher [20958](https://github.com/WordPress/gutenberg/pull/20958)
- Add things required to load custom blocks to Site Editor page [20549](https://github.com/WordPress/gutenberg/pull/20549)
- Avoid page templates overwriting page title [20865](https://github.com/WordPress/gutenberg/pull/20865)
- Lighter block DOM:
- Group [20586](https://github.com/WordPress/gutenberg/pull/20586)
- Navigation [20729](https://github.com/WordPress/gutenberg/pull/20729)
- Navigation Block:
- Fix dynamic rendering recursive function name typo [21078](https://github.com/WordPress/gutenberg/pull/21078)
- Avoid hiding submenu when adding a link [21035](https://github.com/WordPress/gutenberg/pull/21035)
- Fix toolbar overlap on navigation links [21033](https://github.com/WordPress/gutenberg/pull/21033)
- PlainText v2 [21076](https://github.com/WordPress/gutenberg/pull/21076)
- Editable Component [18361](https://github.com/WordPress/gutenberg/pull/18361)
## Documentation
- Add ESNext example for unregisterBlockType [20784](https://github.com/WordPress/gutenberg/pull/20784)
- Docs/SlotFills: Small update for consistency [20767](https://github.com/WordPress/gutenberg/pull/20767)
- Correct 2nd param of useViewportMatch() usage [20911](https://github.com/WordPress/gutenberg/pull/20911)
- Include `npm run dev` guidance in "Getting Started" [21015](https://github.com/WordPress/gutenberg/pull/21015)
- Document default login credentials and `wp-env run` command [20678](https://github.com/WordPress/gutenberg/pull/20678)
- Fixes docblock for useViewportMatch [20919](https://github.com/WordPress/gutenberg/pull/20919)
- Lowercase visual editor and code editor to match block editor and classic editor [20968](https://github.com/WordPress/gutenberg/pull/20968)
- Update README.md [20913](https://github.com/WordPress/gutenberg/pull/20913)
- Add Custom Block Editor to TOC and Manifest [20749](https://github.com/WordPress/gutenberg/pull/20749)
- Add tutorial link to Table of Contents for Custom Block Editor [20750](https://github.com/WordPress/gutenberg/pull/20750)
## Code Quality
- Block Editor: Use useResizeObserver in place of direct react-resize-aware dependency [20889](https://github.com/WordPress/gutenberg/pull/20889)
- E2E Test Utils: Improve durability of embedding matcher [20811](https://github.com/WordPress/gutenberg/pull/20811)
- Framework: Migrate/remove temporary compatibility script initialization [19178](https://github.com/WordPress/gutenberg/pull/19178)
- Framework: Use WHATWG URL in place of legacy url module [19823](https://github.com/WordPress/gutenberg/pull/19823)
- Nav Block: Remove 'frontend' from style comments [21034](https://github.com/WordPress/gutenberg/pull/21034)
- Project Management Automation: Add TypeScript type-checking [20850](https://github.com/WordPress/gutenberg/pull/20850)
- Refactor the inserter menu component and split into multiple smaller components [20880](https://github.com/WordPress/gutenberg/pull/20880)
- Remove iframe from content elements [20976](https://github.com/WordPress/gutenberg/pull/20976)
- Update Search/RSS block render method [20977](https://github.com/WordPress/gutenberg/pull/20977)
## Various
- Update glossary [20934](https://github.com/WordPress/gutenberg/pull/20934)
- Improve performance testing [20802](https://github.com/WordPress/gutenberg/pull/20802)
- Edit Post: Register block patterns as separate plugin [20871](https://github.com/WordPress/gutenberg/pull/20871)
- Accessibility: updated headings to reflect semantic relationship between html tag and it's content. [16444](https://github.com/WordPress/gutenberg/pull/16444)
- Add Prettier shared config package [20026](https://github.com/WordPress/gutenberg/pull/20026)
- Add default styles to the TabPanel component [20872](https://github.com/WordPress/gutenberg/pull/20872)
- Add isFileURL method and use it on all native media upload checks. [20985](https://github.com/WordPress/gutenberg/pull/20985)
- Add menus endpoints. [20292](https://github.com/WordPress/gutenberg/pull/20292)
- Block Patterns: Update text-two-columns.json [20890](https://github.com/WordPress/gutenberg/pull/20890)
- Block Styles: Remove the block margin in the style selector [19983](https://github.com/WordPress/gutenberg/pull/19983)
- Block patterns: improve success notice [21005](https://github.com/WordPress/gutenberg/pull/21005)
- Blocks: Allow the Default Style selector to be hidden. [20620](https://github.com/WordPress/gutenberg/pull/20620)
- E2E Tests: Mock Embed response for InnerBlocks locking test [20481](https://github.com/WordPress/gutenberg/pull/20481)
- ESLint Plugin: Relax `prefer-const` for destructuring assignment [20737](https://github.com/WordPress/gutenberg/pull/20737)
- Gallery: Update UI of controls [20776](https://github.com/WordPress/gutenberg/pull/20776)
- Improves RTL style conversion [20503](https://github.com/WordPress/gutenberg/pull/20503)
- Minor change to switch Help link target to _blank, add rels [20800](https://github.com/WordPress/gutenberg/pull/20800)
- Mobile: Add accessibility label to Block List Footer [20633](https://github.com/WordPress/gutenberg/pull/20633)
- Moves category multi select from LatestPosts to QueryControls [20832](https://github.com/WordPress/gutenberg/pull/20832)
- Paste: replace iframes with url [20983](https://github.com/WordPress/gutenberg/pull/20983)
- Polish poster image button arrangement. [20754](https://github.com/WordPress/gutenberg/pull/20754)
- Preview Button: Remove the separator and border, and reduce the size of the icon. [20683](https://github.com/WordPress/gutenberg/pull/20683)
- RangeControl: Improve disabled rendering and interactions [20723](https://github.com/WordPress/gutenberg/pull/20723)
- Reduce gap between block library and preview [20777](https://github.com/WordPress/gutenberg/pull/20777)
- Remove aria-expanded from close button in Publish panel [20993](https://github.com/WordPress/gutenberg/pull/20993)
- Remove feature flag for mobile page templates [20718](https://github.com/WordPress/gutenberg/pull/20718)
- Remove inaccurate message from image block [20909](https://github.com/WordPress/gutenberg/pull/20909)
- Removed the textarea width restriction for the Shortcode block [20624](https://github.com/WordPress/gutenberg/pull/20624)
- Revert "Framework: Travis: Avoid skipping Puppeteer download" [20828](https://github.com/WordPress/gutenberg/pull/20828)
- Show errors in the media replace control [19244](https://github.com/WordPress/gutenberg/pull/19244)
- Styles Panel: Don't force it to be closed by default. [20617](https://github.com/WordPress/gutenberg/pull/20617)
- Update Navigation Menu Item icon [20763](https://github.com/WordPress/gutenberg/pull/20763)
- Update page template picker after design review [20883](https://github.com/WordPress/gutenberg/pull/20883)
- Latest Posts: Testing larger margins [20563](https://github.com/WordPress/gutenberg/pull/20563)
- Add codeowners for env package [20667](https://github.com/WordPress/gutenberg/pull/20667)
- Scripts: Update all webpack related dependencies [20916](https://github.com/WordPress/gutenberg/pull/20916)
- Dependencies webpack plugin: Let the output file be specified when output is combined [20844](https://github.com/WordPress/gutenberg/pull/20844)
= 7.7.1 =
### Bug Fixes
- Fix Drag and Drop into the columns block.
- Fix the columns block selection.
- Fix applying colors and backgrounds to the columns block.
- Fix the RangeControl controlled behavior.
= 7.7.0 =
### Features
- Add the initial version of the Patterns UI as a sidebar plugin (This is not the final interface and work is in progress to integrate with the main block inserter). [20354](https://github.com/WordPress/gutenberg/pull/20354), [20715](https://github.com/WordPress/gutenberg/pull/20715).
- Add an initial set of patterns [20724](https://github.com/WordPress/gutenberg/pull/20724).
### Enhancements
- Update the Block and editor UI. [19344](https://github.com/WordPress/gutenberg/pull/19344)
- New icons. [20464](https://github.com/WordPress/gutenberg/pull/20464)
- Avoid empty menu groups. [20495](https://github.com/WordPress/gutenberg/pull/20495)
- Block Placeholders. [20441](https://github.com/WordPress/gutenberg/pull/20441), [20676](https://github.com/WordPress/gutenberg/pull/20676).
- Various tweaks [20679](https://github.com/WordPress/gutenberg/pull/20679), [20578](https://github.com/WordPress/gutenberg/pull/20578).
- Improve the Back to WP Admin button in Fullscreen Mode. [20603](https://github.com/WordPress/gutenberg/pull/20603)
- Make the editor Fullscreen by default. [20611](https://github.com/WordPress/gutenberg/pull/20611)
- Remove template locking from the columns block [20465](https://github.com/WordPress/gutenberg/pull/20465)
- Make the inserter full height. [20526](https://github.com/WordPress/gutenberg/pull/20526)
### Bug Fixes
- A11y:
- Deselect first/last gallery images on blur. [14930](https://github.com/WordPress/gutenberg/pull/14930)
- Revert top toolbar tab order [20571](https://github.com/WordPress/gutenberg/pull/20571)
- Add an overlay to the html block preview to fix block selection in Firefox. [20425](https://github.com/WordPress/gutenberg/pull/20425)
- Add missing accessibility attributes in the SVG icons. [20538](https://github.com/WordPress/gutenberg/pull/20538)
- Fix invalid syntax error on Safari 12. [20507](https://github.com/WordPress/gutenberg/pull/20507)
- Use a consistent width for the link suggetions. [20448](https://github.com/WordPress/gutenberg/pull/20448)
- Use full labels for directional block movers. [20664](https://github.com/WordPress/gutenberg/pull/20664)
- Columns block: Force 50% column width at mid-range viewport. [20597](https://github.com/WordPress/gutenberg/pull/20597)
- Media & Text block: Fix frontend styles when "Crop image to fill" is selected [20539](https://github.com/WordPress/gutenberg/pull/20539)
- Latest Post block:
- Fix the excerpt length. [20313](https://github.com/WordPress/gutenberg/pull/20313)
- Don't trim manual exerptts [20432](https://github.com/WordPress/gutenberg/pull/20432)
- Fix sidebar scroll issue on small viewports. [20491](https://github.com/WordPress/gutenberg/pull/20491)
- Social Link block:
- Escape generated class name. [20479](https://github.com/WordPress/gutenberg/pull/20479)
- Fix label attribute type as string. [20468](https://github.com/WordPress/gutenberg/pull/20468)
- i18n: Use placeholder for the default label [20475](https://github.com/WordPress/gutenberg/pull/20475)
- Simulated Queries (Device previews):
- Check for match in stylesheet host and protocol to prevent Chrome breakage. [20673](https://github.com/WordPress/gutenberg/pull/20673)
- Fix IE11 editor breakage. [20226](https://github.com/WordPress/gutenberg/pull/20226)
- Fix incorrectly displayed preview option for private post types. [20604](https://github.com/WordPress/gutenberg/pull/20604)
- Focus preview button after opening preview. [20570](https://github.com/WordPress/gutenberg/pull/20570)
- Fix isURL regex to take account file urls. [20435](https://github.com/WordPress/gutenberg/pull/20435)
- Fix error when deleting empty paragraphs in IE11. [20594](https://github.com/WordPress/gutenberg/pull/20594)
- Fix hidden inserter toggle behind the popover. [20663](https://github.com/WordPress/gutenberg/pull/20663)
- Fix block registration shared defaults reuse across blocks. [20565](https://github.com/WordPress/gutenberg/pull/20565)
- Shim meta attributes for early block registrations. [20544](https://github.com/WordPress/gutenberg/pull/20544)
- Fix bouncing Custom color formatter. [20612](https://github.com/WordPress/gutenberg/pull/20612)
- Fix Gallery block styles in Edge causing editor breakage. [20690](https://github.com/WordPress/gutenberg/pull/20690)
### New APIs:
- @wordpress/env: Add support for ZIP URL sources. [20426](https://github.com/WordPress/gutenberg/pull/20426)
### Experiments
- Lighter Block DOM: allow block types to render their own wrapper [19701](https://github.com/WordPress/gutenberg/pull/19701)
- Lighter InnerBlocks. [19910](https://github.com/WordPress/gutenberg/pull/19910)
- Automatically add block class. [20658](https://github.com/WordPress/gutenberg/pull/20658)
- BlockPreview: Add __experimentalOnReady prop. [17242](https://github.com/WordPress/gutenberg/pull/17242)
- Edit Site:
- Update template navigation to use new link control. [20366](https://github.com/WordPress/gutenberg/pull/20366)
- Update the edit site save modal UI. [20608](https://github.com/WordPress/gutenberg/pull/20608)
- Fix the block toolbar in the Widgets and Site Edit screens. [20458](https://github.com/WordPress/gutenberg/pull/20458)
- Fix widgets screen inserter [20680](https://github.com/WordPress/gutenberg/pull/20680)
### Documentation
- Add tutorial for creating a custom block editor instance. [20410](https://github.com/WordPress/gutenberg/pull/20410)
- Create a new "Gutenberg as a Platform" page. [20666](https://github.com/WordPress/gutenberg/pull/20666)
- Typos and tweaks: [20382](https://github.com/WordPress/gutenberg/pull/20382), [20386](https://github.com/WordPress/gutenberg/pull/20386), [20517](https://github.com/WordPress/gutenberg/pull/20517), [20662](https://github.com/WordPress/gutenberg/pull/20662), [20454](https://github.com/WordPress/gutenberg/pull/20454), [20659](https://github.com/WordPress/gutenberg/pull/20659).
### Code Quality
- Refactoring to existing blocks to use a lighter DOM:
- List block. [20498](https://github.com/WordPress/gutenberg/pull/20498)
- Image block. [20576](https://github.com/WordPress/gutenberg/pull/20576)
- Heading. [20493](https://github.com/WordPress/gutenberg/pull/20493)
- Consistent block focus behaviour on mount. [20577](https://github.com/WordPress/gutenberg/pull/20577)
- Cleanup CSS variables. [20529](https://github.com/WordPress/gutenberg/pull/20529)
- Use the EditorSkeleton component in the widgets and Edit Site pages. [20440](https://github.com/WordPress/gutenberg/pull/20440), [20431](https://github.com/WordPress/gutenberg/pull/20431).
- Refactor SlotFill components. [19242](https://github.com/WordPress/gutenberg/pull/19242)
- Remove useless style override for floats. [20501](https://github.com/WordPress/gutenberg/pull/20501)
- Block popover: remove data-type. [20531](https://github.com/WordPress/gutenberg/pull/20531)
- Resizable editor improvements. [20259](https://github.com/WordPress/gutenberg/pull/20259)
### Various
- @wordpress/env:
- Save the database as a volume. [20648](https://github.com/WordPress/gutenberg/pull/20648)
- Fix accidental quotes in Site Title. [20520](https://github.com/WordPress/gutenberg/pull/20520)
- Set owner of wp-content to www-data. [20406](https://github.com/WordPress/gutenberg/pull/20406)
- @wordpress/create-block:
- Fix system requirements checks. [20461](https://github.com/WordPress/gutenberg/pull/20461) [20456](https://github.com/WordPress/gutenberg/pull/20456)
- Fix React warning triggered by the BlockToolbar component. [20546](https://github.com/WordPress/gutenberg/pull/20546)
- Skip the Type Writer effect component in IE 11. [20485](https://github.com/WordPress/gutenberg/pull/20485)
- Update browserslist to fix out-of-date caniuse-lite messages [20709](https://github.com/WordPress/gutenberg/pull/20709)
- Add storybook stories:
- TextControl [20467](https://github.com/WordPress/gutenberg/pull/20467)
- TextAreaControl [20472](https://github.com/WordPress/gutenberg/pull/20472)
- SelectControl [20482](https://github.com/WordPress/gutenberg/pull/20482)
- Tooltip [20322](https://github.com/WordPress/gutenberg/pull/20322)
- E2E Tests:
- Add test for the Image block. [20622](https://github.com/WordPress/gutenberg/pull/20622)
- More stable embed test. [20668](https://github.com/WordPress/gutenberg/pull/20668)
- Fix intermittent RichText e2e test failure. [20457](https://github.com/WordPress/gutenberg/pull/20457)
- Travis: Avoid skipping Puppeteer download. [20547](https://github.com/WordPress/gutenberg/pull/20547)
- Plugin: Bump minimum WordPress version to 5.3 [20628](https://github.com/WordPress/gutenberg/pull/20628)
- @wordrpess/priority-queue: Fix for environments that don't have `window` defined. [20486](https://github.com/WordPress/gutenberg/pull/20486)
- Update jest configuration to only ignore tests from /wordpress/ as a subdirectory [20420](https://github.com/WordPress/gutenberg/pull/20420)
= 7.6.0 =
## Features
- Add a rotating list of tips to the inserter help panel [20163](https://github.com/WordPress/gutenberg/pull/20163)
## Enhancements
- Improve find-ability for social/video embeds [20224](https://github.com/WordPress/gutenberg/pull/20224)
## New APIs
- Ensure packages-update wp-scripts command works with missing dependencies [20408](https://github.com/WordPress/gutenberg/pull/20408)
- Add new option in dependencies webpack plugin to combine assets files into one file [20330](https://github.com/WordPress/gutenberg/pull/20330)
- Environment:
- Add custom port numbers to .wp-env.json [20158](https://github.com/WordPress/gutenberg/pull/20158)
- Add support for local override files. [20341](https://github.com/WordPress/gutenberg/pull/20341)
- Add debug mode. [20348](https://github.com/WordPress/gutenberg/pull/20348)
## Experimental
- New blocks:
- Post Featured Image. [19875](https://github.com/WordPress/gutenberg/pull/19875)
- Comments Count block. [19953](https://github.com/WordPress/gutenberg/pull/19953)
- Comments Form block. [19954](https://github.com/WordPress/gutenberg/pull/19954)
- Post Tags block. [19580](https://github.com/WordPress/gutenberg/pull/19580)
- Add new features to the Post Excerpt block. [19715](https://github.com/WordPress/gutenberg/pull/19715)
- Allow changing Site Title block heading level. [20361](https://github.com/WordPress/gutenberg/pull/20361)
- Render the post comments form properly [20279](https://github.com/WordPress/gutenberg/pull/20279)
- Add new features to the Post Date block. [19857](https://github.com/WordPress/gutenberg/pull/19857)
- Add multiple template loading [19141](https://github.com/WordPress/gutenberg/pull/19141)
- Show error when resolved block template is empty [20239](https://github.com/WordPress/gutenberg/pull/20239)
## Bug Fixes
- Overflowing `LinkControl` block editor component. [20154](https://github.com/WordPress/gutenberg/pull/20154)
- Broken gallery to image transform and inconsistent types used in the gallery block [20084](https://github.com/WordPress/gutenberg/pull/20084)
- Missing label on heading toolbar. [20248](https://github.com/WordPress/gutenberg/pull/20248)
- Sidebar jumpiness. [20355](https://github.com/WordPress/gutenberg/pull/20355)
- Fix wrong imports in PluginBlockSettingsMenuItem [20356](https://github.com/WordPress/gutenberg/pull/20356)
- Color formatter appears when color choosing is not possible [20222](https://github.com/WordPress/gutenberg/pull/20222)
- Crash when updating a post with the latest post block [20289](https://github.com/WordPress/gutenberg/pull/20289)
- Inconsistency on Import from JSON button look [20416](https://github.com/WordPress/gutenberg/pull/20416)
- Inline image width pop-up 'wanders' down page [20232](https://github.com/WordPress/gutenberg/pull/20232)
- Styling problem on vertically aligned blocks [20368](https://github.com/WordPress/gutenberg/pull/20368)
- Remove unnecessary aria-label from link formatter [18742](https://github.com/WordPress/gutenberg/pull/18742)
- Make navigation button expand to fit longer nav link text [20230](https://github.com/WordPress/gutenberg/pull/20230)
- Flow for gallery creation and editing [20287](https://github.com/WordPress/gutenberg/pull/20287)
- Fix background color for dark themes on the spacer block [20296](https://github.com/WordPress/gutenberg/pull/20296)
- Show metaboxes peeking in even on tiny screens. [20262](https://github.com/WordPress/gutenberg/pull/20262)
- Add an edit state to media frames to fix an issue when opening a new tab. [17642](https://github.com/WordPress/gutenberg/pull/17642)
## Documentation
- Add a basic storybook story listing all the @wordpress/icons [20266](https://github.com/WordPress/gutenberg/pull/20266)
- Add docs for variations in the block registration section [20145](https://github.com/WordPress/gutenberg/pull/20145)
- Improve README for `<LinkControl />` component. [19677](https://github.com/WordPress/gutenberg/pull/19677)
- Remove the devhub manifest file [20175](https://github.com/WordPress/gutenberg/pull/20175)
- Several documentation improvements and typo fixes: [20385](https://github.com/WordPress/gutenberg/pull/20385), [20378](https://github.com/WordPress/gutenberg/pull/20378), [20392](https://github.com/WordPress/gutenberg/pull/20392), [20381](https://github.com/WordPress/gutenberg/pull/20381), [20388](https://github.com/WordPress/gutenberg/pull/20388), [20371](https://github.com/WordPress/gutenberg/pull/20371), [20380](https://github.com/WordPress/gutenberg/pull/20380), [20384](https://github.com/WordPress/gutenberg/pull/20384), [20379](https://github.com/WordPress/gutenberg/pull/20379), [20391](https://github.com/WordPress/gutenberg/pull/20391), [20251](https://github.com/WordPress/gutenberg/pull/20251)
## Various
- Create block: Add support for `format:js` to ESNext template [20335](https://github.com/WordPress/gutenberg/pull/20335)
- Add check for minimum system requirements on create block [20398](https://github.com/WordPress/gutenberg/pull/20398)
- Conditionally apply Editor Skeleton html element styles [20245](https://github.com/WordPress/gutenberg/pull/20245)
- Environment:
- Check for legacy installs and provide the option to delete them. [20340](https://github.com/WordPress/gutenberg/pull/20340)
- Fix testsPath on local sources [20353](https://github.com/WordPress/gutenberg/pull/20353)
- Use user with UID=33 to run WP CLI commands [20403](https://github.com/WordPress/gutenberg/pull/20403)
- Fix issue where docker & wp had different URLs [20228](https://github.com/WordPress/gutenberg/pull/20228)
- No longer show error message twice [20157](https://github.com/WordPress/gutenberg/pull/20157)
- Support wp-config.php overrides. [20352](https://github.com/WordPress/gutenberg/pull/20352)
- Support overwriting generated file directory with an environment variable [20253](https://github.com/WordPress/gutenberg/pull/20253)
= 7.5.0 =
## Features
- Mark the Social Links block as a stable block [20134](https://github.com/WordPress/gutenberg/pull/20134) [19887](https://github.com/WordPress/gutenberg/pull/19887) [20074](https://github.com/WordPress/gutenberg/pull/20074) [20150](https://github.com/WordPress/gutenberg/pull/20150) [20101](https://github.com/WordPress/gutenberg/pull/20101)
- Support aadding featured images to Latest Posts block [17151](https://github.com/WordPress/gutenberg/pull/17151)
- Add support for TikTok video Embeds [19345](https://github.com/WordPress/gutenberg/pull/19345)
- Add inline text color support [16014](https://github.com/WordPress/gutenberg/pull/16014)
- Add text color support to Columns block [20016](https://github.com/WordPress/gutenberg/pull/20016)
## Enhancements
- Add type and angle picking to the custom gradient component [19582](https://github.com/WordPress/gutenberg/pull/19582)
- Add transform for button to buttons block [20063](https://github.com/WordPress/gutenberg/pull/20063)
- Navigation block:
- Implement new design for sub-menus [19681](https://github.com/WordPress/gutenberg/pull/19681)
- Set inherit color to anchor elements [20038](https://github.com/WordPress/gutenberg/pull/20038)
- Fix getting Navigation parent block [20032](https://github.com/WordPress/gutenberg/pull/20032) [20057](https://github.com/WordPress/gutenberg/pull/20057)
- Set width in order to show caret [20075](https://github.com/WordPress/gutenberg/pull/20075)
- Improve colors handling [20022](https://github.com/WordPress/gutenberg/pull/20022)
- Rename background color CSS class [20018](https://github.com/WordPress/gutenberg/pull/20018)
- Block Library: Avoid column width auto-adjustment when sibling width changes [19515](https://github.com/WordPress/gutenberg/pull/19515) [20169](https://github.com/WordPress/gutenberg/pull/20169)
- A11y:
- Incorporate settings in the edit state of the LinkControl component [20052](https://github.com/WordPress/gutenberg/pull/20052)
- Announce all Notice components messages [15745](https://github.com/WordPress/gutenberg/pull/15745)
- Button block: Remove title attribute [19735](https://github.com/WordPress/gutenberg/pull/19735)
- Navigation block: Remove title attribute [19990](https://github.com/WordPress/gutenberg/pull/19990)
- Image block: Keep existing caption if the stored one is empty [19641](https://github.com/WordPress/gutenberg/pull/19641)
- Enhance the custom gradient picker UI [20099](https://github.com/WordPress/gutenberg/pull/20099)
## New APIs
- Allow third-party keyboard shortcuts registration in the keyboard shortcuts modal [19965](https://github.com/WordPress/gutenberg/pull/19965)
- Stabilize the AnglePickerControl component [20118](https://github.com/WordPress/gutenberg/pull/20118)
- Add .wp-env.json config file support to @wordpress/env [20002](https://github.com/WordPress/gutenberg/pull/20002)
- Blocks: Promote block variations to stable API [20068](https://github.com/WordPress/gutenberg/pull/20068)
- Mark the gradients theme API as stable [20107](https://github.com/WordPress/gutenberg/pull/20107)
## Experimental
- Add ability to disable the block popover through __experimentalUIParts.hasPopover option [19922](https://github.com/WordPress/gutenberg/pull/19922)
- Add the __experimentalEditorSkeleton component to the block-editor package [20050](https://github.com/WordPress/gutenberg/pull/20050) [20132](https://github.com/WordPress/gutenberg/pull/20132)
## Bug Fixes
- A11y: Show open button when the sidebar is closed and tabbing out of the content [19726](https://github.com/WordPress/gutenberg/pull/19726)
- IE11 Compatibility: Add DOMRect polyfill [20110](https://github.com/WordPress/gutenberg/pull/20110)
- Block Editor: Fix warning when rendering InnerBlocks [20082](https://github.com/WordPress/gutenberg/pull/20082)
- Featured image appears cropped [20128](https://github.com/WordPress/gutenberg/pull/20128)
- Fix predefined text colors used in the Group block on the frontend [20119](https://github.com/WordPress/gutenberg/pull/20119)
- Use array form for contrast checkers. [20143](https://github.com/WordPress/gutenberg/pull/20143)
- i18n: make experimentalUseColors labels translatable [20112](https://github.com/WordPress/gutenberg/pull/20112)
- Multi select: remove inserter between selected blocks [20096](https://github.com/WordPress/gutenberg/pull/20096)
- Remove alignment options from nested Button blocks [19824](https://github.com/WordPress/gutenberg/pull/19824)
- URL: Conform to URL Living Standard definition of valid URL [19871](https://github.com/WordPress/gutenberg/pull/19871)
- Select the correct media in the media modal when replacing existing media [20100](https://github.com/WordPress/gutenberg/pull/20100)
- Avoid resizing the editor canvas when opening the publish panel [19843](https://github.com/WordPress/gutenberg/pull/19843)
- Fix Media & Text block styling when media is set to show on the right [20125](https://github.com/WordPress/gutenberg/pull/20125)
- Fix excerpt rendering in the Latest posts block [19669](https://github.com/WordPress/gutenberg/pull/19669)
## Documentation
- Docs: Contributor Guide update subpages [19939](https://github.com/WordPress/gutenberg/pull/19939)
- Prettier: Update format-js to use default config, and update editor docs usage [20036](https://github.com/WordPress/gutenberg/pull/20036)
- Target docs to manifest.json [15639](https://github.com/WordPress/gutenberg/pull/15639)
- Update main project README [19743](https://github.com/WordPress/gutenberg/pull/19743)
- Update the Getting Started Docs to use `wp-env` [20044](https://github.com/WordPress/gutenberg/pull/20044)
- Typos and tweaks: [20055](https://github.com/WordPress/gutenberg/pull/20055) [20077](https://github.com/WordPress/gutenberg/pull/20077) [20025](https://github.com/WordPress/gutenberg/pull/20025) [20060](https://github.com/WordPress/gutenberg/pull/20060) [19470](https://github.com/WordPress/gutenberg/pull/19470)
## Various
- Block Editor: Update BEM syntax to CSS modifer guidelines [19738](https://github.com/WordPress/gutenberg/pull/19738)
- Block Library: Standardize PHP function names used [20085](https://github.com/WordPress/gutenberg/pull/20085) [20039](https://github.com/WordPress/gutenberg/pull/20039)
- Project Management Automation:
- Log skipped tasks and retain wrapped task names. [20034](https://github.com/WordPress/gutenberg/pull/20034)
- Support adding milestones for fork PRs. [20058](https://github.com/WordPress/gutenberg/pull/20058)
- Avoid gracefully handling error [20009](https://github.com/WordPress/gutenberg/pull/20009)
- Avoid milestone task for forks [20049](https://github.com/WordPress/gutenberg/pull/20049)
- Call core setFailed with error message [20012](https://github.com/WordPress/gutenberg/pull/20012)
- Check error object for parsed errors [20014](https://github.com/WordPress/gutenberg/pull/20014)
- Guard against non-matching commits in `addMilestone`. [20147](https://github.com/WordPress/gutenberg/pull/20147)
- Tolerate duplicate milestone [20011](https://github.com/WordPress/gutenberg/pull/20011)
- Pull Request Automation: Avoid automation tasks for forked repository [20021](https://github.com/WordPress/gutenberg/pull/20021)
- @wordpress/env:
- Fix GitHub source pattern [20131](https://github.com/WordPress/gutenberg/pull/20131)
- Fix syntax error where spread operator could fail [20113](https://github.com/WordPress/gutenberg/pull/20113)
- Move existing icons to the @wordpress/icons package [20091](https://github.com/WordPress/gutenberg/pull/20091) [20072](https://github.com/WordPress/gutenberg/pull/20072) [19959](https://github.com/WordPress/gutenberg/pull/19959) [20094](https://github.com/WordPress/gutenberg/pull/20094) [20087](https://github.com/WordPress/gutenberg/pull/20087)
- Ensure the default Prettier config is used with `lint-js` when needed [20071](https://github.com/WordPress/gutenberg/pull/20071)
- Data: Log first-pass `useSelect` errors [20122](https://github.com/WordPress/gutenberg/pull/20122)
- Compat: Social Links: Remove legacy renderers from packages [20098](https://github.com/WordPress/gutenberg/pull/20098)
- Core Data: Mark the `getEntityRecordNoResolver` selector as experimental. [20053](https://github.com/WordPress/gutenberg/pull/20053)
- Core Data: Remove unused `__experimentalUseEntitySaving` hook. [20148](https://github.com/WordPress/gutenberg/pull/20148)
- Hide the navigation block behind feature flag [20133](https://github.com/WordPress/gutenberg/pull/20133)
- Fix Intermitent e2e test failures [20065](https://github.com/WordPress/gutenberg/pull/20065)
- Move the e2e tests to the right folders [20135](https://github.com/WordPress/gutenberg/pull/20135)
- Switch social link icons to import svg parts from primitives [19877](https://github.com/WordPress/gutenberg/pull/19877)
= 7.4.0 =
### Features
* Add background color support to the Columns block. [17813](https://github.com/WordPress/gutenberg/pull/17813)
* Add text color support for the Group block. [19181](https://github.com/WordPress/gutenberg/pull/19181)
### Enhancements
* Navigation Block:
* Add submenu chevron indication setting. [19601](https://github.com/WordPress/gutenberg/pull/19601)
* Save the ID to the destination entity. [18641](https://github.com/WordPress/gutenberg/pull/18641)
* Select Parent Navigation Block after clicking "Create from all top-level pages". [19817](https://github.com/WordPress/gutenberg/pull/19817)
* Update Appender visibility. [19598](https://github.com/WordPress/gutenberg/pull/19598) [19846](https://github.com/WordPress/gutenberg/pull/19846)
* Move the Link Settings panel. [19917](https://github.com/WordPress/gutenberg/pull/19917)
* Improve the UX to add links. [19686](https://github.com/WordPress/gutenberg/pull/19686)
* Multi-selection: don't focus first selected block. [19762](https://github.com/WordPress/gutenberg/pull/19762)
* Use the new link control component in the RichText link format. [19462](https://github.com/WordPress/gutenberg/pull/19462)
* Copy: Apply sentence case formatting to panel titles. [19901](https://github.com/WordPress/gutenberg/pull/19901)
* A11y: Add conditions and new translation strings for the BlockMover. [19757](https://github.com/WordPress/gutenberg/pull/19757)
### New APIs
* Add a new @wordpress/create-block package for block scaffolding. [19773](https://github.com/WordPress/gutenberg/pull/19773) [19867](https://github.com/WordPress/gutenberg/pull/19867)
* Add a new @wordpress/icons package:
* Introduce the package. [17055](https://github.com/WordPress/gutenberg/pull/17055)
* Make it a package that is always embedded to avoid loading all the icons at once. [19809](https://github.com/WordPress/gutenberg/pull/19809)
* Move icons used in the project to the package. [19944](https://github.com/WordPress/gutenberg/pull/19944) [19808](https://github.com/WordPress/gutenberg/pull/19808) [19834](https://github.com/WordPress/gutenberg/pull/19834) [19862](https://github.com/WordPress/gutenberg/pull/19862) [19838](https://github.com/WordPress/gutenberg/pull/19838) [19943](https://github.com/WordPress/gutenberg/pull/19943) [19926](https://github.com/WordPress/gutenberg/pull/19926)
* Add a new @wordpress/primitives package. [19781](https://github.com/WordPress/gutenberg/pull/19781) [19876](https://github.com/WordPress/gutenberg/pull/19876)
### Bug Fixes
* Prevent gallery images from creating undo levels as they load. [19937](https://github.com/WordPress/gutenberg/pull/19937)
* FontSizePicker: Adjust Select Button size. [19479](https://github.com/WordPress/gutenberg/pull/19479)
* Remove post title escaping. [19955](https://github.com/WordPress/gutenberg/pull/19955)
* Fix Failure message styling in placeholders. [19673](https://github.com/WordPress/gutenberg/pull/19673)
* Fix RTL styles for the Media Text block. [18764](https://github.com/WordPress/gutenberg/pull/18764)
* Fix panel header styles. [19842](https://github.com/WordPress/gutenberg/pull/19842)
* Fix the editor fixed position at the 960px breakpoint. [19970](https://github.com/WordPress/gutenberg/pull/19970)
* Allow disabling color selection but keeping gradient support. [19925](https://github.com/WordPress/gutenberg/pull/19925)
* Prevent crash when creating a hierarchical post without a title. [19936](https://github.com/WordPress/gutenberg/pull/19936)
* Media & Text block: "Crop image to fill entire column" setting resets on image change. [19765](https://github.com/WordPress/gutenberg/pull/19765)
* Prevent Alt+F10 from scrolling to the top. [19896](https://github.com/WordPress/gutenberg/pull/19896)