forked from godaddy-wordpress/coblocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchangelog.txt
1478 lines (1253 loc) · 96.5 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
2.11.1 / 2021-05-10
===================
### Enhancements
* Enhance accessibility of Layout Selector with snackbar notifications [#1893](https://github.com/godaddy-wordpress/coblocks/pull/1893)
### Bug Fixes
* Fix Post Carousel block Right To Left layout when using RTL locale [#1871](https://github.com/godaddy-wordpress/coblocks/pull/1871)
* Fix Carousel gallery UI inconsistencies and navigation behavior [#1896](https://github.com/godaddy-wordpress/coblocks/pull/1896)
* Fix Collage block Tile style and improper gutter values [#1897](https://github.com/godaddy-wordpress/coblocks/pull/1897)
* Fix appearance of shadows on Collage block placeholders [#1895](https://github.com/godaddy-wordpress/coblocks/pull/1895)
2.11.0 / 2021-04-26
===================
### Enhancements
* Enhance Services block extensibility and UX [#1866](https://github.com/godaddy-wordpress/coblocks/pull/1866)
* Enhance Collage Gallery consistency with default alignment [#1891](https://github.com/godaddy-wordpress/coblocks/pull/1891)
### Bug Fixes
* Fix Gallery gutter controls missing values [#1883](https://github.com/godaddy-wordpress/coblocks/pull/1883)
* Fix regression with getPhrasingContentSchema using pre 5.6 WordPress [#1882](https://github.com/godaddy-wordpress/coblocks/pull/1882)
* Fix Stacked Gallery preview margins [#1884](https://github.com/godaddy-wordpress/coblocks/pull/1884)
* Fix Services block selected state box shadow [#1886](https://github.com/godaddy-wordpress/coblocks/pull/1886)
2.10.1 / 2021-04-14
===================
### Bug Fixes
* Fix Group block missing class [#1885](https://github.com/godaddy-wordpress/coblocks/pull/1885)
2.10.0 / 2021-04-12
===================
### Enhancements
* Introduce image replacement flow to CoBlocks Gallery blocks [#1870](https://github.com/godaddy-wordpress/coblocks/pull/1870)
* Enhance reliability and extensibility of CoBlocks settings control implementation [#1869](https://github.com/godaddy-wordpress/coblocks/pull/1869)
* Enhance Layout Selector UX by improving focus styles [#1865](https://github.com/godaddy-wordpress/coblocks/pull/1865)
### Bug Fixes
* Fix Collage Gallery dropzone label [#1873](https://github.com/godaddy-wordpress/coblocks/pull/1873)
* Fix posts block margin in Safari and IE [#1875](https://github.com/godaddy-wordpress/coblocks/pull/1875)
* Fix layouts jumping around within the Layout Selector in Safari [#1874](https://github.com/godaddy-wordpress/coblocks/pull/1874)
* Fix width of images in image filter previews [#1876](https://github.com/godaddy-wordpress/coblocks/pull/1876)
* Fix Image block transforms into CoBlocks Galleries [#1855](https://github.com/godaddy-wordpress/coblocks/pull/1855)
* Fix image replace flow for core gallery block [#1877](https://github.com/godaddy-wordpress/coblocks/pull/1877)
* Fix duplicated images within media library on upload [#1872](https://github.com/godaddy-wordpress/coblocks/pull/1872)
* Fix custom text color in Hero block [#1857](https://github.com/godaddy-wordpress/coblocks/pull/1857)
* Fix superfluous style applied within Cover blocks [#1867](https://github.com/godaddy-wordpress/coblocks/pull/1867)
* Fix custom class replication with blocks [#1864](https://github.com/godaddy-wordpress/coblocks/pull/1864)
### Misc
* Refactor Gist component to hooks [#1859](https://github.com/godaddy-wordpress/coblocks/pull/1859)
* Import getPhrasingContentSchema from @wordpress/dom instead of @wordpress/blocks [#1702](https://github.com/godaddy-wordpress/coblocks/pull/1702)
2.9.1 / 2021-03-23
==================
### Bug Fixes
* Hide media upload flow popover menu when upload modal is open [#1863](https://github.com/godaddy-wordpress/coblocks/pull/1863)
* When two or more gists on an edit page, fix so that they render properly [#1856](https://github.com/godaddy-wordpress/coblocks/pull/1856)
* Improve Food & Drink block test reliability [#1854](https://github.com/godaddy-wordpress/coblocks/pull/1854)
2.9 / 2021-03-15
================
### Enhancements
* Introduce WordPress 5.7 compatibility changes [#1845](https://github.com/godaddy-wordpress/coblocks/pull/1845)
* Introduce new from: header to form submission emails [#1840](https://github.com/godaddy-wordpress/coblocks/pull/1840)
### Bug Fixes
* Fix Services block image height in TwentyTwentyOne [#1846](https://github.com/godaddy-wordpress/coblocks/pull/1846)
* Fix Logos & Badges block sizing behavior [#1852](https://github.com/godaddy-wordpress/coblocks/pull/1852)
* Fix Accordion block appender behavior [#1851](https://github.com/godaddy-wordpress/coblocks/pull/1851)
* Fix animation visibility when in AMP [#1847](https://github.com/godaddy-wordpress/coblocks/pull/1847)
### Misc
* Document tested to WordPress 5.7 [#1853](https://github.com/godaddy-wordpress/coblocks/pull/1853)
2.8.2 / 2021-03-01
==================
### Bug Fixes
* Fix Carousel thumbnail navigation behavior [#1835](https://github.com/godaddy-wordpress/coblocks/pull/1835)
* Fix Layout Selector behavior around animations [#1831](https://github.com/godaddy-wordpress/coblocks/pull/1831)
2.8.1 / 2021-02-16
==================
### Bug Fixes
* Fix backward compatibility with WP_Block_Supports [#1828](https://github.com/godaddy-wordpress/coblocks/pull/1828)
2.8.0 / 2021-02-15
==================
### Enhancements
* Introduce ability to Link to images within Service block [#1807](https://github.com/godaddy-wordpress/coblocks/pull/1807)
* Improve Gist block User Experience with updated styles [#1820](https://github.com/godaddy-wordpress/coblocks/pull/1820)
### Bug Fixes
* Fix gallery captions rich text controls visibility [#1821](https://github.com/godaddy-wordpress/coblocks/pull/1821)
* Fix Posts block missing images and improper layout [#1825](https://github.com/godaddy-wordpress/coblocks/pull/1825)
* Fix Author block button removal and image placeholder alignment [#1822](https://github.com/godaddy-wordpress/coblocks/pull/1822)
* Fix unintentional limit on block patterns count [#1818](https://github.com/godaddy-wordpress/coblocks/pull/1818)
* Fix focus state to improve accessibility of Layout Selector [#1821](https://github.com/godaddy-wordpress/coblocks/pull/1821)
2.7.2 / 2021-02-03
==================
### Bug Fixes
* Fix bug when utilizing Background Tasks API [#1816](https://github.com/godaddy-wordpress/coblocks/pull/1816)
* Fix bug with DockerHub authentication [#1817](https://github.com/godaddy-wordpress/coblocks/pull/1817)
2.7.0 / 2021-02-02
==================
### Enhancements
* Add replace image button to Collage block gallery items [#1804](https://github.com/godaddy-wordpress/coblocks/pull/1804)
* Add mobile friendly experience to Layout Selector [#1800](https://github.com/godaddy-wordpress/coblocks/pull/1800)
### Bug Fixes
* Fix layout selector modal appearance to show only when creating new pages [#1794](https://github.com/godaddy-wordpress/coblocks/pull/1794)
* Fix Logos & Badges block responsive layout [#1810](https://github.com/godaddy-wordpress/coblocks/pull/1810)
* Fix Gist block console warning message [#1802](https://github.com/godaddy-wordpress/coblocks/pull/1802)
* Fix Carousel block initial image hidden [#1798](https://github.com/godaddy-wordpress/coblocks/pull/1798)
* Fix animation behavior when IntersectionObserver is not detected [#1799](https://github.com/godaddy-wordpress/coblocks/pull/1799)
### Misc
* Improvements to Layout Selector styles and performance [#1795](https://github.com/godaddy-wordpress/coblocks/pull/1795) [#1796](https://github.com/godaddy-wordpress/coblocks/pull/1796) [#1793](https://github.com/godaddy-wordpress/coblocks/pull/1793)
2.6.0 / 2021-01-14
==================
### Enhancements
* Introduce 'Most Used' category to Layout Selector controls [#1786](https://github.com/godaddy-wordpress/coblocks/pull/1786)
* Introduce customizable padding controls to core/group block [#1790](https://github.com/godaddy-wordpress/coblocks/pull/1790)
* Enhance block sizing controls UI style consistency [#1789](https://github.com/godaddy-wordpress/coblocks/pull/1789)
### Bug Fixes
* Fix bug with aligned Lightbox images [#1787](https://github.com/godaddy-wordpress/coblocks/pull/1787)
* Fix bug with cover block placeholder styles [#1778](https://github.com/godaddy-wordpress/coblocks/pull/1778)
### Misc
* Apply ESLint fixes and E2E test fixes. [#1788](https://github.com/godaddy-wordpress/coblocks/pull/1788)
2.5.3 / 2020-11-23
==================
### Enhancements
* Add hint to the "Save Design Pattern" modal [#1751](https://github.com/godaddy-wordpress/coblocks/pull/1751)
* Add icons for improved animations UI [#1752](https://github.com/godaddy-wordpress/coblocks/pull/1752)
### Misc
* Add logic to define Layout Selector visibility in data store [#1754](https://github.com/godaddy-wordpress/coblocks/pull/1754)
* Add logic to prevent insertion of Media Card block [#1760](https://github.com/godaddy-wordpress/coblocks/pull/1760)
* Add logic to deprecate typography controls from Click-To-Tweet block [#1757](https://github.com/godaddy-wordpress/coblocks/pull/1757)
* Remove deprecated transforms jest tests [#1761](https://github.com/godaddy-wordpress/coblocks/pull/1761)
* Cypress E2E testing framework upgrades [#1763](https://github.com/godaddy-wordpress/coblocks/pull/1763)
* Cypress E2E test updates and tweaks [#1764](https://github.com/godaddy-wordpress/coblocks/pull/1764)
2.5.2 / 2020-11-09
==================
### Enhancements
* Improve performance of Layout selector [#1577](https://github.com/godaddy-wordpress/coblocks/pull/1577)
* Enhance Layout selector by enabling extensibility [#1738](https://github.com/godaddy-wordpress/coblocks/pull/1738)
### Bug Fixes
* Fix broken style previews across blocks [#1747](https://github.com/godaddy-wordpress/coblocks/pull/1747)
### Misc
* Remove image download functionality from layout selector [#1733](https://github.com/godaddy-wordpress/coblocks/pull/1733)
2.5.1 / 2020-10-29
==================
### Bug Fixes
* Preserve gallery animations on transform [#1736](https://github.com/godaddy-wordpress/coblocks/pull/1736)
* Fix composer specificity with CI jobs [#1739](https://github.com/godaddy-wordpress/coblocks/pull/1739)
### Misc
* Improve block layout preview extensibility [#1735](https://github.com/godaddy-wordpress/coblocks/pull/1735)
* Improve copy consistency using sentence case [#1740](https://github.com/godaddy-wordpress/coblocks/pull/1740)
* Improve copy quality around block patterns modal [#1741](https://github.com/godaddy-wordpress/coblocks/pull/1741)
2.5.0 / 2020-10-15
==================
### Enhancements
* ✨ Add animation option to Group, Columns and Carousel blocks [#1720](https://github.com/godaddy-wordpress/coblocks/pull/1720)
* ✨ Add animation option to Collage, Masonry, Offset, and Stacked blocks [#1725](https://github.com/godaddy-wordpress/coblocks/pull/1725)
* ✨ Add ability to disable animation via the CoBlocks Editor Settings [#1692](https://github.com/godaddy-wordpress/coblocks/pull/1692)
* Introduce image filters to core image block [#1716](https://github.com/godaddy-wordpress/coblocks/pull/1716)
* Introduce image filter hover-to-preview functionality [#1721](https://github.com/godaddy-wordpress/coblocks/pull/1721)
* Improve UX of blocks with animations applied and playing [#1726](https://github.com/godaddy-wordpress/coblocks/pull/1726)
### Bug Fixes
* Fix Features block column controls [#1732](https://github.com/godaddy-wordpress/coblocks/pull/1732)
* Fix Row width and Typography control issues [#1711](https://github.com/godaddy-wordpress/coblocks/pull/1711)
* Fix gallery media upload across blocks [#1730](https://github.com/godaddy-wordpress/coblocks/pull/1730)
* Fix duplicated gallery transforms [#1718](https://github.com/godaddy-wordpress/coblocks/pull/1718)
* Fix off-center Lightbox images under certain conditions [#1710](https://github.com/godaddy-wordpress/coblocks/pull/1710)
### Misc
* Force SCSS linting on pre-commit and fix SCSS files [#1698](https://github.com/godaddy-wordpress/coblocks/pull/1698)
* Improve layout availability for the Layout Selector [#1727](https://github.com/godaddy-wordpress/coblocks/pull/1727)
* Improve UX around use of media-card [#1724](https://github.com/godaddy-wordpress/coblocks/pull/1724)
2.4.0 / 2020-10-02
==================
### Enhancements
* ✨ Introduce animation control [#1667](https://github.com/godaddy-wordpress/coblocks/pull/1667)
* Download remote images used in layouts [#1607](https://github.com/godaddy-wordpress/coblocks/pull/1607)
* Enhance Map block placeholder with new styles [#1694](https://github.com/godaddy-wordpress/coblocks/pull/1694)
* Improve move arrow orientation on gallery blocks [#1691](https://github.com/godaddy-wordpress/coblocks/pull/1691)
* Introduce From block label color controls [#1646](https://github.com/godaddy-wordpress/coblocks/pull/1646)
### Bug Fixes
* Add form field transformations [#1676](https://github.com/godaddy-wordpress/coblocks/pull/1676)
* Collage block: Add caption margin zero [#1679](https://github.com/godaddy-wordpress/coblocks/pull/1679)
* Fix appearance of Row block column spacing controls [#1695](https://github.com/godaddy-wordpress/coblocks/pull/1695)
* Fix carousel arrows in an RTL environment [#1699](https://github.com/godaddy-wordpress/coblocks/pull/1699)
* Fix formattingControls console warnings [#1701](https://github.com/godaddy-wordpress/coblocks/pull/1701)
* Fix post carousel arrows/text-align when in an RTL environment [#1700](https://github.com/godaddy-wordpress/coblocks/pull/1700)
* Fix style previews for social blocks [#1697](https://github.com/godaddy-wordpress/coblocks/pull/1697)
* Fix un-wanted margins being applied to the markup of Gallery blocks [#1696](https://github.com/godaddy-wordpress/coblocks/pull/1696)
* HeadingToolbar: Use ToolbarGroup to render controls correctly [#1673](https://github.com/godaddy-wordpress/coblocks/pull/1673)
* Migrate CoBlocks galley controls to use core styles [#1687](https://github.com/godaddy-wordpress/coblocks/pull/1687)
* Remove deprecated isLarge Button component prop [#1703](https://github.com/godaddy-wordpress/coblocks/pull/1703)
* Remove unnecessary SCSS variables and use @wordpress/base-styles instead [#1672](https://github.com/godaddy-wordpress/coblocks/pull/1672)
* Transform form fields with proper labels [#1680](https://github.com/godaddy-wordpress/coblocks/pull/1680)
* Tweak Form label color controls [#1683](https://github.com/godaddy-wordpress/coblocks/pull/1683)
* Update edit icons to utilize @wordpress/icons edit icon [#1689](https://github.com/godaddy-wordpress/coblocks/pull/1689)
### Misc
* 🎉 Add [Jon Surrell](https://github.com/sirreal) as a contributor [#1681](https://github.com/godaddy-wordpress/coblocks/pull/1681)
* Add [Hacktoberfest](https://hacktoberfest.digitalocean.com/) label [#1693](https://github.com/godaddy-wordpress/coblocks/pull/1693)
* Improve Collage Gallery block tests [#1708](https://github.com/godaddy-wordpress/coblocks/pull/1708)
* Improve Stacked Gallery block tests [#1709](https://github.com/godaddy-wordpress/coblocks/pull/1709)
* Migrate icons to use coblocks-icons package [#1682](https://github.com/godaddy-wordpress/coblocks/pull/1682)
* Resolve errors around icon imports [#1686](https://github.com/godaddy-wordpress/coblocks/pull/1686)
* Resolve PHPCS errors [#1685](https://github.com/godaddy-wordpress/coblocks/pull/1685)
* Update coblocks-icon package to 1.2.0 [#1684](https://github.com/godaddy-wordpress/coblocks/pull/1684)
2.3.2 / 2020-09-09
==================
### Bug Fixes
* Prevent layout selector on posts saved as a draft [#1675](https://github.com/godaddy-wordpress/coblocks/pull/1675)
* Fix required checkbox/radio hidden message escaped markup [#1677](https://github.com/godaddy-wordpress/coblocks/pull/1677)
* Fix editor crash when running WordPress 5.4.2 [#1669](https://github.com/godaddy-wordpress/coblocks/pull/1669)
* Use ToolbarGroup to render controls correctly in Gutenberg 8.8+ [#1671](https://github.com/godaddy-wordpress/coblocks/pull/1671)
### Misc
* Add @WunderBart as a contributor 🎉 [#1674](https://github.com/godaddy-wordpress/coblocks/pull/1674)
2.3.1 / 2020-09-03
==================
### Bug Fixes
* Fix custom taxonomy not being assigned to block pattern on save
2.3.0 / 2020-09-03
==================
### Enhancement
* Add styles to Media & Text block [#1605](https://github.com/godaddy-wordpress/coblocks/pull/1605)
* Add support for __experimentalCaptureToolbars [#1661](https://github.com/godaddy-wordpress/coblocks/pull/1661)
* Introduce ability to define a custom form success message in the Form block [#1647](https://github.com/godaddy-wordpress/coblocks/pull/1647)
* Introduce custom block patterns saved as a CPT. [#1659](https://github.com/godaddy-wordpress/coblocks/pull/1659)
* Introduce support for custom gutter controls [#1619](https://github.com/godaddy-wordpress/coblocks/pull/1619)
* Layouts as Custom Post Type [#1581](https://github.com/godaddy-wordpress/coblocks/pull/1581)
* Update Row, Accordion, and Column block icons [#1662](https://github.com/godaddy-wordpress/coblocks/pull/1662)
### Bug Fixes
* Fix cursor hover state on offset/collage blocks [#1657](https://github.com/godaddy-wordpress/coblocks/pull/1657)
* Fix Icon block style previews [#1649](https://github.com/godaddy-wordpress/coblocks/pull/1649)
* Fix required form radio/checkbox fields [#1643](https://github.com/godaddy-wordpress/coblocks/pull/1643)
* Fix variation titles for Row and Form blocks [#1660](https://github.com/godaddy-wordpress/coblocks/pull/1660)
* Introduce Posts and Post Carousel block deprecations [#1638](https://github.com/godaddy-wordpress/coblocks/pull/1638)
### Misc
* Fix Editor Settings control description alignment [#1648](https://github.com/godaddy-wordpress/coblocks/pull/1648)
* Migrate CoBlocks to use @wordpress/base-styles package [#1651](https://github.com/godaddy-wordpress/coblocks/pull/1651)
* Move appropriate contributors to the CONTRIBUTORS file [#1641](https://github.com/godaddy-wordpress/coblocks/pull/1641)
* Move i18ntools to their own composer package [#1650](https://github.com/godaddy-wordpress/coblocks/pull/1650)
* Remove arrows from lightbox in single image galleries [#1656](https://github.com/godaddy-wordpress/coblocks/pull/1656)
* Remove box shadow from selected Form block fields [#1655](https://github.com/godaddy-wordpress/coblocks/pull/1655)
2.2.2 / 2020-08-20
==================
### Enhancement
* Hide form reCAPTCHA panel on initial load [#1621](https://github.com/godaddy-wordpress/coblocks/pull/1621)
### Bug Fixes
* Introduce Shape Divider deprecations related to extensions [#1633](https://github.com/godaddy-wordpress/coblocks/pull/1633)
* Prevent columns css from overriding list-style css [#1635](https://github.com/godaddy-wordpress/coblocks/pull/1635)
* Pull in SVG components from wp/5.3 release for deprecation [#1637](https://github.com/godaddy-wordpress/coblocks/pull/1637)
* Style block appenders better for WordPress 5.5 [#1616](https://github.com/godaddy-wordpress/coblocks/pull/1616)
2.2.1 / 2020-08-11
==================
### Bug Fixes
* Fix Icon block deprecation from legacy markup [#1622](https://github.com/godaddy-wordpress/coblocks/pull/1622)
2.2.0 / 2020-08-06
==================
### Enhancements
* Tweaks to CoBlocks icons descriptions labels and keywords to support the new editor UI [#1602](https://github.com/godaddy-wordpress/coblocks/pull/1602)
* Update CSS selectors for WordPress 5.5 support [#1608](https://github.com/godaddy-wordpress/coblocks/pull/1608)
* Enable use of core color variables for extensibility [#1598](https://github.com/godaddy-wordpress/coblocks/pull/1598)
* Improve Lightbox compatibility with Themes [#1587](https://github.com/godaddy-wordpress/coblocks/pull/1587)
* Allow empty lines within the Price Table features list [#1586](https://github.com/godaddy-wordpress/coblocks/pull/1586)
### Bug Fixes
* Fix Accordion block support for grandchild blocks [#1582](https://github.com/godaddy-wordpress/coblocks/pull/1582)
* Fix bug where empty sidebar panels may appear on blocks [#1610](https://github.com/godaddy-wordpress/coblocks/pull/1610)
* Fix display of gallery image control styles [#1591](https://github.com/godaddy-wordpress/coblocks/pull/1591)
* Fix MediaCard block resizable controls [#1603](https://github.com/godaddy-wordpress/coblocks/pull/1603)
### Misc
* Update tested to value to 5.5 [#1614](https://github.com/godaddy-wordpress/coblocks/pull/1614)
* Deprecate IconButton component in favor of Button component [#1609](https://github.com/godaddy-wordpress/coblocks/pull/1609)
* Remove crop controls from core image block [#1597](https://github.com/godaddy-wordpress/coblocks/pull/1597)
2.1.0 / 2020-07-23
==================
### Enhancements
* Enable extensibility of CoBlocks settings panel using SlotFill component [#1573](https://github.com/godaddy-wordpress/coblocks/pull/1573)
* Introduce Lightbox controls to the core/gallery and core/image blocks [#1557](https://github.com/godaddy-wordpress/coblocks/pull/1557)
* Allow closing of Lightbox with the esc keyboard shortcut [#1567](https://github.com/godaddy-wordpress/coblocks/pull/1567)
### Bug Fixes
* Fix Posts and Post Carousel blocks compatibility across Gutenberg versions [#1576](https://github.com/godaddy-wordpress/coblocks/pull/1576)
* Fix Click to Tweet inline toolbar SVG styles [#1575](https://github.com/godaddy-wordpress/coblocks/pull/1575)
* Fix Hero block resizable handles error [#1568](https://github.com/godaddy-wordpress/coblocks/pull/1568)
* Remove list styles from editor for Gallery blocks [#1584](https://github.com/godaddy-wordpress/coblocks/pull/1568)
* Allow HTML formatted text within Lightbox captions [#1566](https://github.com/godaddy-wordpress/coblocks/pull/1566)
### Misc
* Implement detection of modified code in extensions when setting up test specs [#1571](https://github.com/godaddy-wordpress/coblocks/pull/1571)
* Add Accordion block save Jest tests [#1565](https://github.com/godaddy-wordpress/coblocks/pull/1565)
* Add documentation of releasing new CoBlocks versions [#1583](https://github.com/godaddy-wordpress/coblocks/pull/1586)
2.0.3 / 2020-07-10
==================
### Enhancements
* Introduce Padding Controls extension to core/group block [#1556](https://github.com/godaddy-wordpress/coblocks/pull/1556)
### Bug Fixes
* Ensure extensions are applied properly to blocks [#1515](https://github.com/godaddy-wordpress/coblocks/pull/1515)
* Fix focus mode issue within the Layout Selector [#1562](https://github.com/godaddy-wordpress/coblocks/pull/1562)
2.0.2 / 2020-06-25
==================
### Enhancements
* Tweak categories in support of new categories within the Gutenberg plugin [#1535](https://github.com/godaddy-wordpress/coblocks/pull/1535)
* Update the Services block selected state [#1546](https://github.com/godaddy-wordpress/coblocks/pull/1546)
### Bug Fixes
* Add proper styling for the DimensionsControl in Gutenberg 8.3+ [#1544](https://github.com/godaddy-wordpress/coblocks/pull/1544)
* Fix Accordion children block appender [#1545](https://github.com/godaddy-wordpress/coblocks/pull/1545)
* Fix gallery captions and custom links disappearing [#1533](https://github.com/godaddy-wordpress/coblocks/pull/1533)
* Fix Map block API issues [#1542](https://github.com/godaddy-wordpress/coblocks/pull/1542)
* Fix Posts and PostCarousel error with the Gutenberg plugin [#1547](https://github.com/godaddy-wordpress/coblocks/pull/1547)
* Improve consistency of advanced margin propagation [#1548](https://github.com/godaddy-wordpress/coblocks/pull/1548)
### Misc
* Add tests for the `alert` block save. [#1536](https://github.com/godaddy-wordpress/coblocks/pull/1536)
* Fix unit tests by importing getCategories [#1552](https://github.com/godaddy-wordpress/coblocks/pull/1552)
* Use React hooks to improve Advanced Margins feature [#1553](https://github.com/godaddy-wordpress/coblocks/pull/1553)
2.0.1 / 2020-06-18
==================
### Enhancements
* Social profiles: Open links in new tab [#1520](https://github.com/godaddy-wordpress/coblocks/pull/1520)
### Bug Fixes
* Fix editor performance relating to advanced margins [#1543](https://github.com/godaddy-wordpress/coblocks/pull/1543)
* Remove selected block outline for Shape Divider in G8.3+ [#1541](https://github.com/godaddy-wordpress/coblocks/pull/1541)
* Fix primary/secondary buttons in custom components with Gutenberg active [#1532](https://github.com/godaddy-wordpress/coblocks/pull/1532)
* Fix Services innerBlock based on column count [#1534](https://github.com/godaddy-wordpress/coblocks/pull/1534)
### Misc
* Remove reference to coblocks.com [#1540](https://github.com/godaddy-wordpress/coblocks/pull/1540)
2.0.0 / 2020-06-11
==================
### Enhancements
* 🎉 Introduce the new Layout Selector [#1473](https://github.com/godaddy-wordpress/coblocks/pull/1473)
* Introduce CSS Custom Properties for $spacing [#1476](https://github.com/godaddy-wordpress/coblocks/pull/1476)
### Bug Fixes
* Add Lightbox support for lazy loading plugins [#1486](https://github.com/godaddy-wordpress/coblocks/pull/1486)
* Fix Gallery blocks image links when Lightbox is active [#1497](https://github.com/godaddy-wordpress/coblocks/pull/1497)
* Fix Form block inline toolbar typography controls [#1489](https://github.com/godaddy-wordpress/coblocks/pull/1489)
* Fix fullwidth buttons display issues [#1484](https://github.com/godaddy-wordpress/coblocks/pull/1484)
* Fix gallery caption display when using custom links [#1527](https://github.com/godaddy-wordpress/coblocks/pull/1527)
* Fix overwriting existing line height style when none has been set [#1526](https://github.com/godaddy-wordpress/coblocks/pull/1526)
* Fix resizablebox handle visibility [#1516](https://github.com/godaddy-wordpress/coblocks/pull/1516)
* Fix advanced spacing in the Layout Selector and Editor [#1521](https://github.com/godaddy-wordpress/coblocks/pull/1521)
* Add appropriate margin between Services block placeholder and title [#1505](https://github.com/godaddy-wordpress/coblocks/pull/1505)
* Fix advanced block spacing with Gutenberg plugin [#1518](https://github.com/godaddy-wordpress/coblocks/pull/1518)
* Fix gallery block image selector UI for Gutenberg 8.2+ [#1507](https://github.com/godaddy-wordpress/coblocks/pull/1507)
### Misc
* Change import target [#1529](https://github.com/godaddy-wordpress/coblocks/pull/1529)
* Remove .prettierrc.js file from repository [#1522](https://github.com/godaddy-wordpress/coblocks/pull/1522)
* Optimize CircleCI Workflow [#1328](https://github.com/godaddy-wordpress/coblocks/pull/1328)
1.26.3 / 2020-05-29
===================
### Bug Fixes
* Apply styles for formats [#1494](https://github.com/godaddy-wordpress/coblocks/pull/1494)
### Misc
* Update contributors list [#1498](https://github.com/godaddy-wordpress/coblocks/pull/1498)
* Update typography hooks docs [#1502](https://github.com/godaddy-wordpress/coblocks/pull/1502)
1.26.2 / 2020-05-29
===================
### Bug Fixes
* Improve conditional loading of scripts and styles [#1511](https://github.com/godaddy-wordpress/coblocks/pull/1511)
* Add custom classes for Map block within the editor [#1492](https://github.com/godaddy-wordpress/coblocks/pull/1492)
* Updating security related dependencies [#1482](https://github.com/godaddy-wordpress/coblocks/pull/1482)
1.26.1 / 2020-05-04
===================
### Bug Fixes
* Render a submit button if not found in the block content [#1479](https://github.com/godaddy-wordpress/coblocks/pull/1479)
* Remove a condition where a variable may not be defined [#1477](https://github.com/godaddy-wordpress/coblocks/pull/1477)
1.26.0 / 2020-04-30
===================
### Enhancements
* Allow core/shortcode block in the Pricing Table block [#1465](https://github.com/godaddy-wordpress/coblocks/pull/1465)
* Use columns/gutter utilities on the Pricing Table block [#1440](https://github.com/godaddy-wordpress/coblocks/pull/1440)
* Only load front end CSS when it is needed [#1455](https://github.com/godaddy-wordpress/coblocks/pull/1455)
### Bug Fixes
* Maintain Masonry block gutter as browser viewport resizes [#1469](https://github.com/godaddy-wordpress/coblocks/pull/1469)
* Propagate Hero alignment to children [#1463](https://github.com/godaddy-wordpress/coblocks/pull/1463)
### Misc
* Add form block e2e test to confirm emails are being sent [#1468](https://github.com/godaddy-wordpress/coblocks/pull/1468)
* Improve keywords for icons [#1448](https://github.com/godaddy-wordpress/coblocks/pull/1448)
1.25.0 / 2020-04-23
===================
### Enhancements
* Improve logic to handle Accordion block open state [#1458](https://github.com/godaddy-wordpress/coblocks/pull/1458)
* Introduce Vertical Alignment controls to Row block [#1437](https://github.com/godaddy-wordpress/coblocks/pull/1437)
### Bug Fixes
* Fix accordion display across IE/Edge browsers [#1456](https://github.com/godaddy-wordpress/coblocks/pull/1456)
* Fix checkbox icon SVG to display properly [#1461](https://github.com/godaddy-wordpress/coblocks/pull/1461)
* Fix Contact Form block submissions not sending [#1467](https://github.com/godaddy-wordpress/coblocks/pull/1467)
* Fix Row block alignment bug with Go theme [#1459](https://github.com/godaddy-wordpress/coblocks/pull/1459)
### Misc
* Add proper example to the Pricing Table block [#1450](https://github.com/godaddy-wordpress/coblocks/pull/1450)
* Deploy canary build to wpnux [#1452](https://github.com/godaddy-wordpress/coblocks/pull/1452)
* Improve WP.org FAQs [#1464](https://github.com/godaddy-wordpress/coblocks/pull/1464)
* Properly scope the datepicker to prevent conflicts [#1447](https://github.com/godaddy-wordpress/coblocks/pull/1447)
* Refactor lightbox to remove jQuery requirement [#1429](https://github.com/godaddy-wordpress/coblocks/pull/1429)
* Update CONTRIBUTORS.md [#1462](https://github.com/godaddy-wordpress/coblocks/pull/1462)
1.24.0 / 2020-04-16
===================
### Enhancements
* Improve Share block UX [#1433](https://github.com/godaddy-wordpress/coblocks/pull/1433)
* Use column and gutter utility classes within the Food and Drinks block [#1384](https://github.com/godaddy-wordpress/coblocks/pull/1384)
* Migrate the Form block's submit button to a child block [#1397](https://github.com/godaddy-wordpress/coblocks/pull/1397)
* Introduce cross browser E2E testing [#1375](https://github.com/godaddy-wordpress/coblocks/pull/1375)
### Bug Fixes
* Fix duplicate classes with Posts block [#1443](https://github.com/godaddy-wordpress/coblocks/pull/1443)
* Do not register if coblocksSettings is undefined [#1451](https://github.com/godaddy-wordpress/coblocks/pull/1451)
* Fix Map block placeholder styles [#1442](https://github.com/godaddy-wordpress/coblocks/pull/1442)
* Fix Icon block spacing when using custom links [#1430](https://github.com/godaddy-wordpress/coblocks/pull/1430)
* Remove 100% height on front of site gallery carousels [#1436](https://github.com/godaddy-wordpress/coblocks/pull/1436)
### Misc
* Return class instance on register [#1444](https://github.com/godaddy-wordpress/coblocks/pull/1444)
* Refactor gutter options functionality across blocks [#1445](https://github.com/godaddy-wordpress/coblocks/pull/1445)
* Validate Composer configuration [#1388](https://github.com/godaddy-wordpress/coblocks/pull/1388)
* Remove the options parameter passed into wp_json_encode [#1390](https://github.com/godaddy-wordpress/coblocks/pull/1390)
* Fix variable type in coblocks_render_events_block [#1389](https://github.com/godaddy-wordpress/coblocks/pull/1389)
* Update Canary release CircleCI deployment [#1431](https://github.com/godaddy-wordpress/coblocks/pull/1431)
1.23.0 / 2020-03-19
===================
### Enhancements
* Add 'Replace Image' button to core/image InspectorControls [#1385](https://github.com/godaddy-wordpress/coblocks/pull/1385)
* Add Form block Text field [#1417](https://github.com/godaddy-wordpress/coblocks/pull/1417)
* Introduce RTL support [#1420](https://github.com/godaddy-wordpress/coblocks/pull/1420)
* Introduce a filter to disable the CoBlocks bundled SVG icons within the Icon Block [#1403](https://github.com/godaddy-wordpress/coblocks/pull/1403)
* Remove jQuery from Form, Gif, Crop Settings [#1376](https://github.com/godaddy-wordpress/coblocks/pull/1376)
* Show gallery image captions in lightbox [#1409](https://github.com/godaddy-wordpress/coblocks/pull/1409)
### Bug Fixes
* Clicking captions opens the lightbox [#1407](https://github.com/godaddy-wordpress/coblocks/pull/1407)
* Fix Form block for Gutenberg 7.7 [#1419](https://github.com/godaddy-wordpress/coblocks/pull/1419)
* Fix Map block error in editor + refactor wp.api global [#1411](https://github.com/godaddy-wordpress/coblocks/pull/1411)
* Fix Posts and Post Carousel block categories control [#1406](https://github.com/godaddy-wordpress/coblocks/pull/1406)
* Fix image and price toggle behavior on the Food and Drinks block [#1402](https://github.com/godaddy-wordpress/coblocks/pull/1402)
* Fix selected font family option in the typography controls [#1404](https://github.com/godaddy-wordpress/coblocks/pull/1404)
### Misc
* Add CoBlocks icon to docs [#1412](https://github.com/godaddy-wordpress/coblocks/pull/1412)
* Add docs for CoBlocks features [#1418](https://github.com/godaddy-wordpress/coblocks/pull/1418)
* E2E Gauntlet Testing Script [#1415](https://github.com/godaddy-wordpress/coblocks/pull/1415)
* Introduce E2E tests for CoBlocks Settings panel [#1395](https://github.com/godaddy-wordpress/coblocks/pull/1395)
* Minor style specificity clean-up [#1424](https://github.com/godaddy-wordpress/coblocks/pull/1424)
* Refactor form radio and checkbox labels [#1416](https://github.com/godaddy-wordpress/coblocks/pull/1416)
* Tweak UI to support sentence case [#1414](https://github.com/godaddy-wordpress/coblocks/pull/1414)
* Update Tested up to value to WordPress 5.4 [#1422](https://github.com/godaddy-wordpress/coblocks/pull/1422)
* Update npm and composer development dependencies [#1413](https://github.com/godaddy-wordpress/coblocks/pull/1413)
1.22.0 / 2020-03-04
===================
### Enhancements
* Control Food Item block headings from the parent Food and Drinks block [#1381](https://github.com/godaddy-wordpress/coblocks/pull/1381)
* Introduce 29 new icons into the icon block [#1398](https://github.com/godaddy-wordpress/coblocks/pull/1398)
* Make the available Google Fonts filterable [#1386](https://github.com/godaddy-wordpress/coblocks/pull/1386)
* Migrate Row block to variations API [#1372](https://github.com/godaddy-wordpress/coblocks/pull/1372)
* Persist Accordion block open state when editing a post [#1393](https://github.com/godaddy-wordpress/coblocks/pull/1393)
* Support new block collection functionality in WordPress 5.4 [#1367](https://github.com/godaddy-wordpress/coblocks/pull/1367)
* WordPress 5.4 compatibility changes to CoBlocks [#1380](https://github.com/godaddy-wordpress/coblocks/pull/1380)
### Bug Fixes
* Conditionally enqueue slick.js for Events block [#1379](https://github.com/godaddy-wordpress/coblocks/pull/1379)
* Fix Row block placeholder spacing [#1400](https://github.com/godaddy-wordpress/coblocks/pull/1400)
### Misc
* Add automated testing of block save functions [#1350](https://github.com/godaddy-wordpress/coblocks/pull/1350), [#1378](https://github.com/godaddy-wordpress/coblocks/pull/1378), [#1357](https://github.com/godaddy-wordpress/coblocks/pull/1357), [#1348](https://github.com/godaddy-wordpress/coblocks/pull/1348)
* Callout Go as a companion theme in the readme [#1382](https://github.com/godaddy-wordpress/coblocks/pull/1382)
* Update Form block variable names [#1373](https://github.com/godaddy-wordpress/coblocks/pull/1373)
1.21.1 / 2020-02-20
===================
### Bug Fixes
* Fix some images being completely black when filtered in the Logos block [#1358](https://github.com/godaddy-wordpress/coblocks/pull/1358)
* Implement blockVariationPicker with Form block [#1355](https://github.com/godaddy-wordpress/coblocks/pull/1355)
### Misc
* Bring back one column variation to the Row block by popular demand [#1368](https://github.com/godaddy-wordpress/coblocks/pull/1368)
* Add documentation for editor settings hooks [#1366](https://github.com/godaddy-wordpress/coblocks/pull/1366)
* Move Features/Services HeadingToolbar controls to block toolbar [#1352](https://github.com/godaddy-wordpress/coblocks/pull/1352)
1.21.0 / 2020-02-13
===================
### Enhancements
* Add gutter support to Posts block [#1325](https://github.com/godaddy-wordpress/coblocks/pull/1325)
* Add heading level control to Features block [#1309](https://github.com/godaddy-wordpress/coblocks/pull/1309)
* Add styles to Post block featured images [#1315](https://github.com/godaddy-wordpress/coblocks/pull/1315)
* Introduce CoBlocks editor settings panel [#1313](https://github.com/godaddy-wordpress/coblocks/pull/1313)
* Migration from CGB to @wordpress/scripts [#1183](https://github.com/godaddy-wordpress/coblocks/pull/1183)
* Remove one column option from the Row block [#1308](https://github.com/godaddy-wordpress/coblocks/pull/1308)
* Replace ButtonGroup controls with OptionSelectorControl for improved UX [#1323](https://github.com/godaddy-wordpress/coblocks/pull/1323)
### Bug Fixes
* Don't translate date strings in the iCal parser [#1337](https://github.com/godaddy-wordpress/coblocks/pull/1337)
* Ensure hero block custom classes are applied [#1335](https://github.com/godaddy-wordpress/coblocks/pull/1335)
* Fix Gluten Free attribute display on Food & Drinks block [#1347](https://github.com/godaddy-wordpress/coblocks/pull/1347)
* Fix Icon block reset button for improved i18n support [#1310](https://github.com/godaddy-wordpress/coblocks/pull/1310)
* Fix block toolbar interactions within the Hero block [#1329](https://github.com/godaddy-wordpress/coblocks/pull/1329)
* Fix gallery block custom link persistence [#1320](https://github.com/godaddy-wordpress/coblocks/pull/1320)
* Fix navigation arrow position on Carousel block [#1353](https://github.com/godaddy-wordpress/coblocks/pull/1353)
* Fix typo in the Stacked gallery block description [#1351](https://github.com/godaddy-wordpress/coblocks/pull/1351)
* Reinitialize Flickity carousel when used inside an Accordion block [#1341](https://github.com/godaddy-wordpress/coblocks/pull/1341)
* Skip empty values in generated styles from the DimensionsControl [#1333](https://github.com/godaddy-wordpress/coblocks/pull/1333)
* Stack Buttons block on mobile [#1334](https://github.com/godaddy-wordpress/coblocks/pull/1334)
### Misc
* Add consistent labels [#1330](https://github.com/godaddy-wordpress/coblocks/pull/1330)
* CI: Fix E2E job not finding WP-CLI binary [#1338](https://github.com/godaddy-wordpress/coblocks/pull/1338)
* Fix WPCS error [#1311](https://github.com/godaddy-wordpress/coblocks/pull/1311)
* Improve Author block stability through E2E testing [#1291](https://github.com/godaddy-wordpress/coblocks/pull/1291)
* Improve Buttons block stability through E2E testing [#1293](https://github.com/godaddy-wordpress/coblocks/pull/1293)
* Improve Click to Tweet block stability through E2E testing [#1295](https://github.com/godaddy-wordpress/coblocks/pull/1295)
* Improve Dynamic HR block stability through E2E testing [#1296](https://github.com/godaddy-wordpress/coblocks/pull/1296)
* Improve Events block stability through E2E testing [#1306](https://github.com/godaddy-wordpress/coblocks/pull/1306)
* Improve Features block stability through E2E testing [#1274](https://github.com/godaddy-wordpress/coblocks/pull/1274)
* Improve Food and Drinks block stability through E2E testing [#1278](https://github.com/godaddy-wordpress/coblocks/pull/1278)
* Improve Form block stability through E2E testing [#1297](https://github.com/godaddy-wordpress/coblocks/pull/1297)
* Improve Gallery Carousel block stability through E2E testing [#1265](https://github.com/godaddy-wordpress/coblocks/pull/1265)
* Improve Gallery Collage block stability through E2E testing [#1266](https://github.com/godaddy-wordpress/coblocks/pull/1266)
* Improve Gallery Masonry block stability through E2E testing [#1267](https://github.com/godaddy-wordpress/coblocks/pull/1267)
* Improve Gallery Offset block stability through E2E testing [#1268](https://github.com/godaddy-wordpress/coblocks/pull/1268)
* Improve Gallery Stacked block stability through E2E testing [#1269](https://github.com/godaddy-wordpress/coblocks/pull/1269)
* Improve Gif block stability through E2E testing [#1289](https://github.com/godaddy-wordpress/coblocks/pull/1289)
* Improve Gist block stability through E2E testing [#1288](https://github.com/godaddy-wordpress/coblocks/pull/1288)
* Improve Hero block stability through E2E testing [#1287](https://github.com/godaddy-wordpress/coblocks/pull/1287)
* Improve Icon block stability through E2E testing [#1298](https://github.com/godaddy-wordpress/coblocks/pull/1298)
* Improve Logos block stability through E2E testing [#1286](https://github.com/godaddy-wordpress/coblocks/pull/1286)
* Improve Map block stability through E2E testing [#1285](https://github.com/godaddy-wordpress/coblocks/pull/1285)
* Improve Media Card block stability through E2E testing [#1284](https://github.com/godaddy-wordpress/coblocks/pull/1284)
* Improve Post Carousel block stability through E2E testing [#1283](https://github.com/godaddy-wordpress/coblocks/pull/1283)
* Improve Posts block stability through E2E testing [#1282](https://github.com/godaddy-wordpress/coblocks/pull/1282)
* Improve Pricing Table block stability through E2E testing [#1273](https://github.com/godaddy-wordpress/coblocks/pull/1273)
* Improve Row block stability through E2E testing [#1280](https://github.com/godaddy-wordpress/coblocks/pull/1280)
* Improve Services block stability through E2E testing [#1279](https://github.com/godaddy-wordpress/coblocks/pull/1279)
* Improve Shape Divider block stability through E2E testing [#1270](https://github.com/godaddy-wordpress/coblocks/pull/1270)
* Improve Shape Divider style previews for WordPress 5.3 [#1111](https://github.com/godaddy-wordpress/coblocks/pull/1111)
* Improve Share block stability through E2E testing [#1301](https://github.com/godaddy-wordpress/coblocks/pull/1301)
* Improve Social Profiles block stability through E2E testing [#1304](https://github.com/godaddy-wordpress/coblocks/pull/1304)
* Move pull request template [#1346](https://github.com/godaddy-wordpress/coblocks/pull/1346)
* Rename pull-request-template to pull_request_template [#1345](https://github.com/godaddy-wordpress/coblocks/pull/1345)
* Tweak attribute formatting for consistency [#1344](https://github.com/godaddy-wordpress/coblocks/pull/1344)
* Update issue templates [#1342](https://github.com/godaddy-wordpress/coblocks/pull/1342)
* Update plugin assets with new GoDaddy Branding [#1321](https://github.com/godaddy-wordpress/coblocks/pull/1321)
* Use new banner on the README [#1343](https://github.com/godaddy-wordpress/coblocks/pull/1343)
1.20.1 / 2020-01-23
===================
### Bug Fixes
* Fix Slick carousel not being enqueued for the Events block
* Fix block.json file missing for the Events block
1.20.0 / 2020-01-23
===================
### Enhancements
* Introduce the [Events block](https://github.com/godaddy-wordpress/coblocks/pull/883) 🎉
* [Add support for Gutenberg 7.2](https://github.com/godaddy-wordpress/coblocks/pull/1272)
* Tweak Map block ["Edit location" icon](https://github.com/godaddy-wordpress/coblocks/pull/1300)
* [Refactor to use proper spacing utilities](https://github.com/godaddy-wordpress/coblocks/pull/1253)
### Bug Fixes
* Fix [template selector in the Form block](https://github.com/godaddy-wordpress/coblocks/pull/1292) when Gutenberg is active
* [Explicitly pass the block type name](https://github.com/godaddy-wordpress/coblocks/pull/1302) when registering on the server side
* Fix Gallery blocks when [uploading images](https://github.com/godaddy-wordpress/coblocks/pull/1262)
* Fix [custom links added to images](https://github.com/godaddy-wordpress/coblocks/pull/1250) in the Offset Gallery block
### Misc
* [Remove typography controls](https://github.com/godaddy-wordpress/coblocks/pull/1299) from Features block
* [Switch padding and margin](https://github.com/godaddy-wordpress/coblocks/pull/1281) DimensionsControls
* [Remove Typography controls](https://github.com/godaddy-wordpress/coblocks/pull/1259) from the core Cover block
* When the core/buttons block is registered, [migrate from the coblocks/buttons block](https://github.com/godaddy-wordpress/coblocks/pull/1241)
* [Removed unused class](https://github.com/godaddy-wordpress/coblocks/pull/1271) from Accordion inspector
* [Remove the enqueing of the utilities stylesheet](https://github.com/godaddy-wordpress/coblocks/pull/1260)
* [Pass block name to custom class helper](https://github.com/godaddy-wordpress/coblocks/pull/1294)
* [E2E Compatibility Refactor](https://github.com/godaddy-wordpress/coblocks/pull/1261)
1.19.3 / 2020-01-09
===================
### Bug Fixes
* Fix gallery blocks not rendering properly within the editor
1.19.2 / 2020-01-09
===================
### Bug Fixes
* Fix the [Form block template selector](https://github.com/godaddy-wordpress/coblocks/pull/1232) when the Gutenberg plugin is active
* Fix issue where [gallery captions were resetting](https://github.com/godaddy-wordpress/coblocks/pull/1243)
* Fix [custom links added to images](https://github.com/godaddy-wordpress/coblocks/pull/1239) in the Offset Gallery block
### Misc
* [Replace legacy "editor-" classes](https://github.com/godaddy-wordpress/coblocks/pull/1242) with "block-editor-"
* Use the new InnerBlocks [renderAppender on the Row block](https://github.com/godaddy-wordpress/coblocks/pull/1244)
* Break [each icon keyword into its own i18n wrapper](https://github.com/godaddy-wordpress/coblocks/pull/1225)
* [Add change log contents to GitHub release notes](https://github.com/godaddy-wordpress/coblocks/pull/1240)
* [Add media-card block transform tests](https://github.com/godaddy-wordpress/coblocks/pull/1218)
1.19.1 / 2019-12-20
===================
### Bug Fixes
* [Resolve 404 error](https://github.com/godaddy-wordpress/coblocks/pull/1219) for utility styles
* Update PHPUnit tests to [check for build assets](https://github.com/godaddy-wordpress/coblocks/pull/1222)
* [Remove has-custom-size class](https://github.com/godaddy-wordpress/coblocks/pull/1223) from Typography Controls
* Add [utility script that audits i18n strings against a wporg glossary](https://github.com/godaddy-wordpress/coblocks/pull/1224)
1.19.0 / 2019-12-19
===================
### Enhancements
* Introduce the ability for [themes to provide custom icons](https://github.com/godaddy-wordpress/coblocks/pull/1006) for the Icon block
* Introduce a filter to [conditionally disable the typography controls](https://github.com/godaddy-wordpress/coblocks/pull/987)
* Introduce filter to [conditionally load block styles](https://github.com/godaddy-wordpress/coblocks/pull/1173)
### Bug Fixes
* Fix [media placeholder visibility when using Spotlight mode](https://github.com/godaddy-wordpress/coblocks/pull/1208)
* Fix display issue with [Flickity navigation buttons](https://github.com/godaddy-wordpress/coblocks/pull/1204)
* Resolve browser [Object.fromEntries compatibility errors](https://github.com/godaddy-wordpress/coblocks/pull/1205)
* Use [background image SVGs](https://github.com/godaddy-wordpress/coblocks/pull/1171) for the Food & Drinks block item attributes
* [Serve full size images](https://github.com/godaddy-wordpress/coblocks/pull/1178) with Post Carousel block
* [Allow editing gallery captions without content](https://github.com/godaddy-wordpress/coblocks/pull/1180)
* [Localize instructions string for MediaPlaceholder](https://github.com/godaddy-wordpress/coblocks/pull/1179)
### Misc
* [Clean up code structure of the Row block](https://github.com/godaddy-wordpress/coblocks/pull/1037)
* [Improve Features block stability through transforms testing](https://github.com/godaddy-wordpress/coblocks/pull/1189)
* [Improve Dynamic Separator block stability through transforms testing](https://github.com/godaddy-wordpress/coblocks/pull/1188)
* [Improve Gist block stability through transforms testing](https://github.com/godaddy-wordpress/coblocks/pull/1187)
* [Improve Buttons block stability through transforms testing](https://github.com/godaddy-wordpress/coblocks/pull/1186)
* [Improve Author block stability through transforms testing](https://github.com/godaddy-wordpress/coblocks/pull/1185)
* [Improve Click-to-Tweet block stability through transforms testing](https://github.com/godaddy-wordpress/coblocks/pull/1184)
* [Improve Alert block stability through transforms testing](https://github.com/godaddy-wordpress/coblocks/pull/1182)
* [Improve Accordion block stability through transforms testing](https://github.com/godaddy-wordpress/coblocks/pull/1181)
1.18.0 / 2019-12-05
===================
### Enhancements
* Introduce [Offset Gallery](https://github.com/godaddy-wordpress/coblocks/pull/1144) block 🎉
* Allow [dynamic subject lines](https://github.com/godaddy-wordpress/coblocks/pull/1017) with Form block submissions
* Use consistent [styling for the next and previous](https://github.com/godaddy-wordpress/coblocks/pull/1166) buttons in the Carousel block and Lightbox
* Add [keyboard shortcuts](https://github.com/godaddy-wordpress/coblocks/pull/1170) for navigating images in a lightbox
* Introduce [end-to-end testing](https://github.com/godaddy-wordpress/coblocks/pull/1139) using Cypress
* Add [Lightbox functionality to the Carousel block](https://github.com/godaddy-wordpress/coblocks/pull/1165)
* [Remove minimum height limitation](https://github.com/godaddy-wordpress/coblocks/pull/1167) on the Carousel block
* New shared component: [Option Selector Control](https://github.com/godaddy-wordpress/coblocks/pull/1163)
* Add [Form block layout templates](https://github.com/godaddy-wordpress/coblocks/pull/1128)
### Bug Fixes
* Use [descriptive element name](https://github.com/godaddy-wordpress/coblocks/pull/1023) for Form block radio buttons
### Misc
* [Cleanup CoBlocks options](https://github.com/godaddy-wordpress/coblocks/pull/1172) from database on uninstall
* [Generate translation files on master changes](https://github.com/godaddy-wordpress/coblocks/pull/1164)
* [Create CONTRIBUTORS.md](https://github.com/godaddy-wordpress/coblocks/pull/1158)
* Update links to point at the [GoDaddy WordPress GitHub Organization](https://github.com/godaddy-wordpress/coblocks/pull/1159)
* Update [contributor callout](https://github.com/godaddy-wordpress/coblocks/pull/1126) on README
1.17.3 / 2019-11-21
===================
### Enhancements
* [Update Gallery blocks](https://github.com/godaddy-wordpress/coblocks/pull/1142) to use core UX patterns
* [Hide avatar placeholder](https://github.com/godaddy-wordpress/coblocks/pull/1074) on Author block when not in use
* Add [top and bottom wave style](https://github.com/godaddy-wordpress/coblocks/pull/1123) to core Cover block
* Add [lightbox support to the Collage block](https://github.com/godaddy-wordpress/coblocks/pull/1141)
### Bug Fixes
* Explicitly set block classnames instead of using the generated className prop ([#1152](https://github.com/godaddy-wordpress/coblocks/pull/1152) and [#1150](https://github.com/godaddy-wordpress/coblocks/pull/1150))
* Allow fields to have identical [display labels](https://github.com/godaddy-wordpress/coblocks/pull/1146)
* Ensure avatar image [styles override core styles](https://github.com/godaddy-wordpress/coblocks/pull/1137)
* Ensure all __() functions [use a text domain](https://github.com/godaddy-wordpress/coblocks/pull/1135)
### Misc
* [Remove excess admin styles from src](https://github.com/godaddy-wordpress/coblocks/pull/1118)
* [Update example images](https://github.com/godaddy-wordpress/coblocks/pull/1134) to use those from WordPress core
* Update [classes used in editor styling](https://github.com/godaddy-wordpress/coblocks/pull/1138) for consistency
* [Remove CoBlocks Block Manager](https://github.com/godaddy-wordpress/coblocks/pull/1110)
* [Remove unused constant](https://github.com/godaddy-wordpress/coblocks/pull/1148)
* [Ignore externals on `svn co`](https://github.com/godaddy-wordpress/coblocks/pull/1147)
1.17.2 / 2019-11-14
===================
### Enhancements
* [Replace Media Card block MediaPlaceholder icon](https://github.com/godaddy-wordpress/coblocks/pull/1125) with image/video icon
* [Remove](https://github.com/godaddy-wordpress/coblocks/pull/1124) unused example images
* [Replace](https://github.com/godaddy-wordpress/coblocks/pull/1119) ... with horizontal ellipsis (…)
### Bug Fixes
* Fix [posts block render loop](https://github.com/godaddy-wordpress/coblocks/pull/1131)
* Fix [posts grid not displaying as columns](https://github.com/godaddy-wordpress/coblocks/pull/1127)
1.17.1 / 2019-11-12
===================
### Bug Fixes
* Add server rendered [block's json files](https://github.com/godaddy-wordpress/coblocks/pull/1121) to build
* Use external [Wikipedia CC licensed images](https://github.com/godaddy-wordpress/coblocks/pull/1106) in block examples
1.17.0 / 2019-11-11
===================
### Features
* Add [support for WordPress 5.3](https://github.com/godaddy-wordpress/coblocks/pulls?utf8=%E2%9C%93&q=is%3Apr+is%3Aclosed+label%3A%22wp+5.3%22)
* Add [support for the TwentyTwenty theme](https://github.com/godaddy-wordpress/coblocks/pulls?q=is%3Apr+is%3Aclosed+label%3A%22%5BTheme%5D+2020%22)
* Introduce [Select Form block](https://github.com/godaddy-wordpress/coblocks/pull/1072) field
* Introduce [Checkbox Form block](https://github.com/godaddy-wordpress/coblocks/pull/1072) field
* Introduce [Website Form block](https://github.com/godaddy-wordpress/coblocks/pull/1072) field
* Introduce [Hidden Form block](https://github.com/godaddy-wordpress/coblocks/pull/1072) field
### Enhancements
* Add [block movers](https://github.com/godaddy-wordpress/coblocks/pull/1100) to Pricing Table items
* Tweak [Dynamic HR styling](https://github.com/godaddy-wordpress/coblocks/pull/1109) for TwentyTwenty
* [Remove CoBlocks getting started guide](https://github.com/godaddy-wordpress/coblocks/pull/1097)
* Ensure [SVGs which provide additional context are accessible](https://github.com/godaddy-wordpress/coblocks/pull/1098)
* [Improve translation](https://github.com/godaddy-wordpress/coblocks/pull/1102) support
* Bump WordPress [Core support to 5.3](https://github.com/godaddy-wordpress/coblocks/pull/1065)
* Add [translatable default values](https://github.com/godaddy-wordpress/coblocks/pull/1101) for the Form block and fields
* Tweak [VisualDropdown component styling](https://github.com/godaddy-wordpress/coblocks/pull/1096) for WordPress 5.3
* Tweak [DimensionsControl component styling](https://github.com/godaddy-wordpress/coblocks/pull/1056) for WordPress 5.3
* Allow [theme colors in Row block](https://github.com/godaddy-wordpress/coblocks/pull/1055) placeholder
* Add [block preview for Collage Gallery](https://github.com/godaddy-wordpress/coblocks/pull/1071) block
* Use BlockIcon component for [Placeholder Icons](https://github.com/godaddy-wordpress/coblocks/pull/1085)
* [Enable certain core blocks in the form block](https://github.com/godaddy-wordpress/coblocks/pull/1091)
* [Improve UX of Author block text placeholders](https://github.com/godaddy-wordpress/coblocks/pull/1076)
* Enhance [DimensionsControls with vw and vh](https://github.com/godaddy-wordpress/coblocks/pull/1087) units
* [Clean up Gist block toolbar](https://github.com/godaddy-wordpress/coblocks/pull/1089)
* Switch [i18n string management to a JSON-based system](https://github.com/godaddy-wordpress/coblocks/pull/1073)
* Improve [Posts block stability](https://github.com/godaddy-wordpress/coblocks/pull/1069) through block validation testing
* Improve [Collage Gallery block stability](https://github.com/godaddy-wordpress/coblocks/pull/1075) through block validation testing
* Improve [Post Carousel block stability](https://github.com/godaddy-wordpress/coblocks/pull/1070) through block validation testing
* Improve [Social Profiles block stability](https://github.com/godaddy-wordpress/coblocks/pull/1057) through block validation testing
* Improve [Share block stability](https://github.com/godaddy-wordpress/coblocks/pull/1059) through block validation testing
* Improve [Shape Divider block stability](https://github.com/godaddy-wordpress/coblocks/pull/1060) through block validation testing
* Improve [Services block stability](https://github.com/godaddy-wordpress/coblocks/pull/1034) through block validation testing
* Improve [Row block stability](https://github.com/godaddy-wordpress/coblocks/pull/1032) through block validation testing
* Use [number input for height controls](https://github.com/godaddy-wordpress/coblocks/pull/1013) Carousel block
* [Replace "Cheating Huh?"](https://github.com/godaddy-wordpress/coblocks/pull/1042) with a less insulting message
* Add TwentyTwenty as an [auto-generated theme classes](https://github.com/godaddy-wordpress/coblocks/pull/1078)
* Update code style for the [latest WordPress Core Guidelines](https://github.com/godaddy-wordpress/coblocks/pull/1113)
### Bug Fixes
* [Use string name](https://github.com/godaddy-wordpress/coblocks/pull/1115) in server side rendered block registration
* Fix Grunt build issues (https://github.com/godaddy-wordpress/coblocks/pull/1114)
* Fix [label position on Gutter and Thumbnail](https://github.com/godaddy-wordpress/coblocks/pull/1112) size controls
* [Remove custom colors panel](https://github.com/godaddy-wordpress/coblocks/pull/1108) from Heading block
* [Add proper !important styles](https://github.com/godaddy-wordpress/coblocks/pull/1107) for the advanced top/bottom margin
* Use the [jQuery global to avoid script conflicts](https://github.com/godaddy-wordpress/coblocks/pull/1038) with Gif block
* Fix code [display styles of the Gist block](https://github.com/godaddy-wordpress/coblocks/pull/1066) with the TwentyTwenty theme
* [Improve the column control](https://github.com/godaddy-wordpress/coblocks/pull/1084) of the Posts and Post Carousel blocks
* Remove preview [example for the Shape Divider](https://github.com/godaddy-wordpress/coblocks/pull/1077) block
* [Replace _x() with __()](https://github.com/godaddy-wordpress/coblocks/pull/1094) translation functions due to unexpected bug in Core
* Tweak [Accordion block default background color](https://github.com/godaddy-wordpress/coblocks/pull/1095) for improved theme compatibility
* Fix [Collage Block layouts](https://github.com/godaddy-wordpress/coblocks/pull/1067) for the TwentyTwenty theme
* [Scope column styles](https://github.com/godaddy-wordpress/coblocks/pull/1035) to the Posts block
1.16.1 / 2019-10-18
===================
### Bug Fixes
* Ensure [translations are loaded](https://github.com/godaddy-wordpress/coblocks/pull/1024) in the Block Editor
* Use [COBLOCKS_VERSION](https://github.com/godaddy-wordpress/coblocks/pull/1025) when registering scripts
1.16.0 / 2019-10-17
===================
### Features
* Add new [radio, phone, and date picker fields](https://github.com/godaddy-wordpress/coblocks/pull/969) to the Form block
* Add new [Post Carousel block](https://github.com/godaddy-wordpress/coblocks/pull/966) to display a slideshow of blog posts
* Add new [Posts block](https://github.com/godaddy-wordpress/coblocks/pull/736) to display blogroll or RSS feed posts
* Add new ["Popular" menu item option](https://github.com/godaddy-wordpress/coblocks/pull/958) to the Food and Drinks block
* Add the [Reply-To header to emails](https://github.com/godaddy-wordpress/coblocks/pull/953) sent from the Form block
### Enhancements
* [Improve placeholder text](https://github.com/godaddy-wordpress/coblocks/pull/1007) in the Accordion block
* [Remove allowedBlocks limitation](https://github.com/godaddy-wordpress/coblocks/pull/939) from the Accordion Item
* Improve the Map block [Google Maps API key UX](https://github.com/godaddy-wordpress/coblocks/pull/974)
* Add [local language support](https://github.com/godaddy-wordpress/coblocks/pull/964) for Map block
* Add [missing responsive margin/padding units](https://github.com/godaddy-wordpress/coblocks/pull/543) to Hero and Column blocks
* Fix translations and add i18n generation to build process ([#1012](https://github.com/godaddy-wordpress/coblocks/pull/1012), [#1005](https://github.com/godaddy-wordpress/coblocks/pull/1005), [#982](https://github.com/godaddy-wordpress/coblocks/pull/982))
* [Tag each release of CoBlocks](https://github.com/godaddy-wordpress/coblocks/pull/949) on the WordPress.org SVN during deployment
* Improve [Pricing Table block stability](https://github.com/godaddy-wordpress/coblocks/pull/1003) through block validation testing
* Improve [Media Card block stability](https://github.com/godaddy-wordpress/coblocks/pull/1002) through block validation testing
* Improve [Map block stability](https://github.com/godaddy-wordpress/coblocks/pull/1001) through block validation testing
* Improve [Logos block stability](https://github.com/godaddy-wordpress/coblocks/pull/1000) through block validation testing
* Improve [Icon block stability](https://github.com/godaddy-wordpress/coblocks/pull/999) through block validation testing
* Improve [Gist block stability](https://github.com/godaddy-wordpress/coblocks/pull/998) through block validation testing
* Improve [Gif block stability](https://github.com/godaddy-wordpress/coblocks/pull/997) through block validation testing
* Improve [Form block stability](https://github.com/godaddy-wordpress/coblocks/pull/962) through block validation testing
* Improve [Carousel Gallery block stability](https://github.com/godaddy-wordpress/coblocks/pull/968) through block validation testing
* Improve [Masonry Gallery block stability](https://github.com/godaddy-wordpress/coblocks/pull/967) through block validation testing
* Improve [Stacked Gallery block stability](https://github.com/godaddy-wordpress/coblocks/pull/965) through block validation testing
* Improve [Food and Drinks block stability](https://github.com/godaddy-wordpress/coblocks/pull/961) through block validation testing
* Improve [Features block stability](https://github.com/godaddy-wordpress/coblocks/pull/960) through block validation testing
* Improve [Dynamic Separator block stability](https://github.com/godaddy-wordpress/coblocks/pull/959) through block validation testing
* Improve [Click to Tweet block stability](https://github.com/godaddy-wordpress/coblocks/pull/956) through block validation testing
* Improve [Button block stability](https://github.com/godaddy-wordpress/coblocks/pull/955) through block validation testing
* Improve [Author block stability](https://github.com/godaddy-wordpress/coblocks/pull/952) through block validation testing
* Improve [Accordion block stability](https://github.com/godaddy-wordpress/coblocks/pull/957) through block validation testing
* Improve [Alert block stability](https://github.com/godaddy-wordpress/coblocks/pull/951) through block validation testing
* Improve deprecation tests by [exposing actionable information](https://github.com/godaddy-wordpress/coblocks/pull/970)
* Update ES module [imports for testing](https://github.com/godaddy-wordpress/coblocks/pull/948)
* Run eslint and jest tests for [staged files pre-commit](https://github.com/godaddy-wordpress/coblocks/pull/942)
* [Remove "Leave a Review" feedback notice](https://github.com/godaddy-wordpress/coblocks/pull/993)
* [Remove unused ResizableSpacer component](https://github.com/godaddy-wordpress/coblocks/pull/978)
* Convert Map block [height slider control to number input](https://github.com/godaddy-wordpress/coblocks/pull/977)
* Add a [CODEOWNERS file for GitHub](https://github.com/godaddy-wordpress/coblocks/pull/971) to provide better reviewer suggestions
* [Remove development source files from the plugin](https://github.com/godaddy-wordpress/coblocks/pull/963)
* [Add PHP development dependencies with composer](https://github.com/godaddy-wordpress/coblocks/pull/988)
### Bug Fixes
* Ensure image [placeholders maintain aspect ratio](https://github.com/godaddy-wordpress/coblocks/pull/1014) of the selected style
* Fix the block validation error when the [Hero block background color is removed](https://github.com/godaddy-wordpress/coblocks/pull/995)
* Resolve [PHP warnings](https://github.com/godaddy-wordpress/coblocks/pull/985) with WordPress 5.3 Beta
* Fix [links opening in a new tab](https://github.com/godaddy-wordpress/coblocks/pull/1008) in the Icon block
* Add ['0' as a valid value](https://github.com/godaddy-wordpress/coblocks/pull/726) for the Dimensions Control
* Fix [missing viewBox values](https://github.com/godaddy-wordpress/coblocks/pull/990) on block icons
* Do not [show layout styles toolbar](https://github.com/godaddy-wordpress/coblocks/pull/994) until a layout is selected
* Ensure [style previews of the Icon block](https://github.com/godaddy-wordpress/coblocks/pull/996) display the selected icon
* Fix [image links being erased](https://github.com/godaddy-wordpress/coblocks/pull/984) when a Gallery block is updated
* [Fix deprecation for the CoBlocks Block Manager](https://github.com/godaddy-wordpress/coblocks/pull/989)
* Resolve missing text format controls because of [missing script dependencies](https://github.com/godaddy-wordpress/coblocks/pull/986)
* Prevent [systems fonts](https://github.com/godaddy-wordpress/coblocks/pull/976) from attempting to load from Google Fonts
* [Fix Media Card block icon](https://github.com/godaddy-wordpress/coblocks/pull/973)
* [Prevent our BlockManager from loading](https://github.com/godaddy-wordpress/coblocks/pull/972) if Core's exist
* [Add icon to Map block placeholder](https://github.com/godaddy-wordpress/coblocks/pull/946)
* Remove unnecessary statement within [deployment scripts](https://github.com/godaddy-wordpress/coblocks/pull/954)
1.15.0 / 2019-10-03
===================
### Features
* Add [new Collage Gallery](https://github.com/godaddy-wordpress/coblocks/pull/907) block
* Add [new CSS utility classes](https://github.com/godaddy-wordpress/coblocks/pull/941) to enable better design integration with themes
* Add [new thumbnail navigation and responsive height controls](https://github.com/godaddy-wordpress/coblocks/pull/839) to the Carousel block
* Add [new lightbox support](https://github.com/godaddy-wordpress/coblocks/pull/840) to Masonry and Stacked gallery blocks
### Enhancements
* Improve the [experience of the Map block](https://github.com/godaddy-wordpress/coblocks/pull/936) when applying an address
* [Remove redirect](https://github.com/godaddy-wordpress/coblocks/pull/925) to plugin's admin page when activating CoBlocks
* Convert [Alert block text alignment](https://github.com/godaddy-wordpress/coblocks/pull/880) setting to use utility classes
* Convert [Click-to-Tweet block text alignment](https://github.com/godaddy-wordpress/coblocks/pull/881) setting to use utility classes
* Convert [Pricing Table block text alignment](https://github.com/godaddy-wordpress/coblocks/pull/882) setting to use utility classes
* Convert [Row block text alignment](https://github.com/godaddy-wordpress/coblocks/pull/884) setting to use utility classes
* Convert [Share block text alignment](https://github.com/godaddy-wordpress/coblocks/pull/897) setting to use utility classes
* Convert [Icon block text alignment](https://github.com/godaddy-wordpress/coblocks/pull/932) setting to use utility classes
* [Update Media Card toolbar icons](https://github.com/godaddy-wordpress/coblocks/pull/935) to match the improved Gutenberg iconography
* [Update the Services block icons](https://github.com/godaddy-wordpress/coblocks/pull/934)
* [Remove orientation sidebar controls](https://github.com/godaddy-wordpress/coblocks/pull/914) on the Shape Divider block
* Improve the [Map block description](https://github.com/godaddy-wordpress/coblocks/pull/910)
* [Prevent Styles panel opening by default](https://github.com/godaddy-wordpress/coblocks/pull/909) on the Food and Drinks block
* [Disable HTML editing](https://github.com/godaddy-wordpress/coblocks/pull/908) of gallery blocks
* Add [block icon to the media placeholder](https://github.com/godaddy-wordpress/coblocks/pull/927) on the Logos and Badges block
* [Remove the default block appender](https://github.com/godaddy-wordpress/coblocks/pull/892) (added in Gutenberg 6.5) on the Row block
* [Display the "Add" accordion item button](https://github.com/godaddy-wordpress/coblocks/pull/836) only when the parent block is selected
* [Remove background color and image support](https://github.com/godaddy-wordpress/coblocks/pull/913) from gallery blocks
* [Add top/bottom margin removal](https://github.com/godaddy-wordpress/coblocks/pull/912) toggles to the gallery blocks
* Removed a screenshot to [prevent a potential trademark violation](https://github.com/godaddy-wordpress/coblocks/pull/911)
* Minor code cleanups ([#924](https://github.com/godaddy-wordpress/coblocks/pull/924), [#928](https://github.com/godaddy-wordpress/coblocks/pull/928), [#931](https://github.com/godaddy-wordpress/coblocks/pull/931), [#933](https://github.com/godaddy-wordpress/coblocks/pull/933))
### Bug Fixes
* [Remove inherit colors fallback](https://github.com/godaddy-wordpress/coblocks/pull/940) from the Authors, Features, Media Card, and Row blocks
* [Fix the block icon](https://github.com/godaddy-wordpress/coblocks/pull/937) shown in the Food Item block's sidebar and toolbar
* Fix [incorrect image height](https://github.com/godaddy-wordpress/coblocks/pull/929) being applied on the Masonry block
* Prevent the [style preview from resizing](https://github.com/godaddy-wordpress/coblocks/pull/887) when resizing an image
* Fix [alignment of images within the Features block](https://github.com/godaddy-wordpress/coblocks/pull/885)
* Fix [background image upload error](https://github.com/godaddy-wordpress/coblocks/pull/906) when using drag and drop on the Hero block
1.14.0 / 2019-09-19
===================
### Features
* Add new [Crop Settings panel](https://github.com/godaddy-wordpress/coblocks/pull/749) to the Image and Cover blocks to allow image cropping
* Add [font size, background and text color controls](https://github.com/godaddy-wordpress/coblocks/pull/808) to the Author block
* Add new Image block styles to [mask images with a wave shape](https://github.com/godaddy-wordpress/coblocks/pull/877)
### Enhancements
* Improve the [context of strings](https://github.com/godaddy-wordpress/coblocks/pull/852) for translators
* Add a [new filter](https://github.com/godaddy-wordpress/coblocks/pull/834) in the Form block to prevent wp_mail from sending mail
* Move the CoBlocks [top-level admin page](https://github.com/godaddy-wordpress/coblocks/pull/746) under Tools
* Shorten [the Button block placeholder text](https://github.com/godaddy-wordpress/coblocks/pull/878) within the Hero block
* Add [additional carousel controls](https://github.com/godaddy-wordpress/coblocks/pull/765) to the Carousel block
* Update the [Pricing Table block toolbar control](https://github.com/godaddy-wordpress/coblocks/pull/811) to follow new Gutenberg patterns
* Update the [Row block toolbar control](https://github.com/godaddy-wordpress/coblocks/pull/827) to follow new Gutenberg patterns
* Lay the groundwork for [improved automated tests for blocks](https://github.com/godaddy-wordpress/coblocks/pull/835) using Jest
### Bug Fixes
* Fix the [styles preview](https://github.com/godaddy-wordpress/coblocks/pull/879) in the Icon block in Gutenberg 6.3+
* Fix one column Pricing Table block display to use the [full available width](https://github.com/godaddy-wordpress/coblocks/pull/844)
* Remove [margin bottom](https://github.com/godaddy-wordpress/coblocks/pull/845) from the last item within the Feature block
* Improve the [spacing between the figure and content elements](https://github.com/godaddy-wordpress/coblocks/pull/846) in the Services block
* Avoid z-index issues with the [Hero block toolbar](https://github.com/godaddy-wordpress/coblocks/pull/838)
* Fix [misaligned responsive control SVG icons](https://github.com/godaddy-wordpress/coblocks/pull/820) in Firefox and Edge
= 1.13.0 =
* New: Support for Gutenberg 6.4 🎊
* New: Example block content added for the new block inserter help panel
* New: Block level background color can be applied to the Share block
* New: Block level background color can be applied to the Social Profiles block
* New: Stacked Gallery block can now be aligned left, right, and center
* New: Internationalization improvements for utilizing GlotPress