-
Notifications
You must be signed in to change notification settings - Fork 378
Expand file tree
/
Copy pathCHANGELOG.md
More file actions
17043 lines (8680 loc) · 643 KB
/
CHANGELOG.md
File metadata and controls
17043 lines (8680 loc) · 643 KB
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
## 177.0.13 (Jan 7, 2026)
### Patch
- Docs: Add DocSearch transformData prop ([#4101](https://github.com/pinterest/gestalt/pull/4101)) - [Preview link](https://deploy-preview-4101--gestalt.netlify.app?devexample=true)
## 177.0.12 (Dec 9, 2025)
### Patch
- Docs: Update Banner component styling with design tokens ([#4100](https://github.com/pinterest/gestalt/pull/4100)) - [Preview link](https://deploy-preview-4100--gestalt.netlify.app?devexample=true)
## 177.0.11 (Nov 22, 2025)
### Patch
- Docs: GlobalEventsHandlerProvider work around ([#4098](https://github.com/pinterest/gestalt/pull/4098)) - [Preview link](https://deploy-preview-4098--gestalt.netlify.app?devexample=true)
## 177.0.10 (Nov 21, 2025)
### Patch
- Docs: Remove root to home redirect ([#4097](https://github.com/pinterest/gestalt/pull/4097)) - [Preview link](https://deploy-preview-4097--gestalt.netlify.app?devexample=true)
## 177.0.9 (Nov 21, 2025)
### Patch
- Docs: Re-enable legacy banner button for Gestalt 2.0 [UXE-229] ([#4095](https://github.com/pinterest/gestalt/pull/4095)) - [Preview link](https://deploy-preview-4095--gestalt.netlify.app?devexample=true)
## 177.0.8 (Nov 3, 2025)
### Patch
- Docs: Update legacy banner content; hide button [UXE-202] ([#4093](https://github.com/pinterest/gestalt/pull/4093)) - [Preview link](https://deploy-preview-4093--gestalt.netlify.app?devexample=true)
## 177.0.7 (Oct 29, 2025)
### Patch
- Docs: Added new banner ([#4087](https://github.com/pinterest/gestalt/pull/4087)) - [Preview link](https://deploy-preview-4087--gestalt.netlify.app?devexample=true)
## 177.0.6 (Oct 28, 2025)
### Patch
- Docs: Remove IOS and Android documentation pages ([#4089](https://github.com/pinterest/gestalt/pull/4089)) - [Preview link](https://deploy-preview-4089--gestalt.netlify.app?devexample=true)
## 177.0.5 (Oct 28, 2025)
### Patch
- Docs: Remove the 'What component should I use' section ([#4092](https://github.com/pinterest/gestalt/pull/4092)) - [Preview link](https://deploy-preview-4092--gestalt.netlify.app?devexample=true)
## 177.0.4 (Oct 28, 2025)
### Patch
- Docs: Update the "Mapping to CLDR forms" section ([#4090](https://github.com/pinterest/gestalt/pull/4090)) - [Preview link](https://deploy-preview-4090--gestalt.netlify.app?devexample=true)
## 177.0.3 (Oct 22, 2025)
### Patch
- Docs: Remove design contribution page ([#4091](https://github.com/pinterest/gestalt/pull/4091)) - [Preview link](https://deploy-preview-4091--gestalt.netlify.app?devexample=true)
## 177.0.2 (Oct 22, 2025)
### Patch
- Docs: Remove link button from Home page ([#4088](https://github.com/pinterest/gestalt/pull/4088)) - [Preview link](https://deploy-preview-4088--gestalt.netlify.app?devexample=true)
## 177.0.1 (Oct 2, 2025)
### Patch
- Internal: Add support for dynamic basePath and trailingSlash in Next.js config ([#4085](https://github.com/pinterest/gestalt/pull/4085)) - [Preview link](https://deploy-preview-4085--gestalt.netlify.app?devexample=true)
## 177.0.0 (Apr 10, 2025)
### Major
- Internal: prep work for final legacy open source repo ([#4072](https://github.com/pinterest/gestalt/pull/4072)) - [Preview link](https://deploy-preview-4072--gestalt.netlify.app?devexample=true)
## 176.1.2 (Apr 7, 2025)
### Patch
- Docs: fix in redirect ([#4071](https://github.com/pinterest/gestalt/pull/4071)) - [Preview link](https://deploy-preview-4071--gestalt.netlify.app?devexample=true)
## 176.1.1 (Apr 7, 2025)
### Patch
- Docs: remove icons page ([#4070](https://github.com/pinterest/gestalt/pull/4070)) - [Preview link](https://deploy-preview-4070--gestalt.netlify.app?devexample=true)
## 176.1.0 (Apr 2, 2025)
### Minor
- Icon: Add 13 new icons [GESTALT-8752] ([#4064](https://github.com/pinterest/gestalt/pull/4064)) - [Preview link](https://deploy-preview-4064--gestalt.netlify.app?devexample=true)
## 176.0.4 (Apr 2, 2025)
### Patch
- Button: Fixing docs ([#4065](https://github.com/pinterest/gestalt/pull/4065)) - [Preview link](https://deploy-preview-4065--gestalt.netlify.app?devexample=true)
## 176.0.3 (Apr 1, 2025)
### Patch
- Masonry: Flexible modules unit tests and integration tests ([#4037](https://github.com/pinterest/gestalt/pull/4037)) - [Preview link](https://deploy-preview-4037--gestalt.netlify.app?devexample=true)
## 176.0.2 (Apr 1, 2025)
### Patch
- Masonry: Add unit test to verify the overlap bug on dynamic heights v2 is fixed ([#4017](https://github.com/pinterest/gestalt/pull/4017)) - [Preview link](https://deploy-preview-4017--gestalt.netlify.app?devexample=true)
## 176.0.1 (Apr 1, 2025)
### Patch
- Masonry: Add integration test for dynamic heights v2 and masonry testing page ([#4021](https://github.com/pinterest/gestalt/pull/4021)) - [Preview link](https://deploy-preview-4021--gestalt.netlify.app?devexample=true)
## 176.0.0 (Apr 1, 2025)
### Major
- Heading: deprecating size 500, moving 500 to 600 and 600 to 700 ([#4062](https://github.com/pinterest/gestalt/pull/4062)) - [Preview link](https://deploy-preview-4062--gestalt.netlify.app?devexample=true)
## 175.3.0 (Apr 1, 2025)
### Minor
- Button: new button social ([#3994](https://github.com/pinterest/gestalt/pull/3994)) - [Preview link](https://deploy-preview-3994--gestalt.netlify.app?devexample=true)
## 175.2.0 (Apr 1, 2025)
### Minor
- Masonry: Enable dynamic batches ([#4035](https://github.com/pinterest/gestalt/pull/4035)) - [Preview link](https://deploy-preview-4035--gestalt.netlify.app?devexample=true)
## 175.1.1 (Apr 1, 2025)
### Patch
- Internal: fixing codemods ([#4061](https://github.com/pinterest/gestalt/pull/4061)) - [Preview link](https://deploy-preview-4061--gestalt.netlify.app?devexample=true)
## 175.1.0 (Mar 31, 2025)
### Minor
- Toast: Compact icons ([#4060](https://github.com/pinterest/gestalt/pull/4060)) - [Preview link](https://deploy-preview-4060--gestalt.netlify.app?devexample=true)
## 175.0.6 (Mar 31, 2025)
### Patch
- Internal: fixes dark mode adding DesignTokensProvider ([#4059](https://github.com/pinterest/gestalt/pull/4059)) - [Preview link](https://deploy-preview-4059--gestalt.netlify.app?devexample=true)
## 175.0.5 (Mar 31, 2025)
### Patch
- Docs: cleanup of old pages ([#4057](https://github.com/pinterest/gestalt/pull/4057)) - [Preview link](https://deploy-preview-4057--gestalt.netlify.app?devexample=true)
## 175.0.4 (Mar 31, 2025)
### Patch
- Docs: adds DesignTokensProvider to Sandpack code editor ([#4058](https://github.com/pinterest/gestalt/pull/4058)) - [Preview link](https://deploy-preview-4058--gestalt.netlify.app?devexample=true)
## 175.0.3 (Mar 30, 2025)
### Patch
- Internal: refactor experimental theme consumption ([#4056](https://github.com/pinterest/gestalt/pull/4056)) - [Preview link](https://deploy-preview-4056--gestalt.netlify.app?devexample=true)
## 175.0.2 (Mar 30, 2025)
### Patch
- Docs: refactor to enable CALICO theme from selector in Gestalt Docs ([#4055](https://github.com/pinterest/gestalt/pull/4055)) - [Preview link](https://deploy-preview-4055--gestalt.netlify.app?devexample=true)
## 175.0.1 (Mar 30, 2025)
### Patch
- Internal: Bump @babel/helpers from 7.10.4 to 7.27.0 ([#4053](https://github.com/pinterest/gestalt/pull/4053)) - [Preview link](https://deploy-preview-4053--gestalt.netlify.app?devexample=true)
## 175.0.0 (Mar 29, 2025)
### Major
- ColorSchemeProvider: Refactor ColorSchemeProvider & separated concerns into DesignTokensProvider ([#4054](https://github.com/pinterest/gestalt/pull/4054)) - [Preview link](https://deploy-preview-4054--gestalt.netlify.app?devexample=true)
## 174.3.3 (Mar 27, 2025)
### Patch
- Masonry: Fix the props on Masonry V2 ([#4052](https://github.com/pinterest/gestalt/pull/4052)) - [Preview link](https://deploy-preview-4052--gestalt.netlify.app?devexample=true)
## 174.3.2 (Mar 26, 2025)
### Patch
- Masonry: Multi-column position algorithm V2 ([#4016](https://github.com/pinterest/gestalt/pull/4016)) - [Preview link](https://deploy-preview-4016--gestalt.netlify.app?devexample=true)
## 174.3.1 (Mar 26, 2025)
### Patch
- SearchGuide: (mWeb) update color variant "11" to match figma in dark mode ([#4050](https://github.com/pinterest/gestalt/pull/4050)) - [Preview link](https://deploy-preview-4050--gestalt.netlify.app?devexample=true)
## 174.3.0 (Mar 24, 2025)
### Minor
- AvatarGroupCluster: new component ([#4048](https://github.com/pinterest/gestalt/pull/4048)) - [Preview link](https://deploy-preview-4048--gestalt.netlify.app?devexample=true)
## 174.2.2 (Mar 24, 2025)
### Patch
- Masonry: Fix scroll position glitch on load ([#4045](https://github.com/pinterest/gestalt/pull/4045)) - [Preview link](https://deploy-preview-4045--gestalt.netlify.app?devexample=true)
## 174.2.1 (Mar 21, 2025)
### Patch
- SearchField: fix rtl in VR bug ([#4047](https://github.com/pinterest/gestalt/pull/4047)) - [Preview link](https://deploy-preview-4047--gestalt.netlify.app?devexample=true)
## 174.2.0 (Mar 20, 2025)
### Minor
- Icon: New Icons [GESTALT-8749] ([#4038](https://github.com/pinterest/gestalt/pull/4038)) - [Preview link](https://deploy-preview-4038--gestalt.netlify.app?devexample=true)
## 174.1.2 (Mar 19, 2025)
### Patch
- RadioGroup: fix in CSS file for width ([#4046](https://github.com/pinterest/gestalt/pull/4046)) - [Preview link](https://deploy-preview-4046--gestalt.netlify.app?devexample=true)
## 174.1.1 (Mar 19, 2025)
### Patch
- Internal: [Snyk] Security upgrade react-cookie from 4.1.1 to 8.0.1 ([#4044](https://github.com/pinterest/gestalt/pull/4044)) - [Preview link](https://deploy-preview-4044--gestalt.netlify.app?devexample=true)
## 174.1.0 (Mar 18, 2025)
### Minor
- Tabs: supports large size `size="lg"` ([#4042](https://github.com/pinterest/gestalt/pull/4042)) - [Preview link](https://deploy-preview-4042--gestalt.netlify.app?devexample=true)
## 174.0.0 (Mar 18, 2025)
### Major
- RadioButton: deprecate component ([#4043](https://github.com/pinterest/gestalt/pull/4043)) - [Preview link](https://deploy-preview-4043--gestalt.netlify.app?devexample=true)
## 173.2.2 (Mar 18, 2025)
### Patch
- TileData: removed width and max width definitions ([#4041](https://github.com/pinterest/gestalt/pull/4041)) - [Preview link](https://deploy-preview-4041--gestalt.netlify.app?devexample=true)
## 173.2.1 (Mar 17, 2025)
### Patch
- Avatar: updates to verified icon ([#4040](https://github.com/pinterest/gestalt/pull/4040)) - [Preview link](https://deploy-preview-4040--gestalt.netlify.app?devexample=true)
## 173.2.0 (Mar 17, 2025)
### Minor
- ChartGraph: added support to custom labels in bars + new ChartGraph.Label ([#4039](https://github.com/pinterest/gestalt/pull/4039)) - [Preview link](https://deploy-preview-4039--gestalt.netlify.app?devexample=true)
## 173.1.2 (Mar 17, 2025)
### Patch
- Internal: Bump @babel/runtime from 7.15.4 to 7.26.10 ([#4036](https://github.com/pinterest/gestalt/pull/4036)) - [Preview link](https://deploy-preview-4036--gestalt.netlify.app?devexample=true)
## 173.1.1 (Mar 10, 2025)
### Patch
- ChartGraph: Upgrade recharts for ChartGraph to support React 19 ([#4034](https://github.com/pinterest/gestalt/pull/4034)) - [Preview link](https://deploy-preview-4034--gestalt.netlify.app?devexample=true)
## 173.1.0 (Mar 10, 2025)
### Minor
- Masonry: Fix Multi-Column Module Positioning Bug on Dynamic Heights V2 ([#4033](https://github.com/pinterest/gestalt/pull/4033)) - [Preview link](https://deploy-preview-4033--gestalt.netlify.app?devexample=true)
## 173.0.0 (Mar 8, 2025)
### Major
- PopoverMessage: renamed PopoverEducational to PopoverMessage + support to `type=education` and `type=notification` ([#4032](https://github.com/pinterest/gestalt/pull/4032)) - [Preview link](https://deploy-preview-4032--gestalt.netlify.app?devexample=true)
## 172.14.2 (Mar 7, 2025)
### Patch
- ChartGraph: padding adjusments + example fixes ([#4030](https://github.com/pinterest/gestalt/pull/4030)) - [Preview link](https://deploy-preview-4030--gestalt.netlify.app?devexample=true)
## 172.14.1 (Mar 7, 2025)
### Patch
- Revert "Masonry: Fix Multi-Column Module Positioning Bug on Dynamic H… ([#4031](https://github.com/pinterest/gestalt/pull/4031)) - [Preview link](https://deploy-preview-4031--gestalt.netlify.app?devexample=true)
## 172.14.0 (Mar 6, 2025)
### Minor
- Masonry: Flexible width items ([#3993](https://github.com/pinterest/gestalt/pull/3993)) - [Preview link](https://deploy-preview-3993--gestalt.netlify.app?devexample=true)
## 172.13.3 (Mar 6, 2025)
### Patch
- Masonry: Fix Multi-Column Module Positioning Bug on Dynamic Heights V2 and Optimize Height Recalculation ([#4029](https://github.com/pinterest/gestalt/pull/4029)) - [Preview link](https://deploy-preview-4029--gestalt.netlify.app?devexample=true)
## 172.13.2 (Mar 5, 2025)
### Patch
- ChartGraph: fix time series interval and padding issues ([#4028](https://github.com/pinterest/gestalt/pull/4028)) - [Preview link](https://deploy-preview-4028--gestalt.netlify.app?devexample=true)
## 172.13.1 (Mar 5, 2025)
### Patch
- ChartGraph: document is not defined issue ([#4027](https://github.com/pinterest/gestalt/pull/4027)) - [Preview link](https://deploy-preview-4027--gestalt.netlify.app?devexample=true)
## 172.13.0 (Mar 5, 2025)
### Minor
- ButtonToggle: color picker supports custom colors ([#4025](https://github.com/pinterest/gestalt/pull/4025)) - [Preview link](https://deploy-preview-4025--gestalt.netlify.app?devexample=true)
## 172.12.0 (Mar 5, 2025)
### Minor
- ChartGraph, TileData, TagData: support neutral dataviz color & opacity ([#4026](https://github.com/pinterest/gestalt/pull/4026)) - [Preview link](https://deploy-preview-4026--gestalt.netlify.app?devexample=true)
## 172.11.0 (Mar 4, 2025)
### Minor
- Internal: Compact Icon Swap ([#4010](https://github.com/pinterest/gestalt/pull/4010)) - [Preview link](https://deploy-preview-4010--gestalt.netlify.app?devexample=true)
## 172.10.8 (Mar 3, 2025)
### Patch
- BannerCallout: Revert BannerCallout: message width adjustments ([#4007](https://github.com/pinterest/gestalt/pull/4007)) - [Preview link](https://deploy-preview-4007--gestalt.netlify.app?devexample=true) ([#4024](https://github.com/pinterest/gestalt/pull/4024)) - [Preview link](https://deploy-preview-4024--gestalt.netlify.app?devexample=true)
## 172.10.7 (Mar 3, 2025)
### Patch
- TapAreaLink: support to `title` prop ([#4022](https://github.com/pinterest/gestalt/pull/4022)) - [Preview link](https://deploy-preview-4022--gestalt.netlify.app?devexample=true)
## 172.10.6 (Mar 3, 2025)
### Patch
- Internal: Upgrade mui-material ([#4023](https://github.com/pinterest/gestalt/pull/4023)) - [Preview link](https://deploy-preview-4023--gestalt.netlify.app?devexample=true)
## 172.10.5 (Feb 28, 2025)
### Patch
- Image, Video: if image or track `src` is empty string "" then set as undefined ([#4013](https://github.com/pinterest/gestalt/pull/4013)) - [Preview link](https://deploy-preview-4013--gestalt.netlify.app?devexample=true)
## 172.10.4 (Feb 28, 2025)
### Patch
- Popover: remove border options ([#4020](https://github.com/pinterest/gestalt/pull/4020)) - [Preview link](https://deploy-preview-4020--gestalt.netlify.app?devexample=true)
## 172.10.3 (Feb 28, 2025)
### Patch
- DateField, DateRange: upgrade @mui/x-date-pickers to 7.27.2 ([#4019](https://github.com/pinterest/gestalt/pull/4019)) - [Preview link](https://deploy-preview-4019--gestalt.netlify.app?devexample=true)
## 172.10.2 (Feb 28, 2025)
### Patch
- Masonry: Code cleanup and new test for masonry testing page ([#4014](https://github.com/pinterest/gestalt/pull/4014)) - [Preview link](https://deploy-preview-4014--gestalt.netlify.app?devexample=true)
## 172.10.1 (Feb 27, 2025)
### Patch
- DateField: fix to exclude more (unrecognized) attributes to reach input html ([#4018](https://github.com/pinterest/gestalt/pull/4018)) - [Preview link](https://deploy-preview-4018--gestalt.netlify.app?devexample=true)
## 172.10.0 (Feb 27, 2025)
### Minor
- Button, ButtonLink: Fixing VR height ([#4005](https://github.com/pinterest/gestalt/pull/4005)) - [Preview link](https://deploy-preview-4005--gestalt.netlify.app?devexample=true)
## 172.9.6 (Feb 27, 2025)
### Patch
- DateField: upgrade dependency to 7.0.0 ([#4009](https://github.com/pinterest/gestalt/pull/4009)) - [Preview link](https://deploy-preview-4009--gestalt.netlify.app?devexample=true)
## 172.9.5 (Feb 26, 2025)
### Patch
- Masonry: Fix bug on edge case while using dynamicHeightsV2 ([#4012](https://github.com/pinterest/gestalt/pull/4012)) - [Preview link](https://deploy-preview-4012--gestalt.netlify.app?devexample=true)
## 172.9.4 (Feb 25, 2025)
### Patch
- SearchGuide: fix stacking context bug with isolation='isolate' ([#4011](https://github.com/pinterest/gestalt/pull/4011)) - [Preview link](https://deploy-preview-4011--gestalt.netlify.app?devexample=true)
## 172.9.3 (Feb 22, 2025)
### Patch
- DateField: upgrade dependency to 6.20.2 ([#4008](https://github.com/pinterest/gestalt/pull/4008)) - [Preview link](https://deploy-preview-4008--gestalt.netlify.app?devexample=true)
## 172.9.2 (Feb 21, 2025)
### Patch
- BannerCallout: message width adjustments ([#4007](https://github.com/pinterest/gestalt/pull/4007)) - [Preview link](https://deploy-preview-4007--gestalt.netlify.app?devexample=true)
## 172.9.1 (Feb 21, 2025)
### Patch
- SearchGuide: fix border radius in VR image variant ([#4006](https://github.com/pinterest/gestalt/pull/4006)) - [Preview link](https://deploy-preview-4006--gestalt.netlify.app?devexample=true)
## 172.9.0 (Feb 20, 2025)
### Minor
- Icon: New Icons [GESTALT-8749] ([#4003](https://github.com/pinterest/gestalt/pull/4003)) - [Preview link](https://deploy-preview-4003--gestalt.netlify.app?devexample=true)
## 172.8.6 (Feb 20, 2025)
### Patch
- SegmentedControl: fix VR colors in dark mode ([#4004](https://github.com/pinterest/gestalt/pull/4004)) - [Preview link](https://deploy-preview-4004--gestalt.netlify.app?devexample=true)
## 172.8.5 (Feb 20, 2025)
### Patch
- DatePicker: add private prop \_overrideRangeDateFix to enable correct logic in date ranges ([#4000](https://github.com/pinterest/gestalt/pull/4000)) - [Preview link](https://deploy-preview-4000--gestalt.netlify.app?devexample=true)
## 172.8.4 (Feb 19, 2025)
### Patch
- Link: fix a warning from accessibility pause in AccessibilityLinkActionIcon ([#4002](https://github.com/pinterest/gestalt/pull/4002)) - [Preview link](https://deploy-preview-4002--gestalt.netlify.app?devexample=true)
## 172.8.3 (Feb 19, 2025)
### Patch
- Internal: change v.pinimg.com to v1.pinimg.com ([#4001](https://github.com/pinterest/gestalt/pull/4001)) - [Preview link](https://deploy-preview-4001--gestalt.netlify.app?devexample=true)
## 172.8.2 (Feb 18, 2025)
### Patch
- IconButton: fix focus ring on visible in VR ([#3998](https://github.com/pinterest/gestalt/pull/3998)) - [Preview link](https://deploy-preview-3998--gestalt.netlify.app?devexample=true)
## 172.8.1 (Feb 14, 2025)
### Patch
- SearchGuide: adjust selected state in Classic ([#3996](https://github.com/pinterest/gestalt/pull/3996)) - [Preview link](https://deploy-preview-3996--gestalt.netlify.app?devexample=true)
## 172.8.0 (Feb 14, 2025)
### Minor
- Button, ButtonLink: support lineClamp ([#3995](https://github.com/pinterest/gestalt/pull/3995)) - [Preview link](https://deploy-preview-3995--gestalt.netlify.app?devexample=true)
## 172.7.0 (Feb 13, 2025)
### Minor
- Box, Flex: support to `xl`, `xxl`, `xxxl` breakpoints ([#3992](https://github.com/pinterest/gestalt/pull/3992)) - [Preview link](https://deploy-preview-3992--gestalt.netlify.app?devexample=true)
## 172.6.4 (Feb 12, 2025)
### Patch
- SearchGuide: fix border radius in VR image variant ([#3991](https://github.com/pinterest/gestalt/pull/3991)) - [Preview link](https://deploy-preview-3991--gestalt.netlify.app?devexample=true)
## 172.6.3 (Feb 11, 2025)
### Patch
- ComboBox: fix placeholder width when Tags are used ([#3989](https://github.com/pinterest/gestalt/pull/3989)) - [Preview link](https://deploy-preview-3989--gestalt.netlify.app?devexample=true)
## 172.6.2 (Feb 11, 2025)
### Patch
- TapAreaLink: fix duplication in aria label for target blank ([#3988](https://github.com/pinterest/gestalt/pull/3988)) - [Preview link](https://deploy-preview-3988--gestalt.netlify.app?devexample=true)
## 172.6.1 (Feb 10, 2025)
### Patch
- SearchField: VR API fixes ([#3987](https://github.com/pinterest/gestalt/pull/3987)) - [Preview link](https://deploy-preview-3987--gestalt.netlify.app?devexample=true)
## 172.6.0 (Feb 7, 2025)
### Minor
- SearchGuide: support to gradient background + overall fixes ([#3984](https://github.com/pinterest/gestalt/pull/3984)) - [Preview link](https://deploy-preview-3984--gestalt.netlify.app?devexample=true)
## 172.5.0 (Feb 7, 2025)
### Minor
- Icon: New and Updated Icons [Gestalt-8748] ([#3980](https://github.com/pinterest/gestalt/pull/3980)) - [Preview link](https://deploy-preview-3980--gestalt.netlify.app?devexample=true)
## 172.4.0 (Feb 7, 2025)
### Minor
- SearchField: support tabIndex ([#3986](https://github.com/pinterest/gestalt/pull/3986)) - [Preview link](https://deploy-preview-3986--gestalt.netlify.app?devexample=true)
## 172.3.0 (Feb 7, 2025)
### Minor
- SearchField: support readOnly ([#3985](https://github.com/pinterest/gestalt/pull/3985)) - [Preview link](https://deploy-preview-3985--gestalt.netlify.app?devexample=true)
## 172.2.3 (Feb 6, 2025)
### Patch
- Internal: Revert "Internal: Fix error in React 19 with fetchpriority ([#3976](https://github.com/pinterest/gestalt/pull/3976)) - [Preview link](https://deploy-preview-3976--gestalt.netlify.app?devexample=true)" ([#3982](https://github.com/pinterest/gestalt/pull/3982)) - [Preview link](https://deploy-preview-3982--gestalt.netlify.app?devexample=true)
## 172.2.2 (Feb 6, 2025)
### Patch
- Masonry: Fixing type bug ([#3981](https://github.com/pinterest/gestalt/pull/3981)) - [Preview link](https://deploy-preview-3981--gestalt.netlify.app?devexample=true)
## 172.2.1 (Feb 5, 2025)
### Patch
- Checkbox: background fix on VR ([#3979](https://github.com/pinterest/gestalt/pull/3979)) - [Preview link](https://deploy-preview-3979--gestalt.netlify.app?devexample=true)
## 172.2.0 (Feb 5, 2025)
### Minor
- RadioGroup: VR changes ([#3978](https://github.com/pinterest/gestalt/pull/3978)) - [Preview link](https://deploy-preview-3978--gestalt.netlify.app?devexample=true)
## 172.1.0 (Feb 5, 2025)
### Minor
- Masonry: Adding Window type to scroll container ([#3977](https://github.com/pinterest/gestalt/pull/3977)) - [Preview link](https://deploy-preview-3977--gestalt.netlify.app?devexample=true)
## 172.0.1 (Feb 3, 2025)
### Patch
- BannerOverlay: fix examples with logo ([#3975](https://github.com/pinterest/gestalt/pull/3975)) - [Preview link](https://deploy-preview-3975--gestalt.netlify.app?devexample=true)
## 172.0.0 (Feb 3, 2025)
### Major
- BannerUpsell: VR fixes & title as required ([#3974](https://github.com/pinterest/gestalt/pull/3974)) - [Preview link](https://deploy-preview-3974--gestalt.netlify.app?devexample=true)
## 171.6.0 (Feb 3, 2025)
### Minor
- Tabs: support new icon prop #3972 ([#3973](https://github.com/pinterest/gestalt/pull/3973)) - [Preview link](https://deploy-preview-3973--gestalt.netlify.app?devexample=true)
## 171.5.0 (Feb 3, 2025)
### Minor
- RadioGroup: VR changes ([#3968](https://github.com/pinterest/gestalt/pull/3968)) - [Preview link](https://deploy-preview-3968--gestalt.netlify.app?devexample=true)
## 171.4.0 (Jan 31, 2025)
### Minor
- Spinner, Text, TextUI: add label to Spinner, and id to TextUI and Text #3947 ([#3971](https://github.com/pinterest/gestalt/pull/3971)) - [Preview link](https://deploy-preview-3971--gestalt.netlify.app?devexample=true)
## 171.3.1 (Jan 31, 2025)
### Patch
- BannerSlim: adjustments ([#3970](https://github.com/pinterest/gestalt/pull/3970)) - [Preview link](https://deploy-preview-3970--gestalt.netlify.app?devexample=true)
## 171.3.0 (Jan 31, 2025)
### Minor
- Dropdown: support to `avatar` ([#3969](https://github.com/pinterest/gestalt/pull/3969)) - [Preview link](https://deploy-preview-3969--gestalt.netlify.app?devexample=true)
## 171.2.0 (Jan 31, 2025)
### Minor
- BannerUpsell: VR changes ([#3922](https://github.com/pinterest/gestalt/pull/3922)) - [Preview link](https://deploy-preview-3922--gestalt.netlify.app?devexample=true)
## 171.1.2 (Jan 31, 2025)
### Patch
- Dropdown: VR changes and overall fixes ([#3967](https://github.com/pinterest/gestalt/pull/3967)) - [Preview link](https://deploy-preview-3967--gestalt.netlify.app?devexample=true)
## 171.1.1 (Jan 31, 2025)
### Patch
- Dropdown: VR changes 1/2 ([#3966](https://github.com/pinterest/gestalt/pull/3966)) - [Preview link](https://deploy-preview-3966--gestalt.netlify.app?devexample=true)
## 171.1.0 (Jan 31, 2025)
### Minor
- Masonry: Experimental breakpoints for gridSize ([#3964](https://github.com/pinterest/gestalt/pull/3964)) - [Preview link](https://deploy-preview-3964--gestalt.netlify.app?devexample=true)
## 171.0.1 (Jan 30, 2025)
### Patch
- Internal: Fix key prop error on Flex Component for React 19 ([#3965](https://github.com/pinterest/gestalt/pull/3965)) - [Preview link](https://deploy-preview-3965--gestalt.netlify.app?devexample=true)
## 171.0.0 (Jan 30, 2025)
### Major
- BannerOverlay: VR changes ([#3960](https://github.com/pinterest/gestalt/pull/3960)) - [Preview link](https://deploy-preview-3960--gestalt.netlify.app?devexample=true)
## 170.1.0 (Jan 30, 2025)
### Minor
- SearchField: support onClear prop ([#3961](https://github.com/pinterest/gestalt/pull/3961)) - [Preview link](https://deploy-preview-3961--gestalt.netlify.app?devexample=true)
## 170.0.0 (Jan 30, 2025)
### Major
- SearchField, DefaultLabelProvider: add default accessibility label for clean input button ([#3959](https://github.com/pinterest/gestalt/pull/3959)) - [Preview link](https://deploy-preview-3959--gestalt.netlify.app?devexample=true)
## 169.3.0 (Jan 29, 2025)
### Minor
- Internal: Change React 19 Build ([#3963](https://github.com/pinterest/gestalt/pull/3963)) - [Preview link](https://deploy-preview-3963--gestalt.netlify.app?devexample=true)
## 169.2.4 (Jan 29, 2025)
### Patch
- Spinner, BannerSlim, Text, TextUI: revert some changes creating some unexpected resizes in some prod surfaces ([#3962](https://github.com/pinterest/gestalt/pull/3962)) - [Preview link](https://deploy-preview-3962--gestalt.netlify.app?devexample=true)
## 169.2.3 (Jan 28, 2025)
### Patch
- Masonry: Fix integration tests ([#3956](https://github.com/pinterest/gestalt/pull/3956)) - [Preview link](https://deploy-preview-3956--gestalt.netlify.app?devexample=true)
## 169.2.2 (Jan 24, 2025)
### Patch
- Icon: Add Re-do and Undo to RTL ([#3957](https://github.com/pinterest/gestalt/pull/3957)) - [Preview link](https://deploy-preview-3957--gestalt.netlify.app?devexample=true)
## 169.2.1 (Jan 22, 2025)
### Patch
- Internal: renaming Visual Refresh experiment name to snake_case ([#3955](https://github.com/pinterest/gestalt/pull/3955)) - [Preview link](https://deploy-preview-3955--gestalt.netlify.app?devexample=true)
## 169.2.0 (Jan 22, 2025)
### Minor
- Button: new variants ([#3931](https://github.com/pinterest/gestalt/pull/3931)) - [Preview link](https://deploy-preview-3931--gestalt.netlify.app?devexample=true)
## 169.1.6 (Jan 22, 2025)
### Patch
- DateRange: fix date selection bug when you disable secondary range ([#3953](https://github.com/pinterest/gestalt/pull/3953)) - [Preview link](https://deploy-preview-3953--gestalt.netlify.app?devexample=true)
## 169.1.5 (Jan 22, 2025)
### Patch
- DateRange: fix date input border radius when radio group is present (web) ([#3952](https://github.com/pinterest/gestalt/pull/3952)) - [Preview link](https://deploy-preview-3952--gestalt.netlify.app?devexample=true)
## 169.1.4 (Jan 17, 2025)
### Patch
- Dropdown: add marginStart to selected check icon ([#3951](https://github.com/pinterest/gestalt/pull/3951)) - [Preview link](https://deploy-preview-3951--gestalt.netlify.app?devexample=true)
## 169.1.3 (Jan 17, 2025)
### Patch
- HelpButton: general fixes and VR fixes ([#3949](https://github.com/pinterest/gestalt/pull/3949)) - [Preview link](https://deploy-preview-3949--gestalt.netlify.app?devexample=true)
## 169.1.2 (Jan 17, 2025)
### Patch
- BannerSlim: fix ([#3950](https://github.com/pinterest/gestalt/pull/3950)) - [Preview link](https://deploy-preview-3950--gestalt.netlify.app?devexample=true)
## 169.1.1 (Jan 16, 2025)
### Patch
- BannerSlim: fix bug with list of children ([#3948](https://github.com/pinterest/gestalt/pull/3948)) - [Preview link](https://deploy-preview-3948--gestalt.netlify.app?devexample=true)
## 169.1.0 (Jan 16, 2025)
### Minor
- Spinner, Text, TextUI: add label to Spinner, and id to TextUI and Text ([#3947](https://github.com/pinterest/gestalt/pull/3947)) - [Preview link](https://deploy-preview-3947--gestalt.netlify.app?devexample=true)
## 169.0.4 (Jan 16, 2025)
### Patch
- Internal: upgrade "@playwright/test" to 1.49 ([#3946](https://github.com/pinterest/gestalt/pull/3946)) - [Preview link](https://deploy-preview-3946--gestalt.netlify.app?devexample=true)
## 169.0.3 (Jan 16, 2025)
### Patch
- BannerSlim: fix <sm breakpoint paddingY ([#3943](https://github.com/pinterest/gestalt/pull/3943)) - [Preview link](https://deploy-preview-3943--gestalt.netlify.app?devexample=true)
## 169.0.2 (Jan 16, 2025)
### Patch
- Internal: Revert Revert "Internal: Upgrade React to 19 ([#3937](https://github.com/pinterest/gestalt/pull/3937)) - [Preview link](https://deploy-preview-3937--gestalt.netlify.app?devexample=true)" (#39… ([#3945](https://github.com/pinterest/gestalt/pull/3945)) - [Preview link](https://deploy-preview-3945--gestalt.netlify.app?devexample=true)
## 169.0.1 (Jan 16, 2025)
### Patch
- Internal: Revert "Internal: Upgrade React to 19 ([#3937](https://github.com/pinterest/gestalt/pull/3937)) - [Preview link](https://deploy-preview-3937--gestalt.netlify.app?devexample=true)" ([#3944](https://github.com/pinterest/gestalt/pull/3944)) - [Preview link](https://deploy-preview-3944--gestalt.netlify.app?devexample=true)
## 169.0.0 (Jan 16, 2025)
### Major
- Internal: Upgrade React to 19 ([#3937](https://github.com/pinterest/gestalt/pull/3937)) - [Preview link](https://deploy-preview-3937--gestalt.netlify.app?devexample=true)
## 168.0.3 (Jan 16, 2025)
### Patch
- AvatarGroup: fix VR default size bug ([#3942](https://github.com/pinterest/gestalt/pull/3942)) - [Preview link](https://deploy-preview-3942--gestalt.netlify.app?devexample=true)
## 168.0.2 (Jan 15, 2025)
### Patch
- BannerSlim: VR fixes when message isnt string ([#3940](https://github.com/pinterest/gestalt/pull/3940)) - [Preview link](https://deploy-preview-3940--gestalt.netlify.app?devexample=true)
## 168.0.1 (Jan 15, 2025)
### Patch
- BannerSlim: VR fixes ([#3939](https://github.com/pinterest/gestalt/pull/3939)) - [Preview link](https://deploy-preview-3939--gestalt.netlify.app?devexample=true)
## 168.0.0 (Jan 15, 2025)
### Major
- Masonry: Remove \_loadingStateItems and \_renderLoadingStateItems props ([#3938](https://github.com/pinterest/gestalt/pull/3938)) - [Preview link](https://deploy-preview-3938--gestalt.netlify.app?devexample=true)
## 167.7.0 (Jan 14, 2025)
### Minor
- Link/ButtonLink: support for download ([#3936](https://github.com/pinterest/gestalt/pull/3936)) - [Preview link](https://deploy-preview-3936--gestalt.netlify.app?devexample=true)
## 167.6.0 (Jan 14, 2025)
### Minor
- Spinner: VR color variants ([#3912](https://github.com/pinterest/gestalt/pull/3912)) - [Preview link](https://deploy-preview-3912--gestalt.netlify.app?devexample=true)
## 167.5.1 (Jan 13, 2025)
### Patch
- Internal: Upgrade React to 18.3.1 ([#3935](https://github.com/pinterest/gestalt/pull/3935)) - [Preview link](https://deploy-preview-3935--gestalt.netlify.app?devexample=true)
## 167.5.0 (Jan 13, 2025)
### Minor
- Link, ButtonLink: support to experimental onMouseEnter, onMouseLeave to support prefetching logic ([#3933](https://github.com/pinterest/gestalt/pull/3933)) - [Preview link](https://deploy-preview-3933--gestalt.netlify.app?devexample=true)
## 167.4.1 (Jan 13, 2025)
### Patch
- Indicator: add VR outline ([#3934](https://github.com/pinterest/gestalt/pull/3934)) - [Preview link](https://deploy-preview-3934--gestalt.netlify.app?devexample=true)
## 167.4.0 (Jan 10, 2025)
### Minor
- Icon: Missing compact icons ([#3932](https://github.com/pinterest/gestalt/pull/3932)) - [Preview link](https://deploy-preview-3932--gestalt.netlify.app?devexample=true)
## 167.3.0 (Jan 8, 2025)
### Minor
- ColorSchemeProvider: support to classic partial exclusions ([#3930](https://github.com/pinterest/gestalt/pull/3930)) - [Preview link](https://deploy-preview-3930--gestalt.netlify.app?devexample=true)
## 167.2.0 (Jan 8, 2025)
### Minor
- Icon: New Icons [Gestalt-8746] ([#3926](https://github.com/pinterest/gestalt/pull/3926)) - [Preview link](https://deploy-preview-3926--gestalt.netlify.app?devexample=true)
## 167.1.4 (Jan 8, 2025)
### Patch
- DatePicker: fix in onChange event ([#3929](https://github.com/pinterest/gestalt/pull/3929)) - [Preview link](https://deploy-preview-3929--gestalt.netlify.app?devexample=true)
## 167.1.3 (Jan 7, 2025)
### Patch
- ComboBox: fix ref bug issue with tags ([#3928](https://github.com/pinterest/gestalt/pull/3928)) - [Preview link](https://deploy-preview-3928--gestalt.netlify.app?devexample=true)
## 167.1.2 (Jan 7, 2025)
### Patch
- IconCompact: added docs, accessibility tests, and indexed component ([#3924](https://github.com/pinterest/gestalt/pull/3924)) - [Preview link](https://deploy-preview-3924--gestalt.netlify.app?devexample=true)
## 167.1.1 (Jan 7, 2025)
### Patch
- Internal: remove internal circular dependencies ([#3925](https://github.com/pinterest/gestalt/pull/3925)) - [Preview link](https://deploy-preview-3925--gestalt.netlify.app?devexample=true)
## 167.1.0 (Jan 6, 2025)
### Minor
- DatePicker, TextField: 1. fix open behavior, 2. support to onClick ([#3921](https://github.com/pinterest/gestalt/pull/3921)) - [Preview link](https://deploy-preview-3921--gestalt.netlify.app?devexample=true)
## 167.0.1 (Jan 6, 2025)
### Patch
- DatePicker: upgraded package to latest 7.5.0 ([#3920](https://github.com/pinterest/gestalt/pull/3920)) - [Preview link](https://deploy-preview-3920--gestalt.netlify.app?devexample=true)
## 167.0.0 (Jan 4, 2025)
### Major
- SideNavigation: patch for accessibility aria-selected bug ([#3919](https://github.com/pinterest/gestalt/pull/3919)) - [Preview link](https://deploy-preview-3919--gestalt.netlify.app?devexample=true)
## 166.3.0 (Jan 3, 2025)
### Minor
- BannerSlim: VR ([#3918](https://github.com/pinterest/gestalt/pull/3918)) - [Preview link](https://deploy-preview-3918--gestalt.netlify.app?devexample=true)
## 166.2.3 (Jan 2, 2025)
### Patch
- DateRange: Highlight secondary range in DateRange component (web) ([#3910](https://github.com/pinterest/gestalt/pull/3910)) - [Preview link](https://deploy-preview-3910--gestalt.netlify.app?devexample=true)
## 166.2.2 (Jan 2, 2025)
### Patch
- DateRange: Remove overflow prop and apply border radius with css instead (web) ([#3909](https://github.com/pinterest/gestalt/pull/3909)) - [Preview link](https://deploy-preview-3909--gestalt.netlify.app?devexample=true)
## 166.2.1 (Dec 17, 2024)
### Patch
- Masonry: Update fluid grid to not floor column width (take two) ([#3913](https://github.com/pinterest/gestalt/pull/3913)) - [Preview link](https://deploy-preview-3913--gestalt.netlify.app?devexample=true)
## 166.2.0 (Dec 9, 2024)
### Minor
- Icon: Update Icons [Gestalt-8459] ([#3908](https://github.com/pinterest/gestalt/pull/3908)) - [Preview link](https://deploy-preview-3908--gestalt.netlify.app?devexample=true)
## 166.1.0 (Dec 6, 2024)
### Minor
- SideNavigation: Add disable and helper text props ([#3905](https://github.com/pinterest/gestalt/pull/3905)) - [Preview link](https://deploy-preview-3905--gestalt.netlify.app?devexample=true)
## 166.0.5 (Dec 5, 2024)
### Patch
- List: remove color override in Text node ([#3907](https://github.com/pinterest/gestalt/pull/3907)) - [Preview link](https://deploy-preview-3907--gestalt.netlify.app?devexample=true)
## 166.0.4 (Dec 4, 2024)
### Patch
- BannerCallout: Remove Children.only logic prone to break if message is undefined in runtime ([#3906](https://github.com/pinterest/gestalt/pull/3906)) - [Preview link](https://deploy-preview-3906--gestalt.netlify.app?devexample=true)
## 166.0.3 (Dec 4, 2024)
### Patch
- Spinner: Intro animation refinements ([#3904](https://github.com/pinterest/gestalt/pull/3904)) - [Preview link](https://deploy-preview-3904--gestalt.netlify.app?devexample=true)
## 166.0.2 (Dec 4, 2024)
### Patch
- SearchGuide: VR Changes to selected states, trailing icon change, leading icon and size change ([#3903](https://github.com/pinterest/gestalt/pull/3903)) - [Preview link](https://deploy-preview-3903--gestalt.netlify.app?devexample=true)
## 166.0.1 (Dec 3, 2024)
### Patch
- Popover, PopoverEducational: VR adjusments ([#3902](https://github.com/pinterest/gestalt/pull/3902)) - [Preview link](https://deploy-preview-3902--gestalt.netlify.app?devexample=true)
## 166.0.0 (Dec 2, 2024)
### Major
- SideNavigation, Tabs, DefaultLabelProvider: implemented Indicator ([#3901](https://github.com/pinterest/gestalt/pull/3901)) - [Preview link](https://deploy-preview-3901--gestalt.netlify.app?devexample=true)
## 165.5.0 (Dec 2, 2024)
### Minor
- Indicator: new component ([#3898](https://github.com/pinterest/gestalt/pull/3898)) - [Preview link](https://deploy-preview-3898--gestalt.netlify.app?devexample=true)
## 165.4.5 (Nov 29, 2024)
### Patch
- Divider: VR adjusments ([#3900](https://github.com/pinterest/gestalt/pull/3900)) - [Preview link](https://deploy-preview-3900--gestalt.netlify.app?devexample=true)
## 165.4.4 (Nov 29, 2024)
### Patch
- HelpButton: VR adjusments ([#3899](https://github.com/pinterest/gestalt/pull/3899)) - [Preview link](https://deploy-preview-3899--gestalt.netlify.app?devexample=true)
## 165.4.3 (Nov 28, 2024)
### Patch
- Checkbox: VR adjustments ([#3896](https://github.com/pinterest/gestalt/pull/3896)) - [Preview link](https://deploy-preview-3896--gestalt.netlify.app?devexample=true)
## 165.4.2 (Nov 28, 2024)
### Patch
- Link: role tab for aria-current === section ([#3897](https://github.com/pinterest/gestalt/pull/3897)) - [Preview link](https://deploy-preview-3897--gestalt.netlify.app?devexample=true)
## 165.4.1 (Nov 27, 2024)
### Patch