This repository has been archived by the owner on Jul 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 144
/
changelog.txt
1732 lines (1548 loc) · 92.2 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
== 3.2.0 02/22/2022 ==
- Fix: Adjusted task list logic to fix conflict between current and experimental task list. #8321
- Fix: changed email validation in Store Details onboarding task to more closely match PHP backend validation. #8197
- Fix: Disallow whitespace as the platform name input. #8090
- Fix: Ensure setup-wizard redirection on homescreen is stable. #8114
- Fix: Fix category report query returns invalid net sales. #8153
- Fix: Fix clicking the error message opens the dropdown. #8094
- Fix: Fix country/region selection not preserved in store details task. #8228
- Fix: Fixed email address not being optional in OBW #8263
- Fix: Fix get_automated_tax_supported_countries doesn't include UK. #8180
- Fix: Fix incorrect date options when the "Default Date Range" is set from Analytics settings. #8189
- Fix: Fix incorrectly displayed note created date. #8179
- Fix: Fix incorrect screen reader text generated for data points on charts table. #8181
- Fix: Fix incorrect total count of downloads on the analytics download report. #8182
- Fix: Fix misaligned status column on order report. #8121
- Fix: Fix shipping rate error message overlaps with the 'Proceed' button. #8165
- Fix: Fix Shipping task sometimes skipping the set shipping costs step. #8260
- Fix: Fix Uncaught TypeError count(NULL) for php8+ in Marketing.php. #8213
- Fix: Fix undefined derived_currency value for the track 'wcadmin_storeprofiler_store_details_continue'. #8193
- Fix: Fix variations table product filter query. #8120
- Fix: Make sure free subscriptions does not show when cbd industry is selected. #8323
- Fix: Make sure WooCommerce Payments tasklist_payment_setup is triggered again. #8146
- Fix: Preserve HTML markup in server-side error messages received from sample product import request. #8173
- Fix: Remove border between email input and newsletter checkbox in OBW store details. #8148
- Fix: Reset "install_timestamp" if it's not numeric to avoid TypeError. #8100
- Fix: Truncate the long site title with an ellipses on the second line. #8112
- Add: Add additional store profiler track for the business details tab. #8265
- Add: Add countries data store #8119
- Add: Add extra tracking for plugin installation performance during onboarding. #8042
- Add: Adding tooltip to describe the lack of refund deductions from revenue summaries. #8187
- Add: Add localized validation to store address #8123
- Add: Add Magento migration note #8145
- Add: Add REST endpoint to retrieve address locales #8116
- Add: Add Spain to Square country suggestion list. #8210
- Add: Add wc_version property to the store profile onboarding tracks for view and complete steps. #8290
- Add: Change the reviews empty state panels logic #8147
- Update: Add custom error for store details email and allow continue #8110
- Update: Adding "allow-plugins" property for composer configuration. #8139
- Dev: Remove wc-admin-settings package and rename getSetting to getAdminSetting. #8057
- Tweak: Fix WCPay in core texts and promo slug #8296
- Tweak: Grow and center buttons in all WooCommerce ellipsis menu popover containers. #8168
- Tweak: Hide store address fields in regions that specify hidden #8172
- Tweak: Make activity panel badges margin consistent. #8152
- Tweak: Padding tweak for marketing tools plugin list headings. #8171
- Performance: Speed up customer syncing action. #8021
- Enhancement: Enhance report chart i18n support. #8129
- Enhancement: Make ExPlat request URL args filterable. Added woocommerce_explat_request_args filter. #8231
- Enhancement: Show MailPoet in Installed marketing extensions. #8091
- Enhancement: Update headercard to use filter to add ExPlat parameter #8233
== 3.1.0 01/25/2022 ==
- Fix: Fix Onboarding flow where extensions might not be selected and installed. #7979
- Fix: Fix pagination issue with Analytics Coupons page. #8001
- Fix: Fix select-control component label/value alignment. #8045
- Fix: Fix unexpected analytics report table filter results. #8072
- Fix: Prevent coupon move notice for new installs. #7995
- Fix: Remove calls to read_meta_data in the Note DataStore. #7988
- Fix: Fix free extensions list isn't updated after store location or industry is changed. #8099
- Fix: Fix misaligned "Rows per page" dropdown. #8113
- Fix: Hide the extensions header when no available plugins in the category. #8089
- Fix: Replace all docs.woocommerce.com links with woocommerce.com/document. #8105
- Fix: Fixing marketing task not displaying on Atomic sites #8150
- Fix: Fix setup wizard free features checkbox re-check itself. #8169
- Add: Add featured pill for MailPoet and Google Listings in marketing task #8009
- Add: Add inbox_action_click track when a note gets clicked #8086
- Add: Activate promo note after WC Pay is activated. #8104
- Add: Add payment remind me later note. #8085
- Add: Add WC Pay welcome page #8083
- Update: Allow content data note props to be passed from remote sources #8047
- Update: Update @woocommerce/e2e-environment package to latest. #8000
- Dev: Add payment gateway suggestion docs and example extensions #7966
- Dev: Remove low performing inbox notes. #8054
- Dev: Remove navigation feedback note. #8055
- Dev: Fix task ID class check and add tests around tracking #8185
- Tweak: OBW Update WC Pay label on recommended extensions list #8038
- Enhancement: Add SlotFill areas to header #7805
== 3.0.3 01/06/2022 ==
- Fix: Fix blank payment gateway method in table when WooCommerce Payments is not supported. #8122
- Add: Add woocommerce_allow_marketplace_suggestions filter to WooCommerce Payments payment method promotion. #8117
== 3.0.2 01/05/2022 ==
- Render the activity panel when the experimental tasklist is hidden. #8111
== 3.0.1 12/30/2021 ==
- Do not initialize WC Pay promotion if spec is empty. #8087
== 3.0.0 12/28/2021 ==
- Fix: Fix an issue with the code that makes use of an invalid parameter with a PHP function. The use of this invalid parameter causes PHP 8 to throw a Fatal Error. #7855
- Fix: Fix TaskList UI experiment enablement logic. #7930
- Fix: Navigation nudge note and navigation feedback notes will delete themselves if the navigation feature is not available. #7914
- Fix: Replace old task list option calls with data store selectors. #7820
- Fix: Self-delete NavigationFeedbackFollowUp note when navigation feature is not present. #7939
- Fix: Fix PHP Warning on 'Add new product' page. #7989
- Fix: Fix usage of Wordpress DatePicker component. #7982
- Fix: Fix shipping task completion status. #8031
- Add: Add option to dismiss promotional payment gateway. #7965
- Add: OBW - Add number of employees field. #7963
- Update: Ending wcpay promotion experiment and always displaying in payment methods table.
- Update: Hide InboxPanel header when it is rendered in the sidebar. #7952
- Update: Introduce a 320 character limit for inbox note contents. #7958
- Update: Move payments task to extended task list when WC Pay task is shown. #7980
- Update: Rename Inbox to Activity from the activity header. #7879
- Update: Load both actioned and unactioned notes. #7983
- Dev: Explicitly sets the Node version to 14 in .nvmrc to prevent incompatible versions of Node from being used with nvm. #7932
- Dev: Remove unused npm package @woocommerce/settings. #7949
- Dev: Update payment method recommendation to new woocommerce.com endpoint. #7913
- Dev: Use abstraction to add and retrieve task data. #7918
- Tweak: Added dismiss all button for inbox notes.
- Tweak: Implement note read state. #7896
- Tweak: Add inbox_panel_view tracks event. #8002
- Enhancement: Add tests to Subscriptions inclusion. #7804
== 2.9.3 12/15/2021 ==
- Fix: Correctly match payment gateways by id #7994
== 2.9.2 12/13/2021 ==
- Fix: Fix shipping task completion status #8031
== 2.9.1 12/07/2021 ==
- Fix: Fix shipping task not offering step 3. #7985
== 2.9.0 11/30/2021 ==
- Fix: Do not clear `current` class from the entire page when updating wp-admin's menu. #7773
- Fix: Fix calendar not being dismissed when clicking outside. #7714
- Fix: fixed warnings when using AdvancedFilters component. #7704
- Fix: Fix Tasklist UI illustrations styling #7858
- Fix: Revert experiment task titles back to original #7853
- Fix: Fix ordering and styling issue with WooCommerce Payments payment method promotion. #7943
- Fix: Fix ExPlat PHP client #7926
- Fix: Fix marketing extensions tracks #7908
- Fix: Ensure homescreen defaults to single column layout. #7969
- Add: Add 2col expirement. #7872
- Add: Add Avalara to tax task #7874
- Add: Added two column experimental task list #7669
- Add: Add header cards for all tasks in Tasklist UI experiment #7838
- Add: Add onboarding task docs #7762
- Update: Add marketing extensions back to onboarding wizard #7831
- Update: Add profile notes. #7861
- Update: Change CTA text for personalize store task after completion #7852
- Update: Increased number of possible items in Recommended Extensions list from 6 to 9 #7887
- Update: Refactor data source poller for re-usability. #7671
- Update: Reverts addition of Marketplace and My Subscriptions pages to the Marketplace menu. #7902
- Update: Update the inbox panel with the new design #7864
- Update: Update WC Pay card to include in-person information #7830
- Update: Updating navigation link colors #7833
- Dev: Add method to check for install status #7808
- Dev: Refactor tax task into separate components
- Dev: Update the task list to use the new task list REST API #7736
- Dev: Remove task status endpoint #7841
- Tweak: Add route and layout for unmatched path #7503
- Tweak: Avoid caching extended info #7819
- Tweak: Minor design update for Marketing task. #7732
- Tweak: Remove the Spinner component to prevent undesired page flickering. #7886
- Tweak: Use page title Extensions for Marketplace and My Subscriptions pages. #7901
- Performance: Only load default tasks during REST requests #7904
== 2.8.0 11/02/2021 ==
- Add: Store Profiler and Product task - include Subscriptions #7734
- Fix: Fix issue where stock activity panel was not rendering correctly. #7817
- Fix: Increase CSS specificity to avoid conflicts and broken panel styling. #7813
- Fix: Updated link to WooCommerce Developers Blog in readme.txt #7824
- Fix: Fixed navigation menu text color after Gutenberg 11.6.0 #7771
- Fix: Add status param to notes/delete/all REST endpoint, to correctly delete all notes. #7743
- Fix: Allow already installed marketing extensions to be activated #7740
- Fix: Add missing title text for marketing task. #7640
- Fix: Assign parent order status as children order status if refund order #7253
- Fix: Fix category lookup logic to update children correctly. #7709
- Fix: Fixing an unwanted page refresh when using Woo Navigation. #7615
- Fix: Fix naming of event names and properties. #7677
- Fix: Fix white screen for variation analytic data without a name. #7686
- Update: Update back up copy of free extension for Google Listing & Ads plugin. #7798
- Update: Update Eway payment gateway capitalization (was eWAY). #7678
- Update: Enable Square in France. #7679
- Update: Update WC pay supported country list for the default free extensions. #7873
- Enhancement: Add experiment for promoting WooCommerce Payments in payment methods table. #7666
- Performance: Only load tasks during rest api requests #7856
== 2.7.2 10/11/2021 ==
- Fix: Fix analytics crashing on daylight saving #7763
== 2.7.1 10/01/2021 ==
- Fix: Allow super admins all capabilities within WooCommerce Admin #7489
- Fix: Fix end date for last periods #6584
- Fix: Fix up onboarding profiler not working when opted out of tracking #7490
- Fix: Making Business Details sticky in onboarding wizard #7426
- Fix: Missing RTL for onboarding styles. #7531
- Fix: Skip scheduling action if Action Scheduler tables have not been set up #7521
- Fix: Update country region typeahead for better autofill support. #7497
- Fix: Use installable extensions for local state versus free extensions. #7585
- Fix: Fix fatal error and unrelated results in analytics. #7682
- Fix: Harden the reports directory #7691
- Fix: Update task-item logic to only display content when expanded is true. #7611
- Add: Show Pinterest in installed marketing extensions (if installed) #7417
- Add: Added MailchimpScheduler that runs daily to subscribe store_email in the profile data #7579
- Add: Added shipping plugin recommendations to settings page (#7446).
- Add: Adding endpoint to snooze onboarding task #7539
- Add: Adding undo snooze task endpoint #7560
- Add: Add task dismissal endpoints #7538
- Update: Add HK and SG countries to WC Pay intl support. #7558
- Update: Create task list REST API endpoint #7512
- Update: Deleted OnboardingEmailMarketing note class #7595
- Update: Removes the use of the depreciated woocommerce_shared_settings hook. #7480
- Update: Removes non WooCommerce Admin specific settings from the `wc_admin` namespace in the `wc/data` settings store (ex countries). #7480
- Update: Updating eway logo in payment suggestions defaults #7562
- Update: Update marketing task completion logic. #7586
- Dev: Add email address field to OBW #7552
- Tweak: Add navigation items for the Marketplace menu. #7529
- Tweak: Change all analytics strings and labels to sentence case. #6501
- Tweak: Delete unneeded double spaces in text strings. #7502
- Tweak: Remove the preloaded onboarding options #7338
- Tweak: Update analytics card header text styles #6506
- Enhancement: Align Table fields with the fallback on isNumeric. #7431
== 2.6.5 09/22/2021 ==
- Fix: Add filters to get new hidden options #7698
== 2.6.4 09/21/2021 ==
- Fix: Use installable extensions for local state versus free extensions. #7585
== 2.6.3 09/21/2021 ==
== 2.6.2 09/14/2021 ==
== 2.6.1 09/01/2021 ==
- Update: Update marketing task completion logic. #7586
== 2.6.0 08/31/2021 ==
- Fix: Fixes action button mis-alignment within card footer. #7412
- Fix: Fixing issues with ReportTable component data not populating correctly #7355
- Fix: Fix tracks events for payment gateway suggestions #7304
- Fix: Update status values in CSV download to match the table #7284
- Fix: Allow super admins all capabilities within WooCommerce Admin #7489
- Fix: Fix blank screen by setting a default value #7506
- Fix: Fix analytics overview re-arrangement on initial load. #7475
- Fix: Fix up onboarding profiler not working when opted out of tracking #7490
- Fix: Fix blank screen on analytics screens when searching #7482
- Fix: Fix all links with hash to behind query parameters #7483
- Fix: Fix Stats module CSS issue introduced by Gutenberg #7488
- Fix: Fix marketing task visibility #7580
- Fix: Fix stats-overview card padding issue #7594
- Fix: Fix layout issue on marketing task #7598
- Add: Add boolean isReverseTrend prop to SummaryNumber to show "positive" delta for negative numbers. #7357
- Add: Adding links to help panel for marketing task #7384
- Add: Add installed marketing extensions card to extensions task #7419
- Add: Add marketing extensions task to task list #7383
- Add: Add tracks to marketing manage button click #7467
- Add: Add default marketing extensions as fallbacks #7466
- Add: Add marketing task completion check and tests #7451
- Add: navigation items for the Marketplace menu. #7529
- Update: Add locale param as part of free extensions request #7391
- Update: Increase per_page value for search results on the Analytics pages. #7385
- Update: Removing grow section from local free extensions in OBW #7386
- Update: Don't show the marketing task if no marketing tasks exist #7460
- Update: Delete free extensions transient on WCA update #7454
- Update: Update business details to use extensions data store #7452
- Update: Split Extensions page into Marketplace and My Subscriptions. #7471
- Dev: Added utm_medium=product to woocommerce.com links. #7408
- Dev: Update Jest to version 27. #7430
- Tweak: Refactor on payment settings recommendations eligibility component for reuse. #7447
- Tweak: Register wc-admin page for all users and handle authorization in client #7285
== 2.5.1 08/16/2021 ==
- Fix: Fix blank screen by setting a default value #7506
== 2.5.0 08/09/2021 ==
- Add: Add a delete option to completed tasks #7300
- Add: Add unit tests around extended payment gateway controller #7133
- Add: Add payment gateway suggestion unit tests #7142
- Add: Add TableSummaryPlaceholder to support skeleton loading #7294
- Add: Feature toggle to disable Analytics UI #7168
- Add: Hook reference slotFill support #6833
- Add: Adding tests for PaymentGatewaySuggestions > List component #7201
- Add: Remote Inbox feature setting toggle #7298
- Dev: Add `woocommerce_admin_export_id` filter for customizing the export file name #7178
- Dev: Allow packages to be build independently, fix commonjs module builds. #7286
- Dev: Point the changelog linter to updated changelog entry location #7318
- Dev: Remove old payment gateway task components #7224
- Fix: Attribute filter bug with "any X" variations. #7046
- Fix: Currency display on Orders activity card on homescreen #7181
- Fix: Fix obsolete key property in gateway defaults #7229
- Fix: Fixing button state logic for remote payment gateways #7200
- Fix: Recommended gateway suggestions not displayed properly #7231
- Fix: Include onboarding settings on the analytic pages #7109
- Fix: Load Analytics API only when feature is turned on #7193
- Fix: Localize string for description #7219
- Fix: Filters. On update respect all other queries, not just persistedQueries #7155
- Fix: Use saved form values if available when switching tabs #7226
- Fix: Skip schedule customer data deletion on site deletion #7214
- Fix: WCPay not working in local payments task #7151
- Fix: Report export filtering bug. #7165
- Fix: Add padding on table header button #7213
- Fix: Use tab char for the CSV injection prevention. #7154
- Fix: Add height auto on autocomplete popover button #7225
- Fix: Make WooCommerce-admin full-screen minimum height 100vh important #7230
- Fix: Cache product/variation revenue query results. #7067
- Fix: Transient overlapping adjacent content. #7302
- Fix: Unused feature preloaded options #7299
- Fix: Fix missing translation strings for CES #7270
- Fix: Add missing translation strings in the business features section #7268
- Fix: Fix inbox note dismiss dropdown not closing on Safari #7278
- Fix: Fixed OBW Business details style #7353
- Fix: Fix links on the dismiss dropdown are not clickable #7342
- Fix: Fix undefined method error when setting up WC Tax #7344
- Fix: Invalidate task status when enabling a payment gateway #7330
- Fix: Redirect to homescreen after payment gateway setup #7332
- Fix: Create workable defaults for Reports that don’t have AdvancedFilters #7186
- Fix: Sync the category lookup table when a new category gets created #7290
- Fix: Set default value for performanceIndicators variable #7343
- Fix: Add limit clause to coupons data store query #7399
- Fix: Fix analytics filter Gutenberg CSS conflict #7410
- Fix: Fix Gutenberg CardBody styles for task card #7411
- Fix: Fix orders panel not displaying any orders when analytics is disabled #7395
- Fix: Fix recommended card Gutenberg CSS conflict #7409
- Fix: Update tooltip styling to fix new Gutenberg updates. #7414
- Fix: Allow super admins all capabilities within WooCommerce Admin #7489
- Fix: Fix analytics overview re-arrangement on initial load. #7475
- Fix: Fixes action button mis-alignment within card footer. #7412
- Fix: Fix up onboarding profiler not working when opted out of tracking #7490
- Tweak: Remove performance indicators when Analytics Flag disabled #7234
- Tweak: Change event name when installing Google Listings and Ads. #7276
- Tweak: Removed unused feature flags #7233 and #7273
- Tweak: Render a spinner while woocommerce_setup_jetpack_opted_in is being loaded #7269
- Tweak: Repurpose disable wc-admin filter to remove optional features #7232
- Update: Add additional countries to WCPay for business features and payment task fallback #7436
- Update: Notes to use a date range. #7222
- Update: Remove facebook extension from onboarding extensions fallback list #7287
- Performance: Add lazy loading by checking panel open status #7379
== 2.4.4 07/21/2021 ==
- Fix: Fix homepage stock panel regression in 2.4.3. #7389
== 2.4.3 07/21/2021 ==
- Fix: Add a new low stock products endpoint to improve the performance. #7377
== 2.4.2 07/19/2021 ==
- Fix: Add lazy loading by checking panel open status #7376
- Fix: Add cache-control header to low stock REST API response #7364
== 2.4.1 07/01/2021 ==
- Fix: Fix and refactor explat polling to use setTimeout #7274
== 2.4.0 06/29/2021 ==
- Add: SlotFill to Abbreviated Notification panel #7091
- Add: Consume remote payment methods on frontend #6867
- Add: Extend payment gateways REST endpoint #6919
- Add: Add remote payment gateway recommendations initial docs #6962
- Add: Add loading placeholders for payment gateways task #7123
- Add: Note date range logic for GivingFeedback, and InsightFirstSale note. #6969
- Add: Add transient notices feature #6809
- Add: Add transformers in remote inbox notifications #6948
- Add: Add Mercado Pago as default fallback payment gateway #7043
- Add: Add in Razorpay as default fallback payment gateway #7096
- Add: Get post install scripts from gateway and enqueue in client #6967
- Add: Add eWAY as default fallback gateway #7108
- Add: Free extension list powered by remote config #6952
- Add: Add PayPal to fallback payment gateways #7001
- Add: Add a data store for WC Payments REST APIs #6918
- Add: Progressive setup checklist copy and call to action buttons. #6956
- Add: Add Paystack as fallback gateway #7025
- Add: Add Square as default fallback gateway #7107
- Add: Add COD method to default payment gateway recommendations #7057
- Add: Add BACS as default fallback payment gateway #7073
- Add: A/B test of progressive checklist features. #7089
- Add: Add payment gateway return URL and action #7095
- Add: Add Mollie to the default payment gateways. #7092
- Add: Show task and activity notifications in the Inbox panel #7017
- Add: Adding WCPay payment configuration defaults. #7097
- Add: Create onboarding package to house refactored WCPay card and relevant components #7058
- Dev: Add Jetpack Backup admin note #6738
- Dev: Reduce the specificity and complexity of the ReportError component #6846
- Dev: Converting <SettingsForm /> component to TypeScript. #6981
- Dev: Update package-lock to fix versioning of local packages. #6843
- Dev: Use rule processing for remote payment methods #6830
- Dev: Update E2E jest config, so it correctly creates screenshots on failure. #6858
- Dev: Fixed storybook build script #6875
- Dev: Removed allowed keys list for adding woocommerce_meta data. #6889 🎉 @xristos3490
- Dev: Delete all products when running product import tests, unskip previously skipped test. #6905
- Dev: Add payment method selector to onboarding store #6921
- Dev: Add disabled prop to SelectControl #6902
- Dev: Add filter variation to tracks data in products analytics. #6913
- Dev: Offload remote inbox notifications engine run using action-scheduler. #6995
- Dev: Add source param support for notes query. #6979
- Dev: Remove the use of Dashicons and replace with @wordpress/icons or gridicons. #7020
- Dev: Refactor inbox panel components and moved to experimental package. #7006
- Dev: Business features uncheck creative mail by default #7139
- Dev: Remove support for IE11. #7112
- Dev: Drop styling support for IE11. #7137
- Dev: Remove react-docgen docs in favor of Storybook #7055
- Enhancement: Add expand/collapse to extendable task list. #6910
- Enhancement: Add task hierarchy support to extended task list. #6916
- Enhancement: Add remind me later option to task list. #6923
- Enhancement: Enable Remote Free Extensions List #7144
- Enhancement: Adding Slotfills for remote payments and SettingsForm component. #6932
- Fix: Update the wordpress/babel-preset to avoid crashes in WP5.8 beta2 #7202
- Fix: Add fallback for the select/dispatch data-controls for older WP versions #7204
- Fix: RemoteFreeExtension hide bundle when all of its plugins are not visible #7182
- Fix: Issue where summary stats were not showing in Analytics > Stock. #7161
- Fix: Rule Processing Transformer to handle dotNotation default value #7009
- Fix: Remove Navigation's uneeded SlotFill context #6832
- Fix: Report filters expecting specific ordering. #6847
- Fix: Render bug with report comparison mode selections. #6862
- Fix: Throw exception if the data store cannot be loaded when trying to use notes. #6771
- Fix: Autocompleter for custom Search in FilterPicker #6880
- Fix: Get currency from CurrencyContext #6723
- Fix: Correct the left position of transient notices when the new nav is used. #6914
- Fix: Exclude WC Shipping for store that are only offering downloadable products #6917
- Fix: SelectControl focus and de-focus bug #6906
- Fix: Multiple preload tag output bug. #6998
- Fix: Call existing filters for leaderboards in analytics. #6626
- Fix: Set target to blank for the external links #6999
- Fix: Fix style regression with the Chart header. #7002
- Fix: Fix styling of the advanced filter operator selection. #7005
- Fix: Deprecated warnings from select control @wordpress/data-controls. #7007
- Fix: Bug with Orders Report coupon exclusion filter. #7021
- Fix: Show Google Listing and Ads in installed marketing extensions section. #7029
- Fix: Notices not dissapearing. #7077
- Fix: Keyboard accessibility on the free features tab. #7149
- Fix: Fix error handling when remote free extension API returns empty array. #7147
- Fix: Transformer casing is incorrect and creates an error on case-sensitive systems #7104
- Fix: Preventing redundant notices when installing plugins via payments task list. #7026
- Fix: Autocompleter for custom Search in CompareFilter #6911
- Fix: Add target to the button to open it in a new tab #7110
- Fix: Make `Search` accept synchronous `autocompleter.options`. #6884
- Fix: Set autoload to false for all remote inbox notifications options. #7060
- Fix: The use of gridicons for Analytics section controls. #7237
- Fix: WordPress 5.8 compatibility UI fixes #7255
- Fix: CurrencyFactory constructor to use proper function #7261
- Tweak: Setup checklist copy revert. #7015
- Tweak: Revert Card component removal #7167
- Update: Task list component with new Experimental Task list. #6849
- Update: Optimize payment gateway resolution #7124
- Update: Experimental task list import to the experimental package. #6950
- Update: Redirect to WC Home after setting up a payment method #6891
- Update: Hook up payments gateway data store #7038
- Update: Update remote payment docs gateway methods #7079
- Update: Remove original business step flow #7103
- Update: WooCommerce Shipping copy on onboarding steps #7148
== 2.3.1 05/24/2021 ==
- Tweak: Store profiler Changed MailPoet's title and description #6990
- Tweak: Adjust WC Pay supported countries #7048
- Update: Payment recommendation screen transition and add external link icon. #7022
- Fix: A JS exception being thrown on the product tags page. #7053
- Fix: Show Google Listing and Ads in installed marketing extensions section. #7029
== 2.3.0 05/13/2021 ==
- Add: Add plugin installer to allow installation of plugins via URL #6805
- Add: Optional children prop to SummaryNumber component #6748
- Dev: Add data source filter to remote inbox notification system #6794
- Dev: Introduce usage of ExPlat, an A/B testing tool. See https
- Dev: Add support for nonces in note actions #6726
- Dev: Add support for running php unit tests in PHP 8. #6678
- Dev: Add event recording to start of gateway connections #6801
- Feature: Add recommended payment methods in payment settings. #6760
- Fix: Event tracking for merchant email notes #6616
- Fix: Use the store timezone to make time data requests #6632
- Fix: Update the checked input radio button margin style #6701
- Fix: Convert date to timestamp before passing to set_date_prop to persist timezone #6795
- Fix: Make pagination buttons height and width consistent #6725
- Fix: Retain persisted queries when navigating to Homescreen #6614
- Fix: Update folded header style #6724
- Fix: Unreleated variations showing up in the Products reports #6647
- Fix: Check active plugins before getting the PayPal onboarding status #6625
- Fix: Remove noreply from inbox notification emails #6644
- Fix: Set up shipping costs task, redirect to shipping settings after completion. #6791
- Fix: Onboarding logic on WooCommerce update to keep task list present. #6803
- Fix: Pause inbox message “GivingFeedbackNotes” #6802
- Fix: Missed DB version number updates causing unnecessary upgrades. #6818
- Fix: Parsing bad JSON string data from user WooCommerce meta. #6819
- Fix: Remove PayPal for India #6828
- Performance: Avoid updating customer info synchronously from the front end. #6765
- Tweak: Add settings_section event prop for CES #6762
- Tweak: Refactor payments to allow management of methods #6786
- Tweak: Add tracking data for the preview site button #6623
- Tweak: Update WC Payments copy on the task list #6734
- Tweak: Update payment gateway suggestions semantics to be more consistent #7130
- Tweak: Add check to see if value for contains is array, show warning if not. #6645
- Tweak: Sort the extension task list by completion status and allow toggling visibility. #6792
- Tweak: Only fetch remote payment gateway recommendations when opted in #6964
- Update: Replace marketing extension Google Listings and Ads. #6939
- Update: Update choose niche note cta URL #6733
- Update: UI updates to Payment Task screen #6766
- Update: Update payment gateway suggestions semantics to be more consistent #7130
- Update: Adding setup required icon for nonconfigured payment methods #6811
== 2.2.6 05/07/2021 ==
- Fix: Address an issue with OBW when installing only WooCommerce payments and Jetpack. #6957
== 2.2.5 05/07/2021 ==
- Fix: Calling of get_script_asset_filename with extra parameter #6955
== 2.2.4 05/07/2021 ==
- Dev: Fix a bug where trying to load an asset registry causes a crash. #6951
== 2.2.3 05/06/2021 ==
- Dev: Do a git clean before the core release. #6945
== 2.2.2 04/28/2021 ==
- Fix: Disable the continue btn on OBW when requested are being made #6838
- Tweak: Revert WCPay international support for bundled package #6901
- Tweak: Store profiler Changed MailPoet's title and description #6886
- Tweak: Update PayU logo #6829
== 2.2.0 03/30/2021 ==
- Fix: Check if features are currently being enabled #6688
- Fix: Fix the activity panel toggle not closing on click #6679
- Fix: Fix use of feature checks and remove deprecated method calls #6687
- Fix: Allow the manager role to query certain options #6577
- Fix: Delete customer data on network user deletion #6574
- Fix: Fix Themes step visibility in IE 11 #6578
- Fix: Fix hidden menu title on smaller screens #6562
- Fix: Add gross sales column to CSV export #6567
- Fix: Add check for navigating being enabled. #6462
- Fix: Move the shipping input and text 1px lower. #6408
- Fix: Correct the Klarna slug #6440
- Fix: Broken link anchors to online documentation. #6455
- Fix: Update payment card style on mobile #6413
- Fix: Missing i18n in Welcome modal. #6456
- Fix: Restore visual styles back to Analytics tabs. #5913
- Fix: Update contrast and hover / active colors for analytics dropdown buttons #6504
- Fix: Associated Order Number for refunds was hidden #6428
- Fix: Fix issue where Loader
- Fix: Correct a bug where the JP connection flow would not happen when installing JP in the OBW. #6521
- Fix: Show management links when the task list is complete (even if its not hidden). #6657
- Fix: Adding New Zealand and Ireland to selective bundle option, previously missed. #6649
- Fix: Update the Mercado option used for enabling/disabling. #6677
- Fix: Improve AddFirstProduct email note contents. #6617
- Fix: Missing margin between cards and viewport in setup wizard #6620
- Add: Next new novel navigation nudge note #6610
- Add: Add legacy report items to new navigation #6507
- Add: Add preview site button on the appearance task #6457
- Add: Back button to go to home screen from tasks in the task list. #6397
- Add: Add a "rather not say" option to revenue in the profile wizard. #6475
- Add: Remove Mollie promo note on install #6510
- Add: Remote Inbox Notifications rule to trigger when WooCommerce Admin is upgraded. #6040
- Add: Add Ireland to Square payment method #6559
- Add: CES survey for search product, order, customer #6420
- Add: CES survey for importing products #6419
- Add: CES survey for adding product categories, tags, and attributes #6418
- Add: Additional analytics tracking for the business details step. #6575
- Add: Include tracking for mail poet installs in the selective bundle install #6603
- Add: Paystack payment provider to several african countries. #6579
- Tweak: Add default value for contains op #6622
- Tweak: Adjust targeting store age for the Add First Product note #6554
- Tweak: Improve WC Shipping & Tax logic #6547
- Tweak: Update Insight inbox note content #6555
- Tweak: Remove mobile activity panel toggle #6539
- Tweak: Refactor autoloader to remove global variable. #6412
- Dev: Close activity panel tabs by default and track #6566
- Dev: Update undefined task name properties for help panel tracks #6565
- Dev: Refactor profile wizard benefits step and add tests #6583
- Dev: Add filter to profile wizard steps #6564
- Dev: Add nav intro modal tests #6518
- Dev: Use wc filter to get status tabs for tools category #6525
- Dev: Add nav header component tests #6509
- Dev: Add initial tests for navigation Menu class #6492
- Dev: Remove active item from navigation store #6486
- Dev: Add navigation container tests #6464
- Dev: Add nav favorite button tests #6446
- Dev: Add a changelog lint check to PRs. #6414
- Dev: Add navigation favorites tests #6409
- Dev: support use of Array.flat in client and packages. #6411
- Dev: Deprecate Onboarding
- Dev: Add Dependency Extraction Webpack Plugin #5762
- Dev: Add clientside filter for Navigation rootBackUrl #6505
- Dev: Remove `items_purchased` and `account_type` props from onboarding profile API. #6520
- Dev: Added warning when WCAdmin is active but not being used #6453
- Dev: Store profiler Added MailPoet to Business Details step #6503
- Dev: Store profiler Added MailPoet to new Business Details step #6515
- Dev: Add tilde (~) to represent client root directory for imports. #6517
- Dev: Add script automation for gathering hooks and filters. #6454
- Dev: Add TypeScript to CustomerFeedbackModal component. #6498
- Dev: Add TypeScript and page objects to the E2E test suite. #6582
- Dev: Introduce Typescript to Navigation utils #6477
- Dev: Payments task
- Dev: Ensure script asset.php files are included in builds #6635
- Dev: Ensure production script asset names don't include .min suffix #6681
== 2.1.4 03/29/2021 ==
- Fix: Adding New Zealand and Ireland to selective bundle option, previously missed. #6649
== 2.1.3 03/14/2021 ==
- Feature: Increase target audience for business feature step. #6508
- Fix: Correct a bug where the JP connection flow would not happen when installing JP in the OBW. #6521
- Fix: Add customer name column to CSV export #6556
== 2.1.2 03/10/2021 ==
- Fix: Add guard to "Deactivate Plugin" note handlers to prevent fatal error. #6532
- Fix: Crash of Analytics > Settings page when Gutenberg is installed. #6540
== 2.1.1 03/04/2021 ==
- Fix: Restore missing Correct the Klarna slug #6440
== 2.1.0 03/04/2021 ==
- Dev: Allow highlight tooltip to use body tag as parent. #6309
- Dev: Remove Google fonts and material icons. #6343
- Dev: Add filter to allow enabling the WP toolbar within the new navigation. #6371
- Dev: Add unit tests to Navigation's Container component. #6344
- Dev: Use box sizing and padding to fix nav and admin menu styling #6335
- Dev: Refactor head and body heights #6247
- Dev: Fix the react state update error on homescreen. #6320
- Dev: Change `siteUrl` to `homeUrl` on navigation site title #6240
- Dev: Add navigation favorites data store #6275
- Dev: Add a changelog lint check to PRs. #6414
- Add: Remove CES actions for adding and editing a product and editing an order #6355
- Add: CES track settings tab on updating settings #6368
- Add: Favorites tooltip to the navigation #6312
- Add: Core settings redirection to new settings pages #6091
- Add: Settings feature and pages #6089
- Add: Settings client pages #6092
- Add: Favoriting extensions client UI #6287
- Add: Add navigation intro modal. #6367
- Add: WC Admin Docker setup with WPENV
- Fix: Enqueue scripts called incorrectly in php unit tests #6358
- Fix: Removed @woocommerce/components/card from OBW #6374
- Fix: Email notes now are turned off by default #6324
- Fix: Top bar slightly overlaps wpadmin navigation on mobile #6292
- Fix: Hide tooltip in welcome modal #6142
- Fix: update single column home screen width to 680px #6297
- Fix: Recommended Payment Banner missing in Safari #6375
- Fix: Empty nav menu #6366
- Fix: Check if tax was successfully added before displaying notice #6229
- Fix: Update timing of InboxPanel state changes for the unread indicator #6246
- Fix: Display" option fails to collapse upon invoking "Help" option #6233
- Fix: Removal of core settings pages #6328
- Fix: Fix double prefixing of full navigation URLs #6460
- Fix: Reset Navigation submenu before making Flyout #6396
- Fix: Move the shipping input and text 1px lower. #6408
- Tweak: Order and styles updates to nav footer #6373
- Tweak: Enqueue beta features scripts on enqueue_scripts action instead of filter #6358
- Tweak: Set `is_deleted` from the database when instantiating a `Note` #6322
- Tweak: New Settings
- Tweak: Update inline documentation for navigation Screen class #6173
- Tweak: Remove categories without menu items #6329
- Tweak: Navigation
- Tweak: Move admin menu manipulation from admin_head to admin_menu #6310
- Tweak: Updates to copy and punctuation to be more conversational and consistent. #6298
- Enhancement: Move capability checks to client #6365
- Enhancement: Navigation
- Enhancement: override wpbody styles when nav present #6354
- Enhancement: Move favorited menu items to primary menu #6290
== 2.0.3 03/10/2021 ==
- Fix: Crash of Analytics > Settings page when Gutenberg is installed. #6540
== 2.0.2 05/25/2021 ==
- Fix: Correct the Klarna slug #6440
== 2.0.0 02/05/2021 ==
- Tweak: Bump minimum supported version of PHP to 7.0. #6046
- Tweak: update the content and timing of the NeedSomeInspiration note. #6076
- Tweak: Adjust the Marketing note not to show until store is at least 5 days. #6083
- Tweak: Refactored extended task list. #6081
- Fix: allow for more terms to be shown for product attributes in the Analytics orders report. #5868
- Fix: Add support for a floatingpoint number as a SummaryNumber's delta. #5926
- Fix: Fixed the Add First Product email note checks. #6260
- Fix: Onboarding Fixed "Business Details" error. #6271
- Fix: Show management links when only main task list is hidden. #6291
- Fix: Persist the enabling of plugins in the payments setup task. #6332
- Add: new inbox message Getting started in Ecommerce watch this webinar. #6086
- Add: Remote inbox notifications contains comparison and fix product rule. #6073
- Add: Task list payments include Mollie as an option. #6257
- Add: Allow users to install the PayU plugin in the payments setup task. #6332
- Update: store deprecation welcome modal support doc link #6094
- Update: Homescreen layout, moving Inbox panel for better interaction. #6122
- Enhancement: Allowing users to create products by selecting a template. #5892
- Enhancement: Use the new Paypal payments plugin for onboarding. #6261
- Dev: Add wait script for mysql to be ready for phpunit tests in docker. #6185
- Dev: Remove old debug code for connecting to Calypso / Wordpress.com. #6097
- Dev: Allow highlight tooltip to use body tag as parent. #6309
== 1.9.0 01/15/2021 ==
- Fix: Add Customer Type column to the Orders report table. #5820
- Fix: Product exclusion filter on Orders Report.
- Fix: Typo in Variation Stats DataStore context filter value.
- Fix: support custom attributes in Attribute advanced report filter.
- Fix: Don't show Stock and Reviews Homescreen panels too early.
- Fix: Undefined $collate variable when database does not have collation capability. #5992
- Fix: Moved certified owner label for review to title. ##5877
- Fix: Move collapsible config to panels object, to allow for more control. #5855
- Fix: Invalidate product count if the last product was updated in the list. #5790
- Fix: Updating (non wordpress user) customer with order data
- Fix: Fixed error hiding core task list. #6050
- Fix: Generate JSON translation chunks on plugin activation #6028
- Tweak: Remove deprecated use of Jetpack in shipping label banner. #5929
- Tweak: Remove visit_count from track, and update task count logic. #5996
- Tweak: Fix inconsistent REST API paramater name for customer type filtering.
- Tweak: update the content for the ChooseNiche note. #6048
- Enhancement: Show Help panel tooltip when user visits unfinished task more then once. #5826
- Enhancement: Tasks extensibility in Home Screen. #5794
- Enhancement: Add page parameter to override default wcadmin page in Navigation API. #5821
- Enhancement: Add an a/b experiment for installing free business features #5786
- Enhancement: Add an "unread" indicator to inbox messages. #6047
- Dev: Add documentation for filter `woocommerce_admin_pages_list` and `wc_admin_register_page` #5844
- Dev: Revert work done in #4857 for automated shipping after OBW is completed #5971
- Dev: Add `onChangeCallback` feature to the wcadmin <Form> component #5786
- Dev: Add merchant email notifications #5922
- Dev: Update travis CI distribution. #6067
- Add: Welcome modal when coming from Calypso #6004
- Add: Email note to add first product. #6024
- Add: Note for users coming from Calypso. #6030
- Add: Manage activity from home screen inbox message. #6072
== 1.8.3 01/05/2021 ==
- Fix: Compile the debug module so it can be used in older browsers like IE11. #5987
== 1.8.2 12/22/2020 ==
- Fix: Completed tasks tracking causing infinite loop #5941
- Fix: Remove Navigation access #5940
== 1.8.1 12/15/2020 ==
- Fix: Product exclusion filter on Orders Report.
- Fix: Typo in Variation Stats DataStore context filter value. #5784
== 1.8.0 12/07/2020 ==
- Enhancement: Add "filter by variations in reports" inbox note. #5208
- Enhancement: Tasks extensibility in Home Screen. #5794
- Enhancement: Add page parameter to override default wcadmin page in Navigation API. #5821
- Enhancement: Introduce the customer effort score (CES) feature.
- Enhancement: Rework task extensibility in the homescreen. #5794
- Enhancement: Migrate the reviews panel to the homescreen. #5706
- Enhancement: Migrate reviews panel to home screen. #5706
- Enhancement: Add Razorpay to payment task for stores in India #5775
- Enhancement: Migrate Stock Panel to Homescreen. #5729
- Enhancement: Add enhanced placeholders for Marketing components. #5611
- Enhancement: Allow switching on/off the navigation feature in plugin and core builds. #5697
- Tweak: Fix inconsistent REST API parameter name for customer type filtering. #5823
- Tweak: Improve styles of the tax task. #5709
- Tweak: Do not show store setup link on the homescreen. #5801
- Tweak: Revert the #5001 work to order tasks by completion. #5721
- Tweak: Revert the smart tax defaults work. #5720
- Tweak: Do not show store setup activity panel on the homescreen. #5801
- Tweak: Don't show the Orders panel on the homescreen with the Task List. #5552
- Tweak: Continue showing tasklist even if list is complete, only hide if set to hidden. #5673
- Tweak: Remove check for Jetpack and WCS from Stripe onboarding task. #4933
- Fix: Move collapsible config to panels object, to allow for more control. #5855
- Fix: Invalidate product count if the last product was updated in the list. #5790
- Fix: Add Customer Type column to the Orders report table. #5820
- Fix: Product exclusion filter on Orders Report. #5822
- Fix: Show the customer type column in Orders report table. #5820
- Fix: make sure 'Customers' page updates after order update. #5776
- Fix: Fix fatal errors when child themes are installed in a subdirectory. #5783
- Fix: Allow actionable statuses in orders endpoint(s) filters. #5733
- Fix: snackbar dismissal bug. #5696
- Fix: Only import the Gridicons we need, to reduce package size. #5668
- Fix: Stop order panels flickering on load. #5655
- Fix: Load wctracks to avoid fatal errors. #5645 #5638
- Fix: Preventing desktopsized navigation placeholder from appearing on mobile during load. #5616
== 1.7.0 11/11/2020 ==
- Enhancement: Variations report. #5167
- Enhancement: Add ability to toggle homescreen layouts. #5429
- Enhancement: Accordion component #5474
- Enhancement: Badge component #5520
- Fix: Added support for custom actionable statuses. #5550
- Fix: wrong casing used on the PayPal brand name #5514 🎉 @rtpHarry
- Fix: Import @wordpress/basestyles/defaultcustomproperties #5491
- Fix: downloads report #5441
- Fix: missing custom autocompleter attribute in Search component of Advanced Filter #5448
- Fix: empty no posts state on Marketing page. #5411
- Fix: visual issues in the Search component. #5199
- Fix: Inconsistent line endings in readme.txt. #5281
- Fix: popover menu to expand menu item width to 100% #5519
- Fix: Wrong class name for querying Categories Report #5522 🎉 @zzap
- Fix: Remove label printing mention for non us countries #5527
- Fix: First product script navigation dependency #5584
- Fix: Added support for custom actionable statuses #5550
- Fix: Display the store management links last on the homescreen #5579
- Fix: Ensure the "Set up additional payment providers" inbox notification is shown when relevant after completing the OBW. #5547
- Tweak: Remove customer analytics data upon order deletion #5171
- Tweak: Updating Stripe key field validation to support test keys #5201
- Tweak: Wrap search control selected items in list #5231
- Tweak: Update store setup link to redirect to setup wizard #5200
- Tweak: Removing breadcrumbs from wcadmin header #5232
- Tweak: Use consistent markdown headers in navigation readme #5417
- Tweak: Remove Store Setup Alert #5499
- Tweak: Customers
- Tweak: alter homescreen layout. #5465
- Dev: Home Screen migrate orders panel. #5455
- Dev: Store Profiler include Creative Mail as a free extension #5543
- Dev: Add undefined check in intervals data util #5546
- Dev: Fix wakeup visibility for PHP 8 compatibility #5211
- Dev: Fix header height and positioning for wc nav #5173
- Dev: Add remote inbox notification rule processors for country and state #5203
- Dev: Rename admin notes classes and file names to fit conventions #514
- Dev: remove checks of store registration that are no longer needed. #5170
- Dev: Fix version update script for composer.json #5165
- Dev: Remove getAdminLink from data package #5158
- Dev: Bump @woocommerce/components dependencies. #5153
- Dev: Add note status remote inbox notifications rule processor #5207
- Dev: Make code chunk filenames more stable. #5229
- Dev: Inbox Panel component moved #5252
- Dev: Added animation to Inbox note deletion #5263
- Dev: Update starter pack dependencies #5254
- Dev: Ensure test zips have latest packages from npm and composer. #5313
- Dev: Add remote inbox notifications rule allowing access to any option #5206
- Dev: Add manage orders on the go admin note #5159
- Dev: Add WooCommerceDependencyExtractionWebpackPlugin package #5198
- Dev: Migrate devdocs examples to Storybook stories #5271
- Dev: Remove Enzyme in favor of React Testing Library #5299
- Dev: Add exclusion rule to PHPCS config for TODO comments #5388
- Dev: Remove no longer used isPanelEmpty logic. #5423
- Dev: Use new @wordpress/components Card on Marketing page. #5428
- Dev: Add PSR4 naming checks to PHP linting. #5512
- Dev: Rearrange the store management links under categories add filter woocommerce_admin_homescreen_quicklinks. #5476
- Dev: Restyle the setup task list header to display incomplete tasks #5520
== 1.6.2 10/16/2020 ==
- Fix: Missing activity panels on ugraded sites #5400
- Fix: Casting of onboarding profile data to array #5415
- Fix: Gutenberg 9.1.1 compat for inbox on home screen not showing #5416
- Fix: i18n of Performance Indicator strings #5405
- Fix: Gutenberg 9.1.1 compat for empty data sets #5409
== 1.6.1 10/13/2020 ==
- Fix: Hide setup checklist shortcut when setup checklist skipped #5360
- Fix: use of undefined function on WC < 4.0.0.
== 1.6.0 10/09/2020 ==
- Dev: Reviews wp.data store #4941
- Dev: Notes wp.data store #4943
- Dev: Add woocommerce_analytics_update_order_stats_data filter #4934
- Dev: Remove unused lib/date #4987
- Dev: Exports wp.data store #4958
- Dev: Remove _experimentalResolveSelect usage #4949
- Dev: Items wp.data store #5009
- Dev: Import wp.data store #4982
- Dev: Remove `freshdata` wcapi dependency #5075
- Dev: Add initial e2e test suite #5028
- Dev: Combine translation chunks when languages updated #5094
- Dev: Add filters for columns in reports #5134
- Dev: Don't include "min" suffix in build JS files for core build #5130
- Enhancement: Add free local shipping zone on profile complete #4857
- Enhancement: Add woocommerce/tracks package #5107
- Enhancement: Add filter to allow modification of report columns #4984
- Enhancement: Add WooCommerce Mobile Banner #5037
- Enhancement: Add Product Attribute advanced filter #5038
- Enhancement: Add support for advanced filters with multiple instances #5050
- Enhancement: Automated taxes smart default #5076
- Enhancement: Add product attribute filter to Orders report #5068
- Tweak: Remove payment task actions #4917
- Tweak: Don't import from React, use @wordpress/element #4978
- Tweak: Use filtered headers array in onColumnsChange callback #4964
- Tweak: Orders panel get selectors form wcapi #4997
- Tweak: Group tasks by completion in setup checklist #5001
- Tweak: Replace useFilters with WP withFilters #4962
- Tweak: Refactor header component to function #5023
- Tweak: Refactor task list status to onboarding data store #4998
- Tweak: Add monthly pricing toggle in OBW #5015
- Tweak: OBW style updates #5059
- Tweak: Remove chevron icons from Fish Setup task list #5114
- Tweak: Add option to not charge sales tax in setup checklist #5111
- Tweak: Enable homescreen for all sites #5108
- Tweak: Enable remote inbox in all envs #5160
- Tweak: Add optout for remote inbox #5162
- Fix: Table component onQueryChange default prop #4959
- Fix: Dependency declarations in woocommerce/components #4972
- Fix: Text domains in stock report #4980
- Fix: Typo in reports store action creators #4992
- Fix: Note data actions and consolidate query constants #4990
- Fix: Advanced filters screen reader text #5032
- Fix: Show full variation name in products report #5056
- Fix: Card to connect to woocommerce.com #5129
- Fix: Search all variation attribute values #5141
- Fix: Force float before addition in taxes #5149
== 1.5.0 08/07/2020 ==
- Dev: New notification
- Dev: Enable tax calculation before redirecting to standard tax rates page. #4878
- Dev: Added event recording to Orders, Stock, and Reviews panels. #4861
- Dev: Added personalization to purchase extension task. #4849
- Dev: Display modal with more info about the new homescreen. #4890
- Dev: Task list add a shortcut back to store setup. #4853
- Dev: Update the colors of the illustrations in the welcome modal. #4945
- Fix: Use clipRule and fillRule props. #4889, part of #4864
- Enhancement: Add eWAY to Payment Setup for AU/NZ Stores. #4947
== 1.4.0 07/22/2020 ==
- Fix: Update returning customer total to include customers whose first order was within the report date range #4430
- Fix: Fix an error in the Analytics/Orders table when there is an order deleted directly from the database #4630
- Fix: Reselecting advanced filters in the customer list #4650
- Fix: Reporting of deleted coupons #4671
- Fix: Preventing refresh after answering a survey note #4711
- Fix: Regular filters not working #4704
- Fix: React warning in test that the key prop wasn't assigned in List #4808
- Fix: Center continue buttons in the onboarding profile wizard #4082
- Fix: Homepage template used in setup checklist customization task #4807
- Fix: Errant Jetpack activation prompt in Stats Overview home screen widget #4817
- Fix: Unable to activate theme with uppercase name #4393 🎉 @ayubadiputra
- Fix: Set active theme when OBW is shown via the task list #4834
- Enhancement: Add option to dismiss tasks in Setup Checklist #4733
- Enhancement: Show contextual help menu when working on store setup tasks. #4779
- Enhancement: Add automatic PayPal account creation flow. #4804
- Enhancement: Move the WooCommerce > Coupons dashboard menu item to Marketing > Coupons. #4786
- Tweak: Add education and travel to the onboarding industry types #4694
- Tweak: Refactor Jetpack connection flows #4655
- Tweak: Refactor tax task to use promise chain #4683
- Tweak: Add bundle install UI to Business Details step #4695
- Tweak: Include Product Bundles and Product Addons as OBW product options #4705
- Tweak: Toggle the “Physical products” checkbox on by default #4702
- Tweak: Variation Names
- Tweak: Limit inbox status to unactioned notes #4765
- Tweak: Only show usage tracking modal once in OBW. #4766
- Tweak: Add WooCommerce Payments to Setup Checklist. #4793
- Tweak: Update connection flow for Bundle UI #4717
- Tweak: Style improvements for Marketing hub. #4794
- Tweak: Added skip profiler functionality #4721
- Tweak: Reordered home screen tasks #4754
- Tweak: Create single source of truth for task list array #4825
- Tweak: Rework the store details onboarding screen #4771
- Tweak: Design of Product Types step in Onboarding #4707
- Tweak: Add copy that WCS TOS will be accepted upon install #4799
- Dev: Customize webpack jsonpFunction to avoid potential collision with other Webpack bundles #4644 🎉 @aaemnnosttv
- Dev: Update @wordpress/basestyles and replace deprecated variables #4759
== 1.3.2 07/29/2020 ==
- Fix: bug preventing saving user preferences on WP 5.3. #4869
== 1.3.1 07/20/2020 ==
- Fix: PHP Fatal errors when columns are missing from the Notes table. #4831
== 1.3.0 07/08/2020 ==
- Enhancement: Add Jetpack stats to performance indicatorts / homepage #4291
- Enhancement: New "Store Management" quick links card on WooCommerce home screen. #4350
- Enhancement: Inbox notifications layout updates #4218
- Enhancement: New Home Screen #4303
- Enhancement: Use WordPress Core colors for styling accents. #4558
- Dev: Add jestdom eslint plugin. #4327
- Dev: Migrate onboarding data store to wp.data #4433
- Dev: Remove use of `IconButton` in favor of `Button` #4415
- Dev: Fix error handling for plugins on server error #4462
- Dev: update @wordpress/components and @wordpress/basestyles #4427
- Dev: Migrate user store to wp.data #4505
- Dev: Add options data store to wp.data #4144
- Dev: Runtime feature config override #4523
- Dev: Check that the possibly_add_note function exists before calling it #4680
- Dev: Remove unnecessary rest API init action. #4691
- Dev: Don't include sourcemaps or unminified JS for "core" builds. #4642
- Fix: misaligned 'required' text on selects #4307
- Fix: exception when opening dashboard after selecting extensions to purchase #4357
- Fix: REST API collections schema #4377
- Fix: Monetary Advanced Filters in Customers Report with correct currency object prop. #4356
- Fix: In App purchase "back link" #4301
- Fix: Search results selectable by clicking on item text or icon #4474
- Fix: Filters' static query parameters #4458