forked from woocommerce/woocommerce-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
readme.txt
1384 lines (1240 loc) · 77 KB
/
readme.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
=== WooCommerce Admin ===
Contributors: woocommerce, automattic
Tags: ecommerce, e-commerce, store, sales, reports, analytics, dashboard, activity, notices, insights, stats, woo commerce, woocommerce
Requires at least: 5.4.0
Tested up to: 5.7.0
Requires PHP: 7.0
Stable tag: 2.4.0-dev
License: GPLv3
License URI: https://github.com/woocommerce/woocommerce-admin/blob/main/license.txt
== Description ==
WooCommerce Admin is a new JavaScript-driven interface for managing your store. The plugin includes new and improved reports and a dashboard to monitor key metrics of your site.
**New Reports for WooCommerce**
WooCommerce Admin has a host of new reports that are optimized for speed and have advanced filters that allow you to dive into data about your store:
- Revenue Report
- Orders Report
- Products Report
- Variations Report
- Categories Report
- Coupons Report
- Taxes Report
- Downloads Report
- Stock Report
- Customers Report
**Customizable Dashboard**
WooCommerce Admin also allows store owners to customize a new dashboard screen with “performance indicators” that correspond in importance to their store’s operation.
== Getting Started ==
= Minimum Requirements =
* WordPress 5.4
* WooCommerce 4.8 or greater
* PHP version 7.0 or greater. PHP 7.2 or greater is recommended
* MySQL version 5.0 or greater. MySQL 5.6 or greater is recommended
Visit the [WooCommerce server requirements documentation](https://docs.woocommerce.com/document/server-requirements/) for a detailed list of server requirements.
= Automatic installation =
Automatic installation is the easiest option, as WordPress handles the file transfers and you don't need to leave your web browser. To perform an automatic install:
1. Log in to your WordPress dashboard.
2. Go to: Plugins > Add New.
3. Enter “WooCommerce Admin” in the Search field, and view details about its point release, the rating and description.
4. Select “Install Now” when you’re ready.
= Manual installation =
The manual installation method involves downloading the plugin and uploading it to your web server via your favorite FTP application. The WordPress Codex contains instructions at [Manual Plugin Installation](https://codex.wordpress.org/Managing_Plugins#Manual_Plugin_Installation).
= Where can I report bugs or contribute to the project? =
Bugs should be reported in the [WooCommerce Admin GitHub repository](https://github.com/woocommerce/woocommerce-admin/).
= This is awesome! Can I contribute? =
Yes, you can! Join our [GitHub repository](https://github.com/woocommerce/woocommerce-admin/)
Release and roadmap notes are available on the [WooCommerce Developers Blog](https://woocommerce.wordpress.com/category/wc-admin/)
== Screenshots ==
1. WooCommerce Admin Dashboard
2. Activity Panels
3. Analytics
== Changelog ==
== Unreleased ==
- Fix: Preventing redundant notices when installing plugins via payments task list. #7026
- Fix: Autocompleter for custom Search in CompareFilter #6911
- Dev: Converting <SettingsForm /> component to TypeScript. #6981
- Enhancement: Adding Slotfills for remote payments and SettingsForm component. #6932
- Fix: Make `Search` accept synchronous `autocompleter.options`. #6884
- 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: 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: Get post install scripts from gateway and enqueue in client #6967
- 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
- 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: Add source param support for notes query. #6979
- Enhancement: Add expand/collapse to extendable task list. #6910
- Enhancement: Add task hierarchy support to extended task list. #6916
- 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 style regression with the Chart header. #7002
- Tweak: Only fetch remote payment gateway recommendations when opted in #6964
- Tweak: Setup checklist copy revert. #7015
- Update: Task list component with new Experimental Task list. #6849
- Update: Experimental task list import to the experimental package. #6950
- Update: Redirect to WC Home after setting up a payment method #6891
== 2.3.1 5/24/2021 ==
- Tweak: Store profiler - Changed MailPoet's title and description #6990
- Update: Payment recommendation screen transition and add external link icon. #7022
- Fix: Show Google Listing and Ads in installed marketing extensions section. #7029
- Tweak: Adjust WC Pay supported countries #7048
== 2.3.0 5/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: Add A/A test #6669
- 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 no-reply 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: 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: Adding setup required icon for non-configured payment methods #6811
== 2.2.6 5/7/2021 ==
- Fix: Address an issue with OBW when installing only WooCommerce payments and Jetpack. #6957
== 2.2.5 5/7/2021 ==
- Fix: Calling of get_script_asset_filename with extra parameter #6955
== 2.2.4 5/7/2021 ==
- Dev: Fix a bug where trying to load an asset registry causes a crash. #6951
== 2.2.3 5/6/2021 ==
- Dev: Do a git clean before the core release. #6945
== 2.2.2 4/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 3/30/2021 ==
- Fix: Check if features are currently being enabled #6688
- Add: Next new novel navigation nudge note #6610
- Fix: Fix the activity panel toggle not closing on click #6679
- Tweak: Add default value for contains op #6622
- Fix: Fix use of feature checks and remove deprecated method calls #6687
- Dev: Close activity panel tabs by default and track #6566
- Dev: Update undefined task name properties for help panel tracks #6565
- Fix: Allow the manager role to query certain options #6577
- Dev: Refactor profile wizard benefits step and add tests #6583
- 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
- Dev: Add filter to profile wizard steps #6564
- 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
- Dev: Add nav intro modal tests #6518
- Dev: Use wc filter to get status tabs for tools category #6525
- Tweak: Remove mobile activity panel toggle #6539
- Dev: Add nav header component tests #6509
- Add: Add legacy report items to new navigation #6507
- Dev: Add initial tests for navigation Menu class #6492
- Dev: Remove active item from navigation store #6486
- Dev: Add navigation container tests #6464
- Add: Add preview site button on the appearance task #6457
- Fix: Add check for navigating being enabled. #6462
- Dev: Add nav favorite button tests #6446
- Dev: Add a changelog lint check to PRs. #6414
- Dev: Add navigation favorites tests #6409
- Fix: Move the shipping input and text 1px lower. #6408
- Dev: support use of Array.flat in client and packages. #6411
- Fix: Correct the Klarna slug #6440
- Tweak: Refactor autoloader to remove global variable. #6412
- Dev: Deprecate Onboarding::has_woocommerce_support. #6401
- Fix: Broken link anchors to online documentation. #6455
- Dev: Add Dependency Extraction Webpack Plugin #5762
- Dev: Add client-side filter for Navigation rootBackUrl #6505
- Add: Back button to go to home screen from tasks in the task list. #6397
- Fix: Update payment card style on mobile #6413
- Fix: Missing i18n in Welcome modal. #6456
- Fix: Restore visual styles back to Analytics tabs. #5913
- Add: Add a "rather not say" option to revenue in the profile wizard. #6475
- Fix: Update contrast and hover / active colors for analytics dropdown buttons #6504
- Dev: Remove `items_purchased` and `account_type` props from onboarding profile API. #6520
- Dev: Added warning when WC-Admin is active but not being used #6453
- Fix: Associated Order Number for refunds was hidden #6428
- Add: Remove Mollie promo note on install #6510
- Add: Remote Inbox Notifications rule to trigger when WooCommerce Admin is upgraded. #6040
- 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
- Fix: Fix issue where Loader::is_admin_page() would error if WooCommerce admin is disabled. #6563
- 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
- Dev: Add script automation for gathering hooks and filters. #6454
- Dev: Add TypeScript to CustomerFeedbackModal component. #6498
- Fix: Correct a bug where the JP connection flow would not happen when installing JP in the OBW. #6521
- Dev: Add TypeScript and page objects to the E2E test suite. #6582
- Dev: Introduce Typescript to Navigation utils #6477
- Add: Paystack payment provider to several african countries. #6579
- Dev: Payments task: include Mercado Pago #6572
- Dev: Ensure script asset.php files are included in builds #6635
- 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
- Dev: Ensure production script asset names don't include .min suffix #6681
- Fix: Improve AddFirstProduct email note contents. #6617
- Fix: Missing margin between cards and viewport in setup wizard #6620
== 2.1.4 3/29/2021 ==
- Fix: Adding New Zealand and Ireland to selective bundle option, previously missed. #6649
== 2.1.3 3/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 3/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 3/4/2021 ==
- Fix: Restore missing Correct the Klarna slug #6440
== 2.1.0 3/4/2021 ==
- Dev: Allow highlight tooltip to use body tag as parent. #6309
- Dev: Remove Google fonts and material icons. #6343
- Add: Remove CES actions for adding and editing a product and editing an order #6355
- Dev: Add filter to allow enabling the WP toolbar within the new navigation. #6371
- Dev: Add unit tests to Navigation's Container component. #6344
- 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
- Add: CES track settings tab on updating settings #6368
- Fix: Top bar slightly overlaps wp-admin 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
- Tweak: Order and styles updates to nav footer #6373
- Enhancement: Move capability checks to client #6365
- Tweak: Enqueue beta features scripts on enqueue_scripts action instead of filter #6358
- Enhancement: Navigation: Add test to container component #6344
- Fix: Empty nav menu #6366
- Enhancement: override wpbody styles when nav present #6354
- Fix: Check if tax was successfully added before displaying notice #6229
- Fix: Update timing of InboxPanel state changes for the unread indicator #6246
- Tweak: Set `is_deleted` from the database when instantiating a `Note` #6322
- Tweak: New Settings: Turn off in dev mode #6348
- Add: Favorites tooltip to the navigation #6312
- Fix: Display" option fails to collapse upon invoking "Help" option #6233
- Enhancement: Move favorited menu items to primary menu #6290
- Dev: Use box sizing and padding to fix nav and admin menu styling #6335
- Tweak: Update inline documentation for navigation Screen class #6173
- Tweak: Remove categories without menu items #6329
- 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
- Dev: Refactor head and body heights #6247
- Fix: Removal of core settings pages #6328
- Dev: Fix the react state update error on homescreen. #6320
- Tweak: Navigation: Migrate methods to `admin_menu` hook #6319
- 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
- Dev: Change `siteUrl` to `homeUrl` on navigation site title #6240
- Dev: Add navigation favorites data store #6275
- Add: Add navigation intro modal. #6367
- Fix: Fix double prefixing of full navigation URLs #6460
- Fix: Reset Navigation submenu before making Flyout #6396
- Dev: Add a changelog lint check to PRs. #6414
- Fix: Move the shipping input and text 1px lower. #6408
- Add: WC Admin Docker setup with WP-ENV
== 2.0.3 03/10/2021 ==
- Fix: Crash of Analytics > Settings page when Gutenberg is installed. #6540
== 2.0.2 25/05/2021 ==
- Fix: Correct the Klarna slug #6440
== 2.0.0 02/05/2021 ==
- Tweak: Bump minimum supported version of PHP to 7.0. #6046
- Fix: allow for more terms to be shown for product attributes in the Analytics orders report. #5868
- Tweak: update the content and timing of the NeedSomeInspiration note. #6076
- Fix: Add support for a floating-point number as a SummaryNumber's delta. #5926
- Add: new inbox message - Getting started in Ecommerce - watch this webinar. #6086
- Add: Remote inbox notifications contains comparison and fix product rule. #6073
- Update: store deprecation welcome modal support doc link #6094
- Enhancement: Allowing users to create products by selecting a template. #5892
- Dev: Add wait script for mysql to be ready for phpunit tests in docker. #6185
- Update: Homescreen layout, moving Inbox panel for better interaction. #6122
- Dev: Remove old debug code for connecting to Calypso / Wordpress.com. #6097
- Tweak: Adjust the Marketing note not to show until store is at least 5 days. #6083
- Add: Task list payments - include Mollie as an option. #6257
- Tweak: Refactored extended task list. #6081
- Fix: Fixed the Add First Product email note checks. #6260
- Fix: Onboarding - Fixed "Business Details" error. #6271
- Enhancement: Use the new Paypal payments plugin for onboarding. #6261
- Fix: Show management links when only main task list is hidden. #6291
- Dev: Allow highlight tooltip to use body tag as parent. #6309
- Add: Allow users to install the PayU plugin in the payments setup task. #6332
- Fix: Persist the enabling of plugins in the payments setup task. #6332
== 1.9.0 1/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.
- Tweak: Remove deprecated use of Jetpack in shipping label banner. #5929
- Fix: Undefined $collate variable when database does not have collation capability. #5992
- Tweak: Remove visit_count from track, and update task count logic. #5996
- Fix: Moved certified owner label for review to title. ##5877
- Fix: Move collapsible config to panels object, to allow for more control. #5855
- Enhancement: Show Help panel tooltip when user visits unfinished task more then once. #5826
- Tweak: Fix inconsistent REST API paramater name for customer type filtering.
- Enhancement: Tasks extensibility in Home Screen. #5794
- Enhancement: Add page parameter to override default wc-admin page in Navigation API. #5821
- Fix: Invalidate product count if the last product was updated in the list. #5790
- Fix: Updating (non wordpress user) customer with order data
- 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
- Add: Welcome modal when coming from Calypso #6004
- Enhancement: Add an a/b experiment for installing free business features #5786
- Dev: Add `onChangeCallback` feature to the wc-admin <Form> component #5786
- Dev: Add merchant email notifications #5922
- Add: Email note to add first product. #6024
- Add: Note for users coming from Calypso. #6030
- Fix: Fixed error hiding core task list. #6050
- Enhancement: Add an "unread" indicator to inbox messages. #6047
- Tweak: update the content for the ChooseNiche note. #6048
- Fix: Generate JSON translation chunks on plugin activation #6028
- Dev: Update travis CI distribution. #6067
- Add: Manage activity from home screen inbox message. #6072
== 1.8.3 1/5/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/7/2020 ==
- Enhancement: Add "filter by variations in reports" inbox note. #5208
- Tweak: Fix inconsistent REST API parameter name for customer type filtering. #5823
- Fix: Move collapsible config to panels object, to allow for more control. #5855
- Enhancement: Tasks extensibility in Home Screen. #5794
- Enhancement: Add page parameter to override default wc-admin page in Navigation API. #5821
- 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
- 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
- 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
- Fix: Show the customer type column in Orders report table. #5820
- Fix: make sure 'Customers' page updates after order update. #5776
- Tweak: Do not show store setup activity panel on the homescreen. #5801
- Fix: Fix fatal errors when child themes are installed in a subdirectory. #5783
- Enhancement: Migrate reviews panel to home screen. #5706
- Enhancement: Add Razorpay to payment task for stores in India - #5775
- Fix: Allow actionable statuses in orders endpoint(s) filters. #5733
- Enhancement: Migrate Stock Panel to Homescreen. #5729
- Tweak: Don't show the Orders panel on the homescreen with the Task List. #5552
- Enhancement: Add enhanced placeholders for Marketing components. #5611
- Tweak: Continue showing tasklist even if list is complete, only hide if set to hidden. #5673
- Enhancement: Allow switching on/off the navigation feature in plugin and core builds. #5697
- Fix: snackbar dismissal bug. #5696
- Tweak: Remove check for Jetpack and WCS from Stripe onboarding task. #4933
- Fix: Only import the Gridicons we need, to reduce package size. #5668
- Fix: Stop order panels flickering on load. #5655
- Fix: Load wc-tracks to avoid fatal errors. #5645 #5638
- Fix: Preventing desktop-sized 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/base-styles/default-custom-properties #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 wc-admin header #5232
- Tweak: Use consistent markdown headers in navigation readme #5417
- Tweak: Remove Store Setup Alert #5499
- Tweak: Customers: Update column heading for date registered #5542
- 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 PSR-4 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/9/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 `fresh-data` wc-api 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 wc-api #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 opt-out 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 2020-08-07 =
- Dev: New notification: Don't forget to test your checkout. #4805
- Dev: Enable tax calculation before redirecting to standard tax rates page. #4878
- Fix: Use clipRule and fillRule props. #4889, part of #4864
- 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
- Enhancement: Add eWAY to Payment Setup for AU/NZ Stores. #4947
= 1.4.0 2020-07-22 =
- 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 Add-ons as OBW product options #4705
- Tweak: Toggle the “Physical products” checkbox on by default #4702
- Tweak: Variation Names: Allow long names to be shown #4715
- 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/base-styles and replace deprecated variables #4759
= 1.3.2 2020-07-29 =
- Fix: bug preventing saving user preferences on WP 5.3. #4869
= 1.3.1 2020-07-20 =
- Fix: PHP Fatal errors when columns are missing from the Notes table. #4831
= 1.3.0 2020-07-08 =
- 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 jest-dom 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/base-styles #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
- Fix: The WCPay method not appearing as recommended sometimes #4345
- Fix: Removed URLSearchParams method #4501
- Fix: REST API collections schema. #4484
- Fix: null issue in wpNavMenuClassChange #4513 🎉 @gradosevic
- Fix: RTL stylesheet loading for split code chunks. #4542
- Fix: Don't show store location step in tax and shipping tasks if the address has already been provided #4507
- Fix: Check for enabled methods before payment task completion #4530
- Fix: Solved a problem with the method onChoose in the last onboarding step. #4583
- Fix: Only mark purchase task as complete when products exist #4574
- Fix: Remove unnecessary rest_api_init action that caused incompatibility issues with other plugins. #4691
- Fix: Fix WCPay sometimes not appearing on the task list #4647
- Tweak: make revenue report total sales column optional #4397
- Tweak: Adjustments to WooCommerce Payments setup task #4373
- Tweak: Handling of plugin installs in OBW #4411
- Tweak: Update design of Setup Checklist #4434
- Tweak: Add scrollable styling to left side of Table, and keep updated #4179
- Tweak - Add custom autocompleter support to Search componen #4518
- Tweak: reduce asset filename length. #4535
- Tweak: Use single dash for country/state dropdown options #4553
- Tweak: Use label tag for toggleable shipping zones #4554
- Tweak: Tweak - Make it easier to add submenu items to the Marketing menu #4561
- Tweak: Remove duplicate/redundant inbox note after first order received. #4659
- Tweak: Fix the embed page CSS so the top content sits better #4622
= 1.2.4 2020-06-11 =
- Tweak: reduce asset filename length and remove tilde characters. #4535
- Fix: RTL stylesheet loading for split code chunks. #4542
= 1.2.3 2020-05-22 =
- Tweak: Updates to WooCommerce Payments in Setup Checklist #4293
= 1.2.2 2020-05-18 =
- Fix: Respect tracking opt-in before new page load. #4368
- Enhancement: Add Jetpack connection to plugin benefits step #4374
= 1.2.0 2020-05-18 =
- Enhancement: Add onboarding payments note #4157
- Enhancement: Marketing Inbox Note #4030
- Performance: Use Route based code splitting to reduce bundle size #4094
- Performance: trim down inbox note API request. #3977
- Fix: Proper display of elements in wc-admin pages when in a RTL environment. #4051
- Fix: Update UX when knowledge base articles fail to retrieve #4133
- Fix: Updated messaging after last step in OBW. #4148
- Fix: Reset profiler when visiting old OBW URL #4166.
- Fix: Dashboard flash before OBW chunk loads #4259
- Tweak: Enable the default homepage template to be filtered #4072 🎉 @stevegrunwell
- Tweak: Create admin note if Jetpack or WooCommerce Services plugin doesn't get installed due to an error during OBW #3888
- Tweak: Update Email Marketing note. #4167
- Tweak: Adjust "demo products" verbiage to "Sample Products" #4184 🎉 @jobthomas
- Tweak: Don't reschedule imports on failed imports #4263
- Tweak: Remove obsolete inbox messages #4182
- Dev: Make query selector for admin alerts more specific #4289 🎉 @pauloiankoski
- Dev: Guard against null themes in OBW #4244
- Dev: Update wcadmin db version after db callback #4323
- Dev: Only migrate options on version change #4324
- Dev: Use PAGE_ROOT constant to reduce redundant strings #4238 🎉 @codemascot
- Dev: Decouple Plugins DataStore from onboarding feature #4048
- Dev: Move API out of Onboarding #4093
- Dev: Add Profiler Step View Tracks #4141
- Dev: Add React Testing Library #4221
- Dev: Add List and Link components to Storybook #4219
- Dev: Cast Shipping Total to float #4042 🎉 @barryhughes
- Dev: Dynamic Currency with Context API #4027
- Dev: Remove Duplicate array entry #4049 🎉 @tivnet
= 1.1.3 2020-05-18 =
- Tweak: Onboarding: Add Jetpack flow back to onboarding profiler. #4382
- Fix: Respect tracking opt-in before new page load. #4368
= 1.1.2 N/A =
- Version bumped on Composer/Packagist but not released to WordPress.org.
= 1.1.1 2020-05-05 =
- Fix: Storefront should show at top of theme options in onboarding wizard. #4187
- Tweak: Remove Stripe auto-connect from payment task. #4164
- Tweak: Hide suggested extensions in Marketing Tab if opted out of "Marketplace Suggestions"
= 1.1.0 2020-04-23 =
- Tweak: Added link to "go shopping" button #3712
- Fix: Make analytics tables use the site's date format setting #3715
- Fix: Alignment of select text #3723 🎉 @edmundcwm
- Tweak: Add PayFast payment gateway option for sites in South Africa #3738
- Tweak: Onboarding: Update screen order and remove Jetpack connection in profiler #3739
- Tweak: Onboarding - business step: add more options in the competitors list and other fixes #3812
- Tweak: Onboarding: Redesign plugin benefits screen #3764
- Fix: inconsistent wording downloads report #3844 🎉 @jobthomas
- Tweak: Onboarding: Use full width template for homepage in stores using Storefront #3846
- Tweak: Remove 'add first product' note. #3876
- Enhancement: Improve focus on task list #3796
- Enhancement: Allow individual payment method setup in the onboarding task list #3782
- Tweak: Onboarding: Add toggles to configured payments in task list #3801
- Onboarding: Add offline payment methods #3832
- Fix: Verify Stripe API keys in payment set up step. #3910
- Fix: Connect to WooCommerce.com note disappears before connecting. #3909
- Tweak: Onboarding - payments task: filter payment gateways if the user selects CBD #3745
- Enahncement: Create flat rate or free shipping methods from the onboarding task list #3927
- Fix: Add WooCommerce support if store is using default theme #3908
- Fix: Make WooCommerce breadcrumbs use WooCommerce Branding if it is installed #3798
- Fix undefined variable slug on theme activation error #3942 🎉 2nad@m1992
- Tweak: Style and icon updates for Activity Panel #3965
- Fix: handle cases where coupon dates are in an unexpected format. #3984
- Enhancement: "Personalize your store" reminder: new inbox notification #3895
- Fix: Onboarding: only validate other platform name for 'other' selling venues #4011
- Performance: only query necessary data in Orders Panel. #3969
- Tweak: Remove icon-button classes from Tag component #3993
- Enhancement: WooCommerce Shipping order page banner prompt #3955
- Performance: speed up indicators endpoint response. #3997
- Enahncement: Add WC Pay to startup checklist
- Enhancement: Marketing Tab
- Enhancement: Add WooCommerce Payments Inbox note #4013
- Fix: Added hook to delete woocommerce_onboarding_homepage_post_id #4015
- Performance: only query requested stat totals in reports. #4009
- Fix: Show admin notices on legacy admin screens. #4019
- Tweak: Reduce the number of default widgets on the dashboard. #4035
- Tweak: Onboarding: Remove plugins step from profiler #3974
- Fix: wc-admin pages work in Internet Explorer 11. #4037
- Dev: Handle orphaned order statuses in analytics settings. #4090
- Tweak: Overwrite button overflow css from Wordpress 5.4 defaults #4108
- Dev: Fix usage of WP_Error in non-global namespaces. #4115
- Tweak: business details step: increase max-height on competitors listbox #4111
- Fix: OBW: Allow CBD only for US stores #4117
= 1.0.3 2020-03-22 =
- Fix: Stop calling protected has_satisfied_dependencies() on outdated plugin. #3938
- Fix: Rename image assets in OBW business details step. #3931
- Fix: Stop using WP Post store for Action Scheduler. #3936
= 1.0.2 2020-03-18 =
- Enhancement: Onboarding: business step: add Google Ads extension install #3725
- Dev: Update prestart script so readme.txt stable tag is updated #3911
- Tweak: create database tables on an earlier hook to avoid conflicts with core WooCommerce. #3896
- Fix - Made the admin note loading more resilient to prevent failures when loading notes with invalid content_data. #3926
= 1.0.1 2020-03-12 =
- Fix: Add Report Extension Example: Add default props to ReportFilters
- Fix: Product report sorting by SKU when some products don't have SKUs
- Dev: Add Changelog script
- Fix: type warning on install timestamp in PHP 7.4
- Fix: PHP error when WooCommerce core is Network Active on Multisites.
- Fix: missing database table errors on WooCommerce upgrade.
- Fix: undefined const WC_ADMIN_VERSION_NUMBER when WP < 5.3
- Dev: Fix failing tests after WC core merge.
- Dev: Bump WooCommerce tested up to tag
= 1.0.0 2020-03-5 =
- Fix: Customers Report: fix missing report param in search #3778
- Fix: OBW Connect: Fix requesting state #3786
- Fix: OBW: Fix retry plugin install button disappearing #3787
- Fix: Update Country Labeling to Match Core #3790
- Fix: Onboarding: Enable taxes when automatic taxes are setup #3795
- Dev: Onboarding: Remove old development flags #3809
- Fix: Padding on Jetpack notices when activity panel is present. $3418
- Fix: Taxes Report search. #3815
- Fix: Taxes Report search bug and adds initial documentation. #3816
- Fix: Activity Panels: Remove W Panel #3827
- Fix: Tracking on migrated options #3828
= 0.26.1 2020-02-26 =
- Fix: Remove free text Search option when no query exists #3755
- Fix: StoreAlert: Fix typo in API description #3757 👏 @akirk
- Fix: WP Coding Standards PR Regressions #3760
- Fix: OBW: sideloading image test error #3762
- Fix: coding standards violations #3763
- Fix: Product titles include encoded entities #3765
- Fix: Add deactivation hook to Package.php #3770
- Fix: Add active version functions #3772
= 0.26.0 2020-02-21 =
- Fix: Warning in product data store when tax amount is non-numeric. #3656
- Fix: Enable onboarding in production. #3680
- Enhancement: Move Customers report to WooCommerce Menu #3632
- Performance: Remove slow physical products query from non setup checklist pages #3722
- Tweak: use cron instead of Action Scheduler for unsnoozing notes. #3662
- Dev: Add tracks events when profiler steps are completed #3726
- Dev: Ensure continue setup loads the onboarding profiler #3646
- Fix: Added new control in /packages/components/src/select-control/list.js #3700
- Fix: Alignment of select text #3723 👏 @edmundcwm
- Performance: Make Stock Panel indicator more performant. #3729
- Performance: Remove sideloaded images to save on build size #3731
- Fix: Create Onboarding homepage without redirect #3727
- Add: Deactivation note for feature plugin #3687
- Dev: Travis tests on Github for release branch #3751
= 0.25.1 2020-02-07 =
- Dev: Enable onboarding #3651 (Onboarding)
- Now `decodeEntities` method is used to correct the breadcrumb. #3653 (Activity Panel)
- Fix: Fix styling of search control in report table header and filters. #3603 (Analytics, Components, Packages)
🤯
= 0.25.0 2020-01-29 =
- Fix: Onboarding: Mark profiler complete on WC update #3590 (On Merge to WC Core, Onboarding)
- Dev: fix strict standards in Scheduler classes #3583
- Task: Avoid redundant/unnecessary cleanup. #3580 (On Merge to WC Core)
- Fix: Fix styling of search control in report table header and filters. #3603 (Analytics, Components, Packages)
- Fix: report table search component. #3618 (Analytics, Components, Packages)
- Performance: Remove unnecessary use of lodash get #3598 (Onboarding)
- Tweak: don't modify page titles for existing WooCommerce pages. #3585 (On Merge to WC Core)
- Dev: Handle custom currency formats #3349 (Components, Packages)
- Fix: Update broken note action hooks #3535 (Activity Panel, Inbox)
- Dev: Onboarding: Only Show Retry Button on Plugin install failure #3545
- Dev: SelectControl: Add an option to show all options on refocus #3551 (Components, Packages)
- Fix: SQL error in category table sort. #3521 (Analytics)
- Dev: Onboarding: Add option to track appearance completion #3503 (Onboarding)
- Enhancement: add customer privacy erasure support. #3511 (Analytics)
- Fix: handle uninstallation when in feature plugin mode. #3546 (On Merge to WC Core)
- Fix: Exception on dashboard once Onboarding tasks are complete #3513
- Tweak: Onboarding - Add Skip Step link on Themes Step. #3490 (Onboarding)
- Bug: Add SelectControl debouncing and keyboard fixes #3507 (Components, Packages)
- Tweak: Included RegExp for JS files in examples.config.js #3510 (Build, Extensibility) 👏 @yash-webkul
- Bug: Onboarding: Don't show skip link if no plugins exist to skip #3485 (Onboarding)
- Fix: Make package-based load inert when plugin is active. #3555 (On Merge to WC Core)
- Dev: Onboarding: Add purchase products task list item #3472 (Onboarding)
- Fix: Properly style theme selection button in Site Profiler #3489
- Dev: Onboarding: Add tracks to extension purchase task and modal #3493 (Onboarding)
- Tweak: Change Refunds to Returns on the dashboard. #3514
- Dev: Update translation scripts and instructions for creating `.json` files. #3433 (Build)
- Bug: Onboarding: Add in tracks for failed plugin installation #3483 (Onboarding)
- Dev: Onboarding: Add theme install and activation endpoints #3482 (Onboarding, REST API)
- Fix: component styles for WordPress 5.3. #3357 (Build, Components, Design, Packages)
- Dev: Onboarding: Add another option to platforms. #3471 (Onboarding)
- Fix: `CompareFilter` functionality regression. #3421 (Analytics, Components, Packages)
- Fix: don't run database migrations on new installs. #3473
- Fix: WC-Admin header on settings and status pages. #3389 (Activity Panel)
- Enhancement: allow filtering of hidden WP notices. #3391 (Activity Panel, Extensibility)
- Fix: show pending product reviews when comment moderation is disabled. #3459 (Activity Panel)
- Dev: AssetDataRegistry: update SQL example #3418
- Tweak: Scroll to notices when displayed while the notice area is scrolled out of view. #3390 (Activity Panel)
- Dev: DataStores: normalize contexts to plural #3419
- Enhancement: allow report cache layer to be turned off. #3434
- Bug: Fix user data fields filter name. #3428 (Dashboard)
- Fix: error when trying to download report data. #3429 (Analytics)
- Dev: Update to latest PHPUnit 7 #3571 (Build)
- Fix: invalidate Reports cache when changing Analytics settings. #3465 (Analytics, REST API, Settings)
- Bug: Onboarding: Skip Shipping connect step if Jetpack is already connected #3486 (Onboarding)
- Fix: Time zone offset calculation on customer last active date. #3388 (Analytics)
- Dev: Default the Calypso environment to production #3347 (Onboarding)
- Bug: Onboarding: Update shipping task button text #3400 (Onboarding)
- Bug: Onboarding: Update check for TOS accepted in tax step #3245 (Onboarding)
- Fix: remove the header when user doesn't have required permissions #3386 (Activity Panel)
- Dev: Add autocomplete props to address fields in onboarding and adjust country/state matching #3338 (Onboarding)
- Dev: Add purchase modal at the end of the profile wizard #3444 (Onboarding)
- Dev: Standardize hook and filter prefixes. #3339 (On Merge to WC Core)
- Fix: make report filter date props optional #3359 (Components, Extensibility, Packages)
- Tweak: Add/disable plugin filter #3361
- Dev: Onboarding - Add button to continue setup after importing products #3402 (Build, Onboarding)
= 0.24.0 2020-01-06 =
- Bug: Add SelectControl debouncing and keyboard fixes #3507 (Components, Packages)
- Fix: Properly style theme selection button in Site Profiler #3489
- Dev: Update translation scripts and instructions for creating `.json` files. #3433 (Build)
- Dev: Add initial documentation for the historical data import. #3506 (Documentation)
- Dev: Onboarding: Add purchase products task list item #3472 (Onboarding)
- Dev: Onboarding: Add another option to platforms. #3471 (Onboarding)
- Dev: Add singular/plural distinction to onboarding plugins installation #3517 (Onboarding)
- Dev: Onboarding: Add theme install and activation endpoints #3482 (Onboarding, REST API)
- Tweak: Onboarding - Add Skip Step link on Themes Step. #3490 (Onboarding)
- Bug: Onboarding: Skip Shipping connect step if Jetpack is already connected #3486 (Onboarding)
- Bug: CI: use PR repo instead of main repo when checking out branches. #3512 (Build)
- Tweak: Included RegExp for JS files in examples.config.js #3510 (Build, Extensibility) 👏 @yash-webkul
- Dev: Onboarding: Add tracks to extension purchase task and modal #3493 (Onboarding)
- Tweak: Change Refunds to Returns on the dashboard. #3514
- Fix: invalidate Reports cache when changing Analytics settings. #3465 (Analytics, REST API, Settings)
- Dev: DataStores: normalize contexts to plural #3419
- Dev: AssetDataRegistry: update SQL example #3418
- Fix: show pending product reviews when comment moderation is disabled. #3459 (Activity Panel)
- Enhancement: allow report cache layer to be turned off. #3434
- Tweak: Scroll to notices when displayed while the notice area is scrolled out of view. #3390 (Activity Panel)
- Dev: Add autocomplete props to address fields in onboarding and adjust country/state matching #3338 (Onboarding)
- Dev: Update instructions for documenting new components. #3443 (Components, Documentation)
- Dev: Add purchase modal at the end of the profile wizard #3444 (Onboarding)
- Fix: component styles for WordPress 5.3. #3357 (Build, Components, Design, Packages)
- Bug: Onboarding: Don't show skip link if no plugins exist to skip #3485 (Onboarding)
- Bug: Onboarding: Add in tracks for failed plugin installation #3483 (Onboarding)
- Dev: Fix the "is this card useful" prompt display #3427 (Onboarding)
- Tweak: Add/disable plugin filter #3361
- Bug: Onboarding: Update shipping task button text #3400 (Onboarding)
- Dev: Default the Calypso environment to production #3347 (Onboarding)
- Dev: Standardize hook and filter prefixes. #3339 (On Merge to WC Core)
- Fix: WC-Admin header on settings and status pages. #3389 (Activity Panel)
- Dev: Fix revenue question translation with currency conversion #3358 (Onboarding, Packages)
- Fix: make report filter date props optional #3359 (Components, Extensibility, Packages)
- Dev: Onboarding - Add button to continue setup after importing products #3402 (Build, Onboarding)
- Bug: Onboarding: Update check for TOS accepted in tax step #3245 (Onboarding)
= 0.23.3 2019-12-26 =
- Fix: don't run database migrations on new installs. #3473
= 0.23.2 2019-12-19 =
- Enhancement: allow filtering of hidden WP notices. #3391 (Activity Panel, Extensibility)
- Fix: error when trying to download report data. #3429 (Analytics)
- Bug: Fix user data fields filter name. #3428 (Dashboard)
- Fix: `CompareFilter` functionality regression. #3421 (Analytics, Components, Packages)
- Fix: Time zone offset calculation on customer last active date. #3388 (Analytics)
- Fix: remove the header when user doesn't have required permissions #3386 (Activity Panel)
= 0.23.1 2019-12-08 =
- Fix: undefined function error.
= 0.23.0 2019-12-06 =
- Dev: Add currency extension #3328 (Packages)
- Fix: errant moment locale data loading. #3362 (Components, Packages)
- Dev: Packages: Prep for release. #3325 (Build, Components, Packages)
- Bug: Settings: Persist date range selection #3293
- Dev: Remove Newspack dependency. #3302
- Dev: DB Updates: invalidate cache after update #3299
- Fix: beginning of next day calculation on daylight saving time on the days the time changes. #3333 (Analytics)
- Tweak: Add a filter that allows disabling WooCommerce Admin. #3350 (On Merge to WC Core)
- Fix: Retrieve week last year data by calendar date instead of week alignment. #3271 (Analytics, Packages)
- Bug: Check if extended_info is set for order report items #3315 (REST API)
- Tweak: remove global settings dependency from Navigation package. #3294 (Components, Packages)
- Fix: Fix checkout of main branch in CI environment. #3296 (Build)
- Fix: decouple Date package from global wcSettings object. #3278 (Components, Packages)
- Fix: Make the order count between customer and table total consistent. #3290 (Analytics)
- Fix: decouple Currency and Number packages from global wcSettings object. #3277 (Components, Packages)
- Bug: Filter invalid statuses from saved statuses #3268
- Dev: use a filter to set default locale #3273
- Dev: Allow core inclusion via Package.php #3196 (Build)
- Dev: Fix filter gap on analytics select controls #3259 (Components, Packages)
- Bug: Correcting and clarifying analytics terms and calculations #3104 (Analytics, Components, Packages)
- Dev: rename data store get_* to add_* functions where function does not return values #3275
- Tweak: Search component: remove dependency on settings global from countries autocompleter. #3262 (Components, Packages)
- Dev: PHPCS fixes for onboarding files #3269 (Documentation)
- Dev: Add a tracks queue to delay event recording & log embed page views #3250
- Dev: Make WooCommerce brand localizable #3247
- Fix: Add single customer REST API end point. #3174 (REST API)
- Dev: fix typos in JS docs #3248
- Bug: Select control: fix misalignment and hide scroll bar #3215 (Components, Packages)
- Dev: capitalize WooCommerce Services #3249
= 0.22.0 2019-11-13 =
- Fix: Incorrect calculation of tax summary on Taxes screen. #3158 (Analytics)
- Fix: Correct product and coupon count on edited orders. #3103 (Analytics)
- Bug: Update filter picker to use key instead of id #3214 (Analytics, Components, Packages)
- Enhancement: prompt stores to add their first product(s). #3119 (Inbox)
- Dev: Move Analytics REST endpoints to `wc-analytics` namespace. #3204 (Components, Packages)
- Tweak: add usage tracking inbox notice. #3112 (Activity Panel, Inbox)
- Task: Fix PHP linter errors. #3188
- Enhancement: Add query filters to data stores.