-
Notifications
You must be signed in to change notification settings - Fork 191
/
changelog.txt
2085 lines (1854 loc) · 233 KB
/
changelog.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
== Changelog ==
= 3.11.0: May 7th, 2024 =
* New: Added pre-requisite form builder compatibility for upcoming ConvertKit add-on release
* New: Added ability to customize alt tags for header images in the visual form builder
* Security: Added additional escaping to the give_form shortcode
* Security: Added additional sanitization to the custom css field in the form builder
= 3.10.0: April 30th, 2024 =
* New: Added pre-requisite form builder compatibility for upcoming ActiveCampaign add-on release
* Enhancement: Updated PayPal support phone number
* Enhancement: Updated various strings to be translatable (open-source contribution by @DAnn2012)
* Security: sanitize additional give_form shortcode args
* Fix: Resolved styling issues with recurring labels in the form builder
= 3.9.0: April 24th, 2024 =
* New: Added a donor phone number block to the form builder to collect donor phone numbers on donation forms
* Enhancement: Updated form field inputs to have a single border color when selected
= 3.8.0: April 17th, 2024 =
* New: Added pre-requisite form builder compatibility for upcoming double the donation add-on release
* Enhancement: Updated the form builder tour to highlight where to find the guided tour again
* Dev: Added BlockType api for easier block to field conversion
= 3.7.0: April 10th, 2024 =
* New: Added pre-requisite form builder compatibility for upcoming constant contact add-on release
* New: Added phone number field to the donor details page, more updates for this field will come in future releases!
* Enhancement: Updated the form block option to select more available forms than the original limit of 10
* Enhancement: Updated the form builder left-side menu to open automatically when entering the build screen
* Security: Added sanitizing and escaping to shortcodes
* Fix: Resolved a conflict with GiveWP and WordPress bulk actions functionality
= 3.6.2: April 5th, 2024 =
* Fix: Resolved an issue with WordPress 6.5 and the visual form builder that was making it difficult to interact with blocks
= 3.6.1: March 21st, 2024 =
* Fix: Resolved an issue with PayPal donations and currency switcher on donation forms using the visual form builder
= 3.6.0: March 13th, 2024 =
* New: Introduced a new beta feature called "Event Tickets" that is open for feedback! If enabled, you can create events and sell tickets on your donation forms.
* New: Added a new form builder layout called "Two Panel" that offers a side-by-side appearance and a multi-step donation experience.
* New: Added a new setting in the form builder styles tab for the header image overlay
* Fix: Resolved several styling issues with the donation form modal
* Fix: Resolved styling conflicts with native WordPress UI components
= 3.5.1: March 6th, 2024 =
* Fix: Resolved an issue with PayPal that was preventing the ability to connect a PayPal account to GiveWP.
= 3.5.0: February 29th, 2024 =
* Security: Resolved a couple potential security vulnerabilities
* New: Added the ability to add a header image to forms in the Visual Form Builder
* Fix: Resolved an issue with new Stripe accounts having trouble making credit card donations
* Fix: Resolved a PayPal Donations issue where the donation buttons didn't show up in the modal view of an Option-Based Form Editor form
= 3.4.2: February 19th, 2024 =
* Fix: Resolved an issue with PayPal donations that ensures the correct donation amount will be used after filling out payment details and modifying the original amount.
= 3.4.1: February 13th, 2024 =
* Fix: Resolved an issue with the default email block that ensures it is always a required field in the donation form.
= 3.4.0: February 8th, 2024 =
* Fix: Resolved several issues with the billing address block including dynamically requiring certain fields and allowing state/county field input
* Fix: Resolved an issue with multi step form layout where the title was missing on the first step when show header was disabled
* Fix: Resolved errors when adding/removing a sub-site in a WP multisite environment (open-source contribution by @Genevieve-K)
* Fix: Resolved an issue with form modals and some gateways that redirect offsite to display the confirmation page after a donation
* Fix: Resolved a fields api compatability issue with showInReceipt metaKey
* Fix: Resolved a nonce validation issue with translated values (open-source contribution by @Genevieve-K)
* Fix: Resolved a PHP 8 compatability issue with the system info page (open-source contribution by @JeromeBeckett)
* Fix: Resolved several styling issues with the form modal block
* Fix: Updated Stripe connect redirect to be limited to specific pages
* New: Added form migration step for the GiveWP Gift Aid add-on
* New: Added new filter `givewp_stripe_payment_element_appearance_options` to modify the Stripe Payment Element gateway appearance options
* New: Added donation form processing lifecycle actions for more programmatic control over form processing
* Enhancement: Made donation list table programmatically extendable (open-source contribution by @pulsovi)
* Enhancement: Improved the flexibility of donation confirmation page detail values to allow sanitized html
* Enhancement: Added new filter to the gateways block to control visibility
* Enhancement: Made several improvements to the give importer for third-parties and admin
= 3.3.1: January 23rd, 2024 =
* Fix: Resolved an issue checking for the GiveWP Funds and Designations add-on information during form migrations
= 3.3.0: January 10th, 2024 =
* Happy new year!
* Fix: Resolved an issue where some migrated forms were being duplicated
* Fix: Resolved an issue with the donor export filter by donation form
* Fix: Added additional attribute escaping to the donor wall shortcode
* Enhancement: Improved current compatibility with PHP 8.2
* Enhancement: Improved the UI of the visual donation form builder to be more intuitive with dedicated Build, Design, and Settings screens
* New: The donor dashboard now has a way to update and reset passwords
* New: Added pre-requisite v3 compatibility updates for the Give Funds and Designations add-on
* New: Added v3 form migration compatibility for select GiveWP add-ons including: Mailchimp, Funds and Designations, and Per-Form Gateways
* New: Added a new programmatic way to interact with the v3 confirmation page using our fields api
= 3.2.2: Dec 20th, 2023 =
* Fix: Resolved an error on the donor details page when they have no donations
* Fix: Resolved an issue where the continue button setting was not being reflected on forms using legacy template
= 3.2.1: Dec 13th, 2023 =
* Fix: Resolved an issue that was duplicating the "Donate Now" button on legacy form template
* Fix: Resolved an issue that was preventing display options from being reflected on the form
* Fix: Removed an error notice that was showing up on admin menu pages
* Fix: Resolved an error in the donation form block when the admin page is refreshed
= 3.2.0: Dec 6th, 2023 =
* New: Embed form button added to the Visual Donation Form Builder
* New: Pre-publish confirmation panel added to the Visual Donation Form Builder
* Enhancement: Updated parts of the Form Builder text areas to Text Editors to provide more formatting options
* Enhancement: Improved compatibility with the donation block and Visual Builder forms
* Enhancement: All donors are connected with a user for improved security and caching compatibility
* Enhancement: Improve the Name, and Terms and Conditions blocks with global settings
* Fix: Resolved some strange behaviors when using the Amount Levels setting in the Form Builder
* Fix: Removed WP_Background_Process and WP_Async_Request to avoid conflicts with other plugins
* Fix: Donor honorific (Mr, Mrs, etc) is now properly saved as part of the donor record
* Fix: PayPal Donations displays a helpful error message when incorrect credit card information is entered
* Fix: Visual Donation Form Builder loading is improved by preventing the formBuilderSettings meta from becoming too large
* Fix: Resolved an issue where some donations list tables were failing to load due to missing donation mode meta
* Fix: Resolved an issue where the donation forms list tables were resulting in duplicate forms
* Fix: Resolved an issue where PayPal smart buttons were not being displayed on embedded forms using legacy template
* Fix: Resolved an issue with PayPal donations and fee recovery where the fee was not being added to the donation total
= 3.1.1: November 3rd, 2023 =
* Fix: Embedded forms created with the Visual Builder now redirect to the confirmation page after a completed donation.
* Fix: Donor title prefixes are now formatted as strings (like Mr or Ms) instead of numbers.
= 3.1.0: October 25th, 2023 =
* Feature: Design Mode changes in the Form Builder are now instant and awesome! Instant gratification!
* Feature: Donor prefixes can now easily be reordered in the Donor Name block
* Feature: The form goal is now changeable from the Design mode of the Form Builder
* Enhancement: The form goal amount now better displays the currency amount
* Enhancement: The first time a form (in the form builder) is saved, the title is used as the page slug
* Enhancement: Improved translations in the form builder and gateways
* Enhancement: Compatibility improvements in preparation of WordPress 6.4
* Enhancement: Improved donor flow that passes along their name, email, and address to PayPal Donations
* Fix: Minor wording improvement on the login block
* Fix: Added a give_user_info_fields_user_info filter to allow for customizing the user info fields
* Fix: Links on the donor list table now work properly on sub-directory WordPress instances
* Fix: Resolved an issue where errors failed to display on older forms upon donation submission
* Fix: Multi-form, form grid, and totals shortcodes no longer throw a warning
* Fix: Multi-form goal block no longer throws an error when filtering by form
* Fix: Multi-form and progress bar goals no longer throw an error for themes that return false for get_theme_support
* Fix: Resolved old GiveWP behavior that altered default WordPress behavior when retrieving GiveWP post type meta
= 3.0.4: October 30th, 2023 =
* Fix: Resolved issue with some Stripe gateways not recording incoming recurring donation renewals. To recover missing renewals from Stripe in GiveWP, please use the "Sync Subscription" button on the individual subscription details page. Click [here](https://docs.givewp.com/syncrecurring) to learn more about syncing subscriptions in GiveWP.
= 3.0.3: October 20th, 2023 =
* Fix: Using the multi-form shortcode with the ids attribute no longer causes a fatal error
* Fix: Forms no longer have fatal errors on Elementor websites when the Display Content option is enabled
= 3.0.2: October 19th, 2023 =
* Fix: Stripe per-form settings are included when migrating a form to the Visual Donation Form Builder
* Fix: Gateways are properly separated in the settings page and Global Settings for Fee Recovery shows all gateways when you select per gateway
= 3.0.1: October 17th, 2023 =
* Fix: Resolved a conflict with Matomo plugin that was causing a fatal error
= 3.0.0: October 16th, 2023 =
* New: Try out the all new Visual Donation Form Builder!
* New: All new form infrastructure for forms using the Form Builder!
* New: Stripe Payment Element gateway for Stripe with support for many types of payment methods
* New: Existing forms can be migrated and upgrade to use the Form Builder
= 2.33.5: October 10th, 2023 =
* Fix: Prevent failed donations in sites that use proxy services like Cloudflare and gateways that require the original IP address
= 2.33.4: October 4th, 2023 =
* Fix: Update old sendwp buttons and remove unused Stripe disconnect function.
= 2.33.3: September 29th, 2023 =
* Fix: Multi-site installations no longer produce an error on subsites.
= 2.33.2: September 18th, 2023 =
* Fix: Add validation for form status to prevent donations to donation forms with the status of "Trash"
= 2.33.1: August 31st, 2023 =
* Security: The donor default user role has been sanitized to prevent privilege escalation
= 2.33.0: August 28th, 2023 =
* New: Admins can now select standard or advanced connection type during setup
* New: Added a new SubscriptionSynced command class
* New: Added PayPal Standard to PayPal Donations migration information banners
* Security: Remove uses of payment intent secret and existing meta
= 2.32.0: August 11th, 2023 =
* Feature: Scroll Stripe modal into view for Legacy + Multi-step forms
* Feature: Added check for application/json in form headers accept
* Feature: Added a `$nodeNameCollision` property on `NameCollisionException` for flexibility in throwing exception messages
* Feature: Added a file validation rule for validating file uploads
* Feature: Added a `@wordpress/scripts` build process for building forms in GiveWP 3.0
* Feature: Added persistence scoping to Fields
* Feature: Added WordPressLibraries to manage WP_Background_Process more efficiently and address potential conflicts with other plugins
* Feature: Added the hasDescription concern to Fields API
* Enhancement: Use PayPal client to handle API requests to avoid issues with expired merchant tokens
* Fix: Increase specificity when hiding the Form Token Field label
= 2.31.0: July 21st, 2023 =
* Feature: New banner added to the plugin page for annual summer discounts
= 2.30.0: July 12th, 2023 =
* Feature: Attributes of the [give_donor_wall] shortcode can now be filtered.
* Feature: Added state label and list of states for the v3 form billing address block. Existing functionality is not modified.
* Fix: Empty excerpt fields for v3 forms no longer display as [] on the Form Grid.
* Refactor: Updated the gateway adapter for v3 forms.
* Refactor: Updated legacy donation form block title with a (v2) suffix.
* Refactor: The v2 Donation Form block now supports v3 forms.
= 2.29.2: June 29th, 2023 =
* Enhancement: PayPal Donations now has separate buttons to connect to PayPal Live and PayPal Sandbox.
* Fix: Form Field Manager conditional radio and checkbox fields that are not visible no longer prevent donation submission.
= 2.29.1: June 21st, 2023 =
* Feature: Add Recurring Donations add-on overlay to Reports widget
= 2.29.0: June 14th, 2023 =
* Feature: A refund checkbox can be enabled on the admin screen.
* Enhancement: PayPal Donations onboarding validates only the PayPal seller capabilities that block payment processing.
* Fix: Donor Created Date column is now included in the Donor csv export.
= 2.28.0: June 8th, 2023 =
* Enhancement: Improvements to checkboxes in the Field API in preparation for GiveWP 3.0
* Fix: Resolves an issue with Form Field Manager caused in 2.27.3. Please update both GiveWP and Form Field Manager.
= 2.27.3: June 8th, 2023 =
* Feature: Support Slack-bot-based zip packaging requests
* Feature: Add ShowInAdmin trait to the Field API
* Feature: Add color parameter to give_goal shortcode
* Feature: Implement necessary tweaks to accommodate the Webhooks Add-on
* Feature: Add a recommendation for manual donations
* Feature: Update visibility conditions in the Field API to use new framework and handle validations
* Enhancement: Enable Venmo by default for PayPal Donations if available for country
* Enhancement: Add generics to container functions so autocomplete works when passing a class
* Fix: Improve error handling for fee recovery product recommendation on Settings page
* Fix: Display errors for PayPal Smart Buttons
* Fix: MoneyPHP support for Bitcoin currencies
* Refactor: Move legacy donation forms into v2 domain
* Chore: Remove redundent composer install
= 2.27.2: May 24th, 2023 =
* Fix: No errors are thrown for missing JavaScript files in the Payment Gateway Settings page.
= 2.27.1: May 18th, 2023 =
* Fix: Tributes are displayed even when only the last name of the tribute is filled in the form.
* Fix: Subscriptions can be successfully canceled from the donor dashboard.
* Fix: PayPal handles the user locale so it does not throw an error.
* Fix: Stripe payments has user friendly error messages.
* New: Pro tip messages are added to the Settings, Form Editor, Donation, and Donor pages.
= 2.27.0: April 27th, 2023 =
* Feature: Added a nice new view to the list tables when there are no donations, donors, or subscriptions
* Enhancement: Donation comments are now stored as meta to improve performance
* Enhancement: Simplifications to the new Gateway API to make gateways easier to build
* Enhancement: Added a simple way for gateways, in the Gateway API, to pass extra data back to the server
* Enhancement: Improvements on our end that help make sure that GiveWP is compatbible with PHP 7.0-8.0
* Enhancement: List table bulk actions are now extensible, used by the new Bulk Export feature in the PDF Receipts add-on
* Fix: The give_subscription_inserted hook is now fired when a subscription is created in the new Gateway API
* Fix: Added a polyfill (backwards compatibility) for the MBString PHP extension for PHP 7.0-7.2
* Fix: The form grid now consistently uses the excerpt for the form description
* Fix: Prevented a crash when searching for a subscription by its identifier on the gateway
* Fix: Resolved an incompatibility with WooCommerce that threw an error on on the License page
* Fix: Resolved an incompatibility with Beaver Builder that prevented the Donor Wall shortcode from working
= 2.26.0: April 6th, 2023 =
* Enhancement: Minor updates for improved WordPress 6.2 compatibility
* Enhancement: A number of under the hood improvements in preparation for the upcoming Visual Donation Form Builder feature plugin release
* Enhancement: Improvements to recurring donations in the Gateway API
* Enhancement: Implemented our new GiveWP design system to improve designs across our website and prdocuts
* Fix: Conditionals fields based on the amount field work again
* Fix: Files with a text mime type now work when uploading files for import
* Fix: If an error occurs in the Donor Dashboard when canceling a subscription, that subscription is no longer marked as canceled
= 2.25.3: March 22nd, 2023 =
* Security: Protect against CSRF during donation import
= 2.25.2: March 8th, 2023 =
* Security: Protect against CSRF during give cache clear settings
* Security: Protect against CSV injection in donation export settings
* Security: Protect against XSS and CSRF in donation import settings
* Security: Protect against XSS in give_form_grid shortcode
* Security: Protect against CSRF and Arbitrary Content Deletion in admin list tables
* Security: Protect against SSRF in add-on changelog requests
= 2.25.1: March 1st, 2023 =
* Enhancement: Compatibility in the Donor Dashboard with the new Square recurring support
* Enhancement: Exported donations are ordered by ID by default
* Fix: Sites without the ctype PHP extension no longer run into problems
* Fix: Prevent a handful of PHP 8.1 deprecation notices
* Fix: Fixed a PHP 8.0 error in receipt templates
= 2.25.0: February 21st, 2023 =
* Feature: Donors now explicitly state whether they are donating as a company, useful for things like Gift Aid
* Enhancement: Improvements to the Gateway API in preparation for GiveWP 3.0
* Enhancement: Optimizations to how we interact with the GiveWP Gateway server
* Enhancement: New method for storing donation notes using the Donation model
* Fix: Improved how PayPal Donation tokens are handled to prevent the need to reconnect one's PayPal account
* Fix: Classic forms using Authorize.Net as the default gateway now work as expected
* Fix: Square credit card fields now work properly on safari
* Fix: Resolved escaping issue preventing modal from displaying on some sites
* Fix: The "Download Receipt" link in the PDF is more reliable after making donation updates
* Fix: Prevented a filter from running twice on the donation summary
* Fix: Styling looks better for modals in the Classic template
* Fix: Corrected some styling in the Multi-Step and Classic template receipts that affected the Tributes add-on
= 2.24.2: February 1st, 2023 =
* Enhancement: Reorganized the GiveWP admin menu items to a cleaner, more intuitive order.
* Fix: Servers without the PHP Intl extension broke the admin list tables. This is a fixed and a new Currency setting was introduced to [control automatic formatting](https://docs.givewp.com/currency-format).
= 2.24.1: January 19th, 2023 =
* Security: Further protection against SQL Injection attacks.
* Fix: Forms with missing level data no longer breaks the whole form list table.
= 2.24.0: January 18th, 2023 =
* Security: Fixed critical and a low level security vulnerabilities. See our [critical release notice](https://go.givewp.com/2-24) for more details.
* New: Sorting and custom columns are now supported for the Form, Donor, and Donation admin list tables
* New: Subscription admin list table has a new, modern look like the other list tables — requires GiveWP Recurring add-on
* Enhancement: New Validation framework in preparation for GiveWP 3.0
* Enhancement: Donor Dashboard is ready for the upcoming Authorize.Net recurring support
* Enhancement: Further small improvements to get ready for the upcoming GiveWP Next Gen Feature Plugin
* Fix: Donor errors correctly display when using the Multi-Step form template
* Fix: Donor comments now show up when the Stripe or PayPal Donations gateways are used
* Fix: Accessibility improvement for generating a new user API key
* Fix: The payment amount in the donation summary correctly updates when the donor enters a custom amount
= 2.23.2: November 17th, 2022 =
* Enhancement: Added support for gateways that need to mark a new subscription as processing
* Fix: Fixed a Stripe issue in conjunction with Stripe that would throw an error when processing a renewal
* Fix: Prevent some PHP notices when being used on PHP 8
= 2.23.1: October 31st, 2022 =
* Fix: Fee Recovered amount in the donation summary works better with currencies that use a comma as the thousands separator
* Fix: Form Grid donate button color defaults to black to avoid being invisible in some cases
* Fix: Made text translatable in the Form Grid that previously wasn't
* Fix: The give()->donations->getLatestDonation now correctly grabs the most recent
* Fix: Zip code and country are now in the correct order for donor exports
* Fix: The Donor and Donation models correctly handle missing meta
= 2.23.0: October 20th, 2022 =
* Enhancement: Under the hood improvements to how recurrence is handled in donations and subscriptions
* Enhancement: Added additional filters to email settings (for Peer-to-Peer)
* Fix: Wrapped up some issues to make sure GiveWP is ready for WordPress 6.1
* Fix: Scrolling a form on a mobile device will no longer select a amount level
* Fix: Errors now display properly (and are auto-scrolled to) in the Classic template
= 2.22.3: October 13th, 2022 =
* Fix: When a donor creates an account the email is assured to be sent the right account
= 2.22.2: September, 28th 2022 =
* Fix: The give_goal and give_form shortcodes once again display correctly with the goal progress
* Fix: Translating in Google Chrome no longer prevents disconnecting the PayPal account
= 2.22.1: September, 20th 2022 =
* Security: Updated a number of 3rd party packages we use to include security fixes
* Fix: Legacy template now displays the correct amount for the donor and donation goals
* Fix: Donor Dashboard block is now selectable within the Block Editor
* Fix: A fatal error is now prevented when other plugins or themes use the_title filter
* Fix: Fund and revenue totals now properly reflect the amount when a donation is edited
* Fix: The progress bar displays/hides correctly when the show_goal property for give_form_grid is used
= 2.22.0: August 18th, 2022 =
* Feature: SendWP integration to easily connect emails to their service
* Enhancement: Improvement to the GatewayAPI to allow gateways to pass custom data to the server
* Fix: Prevent the MAX_JOIN_SIZE error from breaking queries that affected some folks
* Fix: Goal percentage on the Multi-Step form has been fixed to accurately reflect amount raised
* Fix: When filling out the deactivation survey, deactivation will no longer be prevented if our server is down
* Fix: Added more escaping to secure against vulnerabilities
= 2.21.4: July 8th, 2022 =
* Fix: The CSRF patch for the stats exporter was breaking other exporters. The patch is still in place but the other exporters are working again.
= 2.21.3: July 7th, 2022 =
* Security: Protect against CSRF and DOS attacks against the donation stats exporter
* Security: Protect against XSS attacks for the currency endpoint
* Fix: Styling corrections for the donation, donor, and form admin lists
* Fix: Selecting a specific donation when previewing an email no longer throws an error
* Fix: Renewal reminder emails are once again being sent
* Fix: Prevent a 400 error from occurring in Stripe webhooks
* Fix: Anonymous donations are working properly again for subscriptions
= 2.21.2: June 29th, 2022 =
* Feature: Exporting donors now supports limiting by their donation date — useful for getting donors who gave in the last year
* Enhancement: the new Gateway API now supports recurring under the hood
* Enhancement: donors are now passed to the give_donors_column_query_data hook (thanks Genevieve!)
* Security: Updated some internal dependencies that had security fixes
* Security: Better protection against invalid dates when exporting donation statistics
* Security: Prevent overreach hack when using the exporters
* Fix: For some folks a really old migration got stuck, and now it's unstuck
* Fix: Summary Heading for the classic Form field displays as it should
* Fix: The "Display Header" setting for Classic Form shows/hides the corresponding settings
* Fix: Made the default Form Grid colors a bit nicer
* Fix: Some of our greens weren't the right GiveWP green. All greens have been made right
* Fix: Cleaned up some PHP warnings in the Donor Wall caused by other add-ons
* Fix: Put the donation date back in on the Donor Wall
* Fix: Donation links weren't working on sub-directory WordPress installs on the Donation List table, now they do
* Fix: Required fields on the Multi-Step form now have an asterisk to help communicate to the donor
* Fix: Resolved a styling conflict introduce by the updated Form Grid on the Goal shortcode and Legacy template
* Fix: Improved some grammar and wording in our PayPal instructions
* Fix: Updated the PayPal logo to their latest and greatest
* Fix: Improved translations on the Donor Wall
* Fix: Updated the currency symbol for LKR (thanks pxydigital!)
* Fix: Donations made with 0-decimals now display properly on the Donor Wall
* Fix: Form goal settings are better reflected on the Form Grid
= 2.21.1: June 21st, 2022 =
* Fix: Resolved a "sort buffer" error on MySQL 5.7 and older
* Fix: Added and corrected some missing translations
= 2.21.0: June 16th, 2022 =
* New: Fresh new look for the Donor Wall block and shortcode!
* New: Form Grid looks has a great new look and more visual options!
* Enhancement: The new Gateway API now uses he new Models
* Enhancement: All failed queries are now logged with extra data to troubleshoot
* Enhancement: Some minor visual improvements on the Logs admin page
* Security: Remove an unused donor wall endpoint that made donor wall data too easy to access
* Security: Donors can no longer immediately access the Donor Dashboard without authentication
* Security: Further tightening of XSS protection per WordPress security guidelines
* Security: Tighten up file exposure to GiveWP Managers in the Exporter
* Fix: Prevent a notice and database error on fresh installs
* Fix: Cleared up some notices that logging was causing
* Fix: Admin notices no longer scrunch all weird-like up at the top of the page
* Fix: Further compatibility fixes for PHP 8.1
* Fix: Text aligns better for offline donations in the form
* Fix: Stripe gracefully ignores events that come in from another platform
* Fix: Brought back accidentally removed income goal stat filters. Thanks sc0ttkclark!
* Fix: Make sure that all donation errors are caught and gracefully handled to inform the donor
* Fix: Renewals now display the correct payment type in the admin donations list
* Fix: Checkboxes (also created via Form Field Manager) no longer require being checked when conditionally hidden
= 2.20.2: June 8th, 2022 =
* Security: Donors are no longer able to view the Donor Dashboard for the email they donated in without logging in
* Security: Added additional URL escaping around the codebase to protect against XSS attacks
* Fix: Subscriptions can now be changed again by donors using the legacy subscriptions shortcode
= 2.20.1: May 19th, 2022 =
* Fix: Corrected an issue where admin notices were displaying strangely
* Fix: Removed the "Switch to New View" button that would show up in strange admin places when switched to the legacy donor or donation lists
= 2.20.0: May 11th, 2022 =
* New: Refreshed the donor and donation list screens in the admin
* New: Significant improvements to the donor wall and form grid blocks
* Enhancement: Optimized deleting a donation and all of its meta
* Enhancement: Many under-the-hood improvements Gateway API
* Enhancement: Updated Romanian currency symbol to RON
* Enhancement: Logging system has built-in checks to redact sensitive information
* Fix: Resolved a 3D Secure issue with PayPal Donations
* Fix: Tags now work properly in the Offline Donations content
* Fix: Improved error handling if an error occurs with PayPal Donations
* Fix: Viewing a receipt in the legacy donation history page now works
* Fix: Prevent a "donation_decimals" notice when adding and updating forms
* Fix: Percentage goals display properly on the form list
* Fix: The correct donation form title is shown on the Stripe checkout page
* Fix: Donor Wall can no longer be accessed outside of the website
* Fix: Equal operator for conditional fields works again (also affects Form Field Manager)
* Fix: Improved Multi-Step content to provide a default and avoid confusion
* Fix: Clicking the main "Donations" menu item goes to the forms list instead of making a new form
* Fix: Corrected PayPal Donations design when used in Classic template
= 2.19.8: April 6th, 2022 =
* Fix: Corrected an issue with our javascript translations
= 2.19.7: April 4th, 2022 =
* Fix: Resolved a regression in 2.19.6 that broke the Stripe Checkout gateway — please update immediately
= 2.19.6: March 31st, 2022 =
* Change: Click in the background when viewing a form in the Form Grid now closes the form
* Fix: Significant improvements to making GiveWP translatable, especially the Donor Dashboard and other JavaScript
* Fix: Forms were not able to be deleted if Recurring wasn't installed, but now they can be!
* Fix: Sensitive information was being stored in the logs in some cases. The information will no longer be stored and logged information was removed.
* Fix: Some PayPal donations were stuck in "processing" status, but now they are properly marked "complete"
* Fix: Transaction ID wasn't being stored for Stripe donations using 3D Secure. Now it's stored and the missing ID's were recovered.
* Fix: The Form Grid now displays the excerpt properly on the Multi-Step form
* Fix: The Donor Wall and Form Grid blocks now look as they should in the block-editor
= 2.19.5: March 11th, 2022 =
* Fix: Resolved issue with PayPal failing to validate for authenticated users
= 2.19.4: March 10th, 2022 =
* Fix: Resolved issue with PayPal failing to validate route after donating
* Fix: Resolved issue with PayPal logo not loading
* Fix: Resolved issue with PayPal donation statuses being set to processing
= 2.19.3: March 4th, 2022 =
* Fix: PayPal Standard donations above 1000 dollars are now working again
* Fix: PayPal IPN URL is now working again
* Fix: Stripe subscriptions with no end were being canceled upon the next renewal when using GiveWP Recurring 1.15.0. This resolves that issue. Please update!
= 2.19.2: March 2nd, 2022 =
* Fix: Resolved issue with connecting to Stripe with API Keys
= 2.19.1: February 25th, 2022 =
* Fix: Added backwards compatibility for Stripe statement descriptors that do not yet meet the new requirements.
= 2.19.0: February 24th, 2022 =
* New: New reactive form table interface. The new forms table responds to your clicks instantly.
* New: Stripe statement descriptors can now be set on a per account basis.
* New: Free add-on offer for folks using the free version of GiveWP without premium add-ons.
* New: More detailed logs are now stored during the donation process. A powerful tool to help you troubleshoot any issues your donors might have with donating.
* New: A refactored Payment Gateway API. The makes integrating custom gateways with GiveWP easier than ever before.
* Change: Added subscription logic to allow gateways to support recurring in a more consistent manner. Make sure to update to the latest version of Recurring Donations as well.
* Change: Updated Stripe and PayPal gateways to use the new Payment Gateway API.
* Fix: Prevent fatal error on PHP 8 when a form's goal is empty
* Fix: Ensured translation domains were consistent
* Fix: Resolved console error for missing admin CSS files
* Fix: Tributes using "button" display now show up correctly on Multi-Step and Classic templates
* Fix: The "Payment Amount" section consistently reflect the amount when the donor changes to a custom amount
= 2.18.1: February 2nd, 2022 =
* Fix: On Classic template the payment fields didn't show up when there was only one active gateway, and now they do!
= 2.18.0: January 19th, 2022 =
* New: Shiny new Classic Form Template! Check it out!
* New: New Gateway API under the hood for integrating with payment gateways. Developer docs to come!
* Change: Only warnings and errors are logged unless WP_DEBUG_LOG is enabled
* Change: Increased the default donation goal to $10,000, because who couldn't use $10k?
* Fix: Currency symbol now displays correctly when using Currency Switcher
* Fix: Donation Summary now works properly with admin-defined recurrence
* Fix: Avoid PayPal IPN errors when using test mode
= 2.17.3: January 17th, 2022 =
* Security: Minor XSS vulnerabilities, which require admin access to exploit, have been resolved
= 2.17.2: December 28th, 2021 =
* Fix: Only validate email settings that are not empty
= 2.17.1: November 23rd, 2021 =
* Fix: Took care of an annoying babel-polyfill 404 in the JavaScript console
= 2.17.0: November 18th, 2021 =
* New: Shiny new add-ons page in the admin for exploring our latest add-ons and plans!
* New: Donation Summary section for Multi-Step form! Enable it for existing forms in the Form Template Options for each form!
= 2.16.2: November 11th, 2021 =
* New: Donations made via PayPal Donations are now marked as donation in PayPal; also added a setting if you need to change it back
* Fix: Take care of some notices when editing a form and in onboarding — friendly reminder NOT to display PHP warnings on production!
* Fix: Got rid of another notice when using checkboxes in the Fields API
= 2.16.1: November 2nd, 2021 =
* Fix: Resolved Multi-Step Form PHP 7.2 and lower compatibility issue
= 2.16.0: October 24th, 2021 =
* New: You can now disable google font for Multi-Step form within the form options
* New: Conditional fields are now possible in the Field API (useful in new Form Field Manager update!)
* Fix: Give icons in Gutenberg block admin UI now display correctly in Firefox
* Fix: Resolved issue where a minimum donation error was not showing up properly
= 2.15.0: October 11th, 2021 =
* New: There is a new option for making the Donor Last Name field required
* Changed: Sending a preview email now gets send to the email of the user triggering the preview
* Changed: Improved Donor Dashboard messages with improved clarity for donors
* Changed: Donor Dashboard only displays user/password fields if registration is enabled
* Changed: PayPal IPN Verification is now enabled by default for better security
* Fix: Simplified PayPal IPN Verification to avoid failure when there wasn't any
* Fix: Further improvements for PHP 8 compatibility
* Fix: Donors can now properly set custom amounts in their Donor Dashboard
* Fix: Corrected Lifetime and Average donation amount formatting in Donor Dashboard
* Fix: Restored PHP 5.6 compatibility when running GiveWP WP CLI commands
* Fix: Offline gateway custom label now shows up properly in donation form
* Fix: Offline donation instructions don't show up if specific form disables gateway
* Fix: Various fixes to the internal Field API
= 2.14.0: September 21st, 2021 =
* New: A lot of improvements to the Fields API in preparation for Peer-to-Peer!
* Fix: Corrected a notice when using offline donations
* Fix: Improved decimal formatting in the Multi-Step amount buttons
* Fix: Social sharing works properly again after making a donation
* Fix: Payment ID in donation email preview correctly reflects the sequenced ID
* Fix: Connecting to Stripe on PHP 8 no longer throws an error... it just connects
= 2.13.4: September 3rd, 2021 =
* Fix: Corrected a migration introduced in the last release that had a chance of removing donation level data
= 2.13.3: September 1st, 2021 =
* Fix: Resolved rare issue with Revenue not storing properly on donation form created during onboarding
* Fix: Donor selecting "Custom" donation amount now focuses on the amount field
= 2.13.2: August 26th, 2021 =
* Fix: Resolved issue where donation forms failed to submit when Stripe was disabled
= 2.13.1: August 20th, 2021 =
* Fix: Resolved issue where donations with a custom amount changed after a payment error
* Fix: Customizer is no longer broken
= 2.13.0: August 19th, 2021 =
* New: Fresh new UI for managing Stripe accounts
= 2.12.3: August 12th, 2021 =
* Fix: Resolved issues some donors were having updating subscription cards or amount from Donor Dashboard
* Fix: Primary color picker for multi-step form remains visible if Step 1 is disabled
* Fix: Replace Legacy Form placeholder with nice, instructive image
* Fix: Improve styling for admin-defined recurring donations on multi-step form
* Fix: Improve styling for Authorize.net eCheck on multi-step form
* Fix: Payment errors no longer revert custom donation amounts
= 2.12.2: July 30th, 2021 =
* New: Improvements to the Onboarding Wizard
* New: Minor improvements to the Fields API
* Fix: An admin deleting a donor's donation no longer reveal other donor's donations to them in the Donor Dashboard
= 2.12.1: July 22st, 2021 =
* Fix: Resolved an issue with admin-defined recurring options showing up as a bunch of HTML
= 2.12.0: July 21st, 2021 =
* New: Compatible with the upcoming [GiveWP - Text-to-Give](https://go.givewp.com/t2g) release!
* Change: Various style improvements for accessibility within the admin
* Fix: Improved compatibility with PHP 8, resolving various warnings and deprecation notices
* Fix: Rare issue of disabling custom donation amounts causing a missing field in donation deatils is resolved
* Fix: Got rid of "Unsupported declare strict_types" warning
= 2.11.3: July 6th, 2021 =
* Fix: Important fix which makes sure that givewp.com downtime cannot affect the uptime of customer sites
= 2.11.2: June 8th, 2021 =
* Fix: Our new system for logging exceptions now handles critical errors better
* Fix: Uninstalling GiveWP no longer throws an exception
= 2.11.1: May 24th, 2021 =
* New: You can now enable billing details for PayPal Donations in Settings > Payment Gateways > PayPal
* Fix: Donor Dashboard is *really* translatable this time. Honestly.
= 2.11.0: May 19th, 2021 =
* New: Multi-Step form template has a new setting to enable showing decimals in amounts
* New: Donor Dashboard is now fully translatable
* Changed: Indian state of Odisha (formerly Orissa) is now updated to reflect legal name change
* Changed: Onboarding includes KR (Repulic of Korea) currency option
* Changed: Removed legacy option to custom load Stripe SDK as it no longer did anything
* Fix: Editing a donor's address no longer removes spacing between words
* Fix: All email templates can now be disabled
* Fix: Applying Fee Recovery now correctly handles cent rounding in Stripe
* Fix: Importing donations now works on all main browsers
= 2.10.4: April 29th, 2021 =
* Security: Resolved Authorized XSS vulnerability - note, you had to be logged in as admin to exploit it
* Changed: Removed PHAR files from vendor directory to meet wp.org standards
* Changed: Switched to using WP HTTP remote functions to meet wp.org standards
* Fixed: Improved escaping in a few places to improve security
* Fixed: Corrected is_give_form() post type so it once again works
= 2.10.3: April 21st, 2021 =
* Fixed: Authentication now works more reliably for the Donor Dashboard on different hosts
* Fixed: Nonces were added to the Donor Dashboard for additional authentication and security
* Fixed: Donors without WP accounts are now able to upload avatar images
* Fixed: Logging out from Donor Dashboard works reliably
* Fixed: Renewals were falsely marked as test donations; it was superficial, but is now correct
= 2.10.2: April 14th, 2021 =
* Changed: Stripe fee does not apply to Brazil due to Stripe limitations
* Fixed: Migration for creating the logs table is now compatible with MySQL 5.5 and up
* Fixed: When an authentication error occurs on the Donor Dashboard the user can no longer see others' donations
* Fixed: Made sure that under no circumstances can logging cause an exception... to avoid irony
* Fixed: Activating GiveWP will now generate a Donor Dashboard page ONLY if one does not already exist
= 2.10.1: March 30th, 2021 =
* Fixed: Fatal error triggered by the Donor Dashboard on PHP 5.6
* Fixed: Donations to Revenue table migration where migration got stuck on error
* Fixed: Broken email tag link in description
* Fixed: Cleared up PHP notices on system info page
* Fixed: GiveWP Database management tool is now backwards compatible to MySQL 5.5
* Fixed: Cleaned up extra .git directories that got included in vendors
* Fixed: Donor search no longer shows undefined index notice
* Fixed: Fatal error thrown on page/post edit screens when migration table creation failed
* Fixed: Donor Dashboard now works properly on hosts with aggressive page caching
* Fixed: Donor Dashboard is only generated by admins in the admin-side, not other users by accident
= 2.10.0: March 22nd, 2021 =
* New: Donor Profile block with a whole new experience for donors to view and manage their donations
* New: Rebuilt log system from the ground up for better log viewing and database management
* New: Migration tool for viewing all GiveWP migrations and troubleshooting them
* Fixed: Paypal Donations now sends Form title to PayPal for use in receipts
* Fixed: PayPal Donations now works properly with forms using the "Button" Display Option.
* Fixed: Form logins now work properly with the PayPal Donations gateway
= 2.9.7: February 9th, 2021 =
* Fixed: Using CLI commands no longer throws a fatal error due to a missing dev package
* Fixed: When guest registration is disabled the checkbox to create an account is hidden
* Fixed: Multi Form Goal component no longer throws an error when used in Divi
* Fixed: Corrected some styles in the Setup Page for gateway links
= 2.9.6: January 13th, 2021 =
* New: Additional logging and improved messaging for PayPal Donations onboarding
* New: Added ability to adjust gravatar size for the Donor Wall block
* Fixed: Personal information field icons are preserved when switching payment gateways
* Fixed: Fee Recovery checkbox no longer has weird visual glitches on hover
* Fixed: Corrected missing borders for PayPal Donation credit card fields in Firefox
* Fixed: The form title is now reflected in PayPal for donations made through PayPal Donation
* Fixed: Resolved an error where some servers had a trouble with the autoloader using a relative path
* Fixed: Made sure that caching does not cause donations to incorrectly show up as pending in receipt
* Fixed: Create an Account checkbox only shows up when Guest Checkout is enabled
* Fixed: Form fields now preserve their values when the payment gateway changes
* Fixed: Took care of a few cross-browser compatibility issues with the multi-step form
* Fixed: Stopped taps from registering as double-clicks on checkboxes in donation forms
* Fixed: Multi-Form Goals added via shortcode now stack image and text when needed
* Fixed: Foreign keys are no longer used on Give tables and are now removed
* Fixed: Give Aid description popup now works properly on Multi-Step forms
= 2.9.5: December 3rd, 2020 =
* New: Added Jamaica to list of countries for onboarding
* Fixed: Currency Switcher options display correctly on Windows machines
* Fixed: Corrected style issues in Multi-Step forms on iOS devices
* Fixed: Restored compatibility with WP versions prior to 5.1.1
= 2.9.4: November 20th, 2020 =
* Fixed: Revenue database migration for donations with an amount of 0 now work
* Fixed: Restored compatibility with versions of WP prior to 5.5 when deleting donations
* Fixed: Stripe single-input credit card fields work once again
* Fixed: Donor's updating the card of Stripe subscriptions work again
= 2.9.3: November 17th, 2020 =
* Fixed: Stripe Credit Card donations now work when it is not the default gateway
* Fixed: Stripe Checkout Modal are working again as well
* Fixed: A MigrationRunner warning no longer displays on fresh installs and sites upgrading from 2.8.0
= 2.9.2: November 9th, 2020 =
* New: Added a method for manually triggering migrations to re-attempt failed migrations
* Fixed: Resolved an issue when creating donations for currencies with different decimal ranges
* Fixed: Free add-ons no longer cause license errors
* Fixed: Resolved issue that prevented some donors from updating their subscription card or amount
* Fixed: Stripe Modal now renders without any issues on different screen sizes
* Fixed: Recover donation form to be ready for a retry after Stripe error
* Fixed: Multi-step form now reflects form color when embedded on a page
* Fixed: MultiForm Goal shortcode now supports comma separated lists
* Fixed: Resolved issue with revenue table migration failing on MyISAM tables
= 2.9.1: October 28th, 2020 =
* Fixed: Restore PayPal Standard functionality that was affected by a name change in GiveWP 2.9.0 (#5414)
* Fixed: Restore compatibility with WordPress 4.9
= 2.9.0: October 27th, 2020 =
* Added: New [PayPal Donations](https://givewp.com/lps/paypal-donations) gateway allows your donors to give using Debit or Credit Cards directly on your website with no additional fees
* Added: New Multi-form Goal block combines progress from multiple donation forms towards a common goal
* Added: Company Name can now be displayed on Donor Wall (#5374)
* Added: Multi-step form styles are now compatible with Currency Switcher (#5220)
* Changed: New database table handles revenue independently from donations for improved performance (#5257)
* Fixed: Imported donations do not affect donation levels anymore (#5410)
* Fixed: Reports for "All Time" are now inclusive of the first day (#5400)
* Fixed: Tabbing through credit card fields now works in the expected order (#5380)
* Fixed: Legacy form loading spinner no longer stutters (#5397)
* Fixed: Field description text is now accessible and aligned (#5396)
= 2.8.1: October 8th, 2020 =
* Fixed: Donations now process for non-US countries using billing details [#5355](https://github.com/impress-org/givewp/pull/5355)
= 2.8.0: August 31st, 2020 =
* Added: Onboarding Wizard guides new users through first-time configuration. [#5014](https://github.com/impress-org/givewp/pull/5014)
* Added: Setup Page clarifies required steps that must be completed prior to accepting live donations. [#5014](https://github.com/impress-org/givewp/pull/5014)
* Added: Multi-step forms now support RTL styles. [#5196](https://github.com/impress-org/givewp/pull/5196)
* Changed: Stripe Checkout modal is now rendered using Stripe Elements so that users can continue to use the modal display style even after it is deprecated by Stripe. [#4964](https://github.com/impress-org/givewp/pull/4964)
* Changed: Default minimum donation amount is increased from $1.00 to $5.00 to help prevent card testing spam. [#5120](https://github.com/impress-org/givewp/pull/5120)
* Changed: Optional fields in the Multi-Step form template are denoted to appear distinct from required fields. [#5157](https://github.com/impress-org/givewp/pull/5157)
* Removed: Old Welcome Page has been removed in favor of the new Onboarding Wizard & Setup Page. [#5014](https://github.com/impress-org/givewp/pull/5014)
* Removed: Admin notice animation has been removed. [#5182](https://github.com/impress-org/givewp/pull/5182)
* Fixed: Deprecated jQuery warnings no longer appear when jQuery Migrate Helper plugin is active. [#5184](https://github.com/impress-org/givewp/pull/5184)
* Fixed: The `[give_receipt]` shortcode is more compatible alongside other shortcodes, which is especially relevant for page builders. [#5044](https://github.com/impress-org/givewp/pull/5044)
* Fixed: Resolved style and JS issues in WordPress 5.5+ with GiveWP's WP-admin metabox expand/collapse and repeater elements. [#5126](https://github.com/impress-org/givewp/pull/5126)
* Fixed: A `register_rest_route` notice no longer displays when creating a new page in the block editor. [#5115](https://github.com/impress-org/givewp/pull/5115)
* Fixed: Multi-step form anonymous donation checkbox is now checkable after changing the payment gateway. [#5191](https://github.com/impress-org/givewp/pull/5191)
* Fixed: Fee Recovery checkbox placement in Multi-Step forms now respects the Fee Recovery input location setting. [#5205](https://github.com/impress-org/givewp/pull/5205)
* Fixed: Form Field Manager controls are now set up on init of the Multi-Step form to ensure they work with only a single gateway enabled. [#5216](https://github.com/impress-org/givewp/pull/5216)
= 2.7.5: August 11th, 2020 =
* New: Form Templates now support all permalink configurations (or lack there of), including the default value of "plain". [#4952](https://github.com/impress-org/givewp/issues/4952)
* New: The Donations search bar now allows you to search by like keywords for rather than exact match which makes it a lot easier to find proper results. [#4994](https://github.com/impress-org/givewp/issues/4994)
* Fix: Revamped the logic for requiring Postal / Zip codes for countries that do not have postal codes. [#5006](https://github.com/impress-org/givewp/issues/5006)
* Fix: Resolved an issue when using the Multi-Step donation form with the first step disabled would cause the donor to auto-scroll incorrectly on page load. [#5004](https://github.com/impress-org/givewp/issues/5004)
* Fix: Resolved a database table creation issue for new installs due to bug within our new bootstrapping process. [#5017](https://github.com/impress-org/givewp/issues/5017)
* Fix: Ensure that the "Title Prefixes" maintain the order of values when saved. [#4992](https://github.com/impress-org/givewp/issues/4992)
* Fix: The "Donation Form" Block can now properly be re-selected when it's using the new Multi-Step donation form template and the admin loses focus on the block. [#5017](https://github.com/impress-org/givewp/issues/5017)
= 2.7.4: August 4th, 2020 =
* Fix: The uninstall process in v2.7.3 previously resulted in a fatal error due to a change made in the plugin's bootstrapping process. [#4981](https://github.com/impress-org/givewp/issues/4981)
= 2.7.3: July 29th, 2020 =
* Fix: The Donation Reports were not correctly calculating renewals processed via the Recurring Donations add-on leading to incorrect figures. [#4883](https://github.com/impress-org/givewp/issues/4883)
* Fix: The new Multi-Step Form Template was not correctly marking donations as anonymous if the donor elected to give anonymously. [#4959](https://github.com/impress-org/givewp/issues/4959)
* Fix: Reports have been improved to account for the use of a comma as the currency decimal separator. Previously, when using a ',' as the decimal separator for a currency, it produced inconsistent errors in terms of decimal placement for totals displayed on the Reports page. Furthermore, using a ',' for the decimal separator resulted in consistent misplacement of the decimal in the Average Donations totals. [#4926](https://github.com/impress-org/givewp/issues/4926)
* Fix: The Chosen select dropdown field now can properly have separate values and labels. [#4943](https://github.com/impress-org/givewp/issues/4943)
* Fix: Fixed a typo in the default Thank You page content for the new Multi-step Form Template. [#4909](https://github.com/impress-org/givewp/issues/4909)
* Fix: The `give_get_meta` filter had a duplicate parameter passed and now properly passes all parameters. [#4464](https://github.com/impress-org/givewp/issues/4464)
= 2.7.2: July 6th, 2020 =
* Fix: The 2.7.0 upgrade routine could cause WP-Admin to be incorrectly redirected to the update success screen for certain hosting environments after completion. [#4900](https://github.com/impress-org/givewp/issues/4900)
* Fix: The Donor Wall shortcode now allows you to properly only display certain donors by their donor IDs. [#4864](https://github.com/impress-org/givewp/issues/4864)
* Fix: Improved the Multi-Step Form Template styles when only one gateway is active. Previously the "Donate Now" button wouldn't be properly centered aligned and checkboxes could be a smaller width than the container. [#4882](https://github.com/impress-org/givewp/issues/4882)
* Fix: Provided support for the "Anonymous Donations" checkbox within the new Multi-step Form Template. [#4888](https://github.com/impress-org/givewp/issues/4888)
* Fix: The "Terms and Conditions" checkbox can now be properly scrolled on mobile devices. [#4899](https://github.com/impress-org/givewp/issues/4899)
* Fix: When Google Pay was the default gateway a notice would incorrectly display in the new donation form template. [#4879](https://github.com/impress-org/givewp/issues/4879)
= 2.7.1: June 30th, 2020 =
* Fix: Resolved an issue with the 2.7.0 releasing causing the Form Grid shortcode to not render due to a PHP fatal error. [#4877](https://github.com/impress-org/givewp/issues/4877)
* Fix: Updated a JavaScript version to the latest to prevent browser caching from causing the Reports widgets to not function until a hard browser refresh. [#4876](https://github.com/impress-org/givewp/pull/4876)
= 2.7.0: June 29th, 2020 =
* New: We're excited to announce a new way to create your donation forms called "Form Templates". The first template is allows you to create a highly customizable multi-step donation form where you control all the text, colors, and images in place. Be sure to update to the latest version of your add-ons for full compatibility. [Read more about Form Templates](https://go.givewp.com/wpgivewp27)
* New: Multiple Stripe Account is here! Now you can connect to multiple Stripe accounts and set them per donation form. That means organizations, like charities with chapters or schools with clubs that need to raise money online, can create different forms to accept donations through separate Stripe accounts. [Read more about Stripe Multi-Accounts](http://docs.givewp.com/stripe-free)
* New: Our Gutenberg blocks' UI was improved so they are have a better user experience.
* Tweak: Previous to this release we were packaging two TCPDF packages for backwards compatibility reason. We removed one of the packages and now are relying on the composer package. This means that you'll need to be running the PDF Receipts version add-on at 2.3.4 or higher for compatibility. [#4656](https://github.com/impress-org/givewp/pull/4656)
* Fix: If you install GiveWP and didn't configure anything there would be a JavaScript error on the frontend if Stripe is not connected but enabled, which it is by default for new installs. [#4709](https://github.com/impress-org/givewp/pull/4709)
* Fix: Improved how reports are rounding percentages so that the trend comparisons are more accurate. [#4766](https://github.com/impress-org/givewp/issues/4766)
* Fix: Monaco doesn't have states so don't display or require a state field when that country is selected. [#4773](https://github.com/impress-org/givewp/pull/4773)
* Fix: Properly internationalized a tooltip in Stripe so translations properly display. [#4677](https://github.com/impress-org/givewp/pull/4677)
* Fix: The "Add-ons" like on the plugin activation welcome screen was broken. [#4843](https://github.com/impress-org/givewp/pull/4843)
* Fix: Resolved a caching conflict with WP Rocket that was preventing donation forms from being cached properly. [#4546](https://github.com/impress-org/givewp/pull/4546)
* Fix: Prevented a fatal error that could occur on the Donor profile screen in WP-Admin when the Stripe add-on is active but no Stripe payment gateways are enabled. [#4787](https://github.com/impress-org/givewp/pull/4787)
= 2.6.3: May 19th, 2020 =
* New: Added a new payment gateway for Stripe called BECS Direct Debit payments for Australia. This includes support for one time and subscription payments. Note: Subscription payments are only supported via the Recurring Donations add-on. [#4590](https://github.com/impress-org/givewp/issues/4590)
* Fix: Improved Stripe's error handling so that the error output is more descriptive of the actual problem and donations are not marked as complete if the card is denied by Stripe. [#4689](https://github.com/impress-org/givewp/issues/4689)
* Fix: When viewing legacy reports and filtering data you would incorrectly be redirected to the new reports screen instead of seeing filtered report data. [#4644](https://github.com/impress-org/givewp/issues/4644)
* Fix: The alignment of the money fields were off a few pixels on the donation form settings screen. [#4638](https://github.com/impress-org/givewp/issues/4638)
* Fix: Modified pro license logic so that old license keys saved to the database don't cause incorrect notices to display. [#4669](https://github.com/impress-org/givewp/issues/4669)
* Fix: Updated the country select dropdown to remove missing and incorrect countries. [#4745](https://github.com/impress-org/givewp/issues/4745)
* Fix: Dates for the donor wall now output the properly translated date. [#4721](https://github.com/impress-org/givewp/issues/4721)
* Fix: Several field descriptions in the plugin settings had typos and / or required clarity for better understanding. [#4649](https://github.com/impress-org/givewp/issues/4649), [#2808](https://github.com/impress-org/givewp/issues/2808)
* Tweak: Replaced the default placeholder image that was using placehold.it image for a local image for improved support. [#4743](https://github.com/impress-org/givewp/issues/4743)
= 2.6.2: April 1st, 2020 =
* Fix: Resolved an issue with Stripe in the latest release which prevented the donation form from properly redirecting to the donation receipt page upon successful donation. [#4605](https://github.com/impress-org/givewp/issues/4605)
* Fix: Modified how we compare values in Stripe's gateway JavaScript to prevent a Payment Intent error from happening for certain configurations. [#4604](https://github.com/impress-org/givewp/issues/4604)
= 2.6.1: March 30th, 2020 =
* New: Stripe now has the SEPA Direct Debit gateway integrated. This is a popular payment option in Europe and can be used to accept one-time and recurring donations. [#4571](https://github.com/impress-org/givewp/issues/4571), [#4313](https://github.com/impress-org/givewp/issues/4313)
* Fix: The new Reports screen was not properly caching results which would cause delays in pulling data on larger sites or small resource servers. [#4514](https://github.com/impress-org/givewp/issues/4514)
* Fix: The new Reports screen was having issues with certain currency formats which resulted in inaccurate figures. [#4537](https://github.com/impress-org/givewp/issues/4537), [#4559](https://github.com/impress-org/givewp/issues/4559)
* Fix: Resolved an issue with the new Reports interface throwing a few PHP notices. [#4515](https://github.com/impress-org/givewp/issues/4515), [#4593](https://github.com/impress-org/givewp/issues/4593), [#4592](https://github.com/impress-org/givewp/issues/4592)
* Fix: Adjusted our Gutenberg styles so that it doesn't conflict with WordPress'. [#4577](https://github.com/impress-org/givewp/issues/4577)
* Fix: Resolved an error when using Stripe's Checkout feature with the Recurring Donations causing "The Stripe Gateway returned an error while creating the Checkout Session" error. [#4566](https://github.com/impress-org/givewp/issues/4566)
* Fix: Resolved an issue with user roles that would display the "Donations" top level menu item in WP-Admin incorrectly to subscribers. Note: none of the screens would be accessible. [#4524](https://github.com/impress-org/givewp/issues/4524)
* Fix: Solved an issue where Stripe payments with the form grid not rendering correctly when opening and closing donation forms in the popup modal window. [#4467](https://github.com/impress-org/givewp/issues/4467)
* Fix: The "Title" field would not correctly display as optional (the asterisk would not remove) when set as optional. [#4510](https://github.com/impress-org/givewp/issues/4510)
= 2.6.0: March 4th, 2020 =
* New: The Reporting feature of GiveWP has undergone a major enhancement. Now reports display using a much improved visual charting interface with a breakdown of income, donors, top donation forms, and more. [#1525](https://github.com/impress-org/givewp/issues/1525), [#4330](https://github.com/impress-org/givewp/issues/4330)
* New: The WP-Admin dashboard Donation Report widget for GiveWP has also undergone a major improvement. Now you can get a high-level overview of your donations for the day, week, or month from directly in you dashboard. [#4370](https://github.com/impress-org/givewp/issues/4370)
* New: The Akismet SPAM feature has been improved with logs for admins to better understand why an email has been flagged as SPAM as well as a new Whitelist setting for them to allow email addresses to bypass the check. [#4110](https://github.com/impress-org/givewp/issues/4110)
* Fix: Resolved an issue with the "Recalculate Income Amount and Donation Counts for a Form" not accurately recalculating when using Currency Switcher add-on. [#4447](https://github.com/impress-org/givewp/issues/4447)
* Fix: Resolved an issue with large databases with more than 13,000 donors receiving a fatal error when viewing the donor's list screen. [#4444](https://github.com/impress-org/givewp/issues/4444)
* Tweak: You can now activate any plugin within the GiveWP Licenses tab. This resolves an issue with "this plugin does not have a valid header" error admins were receiving. [#4443](https://github.com/impress-org/givewp/issues/4443)
* Tweak: Updated the `[give_login]` shortcode text output to "Username or Email Address" to match WP's login. Note: you have been able to always log in using email but now the text accurately reflects that. [#4434](https://github.com/impress-org/givewp/issues/4434)
= 2.5.13: January 15th, 2020 =
* Fix: Resolved an issue when using button mode of multiple donation buttons appearing incorrectly within shortcodes, blocks, and widgets. [#4379](https://github.com/impress-org/givewp/issues/4379)
* Fix: Correct an ordering issue with the form grid when sorting by "Form Title" it was using the slug rather than the actual donation form title. [#4392](https://github.com/impress-org/givewp/issues/4392)
* Fix: Removed deprecated usage of `wp.components.ServerSideRender` in our Gutenberg blocks. [#4402](https://github.com/impress-org/givewp/issues/4402)
* Tweak: Refactored the `give_doing_it_wrong()` function so that it properly displays Give-specific messages for developers. [#2572](https://github.com/impress-org/givewp/issues/2572)
= 2.5.12: December 31st, 2019 =
* Fix: Resolved an issue with donation receipt emails and admin notifications not being sent out properly when a new donation is made. The cause of the issue was a security permission check incorrectly put in place in the previous version that was unable to be bypassed by new donors. We've reverted that change and fully tested to ensure emails are working as expected again. [#4379](https://github.com/impress-org/givewp/issues/4379)
= 2.5.11: December 23rd, 2019 =
* Fix: Activating Give created a minor style conflict with the Gutenberg editor slightly pushing down some buttons. This has been resolved by refactoring the styles so they no longer conflict with WP Core elements. [#4354](https://github.com/impress-org/givewp/issues/4354)
* Fix: Sorting donation payments by taxonomy would result in AJAX fails in JavaScript. [#2976](https://github.com/impress-org/givewp/issues/2976)
* Improvement: New unit test added to test for the `give_verify_minimum_price()` function. [#3232](https://github.com/impress-org/givewp/issues/3232)
* Refactor: Removed duplicate code for fetching donor addresses to improve performance. [#3253](https://github.com/impress-org/givewp/issues/3253)
* Refactor: We removed the old notes column from the donor table now that that data has long been migrated over to a custom tables' column. [#3632](https://github.com/impress-org/givewp/issues/3632)
* Fix: Improved responsiveness in the donation forms list screen by preventing the copy shortcode button from overlapping with other columns on smaller screens. [#4090](https://github.com/impress-org/givewp/issues/4090)
* Fix: Ensure that empty donation receipt emails can not triggered incorrectly. [#4185](https://github.com/impress-org/givewp/issues/4185)
* Refactor: Adjusted meta capabilities so that they are not assigned to roles. [#4212](https://github.com/impress-org/givewp/issues/4212)
* Fix: Improved `give_send_back_to_checkout()` redirect functionality with `add_query_arg()` and `remove_query_arg()` for a dramatically simpler solution that provides for WordPress installed in a subdirectory. Thanks @luizbills for the contribution! [#4311](https://github.com/impress-org/givewp/issues/4311)
* Fix: Resolved several style issues with WordPress 5.3+'s new admin changes. [#4315](https://github.com/impress-org/givewp/issues/4315)
* Fix: The UK's County field is no longer required. This change is based on customer feedback this field should not be required. [#4316](https://github.com/impress-org/givewp/issues/4316)
* Fix: Resolve updates not showing up without a manual refresh of licenses. Previously add-on updates would be checked every few weeks. Now they are checked on every 48 hours. [#4318](https://github.com/impress-org/givewp/issues/4318)
* Fix: Resolved an error with Stripe that would occur if an existing donor would make a new donation using a different credit card. The error "The customer does not have a payment method with the ID..." will no longer appear now and donations will process as expected. [#4328](https://github.com/impress-org/givewp/issues/4328)
* Fix: Resolved an issue with Stripe Checkout if you chose to load scripts in the footer would result in a redirect loop depending on your set up. [#4329](https://github.com/impress-org/givewp/issues/4329)
* Fix: When clicking on the modal popup button it would previously be hidden from the DOM which could result in background jumpiness. Now the button is not hidden which leads to better theme compatibility. [#4352](https://github.com/impress-org/givewp/issues/4352)
* Fix: Corrected an broken URL in the in add-ons header. [#4307](https://github.com/impress-org/givewp/issues/4307)
= 2.5.10: October 28th, 2019 =
* Fix: Resolved an issue with Stripe Checkout 2.0 and featured images not properly displaying for certain WP installs. [#4281](https://github.com/impress-org/givewp/issues/4281)
* Fix: Optimized and resolved a number of scenarios regarding donors updating credit cards with the Stripe payment gateway. Now when comparing the card's fingerprint the plugin also checks the expiration date and CVC and updates the card in Stripe if it has changed. [#4280](https://github.com/impress-org/givewp/issues/4280)
* Fix: The Stripe 2% application fee is not ever charged with the new Checkout 2.0 if you are using the Premium gateway add-on. [#4287](https://github.com/impress-org/givewp/issues/4287)
* Fix: Resolved an issue with the `{receipt_link_url}` not working when using the plain text email option. [#4284](https://github.com/impress-org/givewp/issues/4284)
= 2.5.9: October 15th, 2019 =
* New: Added a new filter `give_donation_form_submit_button_text` for developers. Thanks @mcdonagg! [#4269](https://github.com/impress-org/givewp/issues/4269)
* Fix: Resolved an edge case update conflict with Stripe and Recurring which could cause a fatal error for some installs. [#4272](https://github.com/impress-org/givewp/issues/4272)
* Fix: Corrected an edge case issue with Stripe Credit Card fields not appearing properly after updating. [#4274](https://github.com/impress-org/givewp/issues/4274)
* Fix: Improved the layout of the Stripe Connect banner for smaller screens. [#4259](https://github.com/impress-org/givewp/issues/4259)
* Fix: Removed space in link to Stripe's webhook documentation. [#4266](https://github.com/impress-org/givewp/issues/4266)
* Fix: Resolved typos in GitHub's readme.md documentation. [#4268](https://github.com/impress-org/givewp/issues/4268)
= 2.5.8: September 26th, 2019 =
* Fix: Resolved an upgrade issue for customers who had enabled the Stripe Credit Card option in GiveWP 2.5.4 and below and Stripe 2.2.0 and below. After upgrading existing donors were not able to change their credit card info and new donors were not able make donations. [#4260](https://github.com/impress-org/givewp/issues/4260)
= 2.5.7: September 20th, 2019 =
* Fix: Resolved issues with the notice added in the previous version displaying incorrectly for sites that do not have Recurring Donations installed or activated. [#4257](https://github.com/impress-org/givewp/pull/4257)
= 2.5.6: September 19th, 2019 =
* Notice: Please update the Recurring Donations add-on to version `1.9.4+` in order to use GiveWP 2.5.5+.
* Fix: Resolved a fatal error occurring if using an outdated version of the Recurring Donations add-on. The plugin will now display a message and deactivate the add-on to prevent the error. If you are experiencing this issue please rollback GiveWP to 2.5.4 or below using the [WP Rollback](https://wordpress.org/plugins/wp-rollback/) plugin and [contact support](https://givewp.com/support/) for prompt assistance. [#4255](https://github.com/impress-org/givewp/pull/4255)
= 2.5.5: September 19th, 2019 =
* New: Added support for Stripe's new Checkout payment method. Now you can accept payments that support Strong Customer Authentication, Google and Apple Pay, Credit Cards and more! [#4207](https://github.com/impress-org/givewp/issues/4207)
* New: Added the ability to add tabs to settings to more easily break up sections. You can see this within the new Stripe payment gateway settings. [#4202](https://github.com/impress-org/givewp/issues/4202), [#4204](https://github.com/impress-org/givewp/issues/4204)
* New: New hooks have been added to the Stripe gateway for developers to more easily extend. [#4244](https://github.com/impress-org/givewp/issues/4244)
* Tweak: Improved documentation description for the Stripe payment gateway. [#4206](https://github.com/impress-org/givewp/issues/4206)
* Fix: The Stripe SDK only loads now when the gateway is enabled to improve performance and further prevent conflicts. [#4237](https://github.com/impress-org/givewp/issues/4237)
* Fix: Resolved a security issue responsibly disclosed to use by the good folks at [Wordfence](https://www.wordfence.com/). Thanks y'all!
= 2.5.4: August 7th, 2019 =
* New: Stripe compatibility solution - There is now a setting under `Donations > Settings > Advanced > Stripe` that allows you select which implementation of Stripe you wish to use. If you are using another plugin that uses Stripe to accept payments there is a chance that it may include the [Stripe SDK](https://github.com/stripe/stripe-php) (Software Development Kit) either through [Composer](http://getcomposer.org/) or manually initialized. This can cause conflicts with GiveWP because WordPress does not have a dependency management system to prevent conflicts and the other plugins may be using outdated versions compared to GiveWP's. To help resolve conflicts we have included two options to use Stripe alongside these other plugins. The recommended way is Composer, but if that is not working then we recommend manual initialized. If both options do not work please [contact support](https://givewp.com/support). [#4193](https://github.com/impress-org/givewp/issues/4193)
* Fix: When using Stripe there was a chance your donors would get a receipt from Stripe and from GiveWP. There is now a setting to set whether you want to send Stripe generated receipt emails or use GiveWP's. We recommend using ours if you're using multiple gateways, but if you're only using Stripe you may enable this new option and disable the default receipts. [#4203](https://github.com/impress-org/givewp/issues/4203)
* Fix: There was an issue with converting dollars to cents and back within Stripe free which has been resolved and now has unit tests to ensure no more issues crop up with the functional conversions. [#4200](https://github.com/impress-org/givewp/issues/4220)
* Fix: When editing a donor you can now properly remove the "Title" for the donor (such as "Mr", "Mrs", etc). [#4211](https://github.com/impress-org/givewp/issues/4211)
* Fix: Ensure the requirement on the state field is removed from hidden state fields for certain countries and regions. [#4201](https://github.com/impress-org/givewp/issues/4201)
* Fix: Resolved a compatibility issue with the Tickera plugin's implementation of QR codes within the PDF generator. The issue was with our shared library of TCPDF and now the QR codes display correctly due to a constant change on our end. [#3880](https://github.com/impress-org/givewp/issues/3880)
* Tweak: You can now activate any plugin under `Settings > Licenses`. Previously we were requiring the author to only be GiveWP which caused an "this plugin does not have a valid header" error message to annoyingly display. [#4217](https://github.com/impress-org/givewp/issues/4217)
= 2.5.3: July 30th, 2019 =
* Fix: The Gutenberg Block for Donation Forms embedding was only displaying the most recent 10 donation forms. Now you can search for additional forms and they will for embedding. [#4137](https://github.com/impress-org/givewp/issues/4137)
* Fix: iThemes Sync was again having an issue with our plugin due to a change we reverted in a previous version. That change has been resolved and now syncing can commence again. Rejoice! [#4195](https://github.com/impress-org/givewp/issues/4195)
* Fix: Resolved compatibility issues with other plugins using the Stripe SDK by initializing it manually within the included GiveWP Core Stripe gateway class. We tested this alongside many of the most popular plugins to ensure smooth sailing alongside each other. [#4193](https://github.com/impress-org/givewp/issues/4193)
* Fix: Resolved an issue with editing a donation form when it has thousands of donations. To prevent this issue we now are deleting the group cache of the donation and donor instead of individual IDs.
* Fix: Several deprecation notices were displaying for our Gutenberg Blocks. They are now all updated with the latest version of the WP Block Editor. [#4137](https://github.com/impress-org/givewp/issues/4137)
* Fix: The "Empty Trash" button was in an incorrect location on the donation form edit screen and now has been placed in it's proper position. [#4075](https://github.com/impress-org/givewp/issues/4075)
= 2.5.2: July 16th, 2019 =
* Fix: Prevent "PHP Fatal error: Uncaught Error: Cannot use object of type stdClass as array" when updating to 2.5+ on a pre WP 5.0 version. [#4176](https://github.com/impress-org/givewp/issues/4176)
* Fix: Resolved minor appearance issues with the Stripe Connect notice appearance. [#4175](https://github.com/impress-org/givewp/issues/4175)
= 2.5.1: July 12th, 2019 =
* New: Added PHPUnit tests for the important `Give_Payments_Query` query. [#1893](https://github.com/impress-org/givewp/issues/1893)
* Optimization: Improved the WP Admin plugin list page load time by reducing the number of queries generated by the add-on activation banner. [#4112](https://github.com/impress-org/givewp/issues/4112)
* Tweak: Updated the list of counties / states in Ireland to be more accurate. [#4145](https://github.com/impress-org/givewp/issues/4145)
* Tweak: Polished some minor user workflow issues with the license activation functionality. [#4172](https://github.com/impress-org/givewp/issues/4172)
* Fix: Ensured that the notice checking Recurring and Stripe versions would only display for users of Stripe on the particular outdated version and not incorrectly for non-Stripe users. [#4169](https://github.com/impress-org/givewp/issues/4169)
* Fix: Resolve SQL injection vulnerability discovered by Tin Duong from Fortinet's FortiGuard Labs. [Read more](https://fortiguard.com/zeroday/FG-VD-19-098) about the patch and the disclosure. Thanks Tin for responsibly disclosing
= 2.5.0: July 10th, 2019 =
* New: Stripe credit card processing is now available in GiveWP Core for processing one-time (non-recurring) donations! [#4010](https://github.com/impress-org/givewp/issues/4010), [#4011](https://github.com/impress-org/givewp/issues/4011), [#4012](https://github.com/impress-org/givewp/issues/4012), [#4013](https://github.com/impress-org/givewp/issues/4013), [#4013](https://github.com/impress-org/givewp/issues/4013), [#4034](https://github.com/impress-org/givewp/issues/4034), [#4051](https://github.com/impress-org/givewp/issues/4051), [#4076](https://github.com/impress-org/givewp/issues/4076), [#4093](https://github.com/impress-org/givewp/issues/4093)
* New: The licensing interface has been upgraded to provide easier license and add-on activation and to be much more user friendly and reliable. [#2058](https://github.com/impress-org/givewp/issues/2058), [#4008](https://github.com/impress-org/givewp/issues/4008)
* New: The currency setting will now display a preview displaying how it will appear on your donation forms when you update the options. [#3187](https://github.com/impress-org/givewp/issues/3187)
* New: Documentation links have been added to the shortcode builder. [#3233](https://github.com/impress-org/givewp/issues/3233)
* New: The "notes" field has been added to the fields to be exported in the donation export tool. [#3979](https://github.com/impress-org/givewp/issues/3979)
* New: The "Donation Form Grid" block and shortcode can now be filtered by category or tag. [#4056](https://github.com/impress-org/givewp/issues/4056)
* New: Adjusted the headers in GiveWP Core admin styles and adjusted setting screens legibility.
* New: The GiveWP Modal API now supports an option to close the modal when clicking the background. [#4142](https://github.com/impress-org/givewp/issues/4142)
* Fix: Prevent multiple admin ajax calls on the Tools > Exports screen. [#3351](https://github.com/impress-org/givewp/issues/3351)
* Fix: Resolved the "Settings" importer failing when using the JSON format option. [#4097](https://github.com/impress-org/givewp/issues/4097)
* Fix: Added number formatting to goals with a large number of donors. [#4100](https://github.com/impress-org/givewp/issues/4100)
* Fix: Added a max-width to chosen select boxes to prevent them from breaking styles when options have very long titles. [#4099](https://github.com/impress-org/givewp/issues/4099)
* Fix: Improved the logic when an admin disconnects the GiveWP Donor and WP user profiles [#4113](https://github.com/impress-org/givewp/issues/4113)
* Fix: The `give_send_back_to_checkout()` function now works as expected on multisite installs. [#4032](https://github.com/impress-org/givewp/issues/4032)
* Fix: Ensured there are no PHP notices when doing REST API queries. [#4038](https://github.com/impress-org/givewp/issues/4038)
* Fix: Resolved an issue where the state field would appear incorrectly as not required for the default country. [#4144](https://github.com/impress-org/givewp/issues/4144)
* Fix: Admin styles were not appearing correctly if using WP in the French language. [#4146](https://github.com/impress-org/givewp/issues/4146)
* Fix: Resolved an issue with the "Display Type" option for the "Donation Form Grid" not working as expected. [#4159](https://github.com/impress-org/givewp/issues/4159)
* Tweak: The Swiss Franc symbol has been updated to "CHF" instead of "Fr." [#4086](https://github.com/impress-org/givewp/issues/4086)
* Tweak: Removed the word "nonce" from all front end error messages and updated them to be more user friendly and less technically confusing. [#4129](https://github.com/impress-org/givewp/issues/4129), [#4031](https://github.com/impress-org/givewp/issues/4031)
* Tweak: Changed "Swaziland" to "Eswatini". [#4120](https://github.com/impress-org/givewp/issues/4120)
* Optimization: Improved various database option calls and general meta query performance throughout the plugin to speed up queries and reduce server load. [#3359](https://github.com/impress-org/givewp/issues/3359), [#3382](https://github.com/impress-org/givewp/issues/3382), [#3383](https://github.com/impress-org/givewp/issues/3383), [#3872](https://github.com/impress-org/givewp/issues/3872), [#3994](https://github.com/impress-org/givewp/issues/3994), [#4104](https://github.com/impress-org/givewp/issues/4104)
* Refactor: Pre-2.0.0 backward compatibility code has been removed because it has reached end of life for support. [#3033](https://github.com/impress-org/givewp/issues/3033)
= 2.4.7: May 14th, 2019 =
* Security Patch: Prevent Stored XSS vulnerability in donor names by adding additional escaping to ensure security when viewing donor records in WP-Admin. We take security seriously and would like to thank GoDaddy and Sucuri for reporting and assisting with this fix. Thanks also to the WordPress Plugin Review Team for allowing a force push of all security patches to protect all GiveWP users. For more detailed information see here: https://blog.sucuri.net/2019/05/wordpress-plugin-give-stored-xss-for-donors.html
= 2.4.6: May 7th, 2019 =
* Fix: Resolved an issue displaying donations in WP-Admin made when the WordPress install's date format is set to "d/m/Y". [#4088](https://github.com/impress-org/givewp/issues/4088)
* Fix: The Donations Exporter tool was not properly respecting the category or tag filters when creating the CSV file. [#4085](https://github.com/impress-org/givewp/issues/4085)
* Fix: When the "Personal Info" fieldset within donation forms was not going full width for mobile views and was difficult to view. The fields properly default to full width for mobile views. [#3751](https://github.com/impress-org/givewp/issues/3751)
* Fix: The `{reset_password_link}` email tag was not working properly for "New Donation" and "Donation Receipt" emails. [#3510](https://github.com/impress-org/givewp/issues/3510)
= 2.4.5: April 16th, 2019 =
* Fix: Resolved two issues with donor and donation exporters not working properly when filters (Date and Donation Forms) were set. [#4078](https://github.com/impress-org/givewp/issues/4078), [#4079](https://github.com/impress-org/givewp/issues/4079)
* Fix: Ensure that the database upgrade process is fully compatible with WP Multisite upgrades. [#4065](https://github.com/impress-org/givewp/issues/4065)
* Fix: Resolved a PHP Fatal error that was occurring when clicking on the "Resend Donation Receipt" within the donation details screen in WP-Admin and also when marking an offline donation as complete. [#4068](https://github.com/impress-org/givewp/issues/4068)
* Fix: The GiveWP API was returning non-valid JSON resulting in Zapier having issues pulling in Sample Data. This has been resolved and an acceptance test created to ensure valid JSON is returned to help prevent it breaking in further releases. [#4071](https://github.com/impress-org/givewp/issues/4071)
* Fix: The GiveWP API now returns consistent amount formats for donations, fees collected, etc. [#4073](https://github.com/impress-org/givewp/issues/4073), [#4074](https://github.com/impress-org/givewp/issues/4074)
= 2.4.4: March 20th, 2019 =
* Fix: Resolved a regression where percentage based goals were not displaying their progress correctly. [#4049](https://github.com/impress-org/givewp/issues/4049)
* Fix: Resolved a regression in `2.4.3` where IE10/11 browsers had issues with donating with multi-level donation forms. [#4048](https://github.com/impress-org/givewp/issues/4048)
* Fix: Corrected a PHP Warning on servers running PHP 7.3.3 within the email tags settings section. [#4044](https://github.com/impress-org/givewp/issues/4044)
* Fix: Resolved conflict with iTheme's Sync plugin. [#3989](https://github.com/impress-org/givewp/issues/3989)
* Fix: Updated the backwards compatible TCPDF version used by older plugin versions to the latest version. [#4054](https://github.com/impress-org/givewp/issues/4054)
= 2.4.3: March 13th, 2019 =
* Fix: Ensure when a donation form's "Registration" option is set to "Login" that it does not appear incorrectly as optional on the donation form. [#4045](https://github.com/impress-org/givewp/issues/4045)
* Fix: Prevent a PHP warning from displaying in the System Info window due to new host detection login in the previous release. [#4041](https://github.com/impress-org/givewp/issues/4041)
* Fix: Ensure that logged in users without donor's associated with their WP users can properly donate. This is a regression fix from the previous version 2.4.2 release. [#4039](https://github.com/impress-org/givewp/issues/4039)
* Fix: Resolved an incompatibility with Elementor's "Finder" functionality. [#3912](https://github.com/impress-org/givewp/issues/3912)
= 2.4.2: March 11th, 2019 =
* Tweak: Adjusted how web hosts are detected in WP-Admin > Donations > Tools > System Info to improve accuracy. [#3356](https://github.com/impress-org/givewp/issues/3356)
* Tweak: Added `get_goal` within the `Give_Donate_Form` for developers. [#4020](https://github.com/impress-org/givewp/issues/4020)
* Fix: License statuses were not properly displaying in WP-Admin > Donations > Tools > System Info and that has been fixed. [#3975](https://github.com/impress-org/givewp/issues/3975)
* Fix: The label "State" incorrectly displayed on the admin donor details screen. [#3995](https://github.com/impress-org/givewp/issues/3995)
* Fix: Resolved a tooltip title that was not translatable. [#3996](https://github.com/impress-org/givewp/issues/3996)
* Fix: Date fields now have better support for international date formats. [#4000](https://github.com/impress-org/givewp/issues/4000)
* Fix: Resolve a mislabeled name attribute for the donation amount field within donation forms. [#4001](https://github.com/impress-org/givewp/issues/4001)
* Fix: Improved support for varying capitalization within donor's emails when a repeat donation happens. This update will prevent case-insensitive matches being incorrectly compared. [#4025](https://github.com/impress-org/givewp/issues/4025)
* Fix: Resolved incorrect setting of the "autocomplete" attribute on certain dropdown fields. [#4028](https://github.com/impress-org/givewp/issues/4028)
= 2.4.1: February 7th, 2019 =
* New: Links to view receipts and subscriptions no longer expire. This prevents unnecessary errors and login screens for donors who attempt to access donations and subscription history. [#3956](https://github.com/impress-org/givewp/issues/3956), [#3963](https://github.com/impress-org/givewp/issues/3963), [#3964](https://github.com/impress-org/givewp/issues/3964)
* Fix: Ensure that browser autofill works for the Billing Country and Address 1 and Address 2 fields. [#3830](https://github.com/impress-org/givewp/issues/3830)
* Fix: Additional checks are now in place to ensure the plugin's custom tables properly are created when upgrading from very old versions. [#3966](https://github.com/impress-org/givewp/issues/3966)
* Fix: The `[give_login]` shortcode's "click here to logout" link to log me out was not correctly working. Now the link properly logs out the user when clicked. [#3957](https://github.com/impress-org/givewp/issues/3957)
* Fix: Resolved an issue with the Donation Form title displaying incorrectly in widgets. [#3947](https://github.com/impress-org/givewp/issues/3947)
* Fix: The API log was not displaying the proper log count for entries. [#3924](https://github.com/impress-org/givewp/issues/3924)
* Fix: JSON files can now properly be uploaded to the Donations importer in WP 5.0+. [#3907](https://github.com/impress-org/givewp/issues/3907)
* Fix: Resolved a conflict with the X theme and accompanying Cornerstone page builder plugin and the Form Grid shortcode on phones and touch devices preventing the modal from opening. [#3905](https://github.com/impress-org/givewp/issues/3905)
* Fix: There was an issue occurring causing the donor to click twice into a donation form field after they entered a custom donation amount. This has been resolved so the donor can immediately click into a form field after leaving a custom amount. [#3889](https://github.com/impress-org/givewp/issues/3889)