Skip to content

Commit 165adfc

Browse files
author
Jon Waldstein
committed
chore: prepare for release 4.13.0
1 parent d18d647 commit 165adfc

File tree

44 files changed

+97
-89
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+97
-89
lines changed

give.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* Description: The most robust, flexible, and intuitive way to accept donations on WordPress.
77
* Author: GiveWP
88
* Author URI: https://givewp.com/
9-
* Version: 4.12.0
9+
* Version: 4.13.0
1010
* Requires at least: 6.6
1111
* Requires PHP: 7.4
1212
* Text Domain: give
@@ -425,7 +425,7 @@ private function setup_constants()
425425
{
426426
// Plugin version.
427427
if (!defined('GIVE_VERSION')) {
428-
define('GIVE_VERSION', '4.12.0');
428+
define('GIVE_VERSION', '4.13.0');
429429
}
430430

431431
// Plugin Root File.

readme.txt

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Tags: donation, donate, recurring donations, fundraising, crowdfunding
55
Requires at least: 6.6
66
Tested up to: 6.8
77
Requires PHP: 7.4
8-
Stable tag: 4.12.0
8+
Stable tag: 4.13.0
99
License: GPLv3
1010
License URI: http://www.gnu.org/licenses/gpl-3.0.html
1111

@@ -273,6 +273,14 @@ You can report security bugs through the Patchstack Vulnerability Disclosure Pro
273273

274274
== Changelog ==
275275

276+
= 4.13.0: November 5th, 2025 =
277+
* Enhancement: Updated the date and time formatting throughout the new admin screens to respect WordPress settings for timezone, date format, and time format
278+
* Fix: Resolved an issue with form field manager checkboxes and conditional logic
279+
* Fix: Resolved an issue with the legacy future status of donations
280+
* Fix: Resolved a compatibility issue with the Divi color pickers default palette setting
281+
* Fix: Resolved an issue with Loco Translate that was preventing custom translation files from being loaded properly
282+
* Dev: Updated the schema for Campaigns and Donations in the v3 REST API
283+
276284
= 4.12.0: October 29th, 2025 =
277285
* New: The admin subscription list table has been upgraded to a new design with additional sorting, filters and statistics
278286
* New: Updated the new admin donor list table with additional filters and sorting

src/API/REST/V3/Routes/Campaigns/GetCampaignComments.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
class GetCampaignComments implements RestRoute
1515
{
1616
/**
17-
* @unreleased add schema
17+
* @since 4.13.0 add schema
1818
* @since 4.0.0
1919
*/
2020
public function registerRoute()
@@ -107,7 +107,7 @@ public function handleRequest($request): WP_REST_Response
107107
}
108108

109109
/**
110-
* @unreleased
110+
* @since 4.13.0
111111
*/
112112
public function getSchema(): array
113113
{

src/API/REST/V3/Routes/Campaigns/GetCampaignRevenue.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ public function mapResultsByDate(array $results, string $groupBy): array
210210
}
211211

212212
/**
213-
* @unreleased update schema to match actual response
213+
* @since 4.13.0 update schema to match actual response
214214
* @since 4.10.0
215215
*/
216216
public function getSchema(): array

src/API/REST/V3/Routes/Campaigns/GetCampaignStatistics.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
class GetCampaignStatistics implements RestRoute
2121
{
2222
/**
23-
* @unreleased add schema
23+
* @since 4.13.0 add schema
2424
* @since 4.0.0
2525
*/
2626
public function registerRoute()
@@ -55,7 +55,7 @@ public function registerRoute()
5555
}
5656

5757
/**
58-
* @unreleased return 404 error if campaign is not found
58+
* @since 4.13.0 return 404 error if campaign is not found
5959
* @since 4.0.0
6060
*
6161
* @throws Exception
@@ -100,7 +100,7 @@ public function handleRequest($request): WP_REST_Response
100100
}
101101

102102
/**
103-
* @unreleased
103+
* @since 4.13.0
104104
*/
105105
public function getSchema(): array
106106
{

src/API/REST/V3/Routes/Campaigns/RegisterCampaignRoutes.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ public function registerDuplicateCampaign()
302302
}
303303

304304
/**
305-
* @unreleased add schema description
305+
* @since 4.13.0 add schema description
306306
* @since 4.9.0 Set proper JSON Schema version
307307
* @since 4.0.0
308308
*/

src/API/REST/V3/Routes/Donations/DonationController.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -505,7 +505,7 @@ public function delete_items($request): WP_REST_Response
505505
}
506506

507507
/**
508-
* @unreleased updated the amount sort columns to CAST as DECIMAL
508+
* @since 4.13.0 updated the amount sort columns to CAST as DECIMAL
509509
* @since 4.6.0
510510
*/
511511
public function getSortColumn(string $sortColumn): string
@@ -621,7 +621,7 @@ public function get_collection_params(): array
621621
}
622622

623623
/**
624-
* @unreleased updated embeddable links
624+
* @since 4.13.0 updated embeddable links
625625
* @since 4.7.0 Add support for adding custom fields to the response
626626
* @since 4.6.0
627627
* @throws Exception
@@ -857,7 +857,7 @@ public function authorizationStatusCode(): int
857857
}
858858

859859
/**
860-
* @unreleased Updated schema to match actual response, add schema description
860+
* @since 4.13.0 Updated schema to match actual response, add schema description
861861
* @since 4.8.0 Change default status to complete
862862
* @since 4.7.0 Change title to givewp/donation and add custom fields schema
863863
* @since 4.6.1 Change type of billing address properties to accept null values

src/API/REST/V3/Routes/Donations/DonationNotesController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,7 @@ public function get_collection_params(): array
361361
/**
362362
* Get the donation note schema, conforming to JSON Schema.
363363
*
364-
* @unreleased add schema description
364+
* @since 4.13.0 add schema description
365365
* @since 4.9.0 Set proper JSON Schema version
366366
* @since 4.7.0 Change title to givewp/donation-note and add custom fields schema
367367
* @since 4.6.0

src/API/REST/V3/Routes/Donations/Fields/DonationFields.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class DonationFields
1818
/**
1919
* Process field values for special data types before setting them on the donation model.
2020
*
21-
* @unreleased update money object format to use value and currency
21+
* @since 4.13.0 update money object format to use value and currency
2222
* @since 4.8.0
2323
*
2424
* @param string $key

src/API/REST/V3/Routes/Donors/DonorController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ public function prepare_item_for_response($item, $request): WP_REST_Response
340340
}
341341

342342
/**
343-
* @unreleased add schema description
343+
* @since 4.13.0 add schema description
344344
* @since 4.9.0 Set proper JSON Schema version
345345
* @since 4.7.0 Change title to givewp/donor and add custom fields schema
346346
* @since 4.4.0

0 commit comments

Comments
 (0)