diff --git a/civicrm.php b/civicrm.php index ccec35030a01cbd77bffeb787f6d278bd607e69e..1bb74ecde86f3bdcaab1ca71fa8dd652c3e99b66 100644 --- a/civicrm.php +++ b/civicrm.php @@ -2,7 +2,7 @@ /** * Plugin Name: CiviCRM * Description: CiviCRM - Growing and Sustaining Relationships - * Version: 5.59.1 + * Version: 5.59.2 * Requires at least: 4.9 * Requires PHP: 7.3 * Author: CiviCRM LLC @@ -36,7 +36,7 @@ if (!defined('ABSPATH')) { } // Set version here: changing it forces Javascript and CSS to reload. -define('CIVICRM_PLUGIN_VERSION', '5.59.1'); +define('CIVICRM_PLUGIN_VERSION', '5.59.2'); // Store reference to this file. if (!defined('CIVICRM_PLUGIN_FILE')) { diff --git a/civicrm/CRM/Contribute/Import/Parser/Contribution.php b/civicrm/CRM/Contribute/Import/Parser/Contribution.php index 535c955621f92f1cc09c6d24337b45bd7ed5b253..33309215f8d9e825269f9201f731c05f701a0023 100644 --- a/civicrm/CRM/Contribute/Import/Parser/Contribution.php +++ b/civicrm/CRM/Contribute/Import/Parser/Contribution.php @@ -810,6 +810,9 @@ class CRM_Contribute_Import_Parser_Contribution extends CRM_Import_Parser { * @throws \CRM_Core_Exception */ protected function processNote(int $contributionID, int $contactID, array $noteParams): void { + if (!$noteParams['note']) { + return; + } $noteParams = array_merge([ 'entity_table' => 'civicrm_contribution', 'entity_id' => $contributionID, diff --git a/civicrm/CRM/Core/Payment/PayPalImpl.php b/civicrm/CRM/Core/Payment/PayPalImpl.php index bbaa04114c5278ef09784337db0addb333b2f318..763e2df050cb9dcc280ca8bd2e3d45ff1bce3a5b 100644 --- a/civicrm/CRM/Core/Payment/PayPalImpl.php +++ b/civicrm/CRM/Core/Payment/PayPalImpl.php @@ -544,7 +544,7 @@ class CRM_Core_Payment_PayPalImpl extends CRM_Core_Payment { public function doPaymentPayPalButton(&$params) { $args = []; - $result = $this->setStatusPaymentPending([]); + $result = []; $this->initialize($args, 'DoDirectPayment'); @@ -606,7 +606,6 @@ class CRM_Core_Payment_PayPalImpl extends CRM_Core_Payment { } /* Success */ - $result = $this->setStatusPaymentCompleted($result); $doQueryParams = [ 'gross_amount' => $apiResult['amt'] ?? NULL, 'trxn_id' => $apiResult['transactionid'] ?? NULL, diff --git a/civicrm/civicrm-version.php b/civicrm/civicrm-version.php index de969090a893f215e75b38dd90f7d54d453ae928..3c7dedc2dbec74e46111befc729afbe75e5caa9b 100644 --- a/civicrm/civicrm-version.php +++ b/civicrm/civicrm-version.php @@ -1,7 +1,7 @@ <?php /** @deprecated */ function civicrmVersion( ) { - return array( 'version' => '5.59.1', + return array( 'version' => '5.59.2', 'cms' => 'Wordpress', 'revision' => '' ); } diff --git a/civicrm/ext/afform/admin/info.xml b/civicrm/ext/afform/admin/info.xml index b90700da8d60452affb977faacc1d5cca32d4b96..66e40fc1cc497ef05761e58b0079f3ac812712ca 100644 --- a/civicrm/ext/afform/admin/info.xml +++ b/civicrm/ext/afform/admin/info.xml @@ -13,7 +13,7 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2020-01-09</releaseDate> - <version>5.59.1</version> + <version>5.59.2</version> <develStage>beta</develStage> <compatibility> <ver>5.59</ver> diff --git a/civicrm/ext/afform/core/info.xml b/civicrm/ext/afform/core/info.xml index 86c44c449191d5ce1113a28f3c8c05a643ecd13b..202cdef8ddc4eeba4b706dbe2f99ba58ee2ce51f 100644 --- a/civicrm/ext/afform/core/info.xml +++ b/civicrm/ext/afform/core/info.xml @@ -13,7 +13,7 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2020-01-09</releaseDate> - <version>5.59.1</version> + <version>5.59.2</version> <develStage>beta</develStage> <compatibility> <ver>5.59</ver> diff --git a/civicrm/ext/afform/html/info.xml b/civicrm/ext/afform/html/info.xml index 64ad632267054c5ce28319c070094dc0ccb69eb5..5b0ecc052066ff3dd4c38bcad6e30793f4dece22 100644 --- a/civicrm/ext/afform/html/info.xml +++ b/civicrm/ext/afform/html/info.xml @@ -13,7 +13,7 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2020-01-09</releaseDate> - <version>5.59.1</version> + <version>5.59.2</version> <develStage>alpha</develStage> <compatibility> <ver>5.59</ver> diff --git a/civicrm/ext/afform/mock/info.xml b/civicrm/ext/afform/mock/info.xml index 2cdc9aba785b69d911ea0fa570ac1427bbfc1ba2..afaa31a6c78a5d570b81d500cd19c9fd86440809 100644 --- a/civicrm/ext/afform/mock/info.xml +++ b/civicrm/ext/afform/mock/info.xml @@ -12,7 +12,7 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2020-01-09</releaseDate> - <version>5.59.1</version> + <version>5.59.2</version> <tags> <tag>mgmt:hidden</tag> </tags> diff --git a/civicrm/ext/authx/info.xml b/civicrm/ext/authx/info.xml index 9b4f950dcc9474edf67e86af9bce4386981cdd7d..59a7435423df69a0b19498b98ea74e645d1364e4 100644 --- a/civicrm/ext/authx/info.xml +++ b/civicrm/ext/authx/info.xml @@ -15,7 +15,7 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2021-02-11</releaseDate> - <version>5.59.1</version> + <version>5.59.2</version> <develStage>stable</develStage> <compatibility> <ver>5.59</ver> diff --git a/civicrm/ext/civicrm_admin_ui/info.xml b/civicrm/ext/civicrm_admin_ui/info.xml index 781457f0145ee062aba5d2b5920a1192a1c46d9f..e062bb4082694154df89f66b9cda1afb571fc3c4 100644 --- a/civicrm/ext/civicrm_admin_ui/info.xml +++ b/civicrm/ext/civicrm_admin_ui/info.xml @@ -15,7 +15,7 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2022-01-02</releaseDate> - <version>5.59.1</version> + <version>5.59.2</version> <develStage>alpha</develStage> <compatibility> <ver>5.59</ver> diff --git a/civicrm/ext/civigrant/info.xml b/civicrm/ext/civigrant/info.xml index 04f1ab4284f6f71d627efcd8527ce427190ba02c..87c46228cc95f0c312a5e726ab15dcdce1b301cc 100644 --- a/civicrm/ext/civigrant/info.xml +++ b/civicrm/ext/civigrant/info.xml @@ -13,7 +13,7 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2021-11-11</releaseDate> - <version>5.59.1</version> + <version>5.59.2</version> <develStage>stable</develStage> <compatibility> <ver>5.59</ver> diff --git a/civicrm/ext/civiimport/info.xml b/civicrm/ext/civiimport/info.xml index 2c87c03792c51b1a0d2da43537d26c1895840ea0..7976fbc1d1ca3833a065040f4c230296415a1fa3 100644 --- a/civicrm/ext/civiimport/info.xml +++ b/civicrm/ext/civiimport/info.xml @@ -15,7 +15,7 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2022-08-11</releaseDate> - <version>5.59.1</version> + <version>5.59.2</version> <develStage>alpha</develStage> <compatibility> <ver>5.59</ver> diff --git a/civicrm/ext/ckeditor4/info.xml b/civicrm/ext/ckeditor4/info.xml index e75188ace58f2a0f2b567f85380edff16f9db4fe..b84f07779f0ccd3add85eb35e55c4b3e482ddea9 100644 --- a/civicrm/ext/ckeditor4/info.xml +++ b/civicrm/ext/ckeditor4/info.xml @@ -15,7 +15,7 @@ <url desc="Licensing">https://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2021-05-23</releaseDate> - <version>5.59.1</version> + <version>5.59.2</version> <develStage>stable</develStage> <compatibility> <ver>5.59</ver> diff --git a/civicrm/ext/contributioncancelactions/info.xml b/civicrm/ext/contributioncancelactions/info.xml index 9345847b1a7fe79028ba28fc3c2915e96bd21fb8..a824e73ff5ae601ab40a224a941eeeecb6a365a5 100644 --- a/civicrm/ext/contributioncancelactions/info.xml +++ b/civicrm/ext/contributioncancelactions/info.xml @@ -15,7 +15,7 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2020-10-12</releaseDate> - <version>5.59.1</version> + <version>5.59.2</version> <develStage>stable</develStage> <compatibility> <ver>5.59</ver> diff --git a/civicrm/ext/elavon/info.xml b/civicrm/ext/elavon/info.xml index cceecc5b5882484da622ce60783c4b0539ae99f8..7e9c54b7718c07da5b8fc209cc5daef4dd5c4fe2 100644 --- a/civicrm/ext/elavon/info.xml +++ b/civicrm/ext/elavon/info.xml @@ -15,7 +15,7 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2022-08-05</releaseDate> - <version>5.59.1</version> + <version>5.59.2</version> <develStage>stable</develStage> <compatibility> <ver>5.59</ver> diff --git a/civicrm/ext/eventcart/info.xml b/civicrm/ext/eventcart/info.xml index 12fc10ac30059e56eca727411a24366f18adee7d..e7f94c344bc3881f14cde74f3e2bf2cc3ce7e5aa 100644 --- a/civicrm/ext/eventcart/info.xml +++ b/civicrm/ext/eventcart/info.xml @@ -13,7 +13,7 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2020-08-03</releaseDate> - <version>5.59.1</version> + <version>5.59.2</version> <tags> <tag>mgmt:hidden</tag> </tags> diff --git a/civicrm/ext/ewaysingle/info.xml b/civicrm/ext/ewaysingle/info.xml index 78fb7b9a6d4321fd14afe59ae331e61fc8b2f38e..4faf877624a070a7621570fab776d0a66d91b1c2 100644 --- a/civicrm/ext/ewaysingle/info.xml +++ b/civicrm/ext/ewaysingle/info.xml @@ -15,7 +15,7 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2020-10-07</releaseDate> - <version>5.59.1</version> + <version>5.59.2</version> <tags> <tag>mgmt:hidden</tag> </tags> diff --git a/civicrm/ext/financialacls/info.xml b/civicrm/ext/financialacls/info.xml index d9c52aaa175c313a730d034ffe68a43eca798f8b..194896c2a9fdb96f6e2a2d7fa76dfe34a741b2a8 100644 --- a/civicrm/ext/financialacls/info.xml +++ b/civicrm/ext/financialacls/info.xml @@ -15,7 +15,7 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2020-08-27</releaseDate> - <version>5.59.1</version> + <version>5.59.2</version> <develStage>stable</develStage> <compatibility> <ver>5.59</ver> diff --git a/civicrm/ext/flexmailer/info.xml b/civicrm/ext/flexmailer/info.xml index 584c1827352b2c6dc7303ea11bb4d120dfb34c5f..7d57a0f2b6b3ae934b3efde1ec7cc5b99929b3fc 100644 --- a/civicrm/ext/flexmailer/info.xml +++ b/civicrm/ext/flexmailer/info.xml @@ -15,7 +15,7 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2020-08-05</releaseDate> - <version>5.59.1</version> + <version>5.59.2</version> <develStage>stable</develStage> <comments> FlexMailer is an email delivery engine which replaces the internal guts diff --git a/civicrm/ext/greenwich/info.xml b/civicrm/ext/greenwich/info.xml index db451a64199b16f4e21c5e7e1e257bd585325c02..9974900d551b131acc87a296b3f9f77adf4c2ab4 100644 --- a/civicrm/ext/greenwich/info.xml +++ b/civicrm/ext/greenwich/info.xml @@ -15,7 +15,7 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2020-07-21</releaseDate> - <version>5.59.1</version> + <version>5.59.2</version> <tags> <tag>mgmt:hidden</tag> </tags> diff --git a/civicrm/ext/legacycustomsearches/info.xml b/civicrm/ext/legacycustomsearches/info.xml index 6f4be1ecc97179b5c322dc3192b542adeba0d99c..d5ede672587766edc9829ba679e0b142a2a69958 100644 --- a/civicrm/ext/legacycustomsearches/info.xml +++ b/civicrm/ext/legacycustomsearches/info.xml @@ -15,7 +15,7 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2021-07-25</releaseDate> - <version>5.59.1</version> + <version>5.59.2</version> <develStage>stable</develStage> <tags> <tag>mgmt:hidden</tag> diff --git a/civicrm/ext/message_admin/info.xml b/civicrm/ext/message_admin/info.xml index a6903c1360f0a34bf6d5517ed0b428895f94d025..ebe506e20618688ceebccab6cfd4c34ab2118494 100644 --- a/civicrm/ext/message_admin/info.xml +++ b/civicrm/ext/message_admin/info.xml @@ -15,7 +15,7 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2021-06-12</releaseDate> - <version>5.59.1</version> + <version>5.59.2</version> <develStage>alpha</develStage> <compatibility> <ver>5.59</ver> diff --git a/civicrm/ext/oauth-client/info.xml b/civicrm/ext/oauth-client/info.xml index 93e27e554a9d770873a69b71a73c6cde2061895b..fca5761a5f6c2d012350d7f53e0cb4ae196ac08e 100644 --- a/civicrm/ext/oauth-client/info.xml +++ b/civicrm/ext/oauth-client/info.xml @@ -15,7 +15,7 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2020-10-23</releaseDate> - <version>5.59.1</version> + <version>5.59.2</version> <develStage>stable</develStage> <compatibility> <ver>5.59</ver> diff --git a/civicrm/ext/payflowpro/info.xml b/civicrm/ext/payflowpro/info.xml index b1365b685016f8e62d692966942d885162c55431..3d8bee3cc35300ed2e5892ce74acfe44898c0d5d 100644 --- a/civicrm/ext/payflowpro/info.xml +++ b/civicrm/ext/payflowpro/info.xml @@ -15,7 +15,7 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2021-04-13</releaseDate> - <version>5.59.1</version> + <version>5.59.2</version> <develStage>stable</develStage> <compatibility> <ver>5.59</ver> diff --git a/civicrm/ext/recaptcha/info.xml b/civicrm/ext/recaptcha/info.xml index 1bc0194e9d47f3f247a03e7e1b78a82fbdb2f9f4..bcff953adea87ba8343b274597174e4cb3ee847a 100644 --- a/civicrm/ext/recaptcha/info.xml +++ b/civicrm/ext/recaptcha/info.xml @@ -13,7 +13,7 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2021-04-03</releaseDate> - <version>5.59.1</version> + <version>5.59.2</version> <tags> <tag>mgmt:hidden</tag> </tags> diff --git a/civicrm/ext/search_kit/info.xml b/civicrm/ext/search_kit/info.xml index d2ee7a5ef2006d4b41faaf53d673a46288a7a700..450a59bac9549fc57f24e8587ad8e01765c33bf4 100644 --- a/civicrm/ext/search_kit/info.xml +++ b/civicrm/ext/search_kit/info.xml @@ -15,7 +15,7 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2021-01-06</releaseDate> - <version>5.59.1</version> + <version>5.59.2</version> <develStage>stable</develStage> <tags> <tag>mgmt:required</tag> diff --git a/civicrm/ext/sequentialcreditnotes/info.xml b/civicrm/ext/sequentialcreditnotes/info.xml index 8b53a1b992a9e68b9c51272d6003559c919d2d90..78e7761528ee391958771d4cfbc1ff9e07d4263e 100644 --- a/civicrm/ext/sequentialcreditnotes/info.xml +++ b/civicrm/ext/sequentialcreditnotes/info.xml @@ -15,7 +15,7 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2020-01-28</releaseDate> - <version>5.59.1</version> + <version>5.59.2</version> <tags> <tag>mgmt:hidden</tag> </tags> diff --git a/civicrm/release-notes.md b/civicrm/release-notes.md index 6b0f9d38bfc2ff72349c27cb78611894fcaa968c..d11abec90a912ff380e09957a4de9f780a9ff85b 100644 --- a/civicrm/release-notes.md +++ b/civicrm/release-notes.md @@ -15,6 +15,15 @@ Other resources for identifying changes are: * https://github.com/civicrm/civicrm-joomla * https://github.com/civicrm/civicrm-wordpress +## CiviCRM 5.59.2 + +Released March 10, 2023 + +- **[Synopsis](release-notes/5.59.2.md#synopsis)** +- **[Bugs resolved](release-notes/5.59.2.md#bugs)** +- **[Credits](release-notes/5.59.2.md#credits)** +- **[Feedback](release-notes/5.59.2.md#feedback)** + ## CiviCRM 5.59.1 Released March 3, 2023 diff --git a/civicrm/release-notes/5.59.2.md b/civicrm/release-notes/5.59.2.md new file mode 100644 index 0000000000000000000000000000000000000000..b807de68d19afe28d4530b188ebf26716830da4d --- /dev/null +++ b/civicrm/release-notes/5.59.2.md @@ -0,0 +1,39 @@ +# CiviCRM 5.59.2 + +Released March 10, 2023 + +- **[Synopsis](#synopsis)** +- **[Bugs resolved](#bugs)** +- **[Credits](#credits)** +- **[Feedback](#feedback)** + +## <a name="synopsis"></a>Synopsis + +| *Does this version...?* | | +| --------------------------------------------------------------- | -------- | +| Change the database schema? | no | +| Alter the API? | no | +| Require attention to configuration options? | no | +| Fix problems installing or upgrading to a previous version? | no | +| Introduce features? | no | +| **Fix bugs?** | **yes** | +| Fix security vulnerabilities? | no | + +## <a name="bugs"></a>Bugs resolved + +* **_Import_: Contribution note does not accept empty string ([dev/core#4105](https://lab.civicrm.org/dev/core/-/issues/4105): [#25569](https://github.com/civicrm/civicrm-core/pull/25569))** +* **_PayPal Pro_: New recurring payments recorded twice ([dev/core#4158](https://lab.civicrm.org/dev/core/-/issues/4158): [#25775](https://github.com/civicrm/civicrm-core/pull/25775))** + +## <a name="credits"></a>Credits + +This release was developed by the following authors and reviewers: + +Wikimedia Foundation - Eileen McNaughton; PERORA SRL - Samuele Masetto; MJW Consulting - +Matthew Wire; Megaphone Technology Consulting - Jon Goldberg; Korlon - Stuart Gaston; JMA +Consulting - Seamus Lee; Dave D; CiviCRM - Tim Otten + +## <a name="feedback"></a>Feedback + +These release notes are edited by Tim Otten and Andie Hunt. If you'd like to +provide feedback on them, please login to https://chat.civicrm.org/civicrm and +contact `@agh1`. diff --git a/civicrm/sql/civicrm_data.mysql b/civicrm/sql/civicrm_data.mysql index 13aa16af7343427d1a99dca2bf88a2aaf9e50811..6d047af03951b352ba76283ccf81eed26c9c70a2 100644 --- a/civicrm/sql/civicrm_data.mysql +++ b/civicrm/sql/civicrm_data.mysql @@ -23678,4 +23678,4 @@ INSERT INTO `civicrm_report_instance` ( `domain_id`, `title`, `report_id`, `description`, `permission`, `form_values`) VALUES ( @domainID, 'Survey Details', 'survey/detail', 'Detailed report for canvassing, phone-banking, walk lists or other surveys.', 'access CiviReport', 'a:39:{s:6:"fields";a:2:{s:9:"sort_name";s:1:"1";s:6:"result";s:1:"1";}s:22:"assignee_contact_id_op";s:2:"eq";s:25:"assignee_contact_id_value";s:0:"";s:12:"sort_name_op";s:3:"has";s:15:"sort_name_value";s:0:"";s:17:"street_number_min";s:0:"";s:17:"street_number_max";s:0:"";s:16:"street_number_op";s:3:"lte";s:19:"street_number_value";s:0:"";s:14:"street_name_op";s:3:"has";s:17:"street_name_value";s:0:"";s:15:"postal_code_min";s:0:"";s:15:"postal_code_max";s:0:"";s:14:"postal_code_op";s:3:"lte";s:17:"postal_code_value";s:0:"";s:7:"city_op";s:3:"has";s:10:"city_value";s:0:"";s:20:"state_province_id_op";s:2:"in";s:23:"state_province_id_value";a:0:{}s:13:"country_id_op";s:2:"in";s:16:"country_id_value";a:0:{}s:12:"survey_id_op";s:2:"in";s:15:"survey_id_value";a:0:{}s:12:"status_id_op";s:2:"eq";s:15:"status_id_value";s:1:"1";s:11:"custom_1_op";s:2:"in";s:14:"custom_1_value";a:0:{}s:11:"custom_2_op";s:2:"in";s:14:"custom_2_value";a:0:{}s:17:"custom_3_relative";s:1:"0";s:13:"custom_3_from";s:0:"";s:11:"custom_3_to";s:0:"";s:11:"description";s:75:"Detailed report for canvassing, phone-banking, walk lists or other surveys.";s:13:"email_subject";s:0:"";s:8:"email_to";s:0:"";s:8:"email_cc";s:0:"";s:10:"permission";s:17:"access CiviReport";s:6:"groups";s:0:"";s:9:"domain_id";i:1;}'); -UPDATE civicrm_domain SET version = '5.59.1'; +UPDATE civicrm_domain SET version = '5.59.2'; diff --git a/civicrm/sql/civicrm_generated.mysql b/civicrm/sql/civicrm_generated.mysql index 1f5d80eae546e26dd0eea6a2407b1972c861ba80..1eeebc0997571a9d48d1b7742e593e5e5f14f404 100644 --- a/civicrm/sql/civicrm_generated.mysql +++ b/civicrm/sql/civicrm_generated.mysql @@ -3055,7 +3055,7 @@ UNLOCK TABLES; LOCK TABLES `civicrm_domain` WRITE; /*!40000 ALTER TABLE `civicrm_domain` DISABLE KEYS */; INSERT INTO `civicrm_domain` (`id`, `name`, `description`, `version`, `contact_id`, `locales`, `locale_custom_strings`) VALUES - (1,'Default Domain Name',NULL,'5.59.1',1,NULL,'a:1:{s:5:\"en_US\";a:0:{}}'); + (1,'Default Domain Name',NULL,'5.59.2',1,NULL,'a:1:{s:5:\"en_US\";a:0:{}}'); /*!40000 ALTER TABLE `civicrm_domain` ENABLE KEYS */; UNLOCK TABLES; diff --git a/civicrm/vendor/autoload.php b/civicrm/vendor/autoload.php index 3d3377e6ab0c22189be1325d17022b770d2895b7..132cd863d47414a80f74fa6cd6191bd30f703ce1 100644 --- a/civicrm/vendor/autoload.php +++ b/civicrm/vendor/autoload.php @@ -4,4 +4,4 @@ require_once __DIR__ . '/composer/autoload_real.php'; -return ComposerAutoloaderInit6d70272d0a18598efc2ecef4c5a0f39a::getLoader(); +return ComposerAutoloaderInited68f23263a1c03a76a0a11e41947a82::getLoader(); diff --git a/civicrm/vendor/composer/autoload_real.php b/civicrm/vendor/composer/autoload_real.php index e11de19129bcc401fef4d70b17110a2e8965d973..7e552e91636a35782cb187a73e6a9261c95ead26 100644 --- a/civicrm/vendor/composer/autoload_real.php +++ b/civicrm/vendor/composer/autoload_real.php @@ -2,7 +2,7 @@ // autoload_real.php @generated by Composer -class ComposerAutoloaderInit6d70272d0a18598efc2ecef4c5a0f39a +class ComposerAutoloaderInited68f23263a1c03a76a0a11e41947a82 { private static $loader; @@ -24,9 +24,9 @@ class ComposerAutoloaderInit6d70272d0a18598efc2ecef4c5a0f39a require __DIR__ . '/platform_check.php'; - spl_autoload_register(array('ComposerAutoloaderInit6d70272d0a18598efc2ecef4c5a0f39a', 'loadClassLoader'), true, true); + spl_autoload_register(array('ComposerAutoloaderInited68f23263a1c03a76a0a11e41947a82', 'loadClassLoader'), true, true); self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__))); - spl_autoload_unregister(array('ComposerAutoloaderInit6d70272d0a18598efc2ecef4c5a0f39a', 'loadClassLoader')); + spl_autoload_unregister(array('ComposerAutoloaderInited68f23263a1c03a76a0a11e41947a82', 'loadClassLoader')); $includePaths = require __DIR__ . '/include_paths.php'; $includePaths[] = get_include_path(); @@ -36,7 +36,7 @@ class ComposerAutoloaderInit6d70272d0a18598efc2ecef4c5a0f39a if ($useStaticLoader) { require __DIR__ . '/autoload_static.php'; - call_user_func(\Composer\Autoload\ComposerStaticInit6d70272d0a18598efc2ecef4c5a0f39a::getInitializer($loader)); + call_user_func(\Composer\Autoload\ComposerStaticInited68f23263a1c03a76a0a11e41947a82::getInitializer($loader)); } else { $map = require __DIR__ . '/autoload_namespaces.php'; foreach ($map as $namespace => $path) { @@ -57,12 +57,12 @@ class ComposerAutoloaderInit6d70272d0a18598efc2ecef4c5a0f39a $loader->register(true); if ($useStaticLoader) { - $includeFiles = Composer\Autoload\ComposerStaticInit6d70272d0a18598efc2ecef4c5a0f39a::$files; + $includeFiles = Composer\Autoload\ComposerStaticInited68f23263a1c03a76a0a11e41947a82::$files; } else { $includeFiles = require __DIR__ . '/autoload_files.php'; } foreach ($includeFiles as $fileIdentifier => $file) { - composerRequire6d70272d0a18598efc2ecef4c5a0f39a($fileIdentifier, $file); + composerRequireed68f23263a1c03a76a0a11e41947a82($fileIdentifier, $file); } return $loader; @@ -74,7 +74,7 @@ class ComposerAutoloaderInit6d70272d0a18598efc2ecef4c5a0f39a * @param string $file * @return void */ -function composerRequire6d70272d0a18598efc2ecef4c5a0f39a($fileIdentifier, $file) +function composerRequireed68f23263a1c03a76a0a11e41947a82($fileIdentifier, $file) { if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) { $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true; diff --git a/civicrm/vendor/composer/autoload_static.php b/civicrm/vendor/composer/autoload_static.php index ab61225545a43aba089abc8500e876e6859406c9..ac869d4a591561cc6fedcbdfee64463eefb80995 100644 --- a/civicrm/vendor/composer/autoload_static.php +++ b/civicrm/vendor/composer/autoload_static.php @@ -4,7 +4,7 @@ namespace Composer\Autoload; -class ComposerStaticInit6d70272d0a18598efc2ecef4c5a0f39a +class ComposerStaticInited68f23263a1c03a76a0a11e41947a82 { public static $files = array ( 'a4a119a56e50fbb293281d9a48007e0e' => __DIR__ . '/..' . '/symfony/polyfill-php80/bootstrap.php', @@ -744,11 +744,11 @@ class ComposerStaticInit6d70272d0a18598efc2ecef4c5a0f39a public static function getInitializer(ClassLoader $loader) { return \Closure::bind(function () use ($loader) { - $loader->prefixLengthsPsr4 = ComposerStaticInit6d70272d0a18598efc2ecef4c5a0f39a::$prefixLengthsPsr4; - $loader->prefixDirsPsr4 = ComposerStaticInit6d70272d0a18598efc2ecef4c5a0f39a::$prefixDirsPsr4; - $loader->prefixesPsr0 = ComposerStaticInit6d70272d0a18598efc2ecef4c5a0f39a::$prefixesPsr0; - $loader->fallbackDirsPsr0 = ComposerStaticInit6d70272d0a18598efc2ecef4c5a0f39a::$fallbackDirsPsr0; - $loader->classMap = ComposerStaticInit6d70272d0a18598efc2ecef4c5a0f39a::$classMap; + $loader->prefixLengthsPsr4 = ComposerStaticInited68f23263a1c03a76a0a11e41947a82::$prefixLengthsPsr4; + $loader->prefixDirsPsr4 = ComposerStaticInited68f23263a1c03a76a0a11e41947a82::$prefixDirsPsr4; + $loader->prefixesPsr0 = ComposerStaticInited68f23263a1c03a76a0a11e41947a82::$prefixesPsr0; + $loader->fallbackDirsPsr0 = ComposerStaticInited68f23263a1c03a76a0a11e41947a82::$fallbackDirsPsr0; + $loader->classMap = ComposerStaticInited68f23263a1c03a76a0a11e41947a82::$classMap; }, null, ClassLoader::class); } diff --git a/civicrm/vendor/composer/installed.php b/civicrm/vendor/composer/installed.php index c0efc052c6bc39250f306b329f750f7184691d86..39bd2b9ebde3ddc5d97923ae963e27becc934bf8 100644 --- a/civicrm/vendor/composer/installed.php +++ b/civicrm/vendor/composer/installed.php @@ -5,7 +5,7 @@ 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), - 'reference' => '6e3ac779204df17644db8b11968aeb3bddcf505d', + 'reference' => '296d9bc9f06a794542187e8618350a0b69d99039', 'name' => 'civicrm/civicrm-core', 'dev' => true, ), @@ -61,7 +61,7 @@ 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), - 'reference' => '6e3ac779204df17644db8b11968aeb3bddcf505d', + 'reference' => '296d9bc9f06a794542187e8618350a0b69d99039', 'dev_requirement' => false, ), 'civicrm/civicrm-cxn-rpc' => array( diff --git a/civicrm/xml/version.xml b/civicrm/xml/version.xml index 75129e2368163d51d4f078382b5f7cd48de1e385..f2be351770dae1ff9eadce1cec86594ef16f890d 100644 --- a/civicrm/xml/version.xml +++ b/civicrm/xml/version.xml @@ -1,4 +1,4 @@ <?xml version="1.0" encoding="iso-8859-1" ?> <version> - <version_no>5.59.1</version_no> + <version_no>5.59.2</version_no> </version>