From 4fb59b6ff88d1629915382d4b11ba3611f60f3fa Mon Sep 17 00:00:00 2001 From: Kevin Cristiano <kcristiano@kcristiano.com> Date: Tue, 8 Nov 2022 10:06:21 -0500 Subject: [PATCH] civicrm release-5.55 --- civicrm.php | 4 +- civicrm/CRM/Core/BAO/Navigation.php | 2 +- civicrm/Civi/Payment/PropertyBag.php | 1 - civicrm/civicrm-version.php | 2 +- civicrm/ext/afform/admin/info.xml | 2 +- civicrm/ext/afform/core/info.xml | 2 +- civicrm/ext/afform/html/info.xml | 2 +- civicrm/ext/afform/mock/info.xml | 2 +- civicrm/ext/authx/info.xml | 2 +- civicrm/ext/civicrm_admin_ui/info.xml | 2 +- civicrm/ext/civigrant/info.xml | 2 +- civicrm/ext/civiimport/info.xml | 2 +- civicrm/ext/ckeditor4/info.xml | 2 +- .../ext/contributioncancelactions/info.xml | 2 +- civicrm/ext/elavon/info.xml | 2 +- civicrm/ext/eventcart/info.xml | 2 +- civicrm/ext/ewaysingle/info.xml | 2 +- civicrm/ext/financialacls/info.xml | 2 +- civicrm/ext/flexmailer/info.xml | 2 +- civicrm/ext/greenwich/info.xml | 2 +- civicrm/ext/legacycustomsearches/info.xml | 2 +- civicrm/ext/message_admin/info.xml | 2 +- civicrm/ext/oauth-client/info.xml | 2 +- civicrm/ext/payflowpro/info.xml | 2 +- civicrm/ext/recaptcha/info.xml | 2 +- civicrm/ext/search_kit/info.xml | 2 +- civicrm/ext/sequentialcreditnotes/info.xml | 2 +- civicrm/release-notes.md | 9 +++++ civicrm/release-notes/5.55.1.md | 37 +++++++++++++++++++ civicrm/sql/civicrm_data.mysql | 2 +- civicrm/sql/civicrm_generated.mysql | 2 +- civicrm/vendor/autoload.php | 2 +- civicrm/vendor/bin/cssmin.bat | 5 +++ civicrm/vendor/bin/pscss.bat | 5 +++ .../civicrm/composer-compile-lib/CCL.php | 2 +- civicrm/vendor/composer/autoload_real.php | 14 +++---- civicrm/vendor/composer/autoload_static.php | 12 +++--- civicrm/vendor/composer/installed.php | 4 +- civicrm/xml/version.xml | 2 +- 39 files changed, 103 insertions(+), 48 deletions(-) create mode 100644 civicrm/release-notes/5.55.1.md create mode 100755 civicrm/vendor/bin/cssmin.bat create mode 100755 civicrm/vendor/bin/pscss.bat diff --git a/civicrm.php b/civicrm.php index dfe6fa38e3..bfd3a1cc16 100644 --- a/civicrm.php +++ b/civicrm.php @@ -2,7 +2,7 @@ /** * Plugin Name: CiviCRM * Description: CiviCRM - Growing and Sustaining Relationships - * Version: 5.55.0 + * Version: 5.55.1 * Requires at least: 4.9 * Requires PHP: 7.2 * 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.55.0'); +define('CIVICRM_PLUGIN_VERSION', '5.55.1'); // Store reference to this file. if (!defined('CIVICRM_PLUGIN_FILE')) { diff --git a/civicrm/CRM/Core/BAO/Navigation.php b/civicrm/CRM/Core/BAO/Navigation.php index e772db9a38..4651c710b6 100644 --- a/civicrm/CRM/Core/BAO/Navigation.php +++ b/civicrm/CRM/Core/BAO/Navigation.php @@ -320,7 +320,7 @@ FROM civicrm_navigation WHERE domain_id = $domainID"; if (!isset($b['attributes']['weight'])) { $b['attributes']['weight'] = 1000; } - return $a['attributes']['weight'] - $b['attributes']['weight']; + return (int) $a['attributes']['weight'] - (int) $b['attributes']['weight']; }); // If any of the $navigations have children, recurse diff --git a/civicrm/Civi/Payment/PropertyBag.php b/civicrm/Civi/Payment/PropertyBag.php index 2b39b84743..19cfcd66d9 100644 --- a/civicrm/Civi/Payment/PropertyBag.php +++ b/civicrm/Civi/Payment/PropertyBag.php @@ -43,7 +43,6 @@ class PropertyBag implements \ArrayAccess { 'billing_state_province' => 'billingStateProvince', 'state_province' => 'billingStateProvince', 'billingCountry' => TRUE, - 'country' => 'billingCountry', 'contactID' => TRUE, 'contact_id' => 'contactID', 'contributionID' => TRUE, diff --git a/civicrm/civicrm-version.php b/civicrm/civicrm-version.php index 576c157ee6..31cacc6185 100644 --- a/civicrm/civicrm-version.php +++ b/civicrm/civicrm-version.php @@ -1,7 +1,7 @@ <?php /** @deprecated */ function civicrmVersion( ) { - return array( 'version' => '5.55.0', + return array( 'version' => '5.55.1', 'cms' => 'Wordpress', 'revision' => '' ); } diff --git a/civicrm/ext/afform/admin/info.xml b/civicrm/ext/afform/admin/info.xml index d6d4946650..8cc471a577 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.55.0</version> + <version>5.55.1</version> <develStage>beta</develStage> <compatibility> <ver>5.55</ver> diff --git a/civicrm/ext/afform/core/info.xml b/civicrm/ext/afform/core/info.xml index 4741265cb6..0974791015 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.55.0</version> + <version>5.55.1</version> <develStage>beta</develStage> <compatibility> <ver>5.55</ver> diff --git a/civicrm/ext/afform/html/info.xml b/civicrm/ext/afform/html/info.xml index a91a6387c0..b42d336eb1 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.55.0</version> + <version>5.55.1</version> <develStage>alpha</develStage> <compatibility> <ver>5.55</ver> diff --git a/civicrm/ext/afform/mock/info.xml b/civicrm/ext/afform/mock/info.xml index bd86311dff..891d7d6e2a 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.55.0</version> + <version>5.55.1</version> <tags> <tag>mgmt:hidden</tag> </tags> diff --git a/civicrm/ext/authx/info.xml b/civicrm/ext/authx/info.xml index 97b04cf0a6..b721820cd3 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.55.0</version> + <version>5.55.1</version> <develStage>stable</develStage> <compatibility> <ver>5.55</ver> diff --git a/civicrm/ext/civicrm_admin_ui/info.xml b/civicrm/ext/civicrm_admin_ui/info.xml index fb4ffa7951..3a6565906b 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.55.0</version> + <version>5.55.1</version> <develStage>alpha</develStage> <compatibility> <ver>5.55</ver> diff --git a/civicrm/ext/civigrant/info.xml b/civicrm/ext/civigrant/info.xml index c67ea150f6..cfe2a05266 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.55.0</version> + <version>5.55.1</version> <develStage>stable</develStage> <compatibility> <ver>5.55</ver> diff --git a/civicrm/ext/civiimport/info.xml b/civicrm/ext/civiimport/info.xml index 60f3d3cae4..34c7d027c9 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.55.0</version> + <version>5.55.1</version> <develStage>alpha</develStage> <compatibility> <ver>5.55</ver> diff --git a/civicrm/ext/ckeditor4/info.xml b/civicrm/ext/ckeditor4/info.xml index 9efc3d2d37..75baf223ae 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.55.0</version> + <version>5.55.1</version> <develStage>stable</develStage> <compatibility> <ver>5.55</ver> diff --git a/civicrm/ext/contributioncancelactions/info.xml b/civicrm/ext/contributioncancelactions/info.xml index 653a537655..bec85a1e98 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.55.0</version> + <version>5.55.1</version> <develStage>stable</develStage> <compatibility> <ver>5.55</ver> diff --git a/civicrm/ext/elavon/info.xml b/civicrm/ext/elavon/info.xml index 9fa491a625..eb5fe4a2fb 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.55.0</version> + <version>5.55.1</version> <develStage>stable</develStage> <compatibility> <ver>5.55</ver> diff --git a/civicrm/ext/eventcart/info.xml b/civicrm/ext/eventcart/info.xml index 48edae6db3..46dcf88cec 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.55.0</version> + <version>5.55.1</version> <tags> <tag>mgmt:hidden</tag> </tags> diff --git a/civicrm/ext/ewaysingle/info.xml b/civicrm/ext/ewaysingle/info.xml index 2e407cc7fa..112ad6a820 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.55.0</version> + <version>5.55.1</version> <tags> <tag>mgmt:hidden</tag> </tags> diff --git a/civicrm/ext/financialacls/info.xml b/civicrm/ext/financialacls/info.xml index 9ee412bbf9..282ce639fe 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.55.0</version> + <version>5.55.1</version> <develStage>stable</develStage> <compatibility> <ver>5.55</ver> diff --git a/civicrm/ext/flexmailer/info.xml b/civicrm/ext/flexmailer/info.xml index 367e031fdf..3e56f079a4 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.55.0</version> + <version>5.55.1</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 ed0bcdfbaa..230d507b0a 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.55.0</version> + <version>5.55.1</version> <tags> <tag>mgmt:hidden</tag> </tags> diff --git a/civicrm/ext/legacycustomsearches/info.xml b/civicrm/ext/legacycustomsearches/info.xml index 465b0b5b8e..0b06366990 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.55.0</version> + <version>5.55.1</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 eda5e06128..9bef3c823d 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.55.0</version> + <version>5.55.1</version> <develStage>alpha</develStage> <compatibility> <ver>5.55</ver> diff --git a/civicrm/ext/oauth-client/info.xml b/civicrm/ext/oauth-client/info.xml index 2f3ebe7a60..4915aed7d9 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.55.0</version> + <version>5.55.1</version> <develStage>stable</develStage> <compatibility> <ver>5.55</ver> diff --git a/civicrm/ext/payflowpro/info.xml b/civicrm/ext/payflowpro/info.xml index a8b047fc92..aa72432f82 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.55.0</version> + <version>5.55.1</version> <develStage>stable</develStage> <compatibility> <ver>5.55</ver> diff --git a/civicrm/ext/recaptcha/info.xml b/civicrm/ext/recaptcha/info.xml index 408c58c276..0ab5b7d29f 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.55.0</version> + <version>5.55.1</version> <tags> <tag>mgmt:hidden</tag> </tags> diff --git a/civicrm/ext/search_kit/info.xml b/civicrm/ext/search_kit/info.xml index 6f23d3d8c9..9b32ef5949 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.55.0</version> + <version>5.55.1</version> <develStage>stable</develStage> <compatibility> <ver>5.55</ver> diff --git a/civicrm/ext/sequentialcreditnotes/info.xml b/civicrm/ext/sequentialcreditnotes/info.xml index 2afd5428b7..ebce7019f6 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.55.0</version> + <version>5.55.1</version> <tags> <tag>mgmt:hidden</tag> </tags> diff --git a/civicrm/release-notes.md b/civicrm/release-notes.md index 762a1d9d6b..f34017ff02 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.55.1 + +Released November 8, 2022 + +- **[Synopsis](release-notes/5.55.1.md#synopsis)** +- **[Bugs resolved](release-notes/5.55.1.md#bugs)** +- **[Credits](release-notes/5.55.1.md#credits)** +- **[Feedback](release-notes/5.55.1.md#feedback)** + ## CiviCRM 5.55.0 Released November 2, 2022 diff --git a/civicrm/release-notes/5.55.1.md b/civicrm/release-notes/5.55.1.md new file mode 100644 index 0000000000..0fdde64a02 --- /dev/null +++ b/civicrm/release-notes/5.55.1.md @@ -0,0 +1,37 @@ +# CiviCRM 5.55.1 + +Released November 8, 2022 + +- **[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** | + +## <a name="bugs"></a>Bugs resolved + +* **_CiviContribute_: Restore previous handling of "Country" (as a payment field). ([dev/core#3918](https://lab.civicrm.org/dev/core/-/issues/3918): [#24897](https://github.com/civicrm/civicrm-core/pull/24897))** +* **_Navigation Menu_: Fix error in building menu ([dev/core#3968](https://lab.civicrm.org/dev/core/-/issues/3968): [#24904](https://github.com/civicrm/civicrm-core/pull/24904))** + +## <a name="credits"></a>Credits + +This release was developed by the following authors and reviewers: + +Wikimedia Foundation - Eileen McNaughton; ; MJW Consulting - Matthew Wire; jhungerford; +Francesc Bassas i Bullich; civiservice.de - Sebastian Lisken; CiviCRM - Tim Otten, Coleman Watts + +## <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 5c0c04a1d9..aadbf5c05c 100644 --- a/civicrm/sql/civicrm_data.mysql +++ b/civicrm/sql/civicrm_data.mysql @@ -23649,4 +23649,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.55.0'; +UPDATE civicrm_domain SET version = '5.55.1'; diff --git a/civicrm/sql/civicrm_generated.mysql b/civicrm/sql/civicrm_generated.mysql index 974161564e..58ba565bba 100644 --- a/civicrm/sql/civicrm_generated.mysql +++ b/civicrm/sql/civicrm_generated.mysql @@ -3057,7 +3057,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.55.0',1,NULL,'a:1:{s:5:\"en_US\";a:0:{}}'); + (1,'Default Domain Name',NULL,'5.55.1',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 32c233f325..7c28dedc1a 100644 --- a/civicrm/vendor/autoload.php +++ b/civicrm/vendor/autoload.php @@ -9,4 +9,4 @@ if (PHP_VERSION_ID < 50600) { require_once __DIR__ . '/composer/autoload_real.php'; -return ComposerAutoloaderInitcfd7e33cc9332dfed87d0b9a6112a22c::getLoader(); +return ComposerAutoloaderInitce831ab5523b62e0a4b9ef9b69e1be64::getLoader(); diff --git a/civicrm/vendor/bin/cssmin.bat b/civicrm/vendor/bin/cssmin.bat new file mode 100755 index 0000000000..cbe710815f --- /dev/null +++ b/civicrm/vendor/bin/cssmin.bat @@ -0,0 +1,5 @@ +@ECHO OFF +setlocal DISABLEDELAYEDEXPANSION +SET BIN_TARGET=%~dp0/cssmin +SET COMPOSER_RUNTIME_BIN_DIR=%~dp0 +php "%BIN_TARGET%" %* diff --git a/civicrm/vendor/bin/pscss.bat b/civicrm/vendor/bin/pscss.bat new file mode 100755 index 0000000000..38c7751901 --- /dev/null +++ b/civicrm/vendor/bin/pscss.bat @@ -0,0 +1,5 @@ +@ECHO OFF +setlocal DISABLEDELAYEDEXPANSION +SET BIN_TARGET=%~dp0/pscss +SET COMPOSER_RUNTIME_BIN_DIR=%~dp0 +php "%BIN_TARGET%" %* diff --git a/civicrm/vendor/civicrm/composer-compile-lib/CCL.php b/civicrm/vendor/civicrm/composer-compile-lib/CCL.php index 6c46409e88..3563870581 100644 --- a/civicrm/vendor/civicrm/composer-compile-lib/CCL.php +++ b/civicrm/vendor/civicrm/composer-compile-lib/CCL.php @@ -1,5 +1,5 @@ <?php -// AUTO-GENERATED VIA /home/publisher/bknix-min/build/cividist/src/vendor/civicrm/composer-compile-lib/src/StubsTpl.php +// AUTO-GENERATED VIA /home/kcristiano/buildkit/build/dist/src/vendor/civicrm/composer-compile-lib/src/StubsTpl.php // If this file somehow becomes invalid (eg when patching CCL), you may safely delete and re-run install. use Symfony\Component\Filesystem\Exception\IOException; use Symfony\Component\Filesystem\Exception\FileNotFoundException; diff --git a/civicrm/vendor/composer/autoload_real.php b/civicrm/vendor/composer/autoload_real.php index 1c4d095f9c..529dd0892f 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 ComposerAutoloaderInitcfd7e33cc9332dfed87d0b9a6112a22c +class ComposerAutoloaderInitce831ab5523b62e0a4b9ef9b69e1be64 { private static $loader; @@ -24,22 +24,22 @@ class ComposerAutoloaderInitcfd7e33cc9332dfed87d0b9a6112a22c require __DIR__ . '/platform_check.php'; - spl_autoload_register(array('ComposerAutoloaderInitcfd7e33cc9332dfed87d0b9a6112a22c', 'loadClassLoader'), true, true); + spl_autoload_register(array('ComposerAutoloaderInitce831ab5523b62e0a4b9ef9b69e1be64', 'loadClassLoader'), true, true); self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__)); - spl_autoload_unregister(array('ComposerAutoloaderInitcfd7e33cc9332dfed87d0b9a6112a22c', 'loadClassLoader')); + spl_autoload_unregister(array('ComposerAutoloaderInitce831ab5523b62e0a4b9ef9b69e1be64', 'loadClassLoader')); $includePaths = require __DIR__ . '/include_paths.php'; $includePaths[] = get_include_path(); set_include_path(implode(PATH_SEPARATOR, $includePaths)); require __DIR__ . '/autoload_static.php'; - call_user_func(\Composer\Autoload\ComposerStaticInitcfd7e33cc9332dfed87d0b9a6112a22c::getInitializer($loader)); + call_user_func(\Composer\Autoload\ComposerStaticInitce831ab5523b62e0a4b9ef9b69e1be64::getInitializer($loader)); $loader->register(true); - $includeFiles = \Composer\Autoload\ComposerStaticInitcfd7e33cc9332dfed87d0b9a6112a22c::$files; + $includeFiles = \Composer\Autoload\ComposerStaticInitce831ab5523b62e0a4b9ef9b69e1be64::$files; foreach ($includeFiles as $fileIdentifier => $file) { - composerRequirecfd7e33cc9332dfed87d0b9a6112a22c($fileIdentifier, $file); + composerRequirece831ab5523b62e0a4b9ef9b69e1be64($fileIdentifier, $file); } return $loader; @@ -51,7 +51,7 @@ class ComposerAutoloaderInitcfd7e33cc9332dfed87d0b9a6112a22c * @param string $file * @return void */ -function composerRequirecfd7e33cc9332dfed87d0b9a6112a22c($fileIdentifier, $file) +function composerRequirece831ab5523b62e0a4b9ef9b69e1be64($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 5805bdfbc7..015ef5e6cc 100644 --- a/civicrm/vendor/composer/autoload_static.php +++ b/civicrm/vendor/composer/autoload_static.php @@ -4,7 +4,7 @@ namespace Composer\Autoload; -class ComposerStaticInitcfd7e33cc9332dfed87d0b9a6112a22c +class ComposerStaticInitce831ab5523b62e0a4b9ef9b69e1be64 { public static $files = array ( 'a4a119a56e50fbb293281d9a48007e0e' => __DIR__ . '/..' . '/symfony/polyfill-php80/bootstrap.php', @@ -738,11 +738,11 @@ class ComposerStaticInitcfd7e33cc9332dfed87d0b9a6112a22c public static function getInitializer(ClassLoader $loader) { return \Closure::bind(function () use ($loader) { - $loader->prefixLengthsPsr4 = ComposerStaticInitcfd7e33cc9332dfed87d0b9a6112a22c::$prefixLengthsPsr4; - $loader->prefixDirsPsr4 = ComposerStaticInitcfd7e33cc9332dfed87d0b9a6112a22c::$prefixDirsPsr4; - $loader->prefixesPsr0 = ComposerStaticInitcfd7e33cc9332dfed87d0b9a6112a22c::$prefixesPsr0; - $loader->fallbackDirsPsr0 = ComposerStaticInitcfd7e33cc9332dfed87d0b9a6112a22c::$fallbackDirsPsr0; - $loader->classMap = ComposerStaticInitcfd7e33cc9332dfed87d0b9a6112a22c::$classMap; + $loader->prefixLengthsPsr4 = ComposerStaticInitce831ab5523b62e0a4b9ef9b69e1be64::$prefixLengthsPsr4; + $loader->prefixDirsPsr4 = ComposerStaticInitce831ab5523b62e0a4b9ef9b69e1be64::$prefixDirsPsr4; + $loader->prefixesPsr0 = ComposerStaticInitce831ab5523b62e0a4b9ef9b69e1be64::$prefixesPsr0; + $loader->fallbackDirsPsr0 = ComposerStaticInitce831ab5523b62e0a4b9ef9b69e1be64::$fallbackDirsPsr0; + $loader->classMap = ComposerStaticInitce831ab5523b62e0a4b9ef9b69e1be64::$classMap; }, null, ClassLoader::class); } diff --git a/civicrm/vendor/composer/installed.php b/civicrm/vendor/composer/installed.php index b1ebe90103..8e874f3aaa 100644 --- a/civicrm/vendor/composer/installed.php +++ b/civicrm/vendor/composer/installed.php @@ -3,7 +3,7 @@ 'name' => 'civicrm/civicrm-core', 'pretty_version' => '5.55.x-dev', 'version' => '5.55.9999999.9999999-dev', - 'reference' => '50ba554869bfcfedc5729c7764eeb242f8e87188', + 'reference' => '0fff9747cc72706ec86d1d0d552ca5c018760e09', 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), @@ -58,7 +58,7 @@ 'civicrm/civicrm-core' => array( 'pretty_version' => '5.55.x-dev', 'version' => '5.55.9999999.9999999-dev', - 'reference' => '50ba554869bfcfedc5729c7764eeb242f8e87188', + 'reference' => '0fff9747cc72706ec86d1d0d552ca5c018760e09', 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), diff --git a/civicrm/xml/version.xml b/civicrm/xml/version.xml index a6e9c0eb5f..3f2aef3ea8 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.55.0</version_no> + <version_no>5.55.1</version_no> </version> -- GitLab