diff --git a/civicrm.php b/civicrm.php
index ef6f04f1ec8fdb6f2a69d3290c79c09951a665af..76f1df45cdd51f3be103579dbd085dee74e115e3 100644
--- a/civicrm.php
+++ b/civicrm.php
@@ -2,7 +2,7 @@
 /**
  * Plugin Name: CiviCRM
  * Description: CiviCRM - Growing and Sustaining Relationships
- * Version: 5.57.2
+ * Version: 5.57.3
  * 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.57.2');
+define('CIVICRM_PLUGIN_VERSION', '5.57.3');
 
 // Store reference to this file.
 if (!defined('CIVICRM_PLUGIN_FILE')) {
diff --git a/civicrm/CRM/Contribute/BAO/ContributionSoft.php b/civicrm/CRM/Contribute/BAO/ContributionSoft.php
index a38c72020474ca1172960d608301a56c5e435e41..2e0115bec9742f932e520f1481f1b515f451a254 100644
--- a/civicrm/CRM/Contribute/BAO/ContributionSoft.php
+++ b/civicrm/CRM/Contribute/BAO/ContributionSoft.php
@@ -409,7 +409,7 @@ class CRM_Contribute_BAO_ContributionSoft extends CRM_Contribute_DAO_Contributio
     ];
 
     $contributionSofts = ContributionSoft::get()
-      ->addSelect('*', 'contribution_id.receive_date', 'contribution_id.contact_id', 'contribution_id.contact_id.display_name', 'soft_credit_type_id:label', 'contribution_id.contribution_status_id:label', 'contribution_id.financial_type_id:label', 'pcp_id.title')
+      ->addSelect('*', 'contribution_id.receive_date', 'contribution_id.contact_id', 'contribution_id.contact_id.display_name', 'soft_credit_type_id:label', 'contribution_id.contribution_status_id:label', 'contribution_id.financial_type_id:label', 'pcp_id.title', 'row_count')
       ->addWhere('contact_id', '=', $contact_id)
       ->addWhere('contribution_id.is_test', '=', $isTest);
 
diff --git a/civicrm/CRM/Mailing/Event/BAO/MailingEventResubscribe.php b/civicrm/CRM/Mailing/Event/BAO/MailingEventResubscribe.php
index be7637215b050af80e9a3b9c551e9f28db33ce5b..0e6db580ac627a548fbb168172518ba0a428b254 100644
--- a/civicrm/CRM/Mailing/Event/BAO/MailingEventResubscribe.php
+++ b/civicrm/CRM/Mailing/Event/BAO/MailingEventResubscribe.php
@@ -20,9 +20,9 @@ use Civi\Token\TokenProcessor;
 require_once 'Mail/mime.php';
 
 /**
- * Class CRM_Mailing_Event_BAO_Resubscribe
+ * Class CRM_Mailing_Event_BAO_MailingEventResubscribe
  */
-class CRM_Mailing_Event_BAO_Resubscribe {
+class CRM_Mailing_Event_BAO_MailingEventResubscribe {
 
   /**
    * Resubscribe a contact to the groups, he/she was unsubscribed from.
diff --git a/civicrm/CRM/Mailing/Page/Common.php b/civicrm/CRM/Mailing/Page/Common.php
index dac1304e9d1103bf7732c95f6e83bccce0d45a91..70ccd7f6cdce4fc69329a4b57366a3c73a56b18e 100644
--- a/civicrm/CRM/Mailing/Page/Common.php
+++ b/civicrm/CRM/Mailing/Page/Common.php
@@ -77,9 +77,9 @@ class CRM_Mailing_Page_Common extends CRM_Core_Page {
         }
       }
       elseif ($this->_type == 'resubscribe') {
-        $groups = CRM_Mailing_Event_BAO_Resubscribe::resub_to_mailing($job_id, $queue_id, $hash);
+        $groups = CRM_Mailing_Event_BAO_MailingEventResubscribe::resub_to_mailing($job_id, $queue_id, $hash);
         if (count($groups)) {
-          CRM_Mailing_Event_BAO_Resubscribe::send_resub_response($queue_id, $groups, $job_id);
+          CRM_Mailing_Event_BAO_MailingEventResubscribe::send_resub_response($queue_id, $groups, $job_id);
         }
         else {
           // should we indicate an error, or just ignore?
diff --git a/civicrm/api/v3/MailingEventResubscribe.php b/civicrm/api/v3/MailingEventResubscribe.php
index 1e5017caa42a6545867231d43679f82226838aa8..1749b1315695662a7fb2a68872734b118a955e33 100644
--- a/civicrm/api/v3/MailingEventResubscribe.php
+++ b/civicrm/api/v3/MailingEventResubscribe.php
@@ -26,14 +26,14 @@
  */
 function civicrm_api3_mailing_event_resubscribe_create($params) {
 
-  $groups = CRM_Mailing_Event_BAO_Resubscribe::resub_to_mailing(
+  $groups = CRM_Mailing_Event_BAO_MailingEventResubscribe::resub_to_mailing(
     $params['job_id'],
     $params['event_queue_id'],
     $params['hash']
   );
 
   if (count($groups)) {
-    CRM_Mailing_Event_BAO_Resubscribe::send_resub_response(
+    CRM_Mailing_Event_BAO_MailingEventResubscribe::send_resub_response(
       $params['event_queue_id'],
       $groups,
       $params['job_id']
diff --git a/civicrm/civicrm-version.php b/civicrm/civicrm-version.php
index 9f4912d3300246e66073a550d267535338ffaaaf..51f6baf8961087d1ef53d65797dcabcef0237bae 100644
--- a/civicrm/civicrm-version.php
+++ b/civicrm/civicrm-version.php
@@ -1,7 +1,7 @@
 <?php
 /** @deprecated */
 function civicrmVersion( ) {
-  return array( 'version'  => '5.57.2',
+  return array( 'version'  => '5.57.3',
                 'cms'      => 'Wordpress',
                 'revision' => '' );
 }
diff --git a/civicrm/ext/afform/admin/info.xml b/civicrm/ext/afform/admin/info.xml
index 0818af6b541e3c92db3a291f484bce7cc0ef03f3..52cfafc1abc87abb581b351cc2ff726be28886db 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.57.2</version>
+  <version>5.57.3</version>
   <develStage>beta</develStage>
   <compatibility>
     <ver>5.57</ver>
diff --git a/civicrm/ext/afform/core/info.xml b/civicrm/ext/afform/core/info.xml
index 7cea730a6ba6bd63daefb755b520cb7fd73c1791..9f5ff9bb8409d8520c50a4d6d9630dd177a0a898 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.57.2</version>
+  <version>5.57.3</version>
   <develStage>beta</develStage>
   <compatibility>
     <ver>5.57</ver>
diff --git a/civicrm/ext/afform/html/info.xml b/civicrm/ext/afform/html/info.xml
index ac981b4e5ac90ab5dff4c668ed513e4a9109c798..d92fa2b04bb88d858aa9d7d723cd73c0b9f03a48 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.57.2</version>
+  <version>5.57.3</version>
   <develStage>alpha</develStage>
   <compatibility>
     <ver>5.57</ver>
diff --git a/civicrm/ext/afform/mock/info.xml b/civicrm/ext/afform/mock/info.xml
index 888381ff62714de6ed81a69df74d26b991a08a67..daa5ae07d3971f60095aeabe6d1d91646aa31ebd 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.57.2</version>
+  <version>5.57.3</version>
   <tags>
     <tag>mgmt:hidden</tag>
   </tags>
diff --git a/civicrm/ext/authx/info.xml b/civicrm/ext/authx/info.xml
index 9c5b6ca438e331841d2d8e888686fb0314d26f9b..8d11fa48e145a2b9f19a48c5bf28bf3cbfa5d597 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.57.2</version>
+  <version>5.57.3</version>
   <develStage>stable</develStage>
   <compatibility>
     <ver>5.57</ver>
diff --git a/civicrm/ext/civicrm_admin_ui/info.xml b/civicrm/ext/civicrm_admin_ui/info.xml
index ad26019f6163a0f7e3def3c4a98b6bc7ea4fdfb8..1ab9385f4caeb15509dd510deb9165a42514c0a3 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.57.2</version>
+  <version>5.57.3</version>
   <develStage>alpha</develStage>
   <compatibility>
     <ver>5.57</ver>
diff --git a/civicrm/ext/civigrant/info.xml b/civicrm/ext/civigrant/info.xml
index be65f4ff9dbafc9a67523c258dc235f0743704d2..13b598f09e131fb86e3db9e0b1cb25ece3d07d8d 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.57.2</version>
+  <version>5.57.3</version>
   <develStage>stable</develStage>
   <compatibility>
     <ver>5.57</ver>
diff --git a/civicrm/ext/civiimport/info.xml b/civicrm/ext/civiimport/info.xml
index 11bde8ed9030e5d5b1d4d9d15abfd0aa74541130..4e5d61b864182675cd3970f7773f1fb16cd30cbb 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.57.2</version>
+  <version>5.57.3</version>
   <develStage>alpha</develStage>
   <compatibility>
     <ver>5.57</ver>
diff --git a/civicrm/ext/ckeditor4/info.xml b/civicrm/ext/ckeditor4/info.xml
index 8219c4da7fe5fa2ff8de8f1f1693dc59726275ed..44439f56a8175e6c69287001bb057902a73ea556 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.57.2</version>
+  <version>5.57.3</version>
   <develStage>stable</develStage>
   <compatibility>
     <ver>5.57</ver>
diff --git a/civicrm/ext/contributioncancelactions/info.xml b/civicrm/ext/contributioncancelactions/info.xml
index 384487a79c3642de5f55db061b09023d4ace415a..19997af8a46be2ad852e5a312568d92e4bb6e0d8 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.57.2</version>
+  <version>5.57.3</version>
   <develStage>stable</develStage>
   <compatibility>
     <ver>5.57</ver>
diff --git a/civicrm/ext/elavon/info.xml b/civicrm/ext/elavon/info.xml
index e80a40f06737613e267a5e73d83fa059e67979b0..6dab1b14747304af49701d06cb8b002ea4f767b2 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.57.2</version>
+  <version>5.57.3</version>
   <develStage>stable</develStage>
   <compatibility>
     <ver>5.57</ver>
diff --git a/civicrm/ext/eventcart/info.xml b/civicrm/ext/eventcart/info.xml
index 44973bddab64413895c55cf7958288529339f196..2ac6f5bc6198096dc9b8183aa6d9636052e2afed 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.57.2</version>
+  <version>5.57.3</version>
   <tags>
     <tag>mgmt:hidden</tag>
   </tags>
diff --git a/civicrm/ext/ewaysingle/info.xml b/civicrm/ext/ewaysingle/info.xml
index aff19efa8ee2550166f59c8a5a8bd1dc5ec58c7c..ed7b44e77106e08d3f91fa838a60371f48d87d56 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.57.2</version>
+  <version>5.57.3</version>
   <tags>
     <tag>mgmt:hidden</tag>
   </tags>
diff --git a/civicrm/ext/financialacls/info.xml b/civicrm/ext/financialacls/info.xml
index 910fdd3ff02e57ea28ff2b976064c39206fcd074..bee5608d6a37bd4d7c22ffcdafb59eda4393e315 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.57.2</version>
+  <version>5.57.3</version>
   <develStage>stable</develStage>
   <compatibility>
     <ver>5.57</ver>
diff --git a/civicrm/ext/financialacls/tests/phpunit/Civi/Financialacls/ContributionSoftTest.php b/civicrm/ext/financialacls/tests/phpunit/Civi/Financialacls/ContributionSoftTest.php
index 1438c21a0cfad4c35e0913f190188bec9b3e78d5..b635d702819d0ee7496567acfb6e73b3c76e46c9 100644
--- a/civicrm/ext/financialacls/tests/phpunit/Civi/Financialacls/ContributionSoftTest.php
+++ b/civicrm/ext/financialacls/tests/phpunit/Civi/Financialacls/ContributionSoftTest.php
@@ -73,7 +73,9 @@ class ContributionSoftTest extends BaseTestClass {
         'sct_label' => NULL,
       ],
     ];
-    $list = CRM_Contribute_BAO_ContributionSoft::getSoftContributionList($this->ids['Contact']['credited']);
+    $dataTableParameters = [];
+    $list = CRM_Contribute_BAO_ContributionSoft::getSoftContributionList($this->ids['Contact']['credited'], NULL, 0, $dataTableParameters);
+    $this->assertEquals(2, $dataTableParameters['total']);
     foreach ($expectedCredits[1] as $key => $value) {
       $this->assertEquals($value, $list[1][$key], $key);
     }
diff --git a/civicrm/ext/flexmailer/info.xml b/civicrm/ext/flexmailer/info.xml
index 71dfa71c574de7a063070756890b2117de54a400..49dc9872cde2d5710cca262fcc35f31a50e4f981 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.57.2</version>
+  <version>5.57.3</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 c4413da899295a92cb7ef2341b5f09a6a9f5feb2..8ab3bf9bbd1cab404447a58de360707a03b2bddf 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.57.2</version>
+  <version>5.57.3</version>
   <tags>
     <tag>mgmt:hidden</tag>
   </tags>
diff --git a/civicrm/ext/legacycustomsearches/info.xml b/civicrm/ext/legacycustomsearches/info.xml
index 4c8eacab9e6c3086e5e9bd4501069ecbbcb66a26..1357ce6c5a0150a1bd81eb10ec875bfdc4ead762 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.57.2</version>
+  <version>5.57.3</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 b87137b534a8d9869451c09957db2337b0d5813c..92a3bbd5f8bb9df40cf633e3429909c6c5c97b3b 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.57.2</version>
+  <version>5.57.3</version>
   <develStage>alpha</develStage>
   <compatibility>
     <ver>5.57</ver>
diff --git a/civicrm/ext/oauth-client/info.xml b/civicrm/ext/oauth-client/info.xml
index 48cbec2b9e0ddbb5eac1235e12e2c1381d06382e..8aaf3011d2e1cbec97ef83df8f1cf1814858131a 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.57.2</version>
+  <version>5.57.3</version>
   <develStage>stable</develStage>
   <compatibility>
     <ver>5.57</ver>
diff --git a/civicrm/ext/payflowpro/info.xml b/civicrm/ext/payflowpro/info.xml
index 43c548c6bf040e9010cfbefa6eaa43e5ae0ccd33..4518ef2287e48daae4c457fb0ea30bc6229a3e08 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.57.2</version>
+  <version>5.57.3</version>
   <develStage>stable</develStage>
   <compatibility>
     <ver>5.57</ver>
diff --git a/civicrm/ext/recaptcha/info.xml b/civicrm/ext/recaptcha/info.xml
index 629bccbc30451811c811953c325cfe98f590a3d3..888b9910ad2bf1584a657a240284e6fc6890ed1a 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.57.2</version>
+  <version>5.57.3</version>
   <tags>
     <tag>mgmt:hidden</tag>
   </tags>
diff --git a/civicrm/ext/search_kit/info.xml b/civicrm/ext/search_kit/info.xml
index e31ee15db4151bf0b97938191bdc60ec6163311e..62d7814392ab6e0c13847e4bf92261cfb49df46a 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.57.2</version>
+  <version>5.57.3</version>
   <develStage>stable</develStage>
   <tags>
     <tag>mgmt:required</tag>
diff --git a/civicrm/ext/sequentialcreditnotes/info.xml b/civicrm/ext/sequentialcreditnotes/info.xml
index 81ef8e3d8a4fa25cb79996929634c5726477849b..86a3cf80d429e1c84dededc6bf2298648472b075 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.57.2</version>
+  <version>5.57.3</version>
   <tags>
     <tag>mgmt:hidden</tag>
   </tags>
diff --git a/civicrm/release-notes.md b/civicrm/release-notes.md
index 8b0302ac2057dc2836bf1647af4a19299fa1e820..b06fe544eb959a6f6def1312ce243c0fe562bef6 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.57.3
+
+Released January 30, 2023
+
+- **[Synopsis](release-notes/5.57.3.md#synopsis)**
+- **[Bugs resolved](release-notes/5.57.3.md#bugs)**
+- **[Credits](release-notes/5.57.3.md#credits)**
+- **[Feedback](release-notes/5.57.3.md#feedback)**
+
 ## CiviCRM 5.57.2
 
 Released January 26, 2023
diff --git a/civicrm/release-notes/5.57.3.md b/civicrm/release-notes/5.57.3.md
new file mode 100644
index 0000000000000000000000000000000000000000..6983245cddc6a72a7f17659dc1b2acc4f6d083a8
--- /dev/null
+++ b/civicrm/release-notes/5.57.3.md
@@ -0,0 +1,38 @@
+# CiviCRM 5.57.3
+
+Released January 30, 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
+
+* **_CiviContribute_: Soft credit listing does not show count ([dev/core#4063](https://lab.civicrm.org/dev/core/-/issues/4063): [#25460](https://github.com/civicrm/civicrm-core/pull/25460))**
+* **_CiviMail_: Resubscribing leads to crash ([dev/core#4092](https://lab.civicrm.org/dev/core/-/issues/4092): [#25467](https://github.com/civicrm/civicrm-core/pull/25467))**
+
+## <a name="credits"></a>Credits
+
+This release was developed by the following authors and reviewers:
+
+Wildsight - Lars Sanders-Green; Wikimedia Foundation - Eileen McNaughton; JMA Consulting -
+Seamus Lee; Dave D; CiviCRM - Tim Otten; Bob Silvern
+
+## <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 4fb04a21fe7824f5e7a7b4dc73d690a98eca1bd9..545d90e2e1be6d67284d4833de3ae4cc16f667f3 100644
--- a/civicrm/sql/civicrm_data.mysql
+++ b/civicrm/sql/civicrm_data.mysql
@@ -23654,4 +23654,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.57.2';
+UPDATE civicrm_domain SET version = '5.57.3';
diff --git a/civicrm/sql/civicrm_generated.mysql b/civicrm/sql/civicrm_generated.mysql
index 12c152269001a376745cd63d199439d07aaa53e9..2711d97a6ed57f2b1ff3e64215a8a4c0ba345748 100644
--- a/civicrm/sql/civicrm_generated.mysql
+++ b/civicrm/sql/civicrm_generated.mysql
@@ -3056,7 +3056,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.57.2',1,NULL,'a:1:{s:5:\"en_US\";a:0:{}}');
+ (1,'Default Domain Name',NULL,'5.57.3',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 4e869e11cc71f9354328656d8ff50665cca4cf4b..509f64a097c4db702dbe71980be680b79b66ac31 100644
--- a/civicrm/vendor/autoload.php
+++ b/civicrm/vendor/autoload.php
@@ -4,4 +4,4 @@
 
 require_once __DIR__ . '/composer/autoload_real.php';
 
-return ComposerAutoloaderInit6c9ae686e246434c72842d75d7a476bb::getLoader();
+return ComposerAutoloaderInit410203b279dc82f6c58837c34a858504::getLoader();
diff --git a/civicrm/vendor/composer/autoload_real.php b/civicrm/vendor/composer/autoload_real.php
index 01320839da13701ba31f7a3529ead7ef449ab2e7..5d430f616a1c13bef2a7d3dd1cc4f9a70203ae9e 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 ComposerAutoloaderInit6c9ae686e246434c72842d75d7a476bb
+class ComposerAutoloaderInit410203b279dc82f6c58837c34a858504
 {
     private static $loader;
 
@@ -24,9 +24,9 @@ class ComposerAutoloaderInit6c9ae686e246434c72842d75d7a476bb
 
         require __DIR__ . '/platform_check.php';
 
-        spl_autoload_register(array('ComposerAutoloaderInit6c9ae686e246434c72842d75d7a476bb', 'loadClassLoader'), true, true);
+        spl_autoload_register(array('ComposerAutoloaderInit410203b279dc82f6c58837c34a858504', 'loadClassLoader'), true, true);
         self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__)));
-        spl_autoload_unregister(array('ComposerAutoloaderInit6c9ae686e246434c72842d75d7a476bb', 'loadClassLoader'));
+        spl_autoload_unregister(array('ComposerAutoloaderInit410203b279dc82f6c58837c34a858504', 'loadClassLoader'));
 
         $includePaths = require __DIR__ . '/include_paths.php';
         $includePaths[] = get_include_path();
@@ -36,7 +36,7 @@ class ComposerAutoloaderInit6c9ae686e246434c72842d75d7a476bb
         if ($useStaticLoader) {
             require __DIR__ . '/autoload_static.php';
 
-            call_user_func(\Composer\Autoload\ComposerStaticInit6c9ae686e246434c72842d75d7a476bb::getInitializer($loader));
+            call_user_func(\Composer\Autoload\ComposerStaticInit410203b279dc82f6c58837c34a858504::getInitializer($loader));
         } else {
             $map = require __DIR__ . '/autoload_namespaces.php';
             foreach ($map as $namespace => $path) {
@@ -57,12 +57,12 @@ class ComposerAutoloaderInit6c9ae686e246434c72842d75d7a476bb
         $loader->register(true);
 
         if ($useStaticLoader) {
-            $includeFiles = Composer\Autoload\ComposerStaticInit6c9ae686e246434c72842d75d7a476bb::$files;
+            $includeFiles = Composer\Autoload\ComposerStaticInit410203b279dc82f6c58837c34a858504::$files;
         } else {
             $includeFiles = require __DIR__ . '/autoload_files.php';
         }
         foreach ($includeFiles as $fileIdentifier => $file) {
-            composerRequire6c9ae686e246434c72842d75d7a476bb($fileIdentifier, $file);
+            composerRequire410203b279dc82f6c58837c34a858504($fileIdentifier, $file);
         }
 
         return $loader;
@@ -74,7 +74,7 @@ class ComposerAutoloaderInit6c9ae686e246434c72842d75d7a476bb
  * @param string $file
  * @return void
  */
-function composerRequire6c9ae686e246434c72842d75d7a476bb($fileIdentifier, $file)
+function composerRequire410203b279dc82f6c58837c34a858504($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 a85093da495dc7428024497492ade27545f05b41..a8bb8680cbd9f39b7c986571dabce81c61393097 100644
--- a/civicrm/vendor/composer/autoload_static.php
+++ b/civicrm/vendor/composer/autoload_static.php
@@ -4,7 +4,7 @@
 
 namespace Composer\Autoload;
 
-class ComposerStaticInit6c9ae686e246434c72842d75d7a476bb
+class ComposerStaticInit410203b279dc82f6c58837c34a858504
 {
     public static $files = array (
         'a4a119a56e50fbb293281d9a48007e0e' => __DIR__ . '/..' . '/symfony/polyfill-php80/bootstrap.php',
@@ -738,11 +738,11 @@ class ComposerStaticInit6c9ae686e246434c72842d75d7a476bb
     public static function getInitializer(ClassLoader $loader)
     {
         return \Closure::bind(function () use ($loader) {
-            $loader->prefixLengthsPsr4 = ComposerStaticInit6c9ae686e246434c72842d75d7a476bb::$prefixLengthsPsr4;
-            $loader->prefixDirsPsr4 = ComposerStaticInit6c9ae686e246434c72842d75d7a476bb::$prefixDirsPsr4;
-            $loader->prefixesPsr0 = ComposerStaticInit6c9ae686e246434c72842d75d7a476bb::$prefixesPsr0;
-            $loader->fallbackDirsPsr0 = ComposerStaticInit6c9ae686e246434c72842d75d7a476bb::$fallbackDirsPsr0;
-            $loader->classMap = ComposerStaticInit6c9ae686e246434c72842d75d7a476bb::$classMap;
+            $loader->prefixLengthsPsr4 = ComposerStaticInit410203b279dc82f6c58837c34a858504::$prefixLengthsPsr4;
+            $loader->prefixDirsPsr4 = ComposerStaticInit410203b279dc82f6c58837c34a858504::$prefixDirsPsr4;
+            $loader->prefixesPsr0 = ComposerStaticInit410203b279dc82f6c58837c34a858504::$prefixesPsr0;
+            $loader->fallbackDirsPsr0 = ComposerStaticInit410203b279dc82f6c58837c34a858504::$fallbackDirsPsr0;
+            $loader->classMap = ComposerStaticInit410203b279dc82f6c58837c34a858504::$classMap;
 
         }, null, ClassLoader::class);
     }
diff --git a/civicrm/vendor/composer/include_paths.php b/civicrm/vendor/composer/include_paths.php
index 06cf2843ee439212db0953b251eb0a3d769e64ee..189ce0e9b6cf55031ce76c58174cb9f3eb050687 100644
--- a/civicrm/vendor/composer/include_paths.php
+++ b/civicrm/vendor/composer/include_paths.php
@@ -12,9 +12,9 @@ return array(
     $vendorDir . '/pear/console_getopt',
     $vendorDir . '/pear/pear-core-minimal/src',
     $vendorDir . '/pear/db',
+    $vendorDir . '/pear/log',
     $vendorDir . '/pear/mail',
     $vendorDir . '/pear/mail_mime',
-    $vendorDir . '/pear/log',
     $vendorDir . '/pear/net_socket',
     $vendorDir . '/pear/net_smtp',
     $vendorDir . '/pear/validate_finance_creditcard',
diff --git a/civicrm/vendor/composer/installed.php b/civicrm/vendor/composer/installed.php
index e893ace168975c4fa03a43bea01152dd185081ba..6945361790ff5412c7524297c0b33163d63c2293 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' => '1addfdcbc131f23c79e1965238799af5c3bd7cbc',
+        'reference' => 'fdf3573185d42552e69e72e803acfaab5b072997',
         'name' => 'civicrm/civicrm-core',
         'dev' => true,
     ),
@@ -61,7 +61,7 @@
             'type' => 'library',
             'install_path' => __DIR__ . '/../../',
             'aliases' => array(),
-            'reference' => '1addfdcbc131f23c79e1965238799af5c3bd7cbc',
+            'reference' => 'fdf3573185d42552e69e72e803acfaab5b072997',
             'dev_requirement' => false,
         ),
         'civicrm/civicrm-cxn-rpc' => array(
diff --git a/civicrm/xml/version.xml b/civicrm/xml/version.xml
index 921319e24baf7a307e6f9cf8de0479501cd6de71..89a417b33f1dac895b3bd0e27f266d1665240790 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.57.2</version_no>
+  <version_no>5.57.3</version_no>
 </version>