Set version to 5.44.alpha1
authorCiviCRM <info@civicrm.org>
Mon, 11 Oct 2021 07:23:17 +0000 (07:23 +0000)
committerCiviCRM <info@civicrm.org>
Mon, 11 Oct 2021 07:23:17 +0000 (07:23 +0000)
24 files changed:
CRM/Upgrade/Incremental/php/FiveFortyFour.php [new file with mode: 0644]
CRM/Upgrade/Incremental/sql/5.44.alpha1.mysql.tpl [new file with mode: 0644]
ext/afform/admin/info.xml
ext/afform/core/info.xml
ext/afform/html/info.xml
ext/afform/mock/info.xml
ext/authx/info.xml
ext/ckeditor4/info.xml
ext/contributioncancelactions/info.xml
ext/eventcart/info.xml
ext/ewaysingle/info.xml
ext/financialacls/info.xml
ext/flexmailer/info.xml
ext/greenwich/info.xml
ext/legacycustomsearches/info.xml
ext/message_admin/info.xml
ext/oauth-client/info.xml
ext/payflowpro/info.xml
ext/recaptcha/info.xml
ext/search_kit/info.xml
ext/sequentialcreditnotes/info.xml
sql/civicrm_generated.mysql
sql/test_data_second_domain.mysql
xml/version.xml

diff --git a/CRM/Upgrade/Incremental/php/FiveFortyFour.php b/CRM/Upgrade/Incremental/php/FiveFortyFour.php
new file mode 100644 (file)
index 0000000..b1f2a48
--- /dev/null
@@ -0,0 +1,75 @@
+<?php
+/*
+ +--------------------------------------------------------------------+
+ | Copyright CiviCRM LLC. All rights reserved.                        |
+ |                                                                    |
+ | This work is published under the GNU AGPLv3 license with some      |
+ | permitted exceptions and without any warranty. For full license    |
+ | and copyright information, see https://civicrm.org/licensing       |
+ +--------------------------------------------------------------------+
+ */
+
+/**
+ * Upgrade logic for FiveFortyFour */
+class CRM_Upgrade_Incremental_php_FiveFortyFour extends CRM_Upgrade_Incremental_Base {
+
+  /**
+   * Compute any messages which should be displayed beforeupgrade.
+   *
+   * Note: This function is called iteratively for each incremental upgrade step.
+   * There must be a concrete step (eg 'X.Y.Z.mysql.tpl' or 'upgrade_X_Y_Z()').
+   *
+   * @param string $preUpgradeMessage
+   * @param string $rev
+   *   a version number, e.g. '4.4.alpha1', '4.4.beta3', '4.4.0'.
+   * @param null $currentVer
+   */
+  public function setPreUpgradeMessage(&$preUpgradeMessage, $rev, $currentVer = NULL): void {
+    // Example: Generate a pre-upgrade message.
+    // if ($rev == '5.12.34') {
+    //   $preUpgradeMessage .= '<p>' . ts('A new permission, "%1", has been added. This permission is now used to control access to the Manage Tags screen.', array(1 => ts('manage tags'))) . '</p>';
+    // }
+  }
+
+  /**
+   * Compute any messages which should be displayed after upgrade.
+   *
+   * Note: This function is called iteratively for each incremental upgrade step.
+   * There must be a concrete step (eg 'X.Y.Z.mysql.tpl' or 'upgrade_X_Y_Z()').
+   *
+   * @param string $postUpgradeMessage
+   *   alterable.
+   * @param string $rev
+   *   an intermediate version; note that setPostUpgradeMessage is called repeatedly with different $revs.
+   */
+  public function setPostUpgradeMessage(&$postUpgradeMessage, $rev): void {
+    // Example: Generate a post-upgrade message.
+    // if ($rev == '5.12.34') {
+    //   $postUpgradeMessage .= '<br /><br />' . ts("By default, CiviCRM now disables the ability to import directly from SQL. To use this feature, you must explicitly grant permission 'import SQL datasource'.");
+    // }
+  }
+
+  /*
+   * Important! All upgrade functions MUST add a 'runSql' task.
+   * Uncomment and use the following template for a new upgrade version
+   * (change the x in the function name):
+   */
+
+  //  /**
+  //   * Upgrade function.
+  //   *
+  //   * @param string $rev
+  //   */
+  //  public function upgrade_5_0_x($rev): void {
+  //    $this->addTask(ts('Upgrade DB to %1: SQL', [1 => $rev]), 'runSql', $rev);
+  //    $this->addTask('Do the foo change', 'taskFoo', ...);
+  //    // Additional tasks here...
+  //    // Note: do not use ts() in the addTask description because it adds unnecessary strings to transifex.
+  //    // The above is an exception because 'Upgrade DB to %1: SQL' is generic & reusable.
+  //  }
+
+  // public static function taskFoo(CRM_Queue_TaskContext $ctx, ...): bool {
+  //   return TRUE;
+  // }
+
+}
diff --git a/CRM/Upgrade/Incremental/sql/5.44.alpha1.mysql.tpl b/CRM/Upgrade/Incremental/sql/5.44.alpha1.mysql.tpl
new file mode 100644 (file)
index 0000000..5164151
--- /dev/null
@@ -0,0 +1 @@
+{* file to handle db changes in 5.44.alpha1 during upgrade *}
index 569fcf0364508256e1809be34a4cbdfcba9c86ac..98f34ff4bb57551b6e6705f84e6fd651ee48b5a4 100644 (file)
@@ -15,7 +15,7 @@
     <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url>
   </urls>
   <releaseDate>2020-01-09</releaseDate>
-  <version>5.43.beta1</version>
+  <version>5.44.alpha1</version>
   <develStage>beta</develStage>
   <compatibility>
     <ver>5.23</ver>
index 6a83f501a333a495ca344d89dc0fe7fafce18308..34ed9f0265d35f7e840d9e43a93bcc55ed57bda9 100644 (file)
@@ -15,7 +15,7 @@
     <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url>
   </urls>
   <releaseDate>2020-01-09</releaseDate>
-  <version>5.43.beta1</version>
+  <version>5.44.alpha1</version>
   <develStage>beta</develStage>
   <compatibility>
     <ver>5.23</ver>
index 4a5368b260b8dbbc0dd40a2ca7a358abf8e36c0b..6c8675388ff60bba45b038bb35c2941fa5ea467e 100644 (file)
@@ -15,7 +15,7 @@
     <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url>
   </urls>
   <releaseDate>2020-01-09</releaseDate>
-  <version>5.43.beta1</version>
+  <version>5.44.alpha1</version>
   <develStage>alpha</develStage>
   <compatibility>
     <ver>5.23</ver>
index 87867ce2d94e7f615da1a1790b02c646666ef091..09274ace8c11329ecc2adcf96628605a669ebaf0 100644 (file)
@@ -15,7 +15,7 @@
     <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url>
   </urls>
   <releaseDate>2020-01-09</releaseDate>
-  <version>5.43.beta1</version>
+  <version>5.44.alpha1</version>
   <tags>
     <tag>mgmt:hidden</tag>
   </tags>
index 6baf04d009488de116b00d2f5a8a7b4e988882fc..7574da990358206c1224b3f6e1cae6b986e609c6 100644 (file)
@@ -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.43.beta1</version>
+  <version>5.44.alpha1</version>
   <develStage>alpha</develStage>
   <compatibility>
     <ver>5.0</ver>
index f4a941bf210c0efc39875a4ee0c866c18a2caa5d..db923c0d817c6df9d01fec4749bddb436c2421e8 100644 (file)
@@ -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.43.beta1</version>
+  <version>5.44.alpha1</version>
   <develStage>stable</develStage>
   <compatibility>
     <ver>5.39</ver>
index b25f22f7974859dc3f1f6f80959e6aaaa9d9f550..c2d84755ef235ab7f3d80dee1a7acd63f46f92c3 100644 (file)
@@ -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.43.beta1</version>
+  <version>5.44.alpha1</version>
   <develStage>stable</develStage>
   <compatibility>
     <ver>5.32</ver>
index a4e748ad88df53994c52736b65baff4e1211a5fe..c95f5ab292e5a60220ef5b4608283ecb532fe917 100644 (file)
@@ -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.43.beta1</version>
+  <version>5.44.alpha1</version>
   <tags>
     <tag>mgmt:hidden</tag>
   </tags>
index 7fbab0a5f983fcac06d2cabd5a94cbbdede8d345..648cab586d91de1935267b2d1a5ca284c49c722a 100644 (file)
@@ -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.43.beta1</version>
+  <version>5.44.alpha1</version>
   <tags>
     <tag>mgmt:hidden</tag>
   </tags>
index ce228c3426acb6539de1df56ef22cc64a54ea235..1f95dc448a6027d13476e642279c01d498a6df0d 100644 (file)
@@ -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.43.beta1</version>
+  <version>5.44.alpha1</version>
   <develStage>stable</develStage>
   <compatibility>
     <ver>5.30</ver>
index 17778128b3caf59c43763f89479e68a1cc1c40e5..083bfaa51fd5fc78619521e6851f843045c168fc 100644 (file)
@@ -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.43.beta1</version>
+  <version>5.44.alpha1</version>
   <develStage>stable</develStage>
   <comments>
     FlexMailer is an email delivery engine which replaces the internal guts
index 80aa0bc30ea2631de48222a46ff1724c80d9ef0d..0d9e2de60178eb88801e36b5ae625f7be5936337 100644 (file)
@@ -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.43.beta1</version>
+  <version>5.44.alpha1</version>
   <tags>
     <tag>mgmt:hidden</tag>
   </tags>
index 0377e5ea9807756830d721f8324afbb69da27db5..b6b28c0db35d23f05702e4b1fa9351b44f793ee1 100644 (file)
@@ -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.43.beta1</version>
+  <version>5.44.alpha1</version>
   <develStage>stable</develStage>
   <tags>
     <tag>mgmt:hidden</tag>
index d62003d8eab35a8744256e740020385694b1bbf3..7ddf974b2238aa76fff978e8d57ebff97b95064c 100644 (file)
@@ -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.43.beta1</version>
+  <version>5.44.alpha1</version>
   <tags>
     <tag>mgmt:hidden</tag>
   </tags>
index 4c7d6f62bd8046576ca33105f8f1b36cca4bc182..817294e9bffe652769fd5325471cbf64305c2823 100644 (file)
@@ -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.43.beta1</version>
+  <version>5.44.alpha1</version>
   <develStage>stable</develStage>
   <compatibility>
     <ver>5.38</ver>
index 90cecfa1376c51d80c488ac30466cc3d6c3a5617..4d200cbacf85165f5f647a83396db462d5d16113 100644 (file)
@@ -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.43.beta1</version>
+  <version>5.44.alpha1</version>
   <develStage>stable</develStage>
   <compatibility>
     <ver>5.0</ver>
index cee1c65660acdee2087fabd28ba5fbd4f62003ca..ec45d69ea8dce6a6867046608485d3a6e10c4f9a 100644 (file)
@@ -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.43.beta1</version>
+  <version>5.44.alpha1</version>
   <tags>
     <tag>mgmt:hidden</tag>
   </tags>
index b76ec495d3bc6161ee4f4546871286086ac28351..c2c4ccc59e2d911fbc104fca3510bf8c29b01646 100644 (file)
@@ -14,7 +14,7 @@
     <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url>
   </urls>
   <releaseDate>2021-01-06</releaseDate>
-  <version>5.43.beta1</version>
+  <version>5.44.alpha1</version>
   <develStage>beta</develStage>
   <compatibility>
     <ver>5.38</ver>
index 00731744a4921d27bb20b3ca71c41c2cb677272c..ae830716f112f6b3f85e0fba78d5af192eadd2e2 100644 (file)
@@ -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.43.beta1</version>
+  <version>5.44.alpha1</version>
   <tags>
     <tag>mgmt:hidden</tag>
   </tags>
index 2fb38ef5eb37c948958cb7ac9dae19e19b66a0c3..2b08fbc2c68bcdecb20e67ff29a4892ef7e75cd5 100644 (file)
@@ -2850,7 +2850,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.43.beta1',1,NULL,'a:1:{s:5:\"en_US\";a:0:{}}');
+ (1,'Default Domain Name',NULL,'5.44.alpha1',1,NULL,'a:1:{s:5:\"en_US\";a:0:{}}');
 /*!40000 ALTER TABLE `civicrm_domain` ENABLE KEYS */;
 UNLOCK TABLES;
 
index f017f4ca2ea347f28e04d5b91e27ebcdc8b00c89..cadbdbd5a499a8b3e154a17cc4a30b81224d29d9 100644 (file)
@@ -963,4 +963,4 @@ INSERT INTO civicrm_navigation
 VALUES
     ( @domainID, CONCAT('civicrm/report/instance/', @instanceID,'&reset=1'), 'Mailing Detail Report', 'Mailing Detail Report', 'administer CiviMail', 'OR', @reportlastID, '1', NULL, @instanceID+2 );
 UPDATE civicrm_report_instance SET navigation_id = LAST_INSERT_ID() WHERE id = @instanceID;
-UPDATE civicrm_domain SET version = '5.43.beta1';
+UPDATE civicrm_domain SET version = '5.44.alpha1';
index bdbca385e3fa93c7c36bb17bfd7d6a0b5779bb18..fc8a4bbaea97ec6f68911a70b98ecbe10181b90f 100644 (file)
@@ -1,4 +1,4 @@
 <?xml version="1.0" encoding="iso-8859-1" ?>
 <version>
-  <version_no>5.43.beta1</version_no>
+  <version_no>5.44.alpha1</version_no>
 </version>