Skip to content
Snippets Groups Projects
Verified Commit 74a811cf authored by Kevin Cristiano's avatar Kevin Cristiano :earth_americas:
Browse files

civicrm release-5.79.2

parent 42230266
Branches
No related tags found
No related merge requests found
......@@ -2,7 +2,7 @@
/**
* Plugin Name: CiviCRM
* Description: CiviCRM - Growing and Sustaining Relationships
* Version: 5.79.1
* Version: 5.79.2
* Requires at least: 4.9
* Requires PHP: 7.4
* 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.79.1');
define('CIVICRM_PLUGIN_VERSION', '5.79.2');
// Store reference to this file.
if (!defined('CIVICRM_PLUGIN_FILE')) {
......
......@@ -994,7 +994,7 @@ SELECT is_primary,
}
while ($downstreamDao->fetch()) {
// call the function to update the relationship
$params['master_id'] = $addressId;
if ($masterId) {
// If we have a master_id AND we have downstream addresses, this is
// untenable. Ensure we overwrite the downstream addresses so they have
......@@ -1002,6 +1002,7 @@ SELECT is_primary,
$params['master_id'] = $masterId;
}
elseif ($createRelationship) {
// call the function to update the relationship
self::processSharedAddressRelationship($addressId, $downstreamDao->contact_id);
}
......
<?php
/** @deprecated */
function civicrmVersion( ) {
return array( 'version' => '5.79.1',
return array( 'version' => '5.79.2',
'cms' => 'Wordpress',
'revision' => '' );
}
......
"5.79.1"
"5.79.2"
......@@ -15,6 +15,15 @@ Other resources for identifying changes are:
* https://github.com/civicrm/civicrm-joomla
* https://github.com/civicrm/civicrm-wordpress
## CiviCRM 5.79.2
Released December 4, 2024
- **[Synopsis](release-notes/5.79.2.md#synopsis)**
- **[Bugs resolved](release-notes/5.79.2.md#bugs)**
- **[Credits](release-notes/5.79.2.md#credits)**
- **[Feedback](release-notes/5.79.2.md#feedback)**
## CiviCRM 5.79.1
Released November 25, 2024
......
# CiviCRM 5.79.2
Released December 4, 2024
- **[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
* **_Contacts_: Shared addresses become un-shared (after any edits) ([dev/core#5592](https://lab.civicrm.org/dev/core/-/issues/5592): [#31559](https://github.com/civicrm/civicrm-core/pull/31559))**
## <a name="credits"></a>Credits
This release was developed by the following authors and reviewers:
JMA Consulting - Seamus Lee; frankADsystopia.de; civiservice.de - Detlev Sieber; CiviCRM -
Coleman Watts, 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`.
......@@ -2969,7 +2969,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.79.1',1,NULL,'a:1:{s:5:\"en_US\";a:0:{}}');
(1,'Default Domain Name',NULL,'5.79.2',1,NULL,'a:1:{s:5:\"en_US\";a:0:{}}');
/*!40000 ALTER TABLE `civicrm_domain` ENABLE KEYS */;
UNLOCK TABLES;
 
......@@ -9,4 +9,4 @@ if (PHP_VERSION_ID < 50600) {
require_once __DIR__ . '/composer/autoload_real.php';
return ComposerAutoloaderInit22d6b31e3ab44c8446106332c4473494::getLoader();
return ComposerAutoloaderInit008315504314d1cd404f150338fa220b::getLoader();
......@@ -2,7 +2,7 @@
// autoload_real.php @generated by Composer
class ComposerAutoloaderInit22d6b31e3ab44c8446106332c4473494
class ComposerAutoloaderInit008315504314d1cd404f150338fa220b
{
private static $loader;
......@@ -24,22 +24,22 @@ class ComposerAutoloaderInit22d6b31e3ab44c8446106332c4473494
require __DIR__ . '/platform_check.php';
spl_autoload_register(array('ComposerAutoloaderInit22d6b31e3ab44c8446106332c4473494', 'loadClassLoader'), true, true);
spl_autoload_register(array('ComposerAutoloaderInit008315504314d1cd404f150338fa220b', 'loadClassLoader'), true, true);
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
spl_autoload_unregister(array('ComposerAutoloaderInit22d6b31e3ab44c8446106332c4473494', 'loadClassLoader'));
spl_autoload_unregister(array('ComposerAutoloaderInit008315504314d1cd404f150338fa220b', '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\ComposerStaticInit22d6b31e3ab44c8446106332c4473494::getInitializer($loader));
call_user_func(\Composer\Autoload\ComposerStaticInit008315504314d1cd404f150338fa220b::getInitializer($loader));
$loader->register(true);
$includeFiles = \Composer\Autoload\ComposerStaticInit22d6b31e3ab44c8446106332c4473494::$files;
$includeFiles = \Composer\Autoload\ComposerStaticInit008315504314d1cd404f150338fa220b::$files;
foreach ($includeFiles as $fileIdentifier => $file) {
composerRequire22d6b31e3ab44c8446106332c4473494($fileIdentifier, $file);
composerRequire008315504314d1cd404f150338fa220b($fileIdentifier, $file);
}
return $loader;
......@@ -51,7 +51,7 @@ class ComposerAutoloaderInit22d6b31e3ab44c8446106332c4473494
* @param string $file
* @return void
*/
function composerRequire22d6b31e3ab44c8446106332c4473494($fileIdentifier, $file)
function composerRequire008315504314d1cd404f150338fa220b($fileIdentifier, $file)
{
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
$GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
......
......@@ -4,7 +4,7 @@
namespace Composer\Autoload;
class ComposerStaticInit22d6b31e3ab44c8446106332c4473494
class ComposerStaticInit008315504314d1cd404f150338fa220b
{
public static $files = array (
'a4a119a56e50fbb293281d9a48007e0e' => __DIR__ . '/..' . '/symfony/polyfill-php80/bootstrap.php',
......@@ -684,11 +684,11 @@ class ComposerStaticInit22d6b31e3ab44c8446106332c4473494
public static function getInitializer(ClassLoader $loader)
{
return \Closure::bind(function () use ($loader) {
$loader->prefixLengthsPsr4 = ComposerStaticInit22d6b31e3ab44c8446106332c4473494::$prefixLengthsPsr4;
$loader->prefixDirsPsr4 = ComposerStaticInit22d6b31e3ab44c8446106332c4473494::$prefixDirsPsr4;
$loader->prefixesPsr0 = ComposerStaticInit22d6b31e3ab44c8446106332c4473494::$prefixesPsr0;
$loader->fallbackDirsPsr0 = ComposerStaticInit22d6b31e3ab44c8446106332c4473494::$fallbackDirsPsr0;
$loader->classMap = ComposerStaticInit22d6b31e3ab44c8446106332c4473494::$classMap;
$loader->prefixLengthsPsr4 = ComposerStaticInit008315504314d1cd404f150338fa220b::$prefixLengthsPsr4;
$loader->prefixDirsPsr4 = ComposerStaticInit008315504314d1cd404f150338fa220b::$prefixDirsPsr4;
$loader->prefixesPsr0 = ComposerStaticInit008315504314d1cd404f150338fa220b::$prefixesPsr0;
$loader->fallbackDirsPsr0 = ComposerStaticInit008315504314d1cd404f150338fa220b::$fallbackDirsPsr0;
$loader->classMap = ComposerStaticInit008315504314d1cd404f150338fa220b::$classMap;
}, null, ClassLoader::class);
}
......
......@@ -3,7 +3,7 @@
'name' => 'civicrm/civicrm-core',
'pretty_version' => '5.79.x-dev',
'version' => '5.79.9999999.9999999-dev',
'reference' => '745bcfe730c1b49bf73323e3dcef2a9160f25e78',
'reference' => '49976a8cac2a03a98171d492d1a4543ec2935346',
'type' => 'library',
'install_path' => __DIR__ . '/../../',
'aliases' => array(),
......@@ -49,7 +49,7 @@
'civicrm/civicrm-core' => array(
'pretty_version' => '5.79.x-dev',
'version' => '5.79.9999999.9999999-dev',
'reference' => '745bcfe730c1b49bf73323e3dcef2a9160f25e78',
'reference' => '49976a8cac2a03a98171d492d1a4543ec2935346',
'type' => 'library',
'install_path' => __DIR__ . '/../../',
'aliases' => array(),
......
<?xml version="1.0" encoding="iso-8859-1"?>
<version>
<version_no>5.79.1</version_no>
<releaseDate>2024-11-25</releaseDate>
<version_no>5.79.2</version_no>
<releaseDate>2024-12-04</releaseDate>
</version>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment