Version 7.7.1.1 Released!

We have officially released version 7.7.1.1 for all commercial editions. The 7.7.1.1 release is available to download for On-Site customers and is being automatically applied to On-Demand instances running an earlier version of Sugar releases 7.x or 6.x.

This release provides an upgrade path from 6.5.24, 7.5.2.5, and 7.6.2.2, the security patches announced in Versions 6.5.24, 6.7.13, 7.5.2.5, and 7.6.2.2 have been released!, to 7.7.1.x. 

More information can be found in our 7.7.1.1 release notes:

Customers hosting Sugar on their own servers can review the following installation and upgrade instructions:

For information about what is new in 7.7 and 7.7.1.0, please review Version 7.7 Released! and Version 7.7.1.0 Released! in the community.

If you want to ensure you are up-to-date on all our latest releases, please click the ‘Follow’ button under the Explore space in the community.

Parents Comment Children
  • I've not had a chance to test 7.7.x yet but had some problems with Historical Summary action non triggering after putting in Historical Summary plugin in 7.5.x/7.6.x : https://developer.sugarcrm.com/?s=historical+summary 

    I had to explicitly add the event handler for the action.

    You could add Historical Summary to your record.php and add the event in Record View

    Add the action in your record view's metadata:

                  array (
                    'type' => 'rowaction',
                    'event' => 'button:historical_summary_button:click',
                    'name' => 'historical_summary_button',
                    'label' => 'LBL_HISTORICAL_SUMMARY',
                    'acl_action' => 'view',
                  ),

     

    then add the event handler in record.js initialize

     

      initialize: function(options){
        this._super('initialize', [options]);
        this.context.on('button:historical_summary_button:click', this.historicalSummaryClicked, this);
      }

    I suppose you could also add the View Change Log action back in a similar way, at least as a temporary patch.

    HTH

    FrancescaS