Plugin Directory

Changeset 3397138


Ignore:
Timestamp:
11/17/2025 11:11:08 AM (5 months ago)
Author:
smartling
Message:

Update to v 5.0.1

Location:
smartling-connector/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • smartling-connector/trunk/inc/Smartling/Jobs/UploadJob.php

    r3347982 r3397138  
    111111    {
    112112        while (($submission = $this->submissionManager->findSubmissionForCloning($blogId)) !== null) {
    113             do_action(ExportedAPI::ACTION_SMARTLING_CLONE_CONTENT, $submission);
     113            try {
     114                do_action(ExportedAPI::ACTION_SMARTLING_CLONE_CONTENT, $submission);
     115            } catch (\Throwable $e) {
     116                $this->submissionManager->setErrorMessage($submission, $e->getMessage());
     117                continue;
     118            }
    114119            $this->placeLockFlag(true);
    115120        }
  • smartling-connector/trunk/readme.txt

    r3393007 r3397138  
    55Tested up to: 6.6.2
    66Requires PHP: 8.0
    7 Stable tag: 5.0.0
     7Stable tag: 5.0.1
    88License: GPLv2 or later
    99
     
    6363
    6464== Changelog ==
     65= 5.0.1 =
     66* Fixed issue where an exception during submission cloning would prevent the cloning queue from processing other items
     67
    6568= 5.0.0 =
    6669* Added Related assets UI to allow precise control over related content submission from the widget
  • smartling-connector/trunk/smartling-connector.php

    r3393007 r3397138  
    1212 * Plugin URI:        https://www.smartling.com/products/automate/integrations/wordpress/
    1313 * Description:       Integrate your WordPress site with Smartling to upload your content and download translations.
    14  * Version:           5.0.0
     14 * Version:           5.0.1
    1515 * Author:            Smartling
    1616 * Author URI:        https://www.smartling.com
Note: See TracChangeset for help on using the changeset viewer.