Plugin Directory

Changeset 3210927


Ignore:
Timestamp:
12/20/2024 09:45:08 AM (13 months ago)
Author:
alexacrm
Message:

Release 1.3.24

Location:
integration-dynamics
Files:
2 added
10 edited
1 copied

Legend:

Unmodified
Added
Removed
  • integration-dynamics/tags/1.3.24/integration-dynamics.php

    r3200725 r3210927  
    44 * Plugin URI: https://wordpress.org/plugins/integration-dynamics/
    55 * Description: The easiest way to connect Dynamics 365 and Dynamics CRM with WordPress.
    6  * Version: 1.3.23
     6 * Version: 1.3.24
    77 * Requires at least: 4.9
    88 * Requires PHP: 7.2.5
     
    1717}
    1818
    19 define( 'WORDPRESSCRM_VERSION', '1.3.23' );
     19define( 'WORDPRESSCRM_VERSION', '1.3.24' );
    2020
    2121define( 'WORDPRESSCRM_DIR', __DIR__ );
  • integration-dynamics/tags/1.3.24/readme.txt

    r3200725 r3210927  
    6868== Changelog ==
    6969
     70= 1.3.24 =
     71
     72**PHP Version Support Notice**
     73This version of the plugin is the final release to support PHP 7.4, 8.0, and 8.1. It includes critical security fixes, and we strongly recommend updating your installation to this version.
     74
     75Future versions of the plugin will require PHP versions that are actively supported according to the [official PHP supported versions](https://www.php.net/supported-versions.php), starting with PHP 8.2. We will continue to backport only critical security fixes to this version for PHP 7.4, 8.0, and 8.1.
     76
     77* Fixed security issue in Twig templates rendering
     78
    7079= 1.3.23 =
    7180
     
    8594= 1.3.20 =
    8695
    87 **PHP Version Support Notice**
    88 This version of the plugin is the final release to support PHP 7.4, 8.0, and 8.1. Future releases will require PHP 8.2 or higher. We will continue to backport critical security fixes to this version for PHP 7.4, 8.0, and 8.1.
    89 Moving forward, the plugin will require PHP versions that are actively supported according to the [official PHP supported versions](https://www.php.net/supported-versions.php).
     96* Maintenance release
    9097
    9198= 1.3.19 =
  • integration-dynamics/tags/1.3.24/src/Shortcode/Twig.php

    r2672266 r3210927  
    88use AlexaCRM\WordpressCRM\Cache\TwigCache;
    99use AlexaCRM\WordpressCRM\Shortcode;
     10use AlexaCRM\WordpressCRM\Shortcode\Twig\SecurityPolicy;
    1011use DOMDocument;
     12use Twig\Extension\SandboxExtension;
    1113use Twig\TwigFilter;
    1214
     
    9395        ] );
    9496        //REMOVED: $twigEnv->setBaseTemplateClass( '\AlexaCRM\WordpressCRM\Shortcode\Twig\Template' );
     97
     98        $twigEnv->addExtension(new SandboxExtension( new SecurityPolicy(), true));
    9599
    96100        if ( $isDebugEnabled ) {
  • integration-dynamics/tags/1.3.24/vendor/composer/autoload_classmap.php

    r3200725 r3210927  
    9696    'AlexaCRM\\WordpressCRM\\Shortcode\\Twig\\Nodes\\FormNode' => $baseDir . '/src/Shortcode/Twig/Nodes/FormNode.php',
    9797    'AlexaCRM\\WordpressCRM\\Shortcode\\Twig\\Nodes\\ViewNode' => $baseDir . '/src/Shortcode/Twig/Nodes/ViewNode.php',
     98    'AlexaCRM\\WordpressCRM\\Shortcode\\Twig\\SecurityPolicy' => $baseDir . '/src/Shortcode/Twig/SecurityPolicy.php',
    9899    'AlexaCRM\\WordpressCRM\\Shortcode\\Twig\\Template' => $baseDir . '/src/Shortcode/Twig/Template.php',
    99100    'AlexaCRM\\WordpressCRM\\Shortcode\\Twig\\TokenParser' => $baseDir . '/src/Shortcode/Twig/TokenParser.php',
  • integration-dynamics/tags/1.3.24/vendor/composer/autoload_static.php

    r3200725 r3210927  
    170170        'AlexaCRM\\WordpressCRM\\Shortcode\\Twig\\Nodes\\FormNode' => __DIR__ . '/../..' . '/src/Shortcode/Twig/Nodes/FormNode.php',
    171171        'AlexaCRM\\WordpressCRM\\Shortcode\\Twig\\Nodes\\ViewNode' => __DIR__ . '/../..' . '/src/Shortcode/Twig/Nodes/ViewNode.php',
     172        'AlexaCRM\\WordpressCRM\\Shortcode\\Twig\\SecurityPolicy' => __DIR__ . '/../..' . '/src/Shortcode/Twig/SecurityPolicy.php',
    172173        'AlexaCRM\\WordpressCRM\\Shortcode\\Twig\\Template' => __DIR__ . '/../..' . '/src/Shortcode/Twig/Template.php',
    173174        'AlexaCRM\\WordpressCRM\\Shortcode\\Twig\\TokenParser' => __DIR__ . '/../..' . '/src/Shortcode/Twig/TokenParser.php',
  • integration-dynamics/trunk/integration-dynamics.php

    r3200725 r3210927  
    44 * Plugin URI: https://wordpress.org/plugins/integration-dynamics/
    55 * Description: The easiest way to connect Dynamics 365 and Dynamics CRM with WordPress.
    6  * Version: 1.3.23
     6 * Version: 1.3.24
    77 * Requires at least: 4.9
    88 * Requires PHP: 7.2.5
     
    1717}
    1818
    19 define( 'WORDPRESSCRM_VERSION', '1.3.23' );
     19define( 'WORDPRESSCRM_VERSION', '1.3.24' );
    2020
    2121define( 'WORDPRESSCRM_DIR', __DIR__ );
  • integration-dynamics/trunk/readme.txt

    r3200725 r3210927  
    6868== Changelog ==
    6969
     70= 1.3.24 =
     71
     72**PHP Version Support Notice**
     73This version of the plugin is the final release to support PHP 7.4, 8.0, and 8.1. It includes critical security fixes, and we strongly recommend updating your installation to this version.
     74
     75Future versions of the plugin will require PHP versions that are actively supported according to the [official PHP supported versions](https://www.php.net/supported-versions.php), starting with PHP 8.2. We will continue to backport only critical security fixes to this version for PHP 7.4, 8.0, and 8.1.
     76
     77* Fixed security issue in Twig templates rendering
     78
    7079= 1.3.23 =
    7180
     
    8594= 1.3.20 =
    8695
    87 **PHP Version Support Notice**
    88 This version of the plugin is the final release to support PHP 7.4, 8.0, and 8.1. Future releases will require PHP 8.2 or higher. We will continue to backport critical security fixes to this version for PHP 7.4, 8.0, and 8.1.
    89 Moving forward, the plugin will require PHP versions that are actively supported according to the [official PHP supported versions](https://www.php.net/supported-versions.php).
     96* Maintenance release
    9097
    9198= 1.3.19 =
  • integration-dynamics/trunk/src/Shortcode/Twig.php

    r2672266 r3210927  
    88use AlexaCRM\WordpressCRM\Cache\TwigCache;
    99use AlexaCRM\WordpressCRM\Shortcode;
     10use AlexaCRM\WordpressCRM\Shortcode\Twig\SecurityPolicy;
    1011use DOMDocument;
     12use Twig\Extension\SandboxExtension;
    1113use Twig\TwigFilter;
    1214
     
    9395        ] );
    9496        //REMOVED: $twigEnv->setBaseTemplateClass( '\AlexaCRM\WordpressCRM\Shortcode\Twig\Template' );
     97
     98        $twigEnv->addExtension(new SandboxExtension( new SecurityPolicy(), true));
    9599
    96100        if ( $isDebugEnabled ) {
  • integration-dynamics/trunk/vendor/composer/autoload_classmap.php

    r3200725 r3210927  
    9696    'AlexaCRM\\WordpressCRM\\Shortcode\\Twig\\Nodes\\FormNode' => $baseDir . '/src/Shortcode/Twig/Nodes/FormNode.php',
    9797    'AlexaCRM\\WordpressCRM\\Shortcode\\Twig\\Nodes\\ViewNode' => $baseDir . '/src/Shortcode/Twig/Nodes/ViewNode.php',
     98    'AlexaCRM\\WordpressCRM\\Shortcode\\Twig\\SecurityPolicy' => $baseDir . '/src/Shortcode/Twig/SecurityPolicy.php',
    9899    'AlexaCRM\\WordpressCRM\\Shortcode\\Twig\\Template' => $baseDir . '/src/Shortcode/Twig/Template.php',
    99100    'AlexaCRM\\WordpressCRM\\Shortcode\\Twig\\TokenParser' => $baseDir . '/src/Shortcode/Twig/TokenParser.php',
  • integration-dynamics/trunk/vendor/composer/autoload_static.php

    r3200725 r3210927  
    170170        'AlexaCRM\\WordpressCRM\\Shortcode\\Twig\\Nodes\\FormNode' => __DIR__ . '/../..' . '/src/Shortcode/Twig/Nodes/FormNode.php',
    171171        'AlexaCRM\\WordpressCRM\\Shortcode\\Twig\\Nodes\\ViewNode' => __DIR__ . '/../..' . '/src/Shortcode/Twig/Nodes/ViewNode.php',
     172        'AlexaCRM\\WordpressCRM\\Shortcode\\Twig\\SecurityPolicy' => __DIR__ . '/../..' . '/src/Shortcode/Twig/SecurityPolicy.php',
    172173        'AlexaCRM\\WordpressCRM\\Shortcode\\Twig\\Template' => __DIR__ . '/../..' . '/src/Shortcode/Twig/Template.php',
    173174        'AlexaCRM\\WordpressCRM\\Shortcode\\Twig\\TokenParser' => __DIR__ . '/../..' . '/src/Shortcode/Twig/TokenParser.php',
Note: See TracChangeset for help on using the changeset viewer.