Changeset 3210927
- Timestamp:
- 12/20/2024 09:45:08 AM (13 months ago)
- Location:
- integration-dynamics
- Files:
-
- 2 added
- 10 edited
- 1 copied
-
tags/1.3.24 (copied) (copied from integration-dynamics/trunk)
-
tags/1.3.24/integration-dynamics.php (modified) (2 diffs)
-
tags/1.3.24/readme.txt (modified) (2 diffs)
-
tags/1.3.24/src/Shortcode/Twig.php (modified) (2 diffs)
-
tags/1.3.24/src/Shortcode/Twig/SecurityPolicy.php (added)
-
tags/1.3.24/vendor/composer/autoload_classmap.php (modified) (1 diff)
-
tags/1.3.24/vendor/composer/autoload_static.php (modified) (1 diff)
-
trunk/integration-dynamics.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/src/Shortcode/Twig.php (modified) (2 diffs)
-
trunk/src/Shortcode/Twig/SecurityPolicy.php (added)
-
trunk/vendor/composer/autoload_classmap.php (modified) (1 diff)
-
trunk/vendor/composer/autoload_static.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
integration-dynamics/tags/1.3.24/integration-dynamics.php
r3200725 r3210927 4 4 * Plugin URI: https://wordpress.org/plugins/integration-dynamics/ 5 5 * Description: The easiest way to connect Dynamics 365 and Dynamics CRM with WordPress. 6 * Version: 1.3.2 36 * Version: 1.3.24 7 7 * Requires at least: 4.9 8 8 * Requires PHP: 7.2.5 … … 17 17 } 18 18 19 define( 'WORDPRESSCRM_VERSION', '1.3.2 3' );19 define( 'WORDPRESSCRM_VERSION', '1.3.24' ); 20 20 21 21 define( 'WORDPRESSCRM_DIR', __DIR__ ); -
integration-dynamics/tags/1.3.24/readme.txt
r3200725 r3210927 68 68 == Changelog == 69 69 70 = 1.3.24 = 71 72 **PHP Version Support Notice** 73 This 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 75 Future 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 70 79 = 1.3.23 = 71 80 … … 85 94 = 1.3.20 = 86 95 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 90 97 91 98 = 1.3.19 = -
integration-dynamics/tags/1.3.24/src/Shortcode/Twig.php
r2672266 r3210927 8 8 use AlexaCRM\WordpressCRM\Cache\TwigCache; 9 9 use AlexaCRM\WordpressCRM\Shortcode; 10 use AlexaCRM\WordpressCRM\Shortcode\Twig\SecurityPolicy; 10 11 use DOMDocument; 12 use Twig\Extension\SandboxExtension; 11 13 use Twig\TwigFilter; 12 14 … … 93 95 ] ); 94 96 //REMOVED: $twigEnv->setBaseTemplateClass( '\AlexaCRM\WordpressCRM\Shortcode\Twig\Template' ); 97 98 $twigEnv->addExtension(new SandboxExtension( new SecurityPolicy(), true)); 95 99 96 100 if ( $isDebugEnabled ) { -
integration-dynamics/tags/1.3.24/vendor/composer/autoload_classmap.php
r3200725 r3210927 96 96 'AlexaCRM\\WordpressCRM\\Shortcode\\Twig\\Nodes\\FormNode' => $baseDir . '/src/Shortcode/Twig/Nodes/FormNode.php', 97 97 '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', 98 99 'AlexaCRM\\WordpressCRM\\Shortcode\\Twig\\Template' => $baseDir . '/src/Shortcode/Twig/Template.php', 99 100 'AlexaCRM\\WordpressCRM\\Shortcode\\Twig\\TokenParser' => $baseDir . '/src/Shortcode/Twig/TokenParser.php', -
integration-dynamics/tags/1.3.24/vendor/composer/autoload_static.php
r3200725 r3210927 170 170 'AlexaCRM\\WordpressCRM\\Shortcode\\Twig\\Nodes\\FormNode' => __DIR__ . '/../..' . '/src/Shortcode/Twig/Nodes/FormNode.php', 171 171 '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', 172 173 'AlexaCRM\\WordpressCRM\\Shortcode\\Twig\\Template' => __DIR__ . '/../..' . '/src/Shortcode/Twig/Template.php', 173 174 'AlexaCRM\\WordpressCRM\\Shortcode\\Twig\\TokenParser' => __DIR__ . '/../..' . '/src/Shortcode/Twig/TokenParser.php', -
integration-dynamics/trunk/integration-dynamics.php
r3200725 r3210927 4 4 * Plugin URI: https://wordpress.org/plugins/integration-dynamics/ 5 5 * Description: The easiest way to connect Dynamics 365 and Dynamics CRM with WordPress. 6 * Version: 1.3.2 36 * Version: 1.3.24 7 7 * Requires at least: 4.9 8 8 * Requires PHP: 7.2.5 … … 17 17 } 18 18 19 define( 'WORDPRESSCRM_VERSION', '1.3.2 3' );19 define( 'WORDPRESSCRM_VERSION', '1.3.24' ); 20 20 21 21 define( 'WORDPRESSCRM_DIR', __DIR__ ); -
integration-dynamics/trunk/readme.txt
r3200725 r3210927 68 68 == Changelog == 69 69 70 = 1.3.24 = 71 72 **PHP Version Support Notice** 73 This 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 75 Future 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 70 79 = 1.3.23 = 71 80 … … 85 94 = 1.3.20 = 86 95 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 90 97 91 98 = 1.3.19 = -
integration-dynamics/trunk/src/Shortcode/Twig.php
r2672266 r3210927 8 8 use AlexaCRM\WordpressCRM\Cache\TwigCache; 9 9 use AlexaCRM\WordpressCRM\Shortcode; 10 use AlexaCRM\WordpressCRM\Shortcode\Twig\SecurityPolicy; 10 11 use DOMDocument; 12 use Twig\Extension\SandboxExtension; 11 13 use Twig\TwigFilter; 12 14 … … 93 95 ] ); 94 96 //REMOVED: $twigEnv->setBaseTemplateClass( '\AlexaCRM\WordpressCRM\Shortcode\Twig\Template' ); 97 98 $twigEnv->addExtension(new SandboxExtension( new SecurityPolicy(), true)); 95 99 96 100 if ( $isDebugEnabled ) { -
integration-dynamics/trunk/vendor/composer/autoload_classmap.php
r3200725 r3210927 96 96 'AlexaCRM\\WordpressCRM\\Shortcode\\Twig\\Nodes\\FormNode' => $baseDir . '/src/Shortcode/Twig/Nodes/FormNode.php', 97 97 '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', 98 99 'AlexaCRM\\WordpressCRM\\Shortcode\\Twig\\Template' => $baseDir . '/src/Shortcode/Twig/Template.php', 99 100 'AlexaCRM\\WordpressCRM\\Shortcode\\Twig\\TokenParser' => $baseDir . '/src/Shortcode/Twig/TokenParser.php', -
integration-dynamics/trunk/vendor/composer/autoload_static.php
r3200725 r3210927 170 170 'AlexaCRM\\WordpressCRM\\Shortcode\\Twig\\Nodes\\FormNode' => __DIR__ . '/../..' . '/src/Shortcode/Twig/Nodes/FormNode.php', 171 171 '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', 172 173 'AlexaCRM\\WordpressCRM\\Shortcode\\Twig\\Template' => __DIR__ . '/../..' . '/src/Shortcode/Twig/Template.php', 173 174 'AlexaCRM\\WordpressCRM\\Shortcode\\Twig\\TokenParser' => __DIR__ . '/../..' . '/src/Shortcode/Twig/TokenParser.php',
Note: See TracChangeset
for help on using the changeset viewer.