Plugin Directory

Changeset 3214712


Ignore:
Timestamp:
12/30/2024 09:02:55 AM (14 months ago)
Author:
axeptio
Message:

version 2.5.5 release

Location:
axeptio-sdk-integration
Files:
1502 added
4 edited

Legend:

Unmodified
Added
Removed
  • axeptio-sdk-integration/trunk/axeptio-wordpress-plugin.php

    r3210550 r3214712  
    44    Plugin URI: https://www.axeptio.eu/
    55    Description: Axeptio allows you to make your website compliant with GDPR.
    6     Version: 2.5.4
     6    Version: 2.5.5
    77    Author: axeptio
    88    License: GPLv3
     
    1212 **/
    1313
    14 use Axeptio\Plugin\Models\Settings;
    15 
    16 define( 'XPWP_VERSION', '2.5.4' );
     14define( 'XPWP_VERSION', '2.5.5' );
    1715define( 'XPWP_URL', plugin_dir_url( __FILE__ ) );
    1816define( 'XPWP_PATH', plugin_dir_path( __FILE__ ) );
  • axeptio-sdk-integration/trunk/includes/classes/class-module-initialization.php

    r3127421 r3214712  
    1212use Axeptio\Plugin\Frontend\Axeptio_Sdk;
    1313use Axeptio\Plugin\Compat\AlpineJS_Wpkses;
    14 use Axeptio\Plugin\Frontend\Cookie;
    1514use Axeptio\Plugin\Frontend\Hook_Modifier;
    1615use Axeptio\Plugin\Frontend\Sdk_Proxy;
     
    7271            AlpineJS_Wpkses::class,
    7372            Admin\Pages\Admin_Main::class,
    74             Cookie::class,
    7573            Axeptio_Sdk::class,
    7674            Hook_Modifier::class,
  • axeptio-sdk-integration/trunk/includes/classes/frontend/class-axeptio-sdk.php

    r3206185 r3214712  
    105105        wp_localize_script( 'axeptio/sdk-script', 'axeptioWordpressVendors', $wordpress_vendors );
    106106        wp_localize_script( 'axeptio/sdk-script', 'axeptioWordpressSteps', Axeptio_Steps::all() );
    107         wp_localize_script(
    108             'axeptio/sdk-script',
    109             'axeptioAjax',
    110             array(
    111                 'wp'  => array( 'relativePath' => get_relative_path( XPWP_PATH, ABSPATH ) ),
    112                 'url' => XPWP_URL . '/ajax.php',
    113             )
    114             );
    115107
    116108        $sdk_script = \Axeptio\Plugin\get_template_part( 'frontend/sdk', array(), false );
  • axeptio-sdk-integration/trunk/readme.txt

    r3210550 r3214712  
    44Requires at least: 5.0
    55Tested up to: 6.5.5
    6 Stable tag: 2.5.4
     6Stable tag: 2.5.5
    77Requires PHP: 7.4
    88License: GPLv3
     
    8585== Changelog ==
    8686
     87### 🔒 2.5.5 🔒 ###
     88
     89**Security Update:**
     90- Removed temporarily local cookie handling to eliminate potential risks.
     91
    8792### 🔒 2.5.4 🔒 ###
    8893
Note: See TracChangeset for help on using the changeset viewer.