Plugin Directory

Changeset 3174370


Ignore:
Timestamp:
10/23/2024 01:19:26 PM (17 months ago)
Author:
parcelpro
Message:

Update to version 1.9.0 from GitHub

Location:
woo-parcel-pro
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • woo-parcel-pro/tags/1.9.0/admin/class-parcelpro-admin.php

    r3102312 r3174370  
    298298
    299299        if (!isset($_REQUEST['_wpnonce'])) {
    300             wp_die("No nonce set for action: $action ($nonceAction)");
     300            wp_die(esc_html("No nonce set for action: $action ($nonceAction)"));
    301301        }
    302302
    303303        if (!wp_verify_nonce($_REQUEST['_wpnonce'], $nonceAction)) {
    304             wp_die("Invalid nonce for action: $action ($nonceAction)");
     304            wp_die(esc_html("Invalid nonce for action: $action ($nonceAction)"));
    305305        }
    306306
  • woo-parcel-pro/tags/1.9.0/changelog.md

    r3102312 r3174370  
    11# Changelog
     2
     3## 1.9.0 - 2024-10-23
     4* Fix XSS vulnerability in nonce error message
    25
    36## 1.8.4 - 2024-06-13
  • woo-parcel-pro/tags/1.9.0/composer.json

    r3102312 r3174370  
    33  "description": "Verzendmodule om gemakkelijk orders in te laden in het verzendsysteem van Parcel Pro.",
    44  "type": "wordpress-plugin",
    5   "version": "1.8.4",
     5  "version": "1.9.0",
    66  "require": {
    77    "php": ">=7.1",
  • woo-parcel-pro/tags/1.9.0/woocommerce-parcelpro.php

    r3102312 r3174370  
    1414 *
    1515 * @wordpress-plugin
    16  * Plugin Name:     WooCommerce Parcel Pro
     16 * Plugin Name:     Parcel Pro for WooCommerce
    1717 * Plugin URI:      https://www.parcelpro.nl/koppelingen/woocommerce/
    1818 * Description:     Geef klanten de mogelijkheid om hun pakket af te halen bij een afhaalpunt in de buurt. Daarnaast exporteert de plug-in uw zendingen direct in het verzendsysteem van Parcel Pro.
    19  * Version:         1.8.4
     19 * Version:         1.9.0
    2020 * Author:          Parcel Pro
    2121 * Author URI:      https://parcelpro.nl/
    2222 * License:         GPL-3.0+
    2323 * License URI:     http://www.gnu.org/licenses/gpl-3.0.txt
    24  * Text Domain:     woocommerce_parcelpro
    25  * Domain Path:     /languages
     24 * Text Domain:     woo-parcel-pro
    2625 */
    2726
     
    3130
    3231define('PARCELPRO_NAME', 'WooCommerce Parcel Pro');
    33 define('PARCELPRO_VERSION', '1.8.4');
     32define('PARCELPRO_VERSION', '1.9.0');
    3433define('PARCELPRO_REQUIRED_PHP_VERSION', '5.3');
    3534define('PARCELPRO_REQUIRED_WP_VERSION', '3.1');
  • woo-parcel-pro/trunk/admin/class-parcelpro-admin.php

    r3102312 r3174370  
    298298
    299299        if (!isset($_REQUEST['_wpnonce'])) {
    300             wp_die("No nonce set for action: $action ($nonceAction)");
     300            wp_die(esc_html("No nonce set for action: $action ($nonceAction)"));
    301301        }
    302302
    303303        if (!wp_verify_nonce($_REQUEST['_wpnonce'], $nonceAction)) {
    304             wp_die("Invalid nonce for action: $action ($nonceAction)");
     304            wp_die(esc_html("Invalid nonce for action: $action ($nonceAction)"));
    305305        }
    306306
  • woo-parcel-pro/trunk/changelog.md

    r3102312 r3174370  
    11# Changelog
     2
     3## 1.9.0 - 2024-10-23
     4* Fix XSS vulnerability in nonce error message
    25
    36## 1.8.4 - 2024-06-13
  • woo-parcel-pro/trunk/composer.json

    r3102312 r3174370  
    33  "description": "Verzendmodule om gemakkelijk orders in te laden in het verzendsysteem van Parcel Pro.",
    44  "type": "wordpress-plugin",
    5   "version": "1.8.4",
     5  "version": "1.9.0",
    66  "require": {
    77    "php": ">=7.1",
  • woo-parcel-pro/trunk/woocommerce-parcelpro.php

    r3102312 r3174370  
    1414 *
    1515 * @wordpress-plugin
    16  * Plugin Name:     WooCommerce Parcel Pro
     16 * Plugin Name:     Parcel Pro for WooCommerce
    1717 * Plugin URI:      https://www.parcelpro.nl/koppelingen/woocommerce/
    1818 * Description:     Geef klanten de mogelijkheid om hun pakket af te halen bij een afhaalpunt in de buurt. Daarnaast exporteert de plug-in uw zendingen direct in het verzendsysteem van Parcel Pro.
    19  * Version:         1.8.4
     19 * Version:         1.9.0
    2020 * Author:          Parcel Pro
    2121 * Author URI:      https://parcelpro.nl/
    2222 * License:         GPL-3.0+
    2323 * License URI:     http://www.gnu.org/licenses/gpl-3.0.txt
    24  * Text Domain:     woocommerce_parcelpro
    25  * Domain Path:     /languages
     24 * Text Domain:     woo-parcel-pro
    2625 */
    2726
     
    3130
    3231define('PARCELPRO_NAME', 'WooCommerce Parcel Pro');
    33 define('PARCELPRO_VERSION', '1.8.4');
     32define('PARCELPRO_VERSION', '1.9.0');
    3433define('PARCELPRO_REQUIRED_PHP_VERSION', '5.3');
    3534define('PARCELPRO_REQUIRED_WP_VERSION', '3.1');
Note: See TracChangeset for help on using the changeset viewer.