Plugin Directory

Changeset 3401002


Ignore:
Timestamp:
11/22/2025 03:29:21 PM (4 months ago)
Author:
Iulia Cazan
Message:

Version 3.5.2

Location:
easy-replace-image
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • easy-replace-image/assets/blueprint.json

    r3286333 r3401002  
    22    "landingPage": "\/wp-admin\/plugins.php",
    33    "preferredVersions": {
    4         "php": "8.0",
     4        "php": "8.4",
    55        "wp": "latest"
    66    },
     
    1616            "pluginZipFile": {
    1717                "resource": "url",
    18                 "url": "https:\/\/downloads.wordpress.org\/plugin\/easy-replace-image.3.5.1.zip"
     18                "url": "https:\/\/downloads.wordpress.org\/plugin\/easy-replace-image.3.5.2.zip"
    1919            },
    2020            "options": {
  • easy-replace-image/assets/blueprints/blueprint.json

    r3286333 r3401002  
    22    "landingPage": "\/wp-admin\/plugins.php",
    33    "preferredVersions": {
    4         "php": "8.0",
     4        "php": "8.4",
    55        "wp": "latest"
    66    },
     
    1616            "pluginZipFile": {
    1717                "resource": "url",
    18                 "url": "https:\/\/downloads.wordpress.org\/plugin\/easy-replace-image.3.5.1.zip"
     18                "url": "https:\/\/downloads.wordpress.org\/plugin\/easy-replace-image.3.5.2.zip"
    1919            },
    2020            "options": {
  • easy-replace-image/trunk/changelog.txt

    r3286333 r3401002  
    11== Changelog ==
     2
     3= 3.5.1 =
     4* Tested up to 6.8.1
     5* Fixed a SSRF vulnerability for the fetch from URL feature
     6* Styles updates
    27
    38= 3.5.0 =
  • easy-replace-image/trunk/easy-replace-image.php

    r3286333 r3401002  
    66 * Text Domain: eri
    77 * Domain Path: /langs
    8  * Version:     3.5.1
     8 * Version:     3.5.2
    99 * Author:      Iulia Cazan
    1010 * Author URI:  https://profiles.wordpress.org/iulia-cazan
     
    3030 */
    3131
    32 define( 'ERI_PLUGIN_VERSION', 3.51 );
     32define( 'ERI_PLUGIN_VERSION', 3.52 );
    3333define( 'ERI_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
    3434define( 'ERI_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
     
    134134     * Add the custom replace link to the media item.
    135135     *
    136      * @param  array    $actions Actions.
    137      * @param  \WP_Post $post    Current object.
     136     * @param  array         $actions Actions.
     137     * @param  \WP_Post|null $post    Current object.
    138138     * @return array
    139139     */
    140     public static function media_actions( array $actions = [], \WP_Post $post = null ): array {
     140    public static function media_actions( array $actions = [], \WP_Post|null $post = null ): array {
    141141        if ( empty( $post->post_type ) ) {
    142142            // Fail-fast, not a post.
  • easy-replace-image/trunk/readme.txt

    r3286333 r3401002  
    33Tags: change attachment file, download image, image refresh, replace image, repair broken image
    44Requires at least: 5.2
    5 Tested up to: 6.8.1
    6 Stable tag: 3.5.1
     5Tested up to: 6.9
     6Stable tag: 3.5.2
    77Requires PHP: 7.4
    88License: GPLv2 or later
     
    2929== Changelog ==
    3030
    31 = 3.5.1 =
    32 * Tested up to 6.8.1
    33 * Fixed a SSRF vulnerability for the fetch from URL feature
    34 * Styles updates
     31= 3.5.2 =
     32* Tested up to 6.8.3
     33* PHP 8.4 compatibility
    3534
    3635See the [changelog](https://plugins.svn.wordpress.org/easy-replace-image/trunk/changelog.txt) for detailed information on changes made in the earlier versions.
Note: See TracChangeset for help on using the changeset viewer.