Plugin Directory

Changeset 3380013


Ignore:
Timestamp:
10/17/2025 10:17:34 AM (6 months ago)
Author:
anicolco
Message:

Actualización completa versión 1.0.1

Location:
ayr-seo-bridge/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • ayr-seo-bridge/trunk/CHANGELOG.md

    r3377050 r3380013  
    66and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
    77
    8 ## [1.0.0] - 2024-01-15
     8
     9## [1.0.1] - 2025-10-15
     10
     11### Changed
     12- Improved rate limiting: Changed from 1 minute to 5 seconds between requests for better performance
     13- Enhanced user experience with faster API response times
     14
     15
     16## [1.0.0] - 2025-10-12
    917
    1018### Added
  • ayr-seo-bridge/trunk/ayr-seo-bridge.php

    r3377050 r3380013  
    33 * Plugin Name: AYR SEO Bridge
    44 * Description: Connect WordPress with automation platforms to automatically update SEO metadata in Yoast SEO, Rank Math, AIOSEO, and SEOPress.
    5  * Version:     1.0.0
     5 * Version:     1.0.1
    66 * Author:      AYR Creations
    77 * Author URI:  https://ayrcreations.com/
     
    2323
    2424// Plugin version
    25 define( 'AYR_SEO_BRIDGE_VERSION', '1.0.0' );
     25define( 'AYR_SEO_BRIDGE_VERSION', '1.0.1' );
    2626
    2727// Plugin path
  • ayr-seo-bridge/trunk/includes/class-ayr-seo-bridge.php

    r3377050 r3380013  
    8484        }
    8585
    86         // Establecer rate limit (1 petición por minuto)
    87         set_transient( $transient_key, true, 60 );
     86        // Establecer rate limit (1 petición cada 5 segundos)
     87        set_transient( $transient_key, true, 5 );
    8888
    8989        // Verificar capacidades básicas
  • ayr-seo-bridge/trunk/readme.txt

    r3377052 r3380013  
    55Tested up to: 6.8
    66Requires PHP: 8.0
    7 Stable tag: 1.0.0
     7Stable tag: 1.0.1
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    8888= Is there rate limiting? =
    8989
    90 Yes, the plugin implements rate limiting of 1 request per minute per user to prevent abuse.
     90Yes, the plugin implements rate limiting of 1 request per 5 seconds per user to prevent abuse.
    9191
    9292= Can I update multiple posts at once? =
     
    110110
    111111== Changelog ==
     112
     113= 1.0.1 =
     114* Improved rate limiting: Changed from 1 minute to 5 seconds between requests for better performance
     115* Enhanced user experience with faster API response times
    112116
    113117= 1.0.0 =
Note: See TracChangeset for help on using the changeset viewer.