Changeset 3380013
- Timestamp:
- 10/17/2025 10:17:34 AM (6 months ago)
- Location:
- ayr-seo-bridge/trunk
- Files:
-
- 4 edited
-
CHANGELOG.md (modified) (1 diff)
-
ayr-seo-bridge.php (modified) (2 diffs)
-
includes/class-ayr-seo-bridge.php (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ayr-seo-bridge/trunk/CHANGELOG.md
r3377050 r3380013 6 6 and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). 7 7 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 9 17 10 18 ### Added -
ayr-seo-bridge/trunk/ayr-seo-bridge.php
r3377050 r3380013 3 3 * Plugin Name: AYR SEO Bridge 4 4 * Description: Connect WordPress with automation platforms to automatically update SEO metadata in Yoast SEO, Rank Math, AIOSEO, and SEOPress. 5 * Version: 1.0. 05 * Version: 1.0.1 6 6 * Author: AYR Creations 7 7 * Author URI: https://ayrcreations.com/ … … 23 23 24 24 // Plugin version 25 define( 'AYR_SEO_BRIDGE_VERSION', '1.0. 0' );25 define( 'AYR_SEO_BRIDGE_VERSION', '1.0.1' ); 26 26 27 27 // Plugin path -
ayr-seo-bridge/trunk/includes/class-ayr-seo-bridge.php
r3377050 r3380013 84 84 } 85 85 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 ); 88 88 89 89 // Verificar capacidades básicas -
ayr-seo-bridge/trunk/readme.txt
r3377052 r3380013 5 5 Tested up to: 6.8 6 6 Requires PHP: 8.0 7 Stable tag: 1.0. 07 Stable tag: 1.0.1 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 88 88 = Is there rate limiting? = 89 89 90 Yes, the plugin implements rate limiting of 1 request per minuteper user to prevent abuse.90 Yes, the plugin implements rate limiting of 1 request per 5 seconds per user to prevent abuse. 91 91 92 92 = Can I update multiple posts at once? = … … 110 110 111 111 == 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 112 116 113 117 = 1.0.0 =
Note: See TracChangeset
for help on using the changeset viewer.