Changeset 3487069
- Timestamp:
- 03/20/2026 09:08:35 AM (8 days ago)
- Location:
- vibes
- Files:
-
- 10 edited
- 1 copied
-
tags/2.4.0 (copied) (copied from vibes/trunk)
-
tags/2.4.0/CHANGELOG.md (modified) (1 diff)
-
tags/2.4.0/includes/system/class-uuid.php (modified) (1 diff)
-
tags/2.4.0/init.php (modified) (1 diff)
-
tags/2.4.0/readme.txt (modified) (4 diffs)
-
tags/2.4.0/vibes.php (modified) (1 diff)
-
trunk/CHANGELOG.md (modified) (1 diff)
-
trunk/includes/system/class-uuid.php (modified) (1 diff)
-
trunk/init.php (modified) (1 diff)
-
trunk/readme.txt (modified) (4 diffs)
-
trunk/vibes.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
vibes/tags/2.4.0/CHANGELOG.md
r3395512 r3487069 3 3 4 4 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and **Vibes** adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). 5 6 ## [2.4.0] - 2026-03-20 7 8 ### Added 9 - Compatibility with WordPress 7.0. 10 11 ### Changed 12 - Minimal requirements are now PHP 8.2 and WordPress 6.4. 13 - Some strings in `readme.txt` have been updated. 14 15 ### Removed 16 - Compatibility with PHP 8.1. 17 - Compatibility with WordPress 6.2 & 6.3. 5 18 6 19 ## [2.3.0] - 2025-11-14 -
vibes/tags/2.4.0/includes/system/class-uuid.php
r2645299 r3487069 54 54 55 55 /** 56 * Check if a string is a valid v4 UUID 57 * 58 * @param mixed $uuid The string to check 59 * @return boolean True if the string is a valid v4 UUID, false otherwise. 60 * @since 2.0.0 61 */ 62 public static function is_valid_v4( $uuid ) { 63 return is_string( $uuid ) && preg_match( '/^[a-f\d]{8}(-[a-f\d]{4}){4}[a-f\d]{8}$/i', $uuid ); 64 } 65 66 /** 67 * Sanitize a v4 UUID 68 * 69 * @param mixed $uuid The string to sanitize 70 * @return string The sanitized v4 UUID. 71 * @since 2.0.0 72 */ 73 public static function sanitize_v4( $uuid ) { 74 return self::is_valid_v4( $uuid ) ? (string) $uuid : '00000000-0000-4000-0000-000000000000'; 75 } 76 77 /** 56 78 * Generates a (pseudo) unique ID. 57 79 * This function does not generate cryptographically secure values, and should not be used for cryptographic purposes. -
vibes/tags/2.4.0/init.php
r3395512 r3487069 13 13 define( 'VIBES_PRODUCT_ABBREVIATION', 'vibes' ); 14 14 define( 'VIBES_SLUG', 'vibes' ); 15 define( 'VIBES_VERSION', '2. 3.0' );15 define( 'VIBES_VERSION', '2.4.0' ); 16 16 define( 'VIBES_API_VERSION', '1' ); 17 17 define( 'VIBES_CODENAME', '"-"' ); -
vibes/tags/2.4.0/readme.txt
r3395512 r3487069 2 2 Contributors: PierreLannoy, hosterra 3 3 Tags: rum, real user monitoring, ux, web performance, web vitals 4 Requires at least: 6. 25 Requires PHP: 8. 16 Tested up to: 6.97 Stable tag: 2. 3.04 Requires at least: 6.4 5 Requires PHP: 8.2 6 Tested up to: 7.0 7 Stable tag: 2.4.0 8 8 License: GPLv3 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 50 50 This plugin is free and provided without warranty of any kind. Use it at your own risk, I'm not responsible for any improper use of this plugin, nor for any damage it might cause to your site. Always backup all your data before installing a new plugin. 51 51 52 Anyway, I'll be glad to help you if you encounter issues when using this plugin. Just use the support section of this plugin page.52 Anyway, I'll be glad to help you if you encounter issues when using this plugin. Please read carefully the FAQ at the bottom of this page before requesting support. 53 53 54 54 = Donation = … … 78 78 == Frequently Asked Questions == 79 79 80 = What are the requirements for this plugin to work? =81 82 You need at least **WordPress 5.6** and **PHP 7.2**.83 84 80 = Can this plugin work on multisite? = 85 81 … … 88 84 = Where can I get support? = 89 85 90 Support is provided via the official [WordPress page](https://wordpress.org/support/plugin/vibes/). 86 Support is provided via the official [WordPress page](https://wordpress.org/support/plugin/vibes/). Because I am human myself, please note that I only answer to support requests made by humans, who behave like humans. This excludes requests or bug reports written by AI or those that do not adhere to basic rules of courtesy. 91 87 92 88 = Where can I report a bug? = -
vibes/tags/2.4.0/vibes.php
r3395512 r3487069 11 11 * Plugin URI: https://perfops.one/vibes 12 12 * Description: Truthful user experience and browsing performances monitoring. 13 * Version: 2. 3.014 * Requires at least: 6. 215 * Requires PHP: 8. 113 * Version: 2.4.0 14 * Requires at least: 6.4 15 * Requires PHP: 8.2 16 16 * Author: Pierre Lannoy / PerfOps One 17 17 * Author URI: https://perfops.one -
vibes/trunk/CHANGELOG.md
r3395512 r3487069 3 3 4 4 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and **Vibes** adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). 5 6 ## [2.4.0] - 2026-03-20 7 8 ### Added 9 - Compatibility with WordPress 7.0. 10 11 ### Changed 12 - Minimal requirements are now PHP 8.2 and WordPress 6.4. 13 - Some strings in `readme.txt` have been updated. 14 15 ### Removed 16 - Compatibility with PHP 8.1. 17 - Compatibility with WordPress 6.2 & 6.3. 5 18 6 19 ## [2.3.0] - 2025-11-14 -
vibes/trunk/includes/system/class-uuid.php
r2645299 r3487069 54 54 55 55 /** 56 * Check if a string is a valid v4 UUID 57 * 58 * @param mixed $uuid The string to check 59 * @return boolean True if the string is a valid v4 UUID, false otherwise. 60 * @since 2.0.0 61 */ 62 public static function is_valid_v4( $uuid ) { 63 return is_string( $uuid ) && preg_match( '/^[a-f\d]{8}(-[a-f\d]{4}){4}[a-f\d]{8}$/i', $uuid ); 64 } 65 66 /** 67 * Sanitize a v4 UUID 68 * 69 * @param mixed $uuid The string to sanitize 70 * @return string The sanitized v4 UUID. 71 * @since 2.0.0 72 */ 73 public static function sanitize_v4( $uuid ) { 74 return self::is_valid_v4( $uuid ) ? (string) $uuid : '00000000-0000-4000-0000-000000000000'; 75 } 76 77 /** 56 78 * Generates a (pseudo) unique ID. 57 79 * This function does not generate cryptographically secure values, and should not be used for cryptographic purposes. -
vibes/trunk/init.php
r3395512 r3487069 13 13 define( 'VIBES_PRODUCT_ABBREVIATION', 'vibes' ); 14 14 define( 'VIBES_SLUG', 'vibes' ); 15 define( 'VIBES_VERSION', '2. 3.0' );15 define( 'VIBES_VERSION', '2.4.0' ); 16 16 define( 'VIBES_API_VERSION', '1' ); 17 17 define( 'VIBES_CODENAME', '"-"' ); -
vibes/trunk/readme.txt
r3395512 r3487069 2 2 Contributors: PierreLannoy, hosterra 3 3 Tags: rum, real user monitoring, ux, web performance, web vitals 4 Requires at least: 6. 25 Requires PHP: 8. 16 Tested up to: 6.97 Stable tag: 2. 3.04 Requires at least: 6.4 5 Requires PHP: 8.2 6 Tested up to: 7.0 7 Stable tag: 2.4.0 8 8 License: GPLv3 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 50 50 This plugin is free and provided without warranty of any kind. Use it at your own risk, I'm not responsible for any improper use of this plugin, nor for any damage it might cause to your site. Always backup all your data before installing a new plugin. 51 51 52 Anyway, I'll be glad to help you if you encounter issues when using this plugin. Just use the support section of this plugin page.52 Anyway, I'll be glad to help you if you encounter issues when using this plugin. Please read carefully the FAQ at the bottom of this page before requesting support. 53 53 54 54 = Donation = … … 78 78 == Frequently Asked Questions == 79 79 80 = What are the requirements for this plugin to work? =81 82 You need at least **WordPress 5.6** and **PHP 7.2**.83 84 80 = Can this plugin work on multisite? = 85 81 … … 88 84 = Where can I get support? = 89 85 90 Support is provided via the official [WordPress page](https://wordpress.org/support/plugin/vibes/). 86 Support is provided via the official [WordPress page](https://wordpress.org/support/plugin/vibes/). Because I am human myself, please note that I only answer to support requests made by humans, who behave like humans. This excludes requests or bug reports written by AI or those that do not adhere to basic rules of courtesy. 91 87 92 88 = Where can I report a bug? = -
vibes/trunk/vibes.php
r3395512 r3487069 11 11 * Plugin URI: https://perfops.one/vibes 12 12 * Description: Truthful user experience and browsing performances monitoring. 13 * Version: 2. 3.014 * Requires at least: 6. 215 * Requires PHP: 8. 113 * Version: 2.4.0 14 * Requires at least: 6.4 15 * Requires PHP: 8.2 16 16 * Author: Pierre Lannoy / PerfOps One 17 17 * Author URI: https://perfops.one
Note: See TracChangeset
for help on using the changeset viewer.