Plugin Directory

Changeset 3007666

Timestamp:
12/09/2023 05:53:44 PM (8 months ago)
Author:
bobbingwide
Message:

oik-bwtrace v3.4.5 tested with PHP 8.2 and PHP 8.3

Location:
oik-bwtrace/trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • oik-bwtrace/trunk/README.md

    r2979215 r3007666  
    55* Tags: debug, trace, backtrace, actions, filters, ad hoc tracing, hook tracing, filter tracing, string watch
    66* Requires at least: 5.0
    7 * Tested up to: 6.4-beta3
     7* Tested up to: 6.4
    88* Gutenberg compatible: Yes
    99* Requires PHP: 5.6
    10 * Stable tag: 3.4.3
     10* Stable tag: 3.4.
    1111* License: GPLv2 or later
    1212* License URI: http://www.gnu.org/licenses/gpl-2.0.html
    ���  
    137137
    138138## Upgrade Notice
    139 # 3.4.3
    140 Fixes a problem when mu-plugins folder is not present.
     139# 3.4.
     140Update for support for PHP 8.3
    141141
    142142## Changelog
    143 # 3.4.3
    144 * Fixed: Caters for mu-plugins folder not being present #109
    145 * Tested: With WordPress 6.3.1 and WordPress Multisite
    146 * Tested: With WordPress 6.4-beta3 and WordPress Multisite
     143# 3.4.5
     144* Changed: Support PHP 8.3 #116
     145* Tested: With WordPress 6.4.2 and WordPress Multisite
    147146* Tested: With PHPUnit 9.6
    148 * Tested: With PHP 8.0, 8.1 and 8.2
     147* Tested: With PHP 8.
    149148
    150149## Further reading
  • oik-bwtrace/trunk/admin/class-oik-trace-info.php

    r2949067 r3007666  
    230230                                            , '8.1' => '2024-11-25'
    231231                                            , '8.2' => '2025-12-08'
     232
    232233                                            );
    233234            $eol = $php_eol[ PHP_MAJOR_VERSION . '.' . PHP_MINOR_VERSION ];
  • oik-bwtrace/trunk/changelog.txt

    r2979215 r3007666  
    3232
    3333== Upgrade Notice ==
     34
     35
     36
     37
     38
     39
    3440= 3.4.2 =
    3541Now supports PHP 8.1 and PHP 8.2.
     
    192198
    193199== Changelog ==
     200
     201
     202
     203
     204
     205
     206
     207
     208
     209
     210
     211
     212
    194213= 3.4.2 =
    195214* Changed: Restore performance trace .json files after PHPUnit tests #109
  • oik-bwtrace/trunk/includes/class-trace-files-directory.php

    r2772658 r3007666  
    1 <?php // (C) Copyright Bobbing Wide 2018
     1<?php // (C) Copyright Bobbing Wide 2018
    22
    33/**
     
    5757     */
    5858    private $fq_prefix;
     59
     60
    5961   
    6062    function __construct() {
     
    273275        $valid = false;
    274276        $fq_prefix = $this->get_fq_prefix();
    275         if ( 0 === strpos( $directory, $fq_prefix ) ) {
     277        if ( 0 === strpos( $directory, $fq_prefix ) ) {
    276278            $valid = true; 
    277279        } else {
  • oik-bwtrace/trunk/oik-bwtrace.php

    r2979215 r3007666  
    44Plugin URI: https://www.oik-plugins.com/oik-plugins/oik-bwtrace
    55Description: Debug trace for WordPress, including action and filter tracing
    6 Version: 3.4.3
     6Version: 3.4.
    77Author: bobbingwide
    88Author URI: https://www.bobbingwide.com/about-bobbing-wide
  • oik-bwtrace/trunk/readme.txt

    r2979215 r3007666  
    44Tags: debug, trace, backtrace, actions, filters, ad hoc tracing, hook tracing, filter tracing, string watch
    55Requires at least: 5.0
    6 Tested up to: 6.4-beta3
     6Tested up to: 6.4
    77Gutenberg compatible: Yes
    88Requires PHP: 5.6
    9 Stable tag: 3.4.3
     9Stable tag: 3.4.
    1010License: GPLv2 or later
    1111License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    136136 
    137137== Upgrade Notice ==
    138 = 3.4.3 =
    139 Fixes a problem when mu-plugins folder is not present.
     138= 3.4. =
     139Update for support for PHP 8.3
    140140
    141141== Changelog ==
    142 = 3.4.3 =
    143 * Fixed: Caters for mu-plugins folder not being present #109
    144 * Tested: With WordPress 6.3.1 and WordPress Multisite
    145 * Tested: With WordPress 6.4-beta3 and WordPress Multisite
     142= 3.4.5 =
     143* Changed: Support PHP 8.3 #116
     144* Tested: With WordPress 6.4.2 and WordPress Multisite
    146145* Tested: With PHPUnit 9.6
    147 * Tested: With PHP 8.0, 8.1 and 8.2
     146* Tested: With PHP 8.
    148147
    149148== Further reading ==
Note: See TracChangeset for help on using the changeset viewer.