Plugin Directory

Changeset 2708207


Ignore:
Timestamp:
04/11/2022 07:36:09 PM (4 years ago)
Author:
danielmorell
Message:

tagging version 2.6.2

Location:
rollbar
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • rollbar/tags/2.6.2/readme.txt

    r2218842 r2708207  
    44Requires at least: 3.5.1
    55Tested up to: 5.1.1
    6 Stable tag: 2.6.1
     6Stable tag: 2.6.2
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    106106== Changelog ==
    107107
     108= Version 2.6.2 (March 4th 2020) =
     109* don’t start a session for wp-cron (https://github.com/rollbar/rollbar-php-wordpress/pull/88)
     110
    108111= Version 2.6.1 (December 27th 2019) =
    109112* fix(initPhpLogging): Moving fetch settings to before settings check. (https://github.com/rollbar/rollbar-php-wordpress/pull/84)
     
    210213== Upgrade Notice ==
    211214
     215= Version 2.6.2 (March 4th 2020) =
     216* don’t start a session for wp-cron (https://github.com/rollbar/rollbar-php-wordpress/pull/88)
     217
    212218= Version 2.6.1 (December 27th 2019) =
    213219* fix(initPhpLogging): Moving fetch settings to before settings check. (https://github.com/rollbar/rollbar-php-wordpress/pull/84)
  • rollbar/tags/2.6.2/rollbar-php-wordpress.php

    r2218842 r2708207  
    44 * Plugin URI:      https://wordpress.org/plugins/rollbar
    55 * Description:     Rollbar full-stack error tracking for WordPress
    6  * Version:         2.6.1
     6 * Version:         2.6.2
    77 * Author:          Rollbar
    88 * Author URI:      https://rollbar.com
  • rollbar/tags/2.6.2/src/Plugin.php

    r2218842 r2708207  
    1010class Plugin {
    1111   
    12     const VERSION = "2.6.1";
     12    const VERSION = "2.6.2";
    1313   
    1414    private $config;
     
    165165                    'methods' => 'POST',
    166166                    'callback' => '\Rollbar\Wordpress\Plugin::testPhpLogging',
     167                    'permission_callback' => '__return_true',
    167168                    'args' => array(
    168169                        'server_side_access_token' => array(
  • rollbar/tags/2.6.2/src/Settings.php

    r2035547 r2708207  
    100100    public static function registerSession()
    101101    {
    102         if( !session_id() ) {
     102        if( ! session_id() && ! defined( 'DOING_CRON' ) ) {
    103103            session_start();
    104104        }
  • rollbar/trunk/readme.txt

    r2218842 r2708207  
    44Requires at least: 3.5.1
    55Tested up to: 5.1.1
    6 Stable tag: 2.6.1
     6Stable tag: 2.6.2
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    106106== Changelog ==
    107107
     108= Version 2.6.2 (March 4th 2020) =
     109* don’t start a session for wp-cron (https://github.com/rollbar/rollbar-php-wordpress/pull/88)
     110
    108111= Version 2.6.1 (December 27th 2019) =
    109112* fix(initPhpLogging): Moving fetch settings to before settings check. (https://github.com/rollbar/rollbar-php-wordpress/pull/84)
     
    210213== Upgrade Notice ==
    211214
     215= Version 2.6.2 (March 4th 2020) =
     216* don’t start a session for wp-cron (https://github.com/rollbar/rollbar-php-wordpress/pull/88)
     217
    212218= Version 2.6.1 (December 27th 2019) =
    213219* fix(initPhpLogging): Moving fetch settings to before settings check. (https://github.com/rollbar/rollbar-php-wordpress/pull/84)
  • rollbar/trunk/rollbar-php-wordpress.php

    r2218842 r2708207  
    44 * Plugin URI:      https://wordpress.org/plugins/rollbar
    55 * Description:     Rollbar full-stack error tracking for WordPress
    6  * Version:         2.6.1
     6 * Version:         2.6.2
    77 * Author:          Rollbar
    88 * Author URI:      https://rollbar.com
  • rollbar/trunk/src/Plugin.php

    r2218842 r2708207  
    1010class Plugin {
    1111   
    12     const VERSION = "2.6.1";
     12    const VERSION = "2.6.2";
    1313   
    1414    private $config;
     
    165165                    'methods' => 'POST',
    166166                    'callback' => '\Rollbar\Wordpress\Plugin::testPhpLogging',
     167                    'permission_callback' => '__return_true',
    167168                    'args' => array(
    168169                        'server_side_access_token' => array(
  • rollbar/trunk/src/Settings.php

    r2035547 r2708207  
    100100    public static function registerSession()
    101101    {
    102         if( !session_id() ) {
     102        if( ! session_id() && ! defined( 'DOING_CRON' ) ) {
    103103            session_start();
    104104        }
Note: See TracChangeset for help on using the changeset viewer.