diff --git a/package.json b/package.json index 6e38aa01..aa4aa7f7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "rollbar-php-wordpress", - "version": "2.6.4", + "version": "2.7.0", "description": "Official Rollbar full-stack error tracking for WordPress supported by Rollbar, Inc.", "main": "index.js", "directories": { diff --git a/readme.txt b/readme.txt index aaaee1ca..2c38a1ef 100644 --- a/readme.txt +++ b/readme.txt @@ -1,9 +1,9 @@ === Rollbar === -Contributors: arturmoczulski +Contributors: arturmoczulski, jorbin Tags: rollbar, full stack, error, tracking, error tracking, error reporting, reporting, debug -Requires at least: 3.5.1 -Tested up to: 5.8.4 -Stable tag: 2.6.4 +Requires at least: 4.4.0 +Tested up to: 6.3.1 +Stable tag: 2.7.0 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -105,6 +105,10 @@ Yes. It's actually the recommended method of installation. == Changelog == += Version 2.7.0 (September 11 2023) +* Updated PHP Dependencies including loading seperate dependencies for PHP7 and PHP8. (https://github.com/rollbar/rollbar-php-wordpress/pull/114) +* Updated node development dependencies (https://github.com/rollbar/rollbar-php-wordpress/pull/115) + = Version 2.6.4 (June 13th 2022) = * Updated admin test results to show a skipped test as a success (https://github.com/rollbar/rollbar-php-wordpress/pull/110) * Fixed new session being created on every request (https://github.com/rollbar/rollbar-php-wordpress/pull/111) @@ -221,6 +225,9 @@ Yes. It's actually the recommended method of installation. == Upgrade Notice == += Version 2.7.0 (September 11 2023) +Add compatability for modern PHP versions + = Version 2.6.4 (June 13th 2022) = Updated admin test results to show a skipped test as a success. Fixed new session being created on every request. Added search for WP_ENV as a constant or the environment. Added a link to settings from the plugins page. diff --git a/rollbar-php-wordpress.php b/rollbar-php-wordpress.php index b67db795..67cdbe01 100755 --- a/rollbar-php-wordpress.php +++ b/rollbar-php-wordpress.php @@ -3,12 +3,12 @@ * Plugin Name: Rollbar * Plugin URI: https://wordpress.org/plugins/rollbar * Description: Rollbar full-stack error tracking for WordPress - * Version: 2.6.4 + * Version: 2.7.0 * Author: Rollbar * Author URI: https://rollbar.com * Text Domain: rollbar * Requires PHP: 7.0 - * Tested up to: 5.8.4 + * Tested up to: 6.3.1 * * @package Rollbar\Wordpress * @author flowdee,arturmoczulski diff --git a/src/Plugin.php b/src/Plugin.php index 6bef3b1a..77a4b02b 100644 --- a/src/Plugin.php +++ b/src/Plugin.php @@ -9,7 +9,7 @@ class Plugin { - const VERSION = "2.6.4"; + const VERSION = "2.7.0"; private $config;