Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update to 2.7.0 #118

Merged
merged 1 commit into from
Sep 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
15 changes: 11 additions & 4 deletions readme.txt
Original file line number Diff line number Diff line change
@@ -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

Expand Down Expand Up @@ -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)
Expand Down Expand Up @@ -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.

Expand Down
4 changes: 2 additions & 2 deletions rollbar-php-wordpress.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/Plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

class Plugin {

const VERSION = "2.6.4";
const VERSION = "2.7.0";

private $config;

Expand Down