Skip to content
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
5 changes: 4 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Tags: rollbar, full stack, error, tracking, error tracking, error reporting, rep
Requires at least: 6.5.0
Tested up to: 6.9
Requires PHP: 8.1
Stable tag: 3.1.0
Stable tag: 3.1.1
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -150,6 +150,9 @@ using composer.

== Changelog ==

= Version 3.1.1 (December 22nd 2025) =
* Fixed composer autoload ClassLoader namespace not replaced by PHPScoper in v3.1.0.

= Version 3.1.0 (December 18th 2025) =
* Fixed settings values not being saved correctly when they match the default.
* Added `rollbar_js_nonce` filter to allow customizing the nonce used in the Rollbar JS snippet.
Expand Down
2 changes: 1 addition & 1 deletion rollbar.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Plugin Name: Rollbar
* Plugin URI: https://wordpress.org/plugins/rollbar
* Description: Rollbar full-stack error tracking for WordPress.
* Version: 3.1.0
* Version: 3.1.1
* Author: Rollbar
* Author URI: https://rollbar.com
* Text Domain: rollbar
Expand Down
2 changes: 1 addition & 1 deletion scoper.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ static function (string $filePath, string $prefix, string $content): string {
// Fix ClassLoader in string not being prefixed.
if ($filePath === __DIR__ . '/build/vendor/composer/autoload_real.php') {
$content = str_replace(
'(\'Composer\Autoload\ClassLoader\' === $class)',
'(\'Composer\\\\Autoload\\\\ClassLoader\' === $class)',
'(\'RollbarWP\Composer\Autoload\ClassLoader\' === $class)',
$content,
);
Expand Down
2 changes: 1 addition & 1 deletion src/Plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
*/
final class Plugin extends AbstractSingleton
{
public const VERSION = '3.1.0';
public const VERSION = '3.1.1';

/**
* Configuration array for Rollbar.
Expand Down