Skip to content

Releases: rollbar/rollbar-php-wordpress

v3.0.0-beta.0

26 Sep 15:35
a89e12b
Compare
Choose a tag to compare
v3.0.0-beta.0 Pre-release
Pre-release

What's Changed

  • Fixed CSRF vulnerability.
  • Removed support for PHP 8.0 and below.
  • Updated and improved the settings page.
  • Updated the Rollbar core PHP SDK to v4.1.
  • Added support for telemetry and added auto-instrumentation.
  • Added support for ROLLBAR_DISABLE_ADMIN to remove the plugin settings page from the admin.
  • Added support for ROLLBAR_SETTINGS to configure the plugin without the admin page.
  • Added support for ROLLBAR_CLIENT_ACCESS_TOKEN constant or environment variable to set the client access token.
  • Added support for WP_PROXY_BYPASS_HOSTS, WP_PROXY_USERNAME, and WP_PROXY_PASSWORD for better proxy management.
  • Added rollbar_api_admin_permission filter to allow custom authorization of the admin API.
  • Added rollbar_disable_admin filter to allow custom disabling of the admin page.
  • Added rollbar_php_config filter to allow more exact control over Rollbar PHP configurations.
  • Added rollbar_telemetry_actions filter to allow control of which actions are logged via telemetry.
  • Added rollbar_telemetry_custom_handlers filter to allow custom control over what is logged in telemetry messages.
  • Added 'framework' details with the WordPress version to the item payload.
  • Added unit tests.

Full Changelog: v2.7.1...v3.0.0-beta.0

V2.7.1

13 Sep 22:26
48f54d3
Compare
Choose a tag to compare

What's Changed

Full Changelog: v2.7.0...v2.7.1

V2.7.0

11 Sep 17:30
4dd5278
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v2.6.4...v2.7.0

v2.6.4

21 Jun 11:01
0b547c3
Compare
Choose a tag to compare

What's Changed

  • Updated admin test results to show a skipped test as a success by @Brugman in #110
  • Fixed new session being created on every request by @danielmorell in #111
  • Added search for WP_ENV as a constant or the environment by @Brugman in #108
  • Added a link to settings from the plugins page by @Brugman in #109

New Contributors

Full Changelog: v2.6.3...v2.6.4

v2.6.3

18 Apr 16:05
6c33742
Compare
Choose a tag to compare

What's Changed

Full Changelog: v2.6.1...v2.6.3

v2.6.2

17 Nov 14:33
Compare
Choose a tag to compare

Fixes

  • WordPress versions 5.5+ require permission_callback configuration on all REST routes, to specify the authorizer for that particular route. In our case, our routes are public, so we simply return true per the WordPress documentation. See also PR #96.

v2.6.1

28 Dec 00:33
Compare
Choose a tag to compare
  • fix(initPhpLogging): Moving fetch settings to before settings check. (#84)

v2.6.0

22 Mar 04:08
Compare
Choose a tag to compare

Update Composer dependencies #80
#77: the plugin has been tested with the latest version of wordpress #78
Add WP_PROXY support #76

v2.5.1

20 Feb 22:45
Compare
Choose a tag to compare
  • Fixed a call to Rollbar\Wordpress\Defaults for enableMustUsePlugin (#75)

v2.5.0

19 Feb 22:46
Compare
Choose a tag to compare
  • #73 Catching errors before ‘init’ action: Moved Rollbar initialization from plugins_loaded hook to the invocation of the main plugin file
  • #73 Catching errors before ‘init’ action: Added support for running the plugin as a Must-Use plugin
  • #73 Catching errors before ‘init’ action: Added Enable as a Must-Use plugin settings
  • UI improvements