You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -90,7 +251,7 @@ This is only for contributors with committer access:
90
251
2. Add record in the `Changelog` section of the `readme.txt`.
91
252
3. Add record in the `Upgrade Notice` section of the `readme.txt`.
92
253
4. Bump the plugin version in `rollbar-php-wordpress.php` in the `Version:` comment.
93
-
5. Bump the plugin version in `src/Plugin.php` in the `\Rollbar\Wordpress\Plugin::VERSION` constant.
254
+
5. Bump the plugin version in `src/Plugin.php` in the `\Rollbar\WordPress\Plugin::VERSION` constant.
94
255
5. Add and commit the changes you made to bump the plugin version: `git add readme.txt rollbar-php-wordpress.php src/Plugin.php && git commit -m"Bump version to v[version number]"`
95
256
6. Bump versions of the JS and CSS files versions in Settings.php class to force refresh of those assets on users' installations.
Copy file name to clipboardExpand all lines: readme.txt
+22-5Lines changed: 22 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -74,7 +74,7 @@ This is a recommended way to install Rollbar plugin for advanced projects. This
74
74
2. In your `composer.json` add `wpackagist-plugin/rollbar` to your `require` section, i.e.:
75
75
```
76
76
"require": {
77
-
"php": ">=5.5",
77
+
"php": ">=8.1",
78
78
...,
79
79
"wpackagist-plugin/rollbar": "*"
80
80
}
@@ -105,6 +105,23 @@ Yes. It's actually the recommended method of installation.
105
105
106
106
== Changelog ==
107
107
108
+
= Version 3.0.0 (pending)
109
+
* Fixed CSRF vulnerability.
110
+
* Removed support for PHP 8.0 and below.
111
+
* Updated and improved the settings page.
112
+
* Updated the Rollbar core PHP SDK to v4.1.
113
+
* Added support for telemetry and added auto-instrumentation.
114
+
* Added support for `ROLLBAR_DISABLE_ADMIN` to remove the plugin settings page from the admin.
115
+
* Added support for `ROLLBAR_SETTINGS` to configure the plugin without the admin page.
116
+
* Added support for `ROLLBAR_CLIENT_ACCESS_TOKEN` constant or environment variable to set the client access token.
117
+
* Added support for `WP_PROXY_BYPASS_HOSTS`, `WP_PROXY_USERNAME`, and `WP_PROXY_PASSWORD` for better proxy management.
118
+
* Added `rollbar_api_admin_permission` filter to allow custom authorization of the admin API.
119
+
* Added `rollbar_disable_admin` filter to allow custom disabling of the admin page.
120
+
* Added `rollbar_php_config` filter to allow more exact control over Rollbar PHP configurations.
121
+
* Added `rollbar_telemetry_actions` filter to allow control of which actions are logged via telemetry.
122
+
* Added `rollbar_telemetry_custom_handlers` filter to allow custom control over what is logged in telemetry messages.
123
+
* Added 'framework' details with the WordPress version to the item payload.
124
+
108
125
= Version 2.7.1 (September 13 2023)
109
126
* Fix issue that could lead to fatal error with some settings (https://github.com/rollbar/rollbar-php-wordpress/pull/120)
110
127
@@ -128,7 +145,7 @@ Yes. It's actually the recommended method of installation.
128
145
* fix(initPhpLogging): Moving fetch settings to before settings check. (https://github.com/rollbar/rollbar-php-wordpress/pull/84)
129
146
130
147
= Version 2.5.1 (February 20th 2019) =
131
-
* Fixed a call to Rollbar\Wordpress\Defaults for enableMustUsePlugin (https://github.com/rollbar/rollbar-php-wordpress/pull/75)
148
+
* Fixed a call to Rollbar\WordPress\Defaults for enableMustUsePlugin (https://github.com/rollbar/rollbar-php-wordpress/pull/75)
132
149
133
150
= Version 2.5.0 (February 19th 2019) =
134
151
* Moved Rollbar initialization from `plugins_loaded` hook to the invocation of the main plugin file (https://github.com/rollbar/rollbar-php-wordpress/issues/73)
@@ -201,7 +218,7 @@ Yes. It's actually the recommended method of installation.
201
218
202
219
= Version 2.1.0 (11th October 2017) =
203
220
* Added "Send test message to Rollbar" button
204
-
* Fixed the plugin's name inconsistency between Wordpress plugin directory and composer.
221
+
* Fixed the plugin's name inconsistency between WordPress plugin directory and composer.
205
222
206
223
= Version 2.0.1 (6th October 2017) =
207
224
* Fixed RollbarJsHelper class loading bug in src/Plugin.php (https://github.com/rollbar/rollbar-php-wordpress/issues/23)
@@ -247,7 +264,7 @@ Updated admin test results to show a skipped test as a success. Fixed new sessio
247
264
* fix(initPhpLogging): Moving fetch settings to before settings check. (https://github.com/rollbar/rollbar-php-wordpress/pull/84)
248
265
249
266
= Version 2.5.1 (February 20th 2019) =
250
-
* Fixed a call to Rollbar\Wordpress\Defaults for enableMustUsePlugin (https://github.com/rollbar/rollbar-php-wordpress/pull/75)
267
+
* Fixed a call to Rollbar\WordPress\Defaults for enableMustUsePlugin (https://github.com/rollbar/rollbar-php-wordpress/pull/75)
251
268
252
269
= Version 2.5.0 (February 19th 2019) =
253
270
* Moved Rollbar initialization from `plugins_loaded` hook to the invocation of the main plugin file (https://github.com/rollbar/rollbar-php-wordpress/issues/73)
@@ -320,7 +337,7 @@ Updated admin test results to show a skipped test as a success. Fixed new sessio
320
337
321
338
= Version 2.1.0 (11th October 2017) =
322
339
* Added "Send test message to Rollbar" button
323
-
* Fixed the plugin's name inconsistency between Wordpress plugin directory and composer.
340
+
* Fixed the plugin's name inconsistency between WordPress plugin directory and composer.
324
341
325
342
= Version 2.0.1 (6th October 2017) =
326
343
* Fixed RollbarJsHelper class loading bug in src/Plugin.php (https://github.com/rollbar/rollbar-php-wordpress/issues/23)
0 commit comments