Skip to content

Commit 7d00d61

Browse files
committed
Version bump and release note updates
1 parent 94088b7 commit 7d00d61

4 files changed

Lines changed: 14 additions & 10 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ Define a version of your site. By default the active theme version will be used
117117
This is used for tracking at which version of your site the error occurred. When combined with release tracking this is a very powerful feature.
118118

119119
```php
120-
define( 'WP_SENTRY_VERSION', 'v8.7.0' );
120+
define( 'WP_SENTRY_VERSION', 'v8.8.0' );
121121
```
122122

123123
#### `WP_SENTRY_ENV`

readme.txt

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ Tags: sentry, log, logging, error-handler, error-monitoring
55
Requires at least: 4.5
66
Tested up to: 6.8
77
Requires PHP: 7.2.5
8-
Stable tag: 8.7.0
8+
Stable tag: 8.8.0
99
License: MIT
10-
License URI: https://github.com/stayallive/wp-sentry/blob/v8.7.0/LICENSE.md
10+
License URI: https://github.com/stayallive/wp-sentry/blob/v8.8.0/LICENSE.md
1111

1212
A (unofficial) WordPress plugin to report PHP errors and Browser (JavaScript) errors to Sentry.
1313

@@ -16,18 +16,18 @@ This plugin can report PHP errors and Browser (JavaScript) errors to Sentry.
1616

1717
It will auto detect authenticated users and add context where possible. All context/tags can be adjusted/expanded using filters.
1818

19-
_For more information and documentation have a look at the [full documentation](https://github.com/stayallive/wp-sentry/tree/v8.7.0#readme)._
19+
_For more information and documentation have a look at the [full documentation](https://github.com/stayallive/wp-sentry/tree/v8.8.0#readme)._
2020

2121
== Installation ==
2222
It is recommended to use the plugins interface in WordPress to install this plugin.
2323

2424
If manual installation is required, please make sure that the plugin files are in a folder named "wp-sentry-integration" in the WordPress plugins folder, usually "wp-content/plugins".
2525

26-
To start using the plugin first setup the [DSN](https://github.com/stayallive/wp-sentry/tree/v8.7.0#dsn) for either the PHP side or the Browser side or both.
26+
To start using the plugin first setup the [DSN](https://github.com/stayallive/wp-sentry/tree/v8.8.0#dsn) for either the PHP side or the Browser side or both.
2727

2828
All other configuration options are optional but it's advised you read through them to see if any are applicable to you or are thing you'd like to configure.
2929

30-
_You can find more information and the full documentation: [here](https://github.com/stayallive/wp-sentry/tree/v8.7.0#configuration). The following are the basics._
30+
_You can find more information and the full documentation: [here](https://github.com/stayallive/wp-sentry/tree/v8.8.0#configuration). The following are the basics._
3131

3232
**Note:** When configuring constants in your `wp-config.php` do this **before** the `That's all, stop editing! Happy publishing.` line, otherwise they won't work!
3333

@@ -52,9 +52,13 @@ To track Browser (JavaScript) errors add this snippet to your `wp-config.php` an
5252

5353
**Note:** Do not set this constant to disable the Browser (JavaScript) tracker.
5454

55-
_You can find more information and the full documentation: [here](https://github.com/stayallive/wp-sentry/tree/v8.7.0#configuration). The above are the basics._
55+
_You can find more information and the full documentation: [here](https://github.com/stayallive/wp-sentry/tree/v8.8.0#configuration). The above are the basics._
5656

5757
== Changelog ==
58+
= 8.8.0 =
59+
60+
* [Action Scheduler](https://wordpress.org/plugins/action-scheduler/) plugin integration, exceptions in background tasks are now automatically reported ([#223](https://github.com/stayallive/wp-sentry/issues/223), thanks @LordSimal)
61+
5862
= 8.7.0 =
5963

6064
* Renamed plugin from "WordPress Sentry" to "Sentry for WordPress" to comply with trademark claims from The WordPress Foundation

src/class-wp-sentry-version.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
*/
66
final class WP_Sentry_Version {
77
public const SDK_IDENTIFIER = 'sentry.php.wordpress';
8-
public const SDK_VERSION = '8.7.0';
8+
public const SDK_VERSION = '8.8.0';
99
}

wp-sentry.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
* Plugin Name: Sentry for WordPress
55
* Plugin URI: https://github.com/stayallive/wp-sentry
66
* Description: A (unofficial) WordPress plugin to report PHP and JavaScript errors to Sentry.
7-
* Version: 8.7.0
7+
* Version: 8.8.0
88
* Requires at least: 4.4
99
* Requires PHP: 7.2.5
1010
* Author: Alex Bouma
1111
* Author URI: https://alex.bouma.dev
1212
* License: MIT
13-
* License URI: https://github.com/stayallive/wp-sentry/blob/v8.7.0/LICENSE.md
13+
* License URI: https://github.com/stayallive/wp-sentry/blob/v8.8.0/LICENSE.md
1414
*/
1515

1616
// Exit if accessed directly

0 commit comments

Comments
 (0)