Skip to content

Commit c26c520

Browse files
committedJun 3, 2024··
Version bump and release note updates
1 parent a817126 commit c26c520

File tree

4 files changed

+18
-10
lines changed

4 files changed

+18
-10
lines changed
 

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ Define a version of your site. By default the active theme version will be used
116116
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.
117117

118118
```php
119-
define( 'WP_SENTRY_VERSION', 'v7.14.0' );
119+
define( 'WP_SENTRY_VERSION', 'v7.15.0' );
120120
```
121121

122122
#### `WP_SENTRY_ENV`

‎readme.txt

+14-6
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.4
66
Tested up to: 6.5
77
Requires PHP: 7.2.5
8-
Stable tag: 7.14.0
8+
Stable tag: 7.15.0
99
License: MIT
10-
License URI: https://github.com/stayallive/wp-sentry/blob/v7.14.0/LICENSE.md
10+
License URI: https://github.com/stayallive/wp-sentry/blob/v7.15.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/v7.14.0#readme)._
19+
_For more information and documentation have a look at the [full documentation](https://github.com/stayallive/wp-sentry/tree/v7.15.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/v7.14.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/v7.15.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/v7.14.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/v7.15.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,17 @@ 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/v7.14.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/v7.15.0#configuration). The above are the basics._
5656

5757
== Changelog ==
58+
= 7.15.0 =
59+
60+
This update bumps the minimum PHP version to 7.2.5, this used to be 7.2.0.
61+
This is unlikely to affect you, but if you are still running PHP 7.2.0 you should upgrade to at least 7.2.5.
62+
The change was made to allow upgrading some libraries and prevent deprecation warnings on newer PHP versions.
63+
64+
* Bump minimum PHP version to 7.2.5
65+
5866
= 7.14.0 =
5967

6068
* Update Sentry Browser to version 7.116.0

‎src/class-wp-sentry-version.php

+1-1
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 = '7.14.0';
8+
public const SDK_VERSION = '7.15.0';
99
}

‎wp-sentry.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
* Plugin Name: WordPress Sentry
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: 7.14.0
7+
* Version: 7.15.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/v7.14.0/LICENSE.md
13+
* License URI: https://github.com/stayallive/wp-sentry/blob/v7.15.0/LICENSE.md
1414
*/
1515

1616
// Exit if accessed directly

0 commit comments

Comments
 (0)
Please sign in to comment.