From c26c520cb63f88f540ad1850e3766dc6870e6b91 Mon Sep 17 00:00:00 2001 From: Alex Bouma Date: Mon, 3 Jun 2024 21:54:33 +0200 Subject: [PATCH] Version bump and release note updates --- README.md | 2 +- readme.txt | 20 ++++++++++++++------ src/class-wp-sentry-version.php | 2 +- wp-sentry.php | 4 ++-- 4 files changed, 18 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a4df3ff..6cf516e 100644 --- a/README.md +++ b/README.md @@ -116,7 +116,7 @@ Define a version of your site. By default the active theme version will be used 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. ```php -define( 'WP_SENTRY_VERSION', 'v7.14.0' ); +define( 'WP_SENTRY_VERSION', 'v7.15.0' ); ``` #### `WP_SENTRY_ENV` diff --git a/readme.txt b/readme.txt index cd54b5f..c840835 100644 --- a/readme.txt +++ b/readme.txt @@ -5,9 +5,9 @@ Tags: sentry, log, logging, error-handler, error-monitoring Requires at least: 4.4 Tested up to: 6.5 Requires PHP: 7.2.5 -Stable tag: 7.14.0 +Stable tag: 7.15.0 License: MIT -License URI: https://github.com/stayallive/wp-sentry/blob/v7.14.0/LICENSE.md +License URI: https://github.com/stayallive/wp-sentry/blob/v7.15.0/LICENSE.md A (unofficial) WordPress plugin to report PHP errors and Browser (JavaScript) errors to Sentry. @@ -16,18 +16,18 @@ This plugin can report PHP errors and Browser (JavaScript) errors to Sentry. It will auto detect authenticated users and add context where possible. All context/tags can be adjusted/expanded using filters. -_For more information and documentation have a look at the [full documentation](https://github.com/stayallive/wp-sentry/tree/v7.14.0#readme)._ +_For more information and documentation have a look at the [full documentation](https://github.com/stayallive/wp-sentry/tree/v7.15.0#readme)._ == Installation == It is recommended to use the plugins interface in WordPress to install this plugin. 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". -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. +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. 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. -_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._ +_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._ **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! @@ -52,9 +52,17 @@ To track Browser (JavaScript) errors add this snippet to your `wp-config.php` an **Note:** Do not set this constant to disable the Browser (JavaScript) tracker. -_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._ +_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._ == Changelog == += 7.15.0 = + +This update bumps the minimum PHP version to 7.2.5, this used to be 7.2.0. +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. +The change was made to allow upgrading some libraries and prevent deprecation warnings on newer PHP versions. + +* Bump minimum PHP version to 7.2.5 + = 7.14.0 = * Update Sentry Browser to version 7.116.0 diff --git a/src/class-wp-sentry-version.php b/src/class-wp-sentry-version.php index 203855b..97ca6ed 100644 --- a/src/class-wp-sentry-version.php +++ b/src/class-wp-sentry-version.php @@ -5,5 +5,5 @@ */ final class WP_Sentry_Version { public const SDK_IDENTIFIER = 'sentry.php.wordpress'; - public const SDK_VERSION = '7.14.0'; + public const SDK_VERSION = '7.15.0'; } diff --git a/wp-sentry.php b/wp-sentry.php index 6389ac3..408ee8d 100644 --- a/wp-sentry.php +++ b/wp-sentry.php @@ -4,13 +4,13 @@ * Plugin Name: WordPress Sentry * Plugin URI: https://github.com/stayallive/wp-sentry * Description: A (unofficial) WordPress plugin to report PHP and JavaScript errors to Sentry. - * Version: 7.14.0 + * Version: 7.15.0 * Requires at least: 4.4 * Requires PHP: 7.2.5 * Author: Alex Bouma * Author URI: https://alex.bouma.dev * License: MIT - * License URI: https://github.com/stayallive/wp-sentry/blob/v7.14.0/LICENSE.md + * License URI: https://github.com/stayallive/wp-sentry/blob/v7.15.0/LICENSE.md */ // Exit if accessed directly