Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: stayallive/wp-sentry
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v8.3.0
Choose a base ref
...
head repository: stayallive/wp-sentry
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 2 commits
  • 5 files changed
  • 1 contributor

Commits on Dec 17, 2024

  1. Fix GHA versions

    stayallive committed Dec 17, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    ecde530 View commit details
  2. Version bump and release note updates

    stayallive committed Dec 17, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    c9d0d2a View commit details
Showing with 16 additions and 12 deletions.
  1. +2 −2 .github/workflows/wordpress.yml
  2. +1 −1 README.md
  3. +10 −6 readme.txt
  4. +1 −1 src/class-wp-sentry-version.php
  5. +2 −2 wp-sentry.php
4 changes: 2 additions & 2 deletions .github/workflows/wordpress.yml
Original file line number Diff line number Diff line change
@@ -8,10 +8,10 @@ on:
jobs:
release:
name: Release WP plugin
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Checkout sources
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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', 'v8.3.0' );
define( 'WP_SENTRY_VERSION', 'v8.3.1' );
```

#### `WP_SENTRY_ENV`
16 changes: 10 additions & 6 deletions readme.txt
Original file line number Diff line number Diff line change
@@ -5,9 +5,9 @@ Tags: sentry, log, logging, error-handler, error-monitoring
Requires at least: 4.5
Tested up to: 6.7
Requires PHP: 7.2.5
Stable tag: 8.3.0
Stable tag: 8.3.1
License: MIT
License URI: https://github.com/stayallive/wp-sentry/blob/v8.3.0/LICENSE.md
License URI: https://github.com/stayallive/wp-sentry/blob/v8.3.1/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/v8.3.0#readme)._
_For more information and documentation have a look at the [full documentation](https://github.com/stayallive/wp-sentry/tree/v8.3.1#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/v8.3.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/v8.3.1#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/v8.3.0#configuration). The following are the basics._
_You can find more information and the full documentation: [here](https://github.com/stayallive/wp-sentry/tree/v8.3.1#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,13 @@ 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/v8.3.0#configuration). The above are the basics._
_You can find more information and the full documentation: [here](https://github.com/stayallive/wp-sentry/tree/v8.3.1#configuration). The above are the basics._

== Changelog ==
= 8.3.1 =

Note: This release contains no changes versus 8.3.0, it was released to fix a packaging issue.

= 8.3.0 =

* Update PHP SDK to version 4.10.0
2 changes: 1 addition & 1 deletion src/class-wp-sentry-version.php
Original file line number Diff line number Diff line change
@@ -5,5 +5,5 @@
*/
final class WP_Sentry_Version {
public const SDK_IDENTIFIER = 'sentry.php.wordpress';
public const SDK_VERSION = '8.3.0';
public const SDK_VERSION = '8.3.1';
}
4 changes: 2 additions & 2 deletions wp-sentry.php
Original file line number Diff line number Diff line change
@@ -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: 8.3.0
* Version: 8.3.1
* 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/v8.3.0/LICENSE.md
* License URI: https://github.com/stayallive/wp-sentry/blob/v8.3.1/LICENSE.md
*/

// Exit if accessed directly