From 96475037ead46dde38b238b9005b6fa73b38bb7e Mon Sep 17 00:00:00 2001 From: indy koning Date: Fri, 29 Mar 2024 10:12:01 +0100 Subject: [PATCH] Raise sentry sdk, bump 3.6.0 --- CHANGELOG.md | 8 +++++++- composer.json | 4 ++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dd4ed75..25d10e1 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,11 @@ # Changelog +## [3.6.0] - 2024-03-29 +This release drops support for php 7.4 as it has been completely EOL for over a year. [https://www.php.net/supported-versions.php](https://www.php.net/supported-versions.php) +### Fixed + * Check if Sentry is defined before running init (https://github.com/justbetter/magento2-sentry/pull/129) thanks to https://github.com/netzkollektiv +### Changed + * Use property promotions (https://github.com/justbetter/magento2-sentry/pull/130) thanks to https://github.com/cirolosapio + * Raised sentry/sdk version to 4.0+ ## [3.5.2] - 2024-03-18 ### Fixed * Fix start errors without database connection (https://github.com/justbetter/magento2-sentry/pull/125) thanks to https://github.com/fredden @@ -22,7 +29,6 @@ ## [3.2.0] - 2022-07-07 ### Fixed * Changed addAlert to addRecord for Test error (https://github.com/justbetter/magento2-sentry/pull/98) thanks to https://github.com/peterjaap - ### Added * Send context data top Sentry as Custom Data (https://github.com/justbetter/magento2-sentry/pull/97) thanks to https://github.com/oneserv-heuser ## [3.1.0] - 2022-06-14 diff --git a/composer.json b/composer.json index 0bf93a6..bf4fcad 100755 --- a/composer.json +++ b/composer.json @@ -2,11 +2,11 @@ "name": "justbetter/magento2-sentry", "description": "Magento 2 Logger for Sentry", "type": "magento2-module", - "version": "3.5.2", + "version": "3.6.0", "license": "MIT", "require": { "php": ">=8.0", - "sentry/sdk": "^3.0", + "sentry/sdk": "^4.0", "monolog/monolog": ">=2.7.0", "magento/framework": "*", "nyholm/psr7": "^1.2",