From e6770df165d2a91641ab75e4c6defc25d2b99efc Mon Sep 17 00:00:00 2001 From: Daniel Morell Date: Fri, 10 Jan 2025 17:09:01 -0600 Subject: [PATCH] Bumped version to v4.1.0-rc and added CHANGELOG entry. --- CHANGELOG.md | 11 +++++++++++ src/Payload/Notifier.php | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 15de5556..52c5095e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [4.1.0-rc] - 2024-12-20 +### Added +* Added telemetry config filter to prevent invalid arguments by @danielmorell in #642. +### Changed +* Changed telemetry event type and level to enums by @danielmorell in #643. +* Changed the `Telemeter::getLevelFromPsrLevel()` method from private to public by @danielmorell in #644. +### Removed +* Removed support for PHP 8.0 by @danielmorell in #643. +### Fixed +* Fixed PHP 8.4 deprecations by @basmilius in #641. + ## [4.1.0-beta] - 2024-03-01 ### Added * Added support for Telemetry by @danielmorell in #634. diff --git a/src/Payload/Notifier.php b/src/Payload/Notifier.php index c122715d..14e1b5e3 100644 --- a/src/Payload/Notifier.php +++ b/src/Payload/Notifier.php @@ -8,7 +8,7 @@ class Notifier implements SerializerInterface { const NAME = "rollbar-php"; - const VERSION = "4.1.0-beta"; + const VERSION = "4.1.0-rc"; use UtilitiesTrait;