Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Overhauling the backtrace display in the admin #121

Merged
merged 14 commits into from
Apr 30, 2024
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,17 @@
This library adheres to [Semantic Versioning](https://semver.org/) and [Keep a
CHANGELOG](https://keepachangelog.com/en/1.0.0/).

## Unreleased
## 2.4.0 - 2024-05-01

### Added

- New filter `ai_logger_unrestricted_logging` to allow unrestricted logging
without checking if the log was recently seen.
- Overhaul of the log backtrace display in the admin.

### Changed

- Bumped minimum PHP version to 8.1.

## 2.3.2

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ See the [wiki](https://github.com/alleyinteractive/logger/wiki) for complete inf

## Installation

Logger requires PHP 8.0 and Composer to run properly.
Logger requires PHP 8.1 and Composer to run properly.

```bash
composer require alleyinteractive/logger
Expand Down
6 changes: 4 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,12 @@
}
],
"require": {
"php": "^8.0",
"php": "^8.1",
"alleyinteractive/composer-wordpress-autoloader": "^1.0",
"monolog/monolog": "^2.8",
"psr/log": "^1.0|^2.0|^3.0"
"psr/log": "^1.0|^2.0|^3.0",
"spatie/backtrace": "^1.6",
"mantle-framework/support": "^1.0"
},
"require-dev": {
"alleyinteractive/alley-coding-standards": "^2.0",
Expand Down
Loading
Loading