File tree Expand file tree Collapse file tree 2 files changed +15
-1
lines changed
Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
66and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
77
8+ ## [ 1.4.1]
9+
10+ ### Enhanced
11+ - ** EngineClarityConfig** : Enhanced configuration options for better Clarity integration
12+ - ** EngineLogLevelType** : Added ` none ` and ` verbose ` log levels for improved filtering
13+ - ** EngineLog** : Enhanced logging functionality with better level management
14+ - ** EngineWidget** : Refined widget integration for improved tracking performance
15+
16+ ### Fixed
17+ - ** Dependency Optimization** : Moved ` http ` to dev_dependencies, removed unused ` firebase_core `
18+ - ** Test Coverage** : Updated enum tests to reflect new log level values
19+
820## [ 1.4.0] - 2025-01-24
921
1022### Added
Original file line number Diff line number Diff line change @@ -36,12 +36,14 @@ void main() {
3636
3737 test ('should be enumerable' , () {
3838 const levels = EngineLogLevelType .values;
39- expect (levels.length, equals (5 ));
39+ expect (levels.length, equals (7 ));
40+ expect (levels, contains (EngineLogLevelType .none));
4041 expect (levels, contains (EngineLogLevelType .debug));
4142 expect (levels, contains (EngineLogLevelType .info));
4243 expect (levels, contains (EngineLogLevelType .warning));
4344 expect (levels, contains (EngineLogLevelType .error));
4445 expect (levels, contains (EngineLogLevelType .fatal));
46+ expect (levels, contains (EngineLogLevelType .verbose));
4547 });
4648
4749 test ('should be comparable' , () {
You can’t perform that action at this time.
0 commit comments