Skip to content

Commit

Permalink
Release v4.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Frezyx committed Nov 23, 2024
1 parent 0ed4aae commit a997a40
Show file tree
Hide file tree
Showing 24 changed files with 67 additions and 32 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ Follow these steps to the coolest experience in error handling
### Add dependency
```yaml
dependencies:
talker: ^4.5.0
talker: ^4.5.1
```
### Easy to use
Expand Down Expand Up @@ -303,7 +303,7 @@ Talker Flutter is an extension for the Dart Talker package that adds extra funct
### Add dependency
```yaml
dependencies:
talker_flutter: ^4.5.0
talker_flutter: ^4.5.1
```
### Setup
Expand Down Expand Up @@ -532,7 +532,7 @@ Follow these steps to use this package
### Add dependency
```yaml
dependencies:
talker_dio_logger: ^4.5.0
talker_dio_logger: ^4.5.1
```
### Usage
Expand Down Expand Up @@ -628,7 +628,7 @@ Follow these steps to use this package
### Add dependency
```yaml
dependencies:
talker_bloc_logger: ^4.5.0
talker_bloc_logger: ^4.5.1
```
### Usage
Expand Down Expand Up @@ -716,7 +716,7 @@ Follow these steps to use this package
### Add dependency
```yaml
dependencies:
talker_riverpod_logger: ^4.5.0
talker_riverpod_logger: ^4.5.1
```
### Usage
Expand Down
6 changes: 3 additions & 3 deletions examples/shop_app_example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ dependencies:
flutter:
sdk: flutter

talker_flutter: ^4.5.0
talker_dio_logger: ^4.5.0
talker_bloc_logger: ^4.5.0
talker_flutter: ^4.5.1
talker_dio_logger: ^4.5.1
talker_bloc_logger: ^4.5.1

get_it: ^7.6.7
flutter_bloc: ^8.1.3
Expand Down
7 changes: 6 additions & 1 deletion packages/talker/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
# 4.5.1
- [talker_flutter] Fix mapping LogColors to Flutter Color (Logs screen)

# 4.5.0
More Flexible Interaction with Custom Logs
- **BREAKING** [talker] Change the type of `colors` parameter in the `TalkerSettings` class from `Map<TalkerLogType, AnsiPen>?` to `Map<String, AnsiPen>?`. Custom colors must now use a string key for log types.
- **BREAKING** [talker] Change the type of `titles` parameter in the `TalkerSettings` class from `Map<TalkerLogType, String>?` to `Map<String, String>?`. Custom titles must now use a string key for log types.
- **BREAKING** [talker_flutter] Change the type of `colors` parameter in the **TalkerScreenTheme** class from `Map<TalkerLogType, Colors>?` to `Map<String, Colors>?`. Custom colors must now use a string key for log types.
- [talker] Add new tests and updated existing ones.
- [talker] Update the documentation for log customization.
- [talker] Update the documentation for log customization.

Thanks to [yelmuratoff](https://github.com/yelmuratoff)

# 4.4.7
- [talker_dio_logger] Make encoder constant private
Expand Down
2 changes: 1 addition & 1 deletion packages/talker/lib/src/talker.dart
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ class Talker {
/// {@macro logCustom}
@Deprecated(
'Use logCustom instead. '
'This feature was deprecated after v4.5.0',
'This feature was deprecated after v4.5.1',
)
void logTyped(TalkerLog log) => logCustom(log);

Expand Down
4 changes: 2 additions & 2 deletions packages/talker/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: talker
description: Advanced error handler and logger package for flutter and dart. App monitoring, logs history, report sharing, custom logs, and etc.
version: 4.5.0
version: 4.5.1
homepage: https://github.com/Frezyx/talker
repository: https://github.com/Frezyx/talker
issue_tracker: https://github.com/Frezyx/talker/issues
Expand All @@ -16,7 +16,7 @@ environment:
sdk: ">=2.17.0 <4.0.0"

dependencies:
talker_logger: ^4.5.0
talker_logger: ^4.5.1

dev_dependencies:
lints: ^2.0.0
Expand Down
7 changes: 6 additions & 1 deletion packages/talker_bloc_logger/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
# 4.5.1
- [talker_flutter] Fix mapping LogColors to Flutter Color (Logs screen)

# 4.5.0
More Flexible Interaction with Custom Logs
- **BREAKING** [talker] Change the type of `colors` parameter in the `TalkerSettings` class from `Map<TalkerLogType, AnsiPen>?` to `Map<String, AnsiPen>?`. Custom colors must now use a string key for log types.
- **BREAKING** [talker] Change the type of `titles` parameter in the `TalkerSettings` class from `Map<TalkerLogType, String>?` to `Map<String, String>?`. Custom titles must now use a string key for log types.
- **BREAKING** [talker_flutter] Change the type of `colors` parameter in the **TalkerScreenTheme** class from `Map<TalkerLogType, Colors>?` to `Map<String, Colors>?`. Custom colors must now use a string key for log types.
- [talker] Add new tests and updated existing ones.
- [talker] Update the documentation for log customization.
- [talker] Update the documentation for log customization.

Thanks to [yelmuratoff](https://github.com/yelmuratoff)

# 4.4.7
- [talker_dio_logger] Make encoder constant private
Expand Down
2 changes: 1 addition & 1 deletion packages/talker_bloc_logger/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Follow these steps to use this package
### Add dependency
```yaml
dependencies:
talker_bloc_logger: ^4.5.0
talker_bloc_logger: ^4.5.1
```
### Usage
Expand Down
4 changes: 2 additions & 2 deletions packages/talker_bloc_logger/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: talker_bloc_logger
description: Lightweight and customizable BLoC state management library logger on talker base.
version: 4.5.0
version: 4.5.1
homepage: https://github.com/Frezyx/talker
repository: https://github.com/Frezyx/talker
issue_tracker: https://github.com/Frezyx/talker/issues
Expand All @@ -16,7 +16,7 @@ environment:
sdk: '>=2.15.0 <4.0.0'

dependencies:
talker: ^4.5.0
talker: ^4.5.1
bloc: ^8.1.1
meta: ^1.8.0

Expand Down
5 changes: 5 additions & 0 deletions packages/talker_dio_logger/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# 4.5.1
- [talker_flutter] Fix mapping LogColors to Flutter Color (Logs screen)

# 4.5.0
More Flexible Interaction with Custom Logs
- **BREAKING** [talker] Change the type of `colors` parameter in the `TalkerSettings` class from `Map<TalkerLogType, AnsiPen>?` to `Map<String, AnsiPen>?`. Custom colors must now use a string key for log types.
Expand All @@ -6,6 +9,8 @@ More Flexible Interaction with Custom Logs
- [talker] Add new tests and updated existing ones.
- [talker] Update the documentation for log customization.

Thanks to [yelmuratoff](https://github.com/yelmuratoff)

# 4.4.7
- [talker_dio_logger] Make encoder constant private

Expand Down
2 changes: 1 addition & 1 deletion packages/talker_dio_logger/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Follow these steps to use this package
### Add dependency
```yaml
dependencies:
talker_dio_logger: ^4.5.0
talker_dio_logger: ^4.5.1
```
### Usage
Expand Down
4 changes: 2 additions & 2 deletions packages/talker_dio_logger/example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ dependencies:
flutter:
sdk: flutter
dio: ^5.0.0
talker_dio_logger: ^4.5.0
talker_flutter: ^4.5.0
talker_dio_logger: ^4.5.1
talker_flutter: ^4.5.1

dev_dependencies:
flutter_test:
Expand Down
4 changes: 2 additions & 2 deletions packages/talker_dio_logger/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: talker_dio_logger
description: Lightweight and customizable dio http client logger on talker base
version: 4.5.0
version: 4.5.1

homepage: https://github.com/Frezyx/talker
repository: https://github.com/Frezyx/talker
Expand All @@ -18,7 +18,7 @@ environment:

dependencies:
dio: ^5.4.0
talker: ^4.5.0
talker: ^4.5.1

dev_dependencies:
lints: ^2.0.0
Expand Down
5 changes: 5 additions & 0 deletions packages/talker_flutter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# 4.5.1
- [talker_flutter] Fix mapping LogColors to Flutter Color (Logs screen)

# 4.5.0
More Flexible Interaction with Custom Logs
- **BREAKING** [talker] Change the type of `colors` parameter in the `TalkerSettings` class from `Map<TalkerLogType, AnsiPen>?` to `Map<String, AnsiPen>?`. Custom colors must now use a string key for log types.
Expand All @@ -6,6 +9,8 @@ More Flexible Interaction with Custom Logs
- [talker] Add new tests and updated existing ones.
- [talker] Update the documentation for log customization.

Thanks to [yelmuratoff](https://github.com/yelmuratoff)

# 4.4.7
- [talker_dio_logger] Make encoder constant private

Expand Down
4 changes: 2 additions & 2 deletions packages/talker_flutter/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: talker_flutter
description: Advanced error handler and logger package for flutter and dart. App monitoring, logs history, report sharing, custom logs, and etc.
version: 4.5.0
version: 4.5.1
homepage: https://github.com/Frezyx/talker
repository: https://github.com/Frezyx/talker
issue_tracker: https://github.com/Frezyx/talker/issues
Expand All @@ -20,7 +20,7 @@ dependencies:
flutter:
sdk: flutter

talker: ^4.5.0
talker: ^4.5.1
group_button: ^5.3.4
path_provider: ^2.1.4
share_plus: ^10.0.1
Expand Down
5 changes: 5 additions & 0 deletions packages/talker_http_logger/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# 0.1.0-dev.20
- [talker_flutter] Fix mapping LogColors to Flutter Color (Logs screen)

# 0.1.0-dev.19
More Flexible Interaction with Custom Logs
- **BREAKING** [talker] Change the type of `colors` parameter in the `TalkerSettings` class from `Map<TalkerLogType, AnsiPen>?` to `Map<String, AnsiPen>?`. Custom colors must now use a string key for log types.
Expand All @@ -6,6 +9,8 @@ More Flexible Interaction with Custom Logs
- [talker] Add new tests and updated existing ones.
- [talker] Update the documentation for log customization.

Thanks to [yelmuratoff](https://github.com/yelmuratoff)

# 0.1.0-dev.18
- [talker_dio_logger] Make encoder constant private

Expand Down
2 changes: 1 addition & 1 deletion packages/talker_http_logger/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Follow these steps to use this package
### Add dependency
```yaml
dependencies:
talker_http_logger: ^0.1.0-dev.19
talker_http_logger: ^0.1.0-dev.20
```
### Usage
Expand Down
4 changes: 2 additions & 2 deletions packages/talker_http_logger/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
name: talker_http_logger
description: Lightweight and customizable http client logger on talker base
version: 0.1.0-dev.19
version: 0.1.0-dev.20
homepage: https://github.com/Frezyx/talker

environment:
sdk: ^3.0.3

dependencies:
http_interceptor: ^2.0.0
talker: ^4.5.0
talker: ^4.5.1

dev_dependencies:
lints: ^2.0.0
Expand Down
5 changes: 5 additions & 0 deletions packages/talker_logger/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# 4.5.1
- [talker_flutter] Fix mapping LogColors to Flutter Color (Logs screen)

# 4.5.0
More Flexible Interaction with Custom Logs
- **BREAKING** [talker] Change the type of `colors` parameter in the `TalkerSettings` class from `Map<TalkerLogType, AnsiPen>?` to `Map<String, AnsiPen>?`. Custom colors must now use a string key for log types.
Expand All @@ -6,6 +9,8 @@ More Flexible Interaction with Custom Logs
- [talker] Add new tests and updated existing ones.
- [talker] Update the documentation for log customization.

Thanks to [yelmuratoff](https://github.com/yelmuratoff)

# 4.4.7
- [talker_dio_logger] Make encoder constant private

Expand Down
2 changes: 1 addition & 1 deletion packages/talker_logger/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Follow these steps to use this package
### Add dependency
```yaml
dependencies:
talker_logger: ^4.5.0
talker_logger: ^4.5.1
```
### Easy to use
Expand Down
2 changes: 1 addition & 1 deletion packages/talker_logger/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: talker_logger
description: Logger. Easy, customizable, extensible logging, lightweight with filters, formatters, custom logs, log levels.
version: 4.5.0
version: 4.5.1
homepage: https://github.com/Frezyx/talker
repository: https://github.com/Frezyx/talker
issue_tracker: https://github.com/Frezyx/talker/issues
Expand Down
5 changes: 5 additions & 0 deletions packages/talker_riverpod_logger/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# 4.5.1
- [talker_flutter] Fix mapping LogColors to Flutter Color (Logs screen)

# 4.5.0
More Flexible Interaction with Custom Logs
- **BREAKING** [talker] Change the type of `colors` parameter in the `TalkerSettings` class from `Map<TalkerLogType, AnsiPen>?` to `Map<String, AnsiPen>?`. Custom colors must now use a string key for log types.
Expand All @@ -6,6 +9,8 @@ More Flexible Interaction with Custom Logs
- [talker] Add new tests and updated existing ones.
- [talker] Update the documentation for log customization.

Thanks to [yelmuratoff](https://github.com/yelmuratoff)

# 4.4.7
- [talker_dio_logger] Make encoder constant private

Expand Down
2 changes: 1 addition & 1 deletion packages/talker_riverpod_logger/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Follow these steps to use this package
### Add dependency
```yaml
dependencies:
talker_riverpod_logger: ^4.5.0
talker_riverpod_logger: ^4.5.1
```
### Usage
Expand Down
2 changes: 1 addition & 1 deletion packages/talker_riverpod_logger/example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ dependencies:
freezed_annotation: ^2.0.0
json_annotation: ^4.6.0
riverpod: ^2.5.0
talker_riverpod_logger: ^4.5.0
talker_riverpod_logger: ^4.5.1

dev_dependencies:
build_runner: ^2.0.0
Expand Down
4 changes: 2 additions & 2 deletions packages/talker_riverpod_logger/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: talker_riverpod_logger
description: Lightweight and customizable Riverpod state management library logger on talker base.
version: 4.5.0
version: 4.5.1
homepage: https://github.com/Frezyx/talker
repository: https://github.com/Frezyx/talker
issue_tracker: https://github.com/Frezyx/talker/issues
Expand All @@ -15,7 +15,7 @@ environment:
sdk: ">=2.15.0 <4.0.0"

dependencies:
talker: ^4.5.0
talker: ^4.5.1
riverpod: ^2.5.0
meta: ^1.8.0

Expand Down

0 comments on commit a997a40

Please sign in to comment.