Skip to content

Commit d219149

Browse files
committed
v6.28.5
1 parent fa6dd4b commit d219149

File tree

3 files changed

+13
-4
lines changed

3 files changed

+13
-4
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## [6.28.5] - 2025-05-23
2+
3+
* Fix: `getEnv` helper to return an empty string if a variable is set like this `APP_WEBSITE=""`
4+
* Update pubspec.yaml
5+
16
## [6.28.4] - 2025-05-13
27

38
* Update pubspec.yaml

lib/helpers/helper.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,10 @@ dynamic getEnv(String key, {dynamic defaultValue}) {
4343
return false;
4444
}
4545

46+
if (value == '""') {
47+
return '';
48+
}
49+
4650
return value.toString();
4751
}
4852

pubspec.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: nylo_support
22
description: Support library for the Nylo framework. This library supports routing, widgets, localization, cli, storage and more.
3-
version: 6.28.4
3+
version: 6.28.5
44
homepage: https://nylo.dev
55
repository: https://github.com/nylo-core/support/tree/6.x
66
issue_tracker: https://github.com/nylo-core/support/issues
@@ -31,14 +31,14 @@ dependencies:
3131
rxdart: ^0.28.0
3232
pretty_dio_logger: ^1.4.0
3333
intl: ^0.19.0
34-
skeletonizer: ^1.4.3
34+
skeletonizer: ^2.0.1
3535
error_stack: ^1.10.3
3636
date_field: ^6.0.3+1
3737
flutter_multi_formatter: ^2.13.7
38-
flutter_local_notifications: ^19.2.0
38+
flutter_local_notifications: ^19.2.1
3939
path_provider: ^2.1.5
4040
timezone: ^0.10.1
41-
flutter_timezone: ^4.1.0
41+
flutter_timezone: ^4.1.1
4242
app_badge_plus: ^1.2.3
4343
mask_text_input_formatter: ^2.9.0
4444
uuid: ^4.5.1

0 commit comments

Comments
 (0)