Skip to content

Commit

Permalink
v5.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
agordn52 committed Jun 17, 2023
1 parent 62ceb1f commit 8452732
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 8 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,14 @@
## [5.1.0] - 2023-06-17

* Breaking change to validation.
* If you are using Nylo 5.x, do the following:
* Go to **config/validation_rules.dart**.
* Update 'final Map<Type, dynamic> validationRules = {'
* to this 'final Map<String, dynamic> validationRules = {'
* Custom validation rules must now the follow the following format:
* "simple_password": (attribute) => SimplePassword(attribute), // example
* Pubspec.yaml dependency updates.

## [5.0.6] - 2023-06-14

* Update Nylo framework version.
Expand Down
6 changes: 3 additions & 3 deletions example/pubspec.lock
Expand Up @@ -283,15 +283,15 @@ packages:
path: ".."
relative: true
source: path
version: "5.0.5"
version: "5.0.6"
nylo_support:
dependency: transitive
description:
name: nylo_support
sha256: "4304c0bffabfa26592da637583e6f50215ac8d3dd6848a1c1e3b1e3d9b766702"
sha256: "7324d3fccb315619a28ce292d15f8ac1150aa6111faddbf1de991305fdf80479"
url: "https://pub.dev"
source: hosted
version: "5.2.2"
version: "5.3.0"
package_config:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion lib/nylo_framework.dart
Expand Up @@ -31,4 +31,4 @@ export 'package:page_transition/page_transition.dart';
export 'package:dio/dio.dart';

/// Nylo version
const String nyloVersion = 'v5.0.6';
const String nyloVersion = 'v5.1.0';
4 changes: 2 additions & 2 deletions pubspec.lock
Expand Up @@ -281,10 +281,10 @@ packages:
dependency: "direct main"
description:
name: nylo_support
sha256: "4304c0bffabfa26592da637583e6f50215ac8d3dd6848a1c1e3b1e3d9b766702"
sha256: "7324d3fccb315619a28ce292d15f8ac1150aa6111faddbf1de991305fdf80479"
url: "https://pub.dev"
source: hosted
version: "5.2.2"
version: "5.3.0"
package_config:
dependency: transitive
description:
Expand Down
4 changes: 2 additions & 2 deletions pubspec.yaml
@@ -1,6 +1,6 @@
name: nylo_framework
description: Micro-framework for Flutter that's built to simplify app development for Flutter projects.
version: 5.0.6
version: 5.1.0
homepage: https://nylo.dev
repository: https://github.com/nylo-core/framework
issue_tracker: https://github.com/nylo-core/framework/issues
Expand All @@ -12,7 +12,7 @@ environment:
dependencies:
dio: ^5.2.1+1
flutter_dotenv: ^5.1.0
nylo_support: ^5.2.2
nylo_support: ^5.3.0
theme_provider: ^0.6.0
json_dart_generator: ^1.1.0+1
page_transition: ^2.0.9
Expand Down

0 comments on commit 8452732

Please sign in to comment.