Skip to content

Commit

Permalink
Update to V0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
javad-zobeidi committed Jun 21, 2024
1 parent 2cb3f33 commit 966b037
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 0.3.1

- Fix Refresh token bug([#83](https://github.com/vania-dart/framework/issues/83))
- Fix WebSocket connect event

## 0.3.0

- Add Parameter validation conditions for the router([#79](https://github.com/vania-dart/framework/issues/79))
Expand Down
2 changes: 1 addition & 1 deletion lib/src/authentication/authentication.dart
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ class Auth {
_user[_userGuard] = user;
await PersonalAccessTokens().query().insert({
'name': _userGuard,
'tokenable_id': user!['id'],
'tokenable_id': user['id'],
'token': md5.convert(utf8.encode(newToken['access_token'])),
'created_at': DateTime.now(),
});
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: vania
description: Fast, simple, and powerful backend framework for Dart built with
version: 0.3.0
version: 0.3.1
homepage: https://vdart.dev
repository: https://github.com/vania-dart/framework
issue_tracker: https://github.com/vania-dart/framework/issues
Expand Down

0 comments on commit 966b037

Please sign in to comment.