Tobe O
e23fd2369f
2.0.4+1 (configureRoutes)
2019-07-25 22:45:47 -04:00
alex
611a785ffc
feat: use the new sembast store API
...
Also ran `dartfmt -w . --fix` to fix the lint warnings
2019-07-18 13:08:46 +02:00
Tobe Osakwe
6bad589fde
Merge pull request #86 from axellebot/patch-1
...
[FIX] Fixed wrong relationship example
2019-07-17 18:41:54 -04:00
thosakwe
650cf208fc
Expose-less ctrl done
2019-07-17 15:48:02 -04:00
thosakwe
0a9b5c118f
optional expose
2019-07-17 15:26:34 -04:00
thosakwe
91bc517b1f
decode+deserialize body
2019-07-17 15:05:51 -04:00
thosakwe
2fdfb848f0
Hostnamerouter done
2019-07-17 14:57:51 -04:00
thosakwe
ac71ffad0f
Hostname syntax parser
2019-07-17 13:47:30 -04:00
thosakwe
6a34a5462a
allowHttp1 test
2019-07-17 13:21:43 -04:00
thosakwe
5ba849d9b1
Add allowHttp1
2019-07-17 13:20:20 -04:00
thosakwe
efce4496fc
Offline downloading
2019-07-17 12:53:11 -04:00
thosakwe
ecdfacce27
Store boilerplates offline
2019-07-17 11:56:52 -04:00
thosakwe
0e63ee9e77
Heavy checkmark
2019-07-17 11:21:35 -04:00
thosakwe
427f81ee49
Update to 2.1.7
2019-07-17 11:18:49 -04:00
Axel Le Bot
c4e16206ea
Edited car list query
2019-07-13 13:20:59 +02:00
Tobe O
6ec67dde7b
delete swp
2019-07-08 20:24:25 -04:00
Tobe O
02534d17e8
changelog
2019-07-08 20:24:09 -04:00
Tobe O
2f2295ed5a
full changelog
2019-07-08 20:22:09 -04:00
Tobe Osakwe
bf1ad66b56
Merge pull request #239 from davidosborn/master
...
Accept any content type if accept header is missing
2019-07-08 20:21:31 -04:00
Tobe Osakwe
aacd91e267
Merge pull request #5 from tvolkert/http
...
Prepare for upcoming change to HttpRequest and HttpClientResponse
2019-07-08 20:17:26 -04:00
Tobe Osakwe
1be896288c
Merge pull request #39 from tvolkert/uint8list
...
Prepare for upcoming change to File.openRead()
2019-07-08 20:16:57 -04:00
Tobe Osakwe
4be830e17a
Merge pull request #237 from tvolkert/bytes
...
Prepare for upcoming Dart SDK breaking change
2019-07-08 20:16:09 -04:00
Todd Volkert
f83a874944
Prepare for upcoming Dart SDK breaking change
...
The SDK recently updated `BytesBuilder.takeBytes()` and
`BytesBuilder.toBytes()` to return `Uint8List` rather than
`List<int>`.
A similar change has updated `File.openRead()` to return
`Stream<Uint8List>` and `HttpClientResponse` to implement
`Stream<Uint8List>`.
This change makes the corresponding update in the angel framework.
https://github.com/dart-lang/sdk/issues/36900
2019-07-07 08:58:41 -07:00
Axel Le Bot
e3280aeea0
[FIX] Fixed wrong relationship example
2019-07-06 18:19:19 +02:00
Tobe O
1b3e66d1dd
Remove unused imports
2019-07-04 17:53:32 -04:00
Tobe O
6c0972a13d
Bump gen to 2.0.5
2019-07-04 17:52:44 -04:00
Tobe O
ae2a002d06
Fix parseRow test
2019-07-04 17:52:35 -04:00
Tobe O
1a7970c9cd
gen
2019-07-04 17:36:59 -04:00
Tobe O
e4a45c47ba
Bump orm to 2.0.1
2019-07-04 17:31:18 -04:00
Tobe O
010036a89f
primary.key no default type
2019-07-04 17:30:42 -04:00
Tobe O
68a349c877
Apply pedantic to angel_orm
2019-07-04 17:30:21 -04:00
Tobe O
ed34ea0a2f
Omar Belkhodja fixes
2019-07-04 17:26:39 -04:00
Tobe O
c2a117396f
Skip ShimFieldImpl check
2019-07-04 17:08:20 -04:00
Tobe O
2ca0e16dea
Delete conflicting outputs in travis
2019-07-04 14:37:22 -04:00
Tobe O
f479212675
don't annotate initializing formals
2019-07-04 14:36:39 -04:00
Tobe O
03cf34b779
Patch travis to build before tests
2019-07-04 14:34:31 -04:00
Tobe O
c07bed94d5
Bump gen -> 2.5.0
2019-07-04 14:32:52 -04:00
Tobe O
447f479747
Apply pedantic lints
2019-07-04 14:32:34 -04:00
Tobe O
642a7d98a8
Finish subclass
2019-07-04 14:30:45 -04:00
Tobe O
a4b56e7885
Use whereType()
instead of chaining where()
and cast()
.
2019-07-04 14:08:25 -04:00
Tobe O
165dd82813
Support mutation
2019-07-04 14:03:20 -04:00
Tobe O
8cdf71bea5
Update custom serializer doc
2019-07-04 13:54:17 -04:00
David Osborn
25c6ded16f
Accept any content type if accept header is missing.
2019-06-30 23:15:20 -03:00
Tobe O
67c11b5384
broken
2019-06-30 09:30:23 -04:00
Tobe O
c1b1c5a06e
hooks test
2019-06-30 09:30:12 -04:00
Todd Volkert
16e3a5a3a0
Prepare for upcoming change to HttpRequest and HttpClientResponse
...
An upcoming change to the Dart SDK will change `HttpRequest` and
`HttpClientResponse` from implementing `Stream<List<int>>` to
implementing `Stream<Uint8List>`.
This forwards-compatible change prepares for that SDK breaking
change by casting the Stream to `List<int>` before transforming
it.
https://github.com/dart-lang/sdk/issues/36900
2019-06-25 19:50:57 -07:00
Todd Volkert
e3c291d913
Prepare for upcoming change to File.openRead()
...
An upcoming change to the Dart SDK will change the signature
of `File.openRead()` from returning `Stream<List<int>>` to
returning `Stream<Uint8List>`.
This forwards-compatible change prepares for that SDK breaking
change by casting the Stream to `List<int>` before transforming
it.
https://github.com/dart-lang/sdk/issues/36900
2019-06-25 13:12:54 -07:00
Tobe O
cc23c2a97e
Bump
2019-06-06 12:19:16 -04:00
Tobe O
df90ce1bbc
2.1.3+1
2019-06-06 12:19:09 -04:00
Tobe O
f2b6ab69e2
bump to 2.0.3
2019-06-06 12:17:32 -04:00