File tree Expand file tree Collapse file tree 3 files changed +9
-6
lines changed Expand file tree Collapse file tree 3 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 1
- ## v6.0.3
1
+ ## 6.0.4
2
+ - This fixes #196 (https://github.com/SpinlockLabs/github.dart/issues/196 )
3
+
4
+ ## 6.0.3
2
5
- Add archived and disabled fields to the Repository class
3
6
4
- ## v6 .0.2
7
+ ## 6 .0.2
5
8
- Fixed ` GitHubFile.text ` to properly decode ` content ` .
6
9
7
- ## v6 .0.1
10
+ ## 6 .0.1
8
11
- Fix https://github.com/SpinlockLabs/github.dart/issues/190
9
12
10
- ## v6 .0.0
13
+ ## 6 .0.0
11
14
12
15
- There's a single entrypoint now: ` package:github/github.dart `
13
16
- For web: browser specific helper methods have moved. use import ` package:github/browser_helper.dart ` (renderMarkdown, and createAvatorImage)
Original file line number Diff line number Diff line change @@ -387,7 +387,7 @@ class GitHub {
387
387
if (response.headers['content-type' ].contains ('application/json' )) {
388
388
final json = jsonDecode (response.body);
389
389
message = json['message' ];
390
- errors = json[ 'errors' ] as List <Map <String , String >>;
390
+ errors = List <Map <String , String >>. from (json[ 'errors' ]) ;
391
391
}
392
392
switch (response.statusCode) {
393
393
case 404 :
Original file line number Diff line number Diff line change 1
1
name : github
2
- version : 6.0.3
2
+ version : 6.0.4
3
3
description : A high-level GitHub API Client Library that uses Github's v3 API
4
4
homepage : https://github.com/SpinlockLabs/github.dart
5
5
You can’t perform that action at this time.
0 commit comments