Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit d8af9b2

Browse files
authored
Update some dependencies, bump min SDK (#415)
1 parent 8169398 commit d8af9b2

File tree

5 files changed

+20
-15
lines changed

5 files changed

+20
-15
lines changed

.github/workflows/dart.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
matrix:
1414
os: [ubuntu-latest]
1515
# Test with at least the declared minimum Dart version
16-
sdk: ['3.0', stable]
16+
sdk: ['3.1', stable]
1717
steps:
1818
- uses: actions/checkout@v4
1919
- uses: dart-lang/setup-dart@v1

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 9.25.0-wip
2+
3+
* Require Dart 3.1
4+
* Require `package:http` `^1.0.0`.
5+
16
## 9.24.0
27

38
* Bug fixes to the `Issue.isOpen` and `Issue.isClosed` getters.

analysis_options.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ linter:
3131
- omit_local_variable_types
3232
- one_member_abstracts
3333
- only_throw_errors
34-
- package_api_docs
3534
- prefer_asserts_in_initializer_lists
3635
- prefer_const_constructors
3736
- prefer_const_constructors_in_immutables

pubspec.yaml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
11
name: github
2-
version: 9.24.0
2+
version: 9.25.0-wip
33
description: A high-level GitHub API Client Library that uses Github's v3 API
44
homepage: https://github.com/SpinlockLabs/github.dart
55

66
environment:
7-
sdk: ^3.0.0
7+
sdk: ^3.1.0
88

99
dependencies:
10-
http: '>=0.13.0 <2.0.0'
10+
http: ^1.0.0
1111
http_parser: ^4.0.0
1212
json_annotation: ^4.8.0
13-
meta: ^1.3.0
13+
meta: ^1.7.0
1414

1515
dev_dependencies:
16-
build_runner: any
17-
build_test: any
18-
build_web_compilers: any
16+
build_runner: ^2.2.1
17+
build_test: ^2.1.2
18+
build_web_compilers: ^3.2.6
1919
collection: ^1.15.0
20-
dependency_validator:
20+
dependency_validator: ^3.0.0
2121
json_serializable: ^6.6.1
22-
lints: ^3.0.0
23-
mockito: ^5.0.0
24-
nock: ^1.0.0
22+
lints: ^4.0.0
23+
mockito: ^5.3.2
24+
nock: ^1.1.3
2525
pub_semver: ^2.0.0
26-
test: ^1.16.0
27-
yaml: ^3.0.0
26+
test: ^1.21.6
27+
yaml: ^3.1.0
2828
yaml_edit: ^2.2.0

test/scenarios_test.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
@Tags(['scenarios'])
44
@TestOn('vm')
5+
library;
56

67
import 'dart:convert';
78

0 commit comments

Comments
 (0)