Skip to content

Commit 426f5a2

Browse files
authored
Support latest dependencies (#1516)
1 parent 4298f97 commit 426f5a2

File tree

12 files changed

+44
-32
lines changed

12 files changed

+44
-32
lines changed

_test_yaml/pubspec.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ resolution: workspace
99
dev_dependencies:
1010
_json_serial_shared_test:
1111
path: ../shared_test
12-
build_runner: ^2.2.1
12+
build_runner: ^2.6.0
1313
build_verify: ^3.0.0
14-
checked_yaml: ^2.0.4-wip
14+
checked_yaml: ^2.0.4
1515
json_annotation: ^4.9.0
1616
json_serializable: ^6.8.0
17-
path: ^1.8.2
18-
test: ^1.21.6
19-
yaml: ^3.0.0
17+
path: ^1.9.0
18+
test: ^1.25.9
19+
yaml: ^3.1.2

analysis_options.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
include: package:dart_flutter_team_lints/analysis_options.yaml
33

44
analyzer:
5+
errors:
6+
# For source_gen and analyzer deprecations
7+
deprecated_member_use: ignore
58
language:
69
strict-casts: true
710

checked_yaml/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 2.0.5-wip
2+
3+
- Require `yaml: ^3.1.2`
4+
15
## 2.0.4
26

37
- Require Dart 3.8

checked_yaml/pubspec.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: checked_yaml
2-
version: 2.0.4
2+
version: 2.0.5-wip
33

44
description: >-
55
Generate more helpful exceptions when decoding YAML documents using
@@ -20,12 +20,12 @@ resolution: workspace
2020
dependencies:
2121
json_annotation: ^4.3.0
2222
source_span: ^1.8.0
23-
yaml: ^3.0.0
23+
yaml: ^3.1.2
2424

2525
dev_dependencies:
26-
build_runner: ^2.0.6
26+
build_runner: ^2.6.0
2727
build_verify: ^3.0.0
2828
json_serializable: ^6.0.0
29-
path: ^1.8.0
30-
test: ^1.17.10
29+
path: ^1.9.0
30+
test: ^1.25.9
3131
test_process: ^2.0.0

example/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ dependencies:
88
json_annotation: ^4.9.0
99

1010
dev_dependencies:
11-
build_runner: ^2.3.3
12-
json_serializable: ^6.8.0
11+
build_runner: ^2.6.0
12+
json_serializable: ^6.10.0
1313
```
1414
1515
Annotate your code with classes defined in

example/pubspec.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ dev_dependencies:
1515
path: ../shared_test
1616

1717
# REQUIRED!
18-
build_runner: ^2.3.3
18+
build_runner: ^2.6.0
1919

2020
# Used by tests. Not required to use `json_serializable`.
2121
build_verify: ^3.0.0
2222

2323
# REQUIRED!
24-
json_serializable: ^6.8.0
24+
json_serializable: ^6.10.0
2525

2626
# Not required to use `json_serializable`.
27-
path: ^1.8.0
28-
test: ^1.21.6
27+
path: ^1.9.0
28+
test: ^1.25.9

example/test/readme_test.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@ dependencies:
2828
json_annotation: ^4.9.0
2929
3030
dev_dependencies:
31-
build_runner: ^2.3.3
32-
json_serializable: ^6.8.0
31+
build_runner: ^2.6.0
32+
json_serializable: ^6.10.0
3333
''';

json_annotation/CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
## 4.9.1-wip
22

3-
- Require Dart 3.8
43
- Support `JsonKey` annotation on constructor parameters.
4+
- Require `meta: ^1.15.0`
5+
- Require Dart 3.8
56

67
## 4.9.0
78

json_annotation/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ environment:
1616
resolution: workspace
1717

1818
dependencies:
19-
meta: ^1.4.0
19+
meta: ^1.15.0

json_serializable/CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
1-
## 6.11.0
1+
## 6.11.0-wip
22

33
- Support `JsonKey` annotation on constructor parameters.
4+
- Require `analyzer: '>=7.4.0 <9.0.0'`
5+
- Require `dart_style: ^3.0.0`
6+
- Require `meta: ^1.15.0`
7+
- Require `source_helper: ^1.3.6`
48

59
## 6.10.0
610

0 commit comments

Comments
 (0)