Skip to content

Commit 128ca8b

Browse files
committed
Support latest dependencies
1 parent 4298f97 commit 128ca8b

File tree

10 files changed

+44
-32
lines changed

10 files changed

+44
-32
lines changed

_test_yaml/pubspec.yaml

Lines changed: 7 additions & 7 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
15-
json_annotation: ^4.9.0
16-
json_serializable: ^6.8.0
17-
path: ^1.8.2
18-
test: ^1.21.6
19-
yaml: ^3.0.0
14+
checked_yaml: ^2.0.4
15+
json_annotation: ^4.9.1-wip
16+
json_serializable: ^6.11.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: 6 additions & 6 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
28-
json_serializable: ^6.0.0
29-
path: ^1.8.0
30-
test: ^1.17.10
28+
json_serializable: ^6.11.0
29+
path: ^1.9.0
30+
test: ^1.25.9
3131
test_process: ^2.0.0

example/pubspec.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,22 +7,22 @@ environment:
77
resolution: workspace
88

99
dependencies:
10-
json_annotation: ^4.9.0
10+
json_annotation: ^4.9.1-wip
1111

1212
dev_dependencies:
1313
# Used by tests. Not required to use `json_serializable`.
1414
_json_serial_shared_test:
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.11.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

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

json_serializable/pubspec.yaml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: json_serializable
2-
version: 6.11.0
2+
version: 6.11.0-wip
33
description: >-
44
Automatically generate code for converting to and from JSON by annotating
55
Dart classes.
@@ -15,31 +15,31 @@ topics:
1515
resolution: workspace
1616

1717
dependencies:
18-
analyzer: ^7.4.0
18+
analyzer: '>=7.4.0 <9.0.0'
1919
async: ^2.10.0
2020
build: ^3.0.0
2121
build_config: ^1.1.0
22-
dart_style: '>=2.3.7 <4.0.0'
22+
dart_style: ^3.0.0
2323

2424
# Use a tight version constraint to ensure that a constraint on
2525
# `json_annotation` properly constrains all features it provides.
2626
json_annotation: '>=4.9.0 <4.10.0'
27-
meta: ^1.14.0
27+
meta: ^1.15.0
2828
path: ^1.9.0
2929
pub_semver: ^2.1.4
3030
pubspec_parse: ^1.0.0
3131
source_gen: ^3.0.0
32-
source_helper: ^1.3.4
32+
source_helper: ^1.3.6
3333

3434
dev_dependencies:
3535
_json_serial_shared_test:
3636
path: ../shared_test
37-
build_runner: ^2.4.6
37+
build_runner: ^2.6.0
3838
build_verify: ^3.0.0
39-
collection: ^1.17.0
40-
logging: ^1.0.0
39+
collection: ^1.19.0
40+
logging: ^1.2.0
4141
source_gen_test: ^1.3.0
42-
test: ^1.24.4
42+
test: ^1.25.9
4343
test_descriptor: ^2.0.0
4444
test_process: ^2.0.0
45-
yaml: ^3.0.0
45+
yaml: ^3.1.2

shared_test/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ resolution: workspace
77

88
dependencies:
99
stack_trace: ^1.10.0
10-
test: ^1.6.0
10+
test: ^1.25.9

0 commit comments

Comments
 (0)