diff --git a/_test_yaml/pubspec.yaml b/_test_yaml/pubspec.yaml index a2496e7c..e9d4c7ec 100644 --- a/_test_yaml/pubspec.yaml +++ b/_test_yaml/pubspec.yaml @@ -9,11 +9,11 @@ resolution: workspace dev_dependencies: _json_serial_shared_test: path: ../shared_test - build_runner: ^2.2.1 + build_runner: ^2.6.0 build_verify: ^3.0.0 - checked_yaml: ^2.0.4-wip + checked_yaml: ^2.0.4 json_annotation: ^4.9.0 json_serializable: ^6.8.0 - path: ^1.8.2 - test: ^1.21.6 - yaml: ^3.0.0 + path: ^1.9.0 + test: ^1.25.9 + yaml: ^3.1.2 diff --git a/analysis_options.yaml b/analysis_options.yaml index e6a95071..83c1850b 100644 --- a/analysis_options.yaml +++ b/analysis_options.yaml @@ -2,6 +2,9 @@ include: package:dart_flutter_team_lints/analysis_options.yaml analyzer: + errors: + # For source_gen and analyzer deprecations + deprecated_member_use: ignore language: strict-casts: true diff --git a/checked_yaml/CHANGELOG.md b/checked_yaml/CHANGELOG.md index 567d1479..5f4e47d8 100644 --- a/checked_yaml/CHANGELOG.md +++ b/checked_yaml/CHANGELOG.md @@ -1,3 +1,7 @@ +## 2.0.5-wip + +- Require `yaml: ^3.1.2` + ## 2.0.4 - Require Dart 3.8 diff --git a/checked_yaml/pubspec.yaml b/checked_yaml/pubspec.yaml index 6195805d..82b34cbe 100644 --- a/checked_yaml/pubspec.yaml +++ b/checked_yaml/pubspec.yaml @@ -1,5 +1,5 @@ name: checked_yaml -version: 2.0.4 +version: 2.0.5-wip description: >- Generate more helpful exceptions when decoding YAML documents using @@ -20,12 +20,12 @@ resolution: workspace dependencies: json_annotation: ^4.3.0 source_span: ^1.8.0 - yaml: ^3.0.0 + yaml: ^3.1.2 dev_dependencies: - build_runner: ^2.0.6 + build_runner: ^2.6.0 build_verify: ^3.0.0 json_serializable: ^6.0.0 - path: ^1.8.0 - test: ^1.17.10 + path: ^1.9.0 + test: ^1.25.9 test_process: ^2.0.0 diff --git a/example/README.md b/example/README.md index 7eff2e69..92da62e0 100644 --- a/example/README.md +++ b/example/README.md @@ -8,8 +8,8 @@ dependencies: json_annotation: ^4.9.0 dev_dependencies: - build_runner: ^2.3.3 - json_serializable: ^6.8.0 + build_runner: ^2.6.0 + json_serializable: ^6.10.0 ``` Annotate your code with classes defined in diff --git a/example/pubspec.yaml b/example/pubspec.yaml index 392a1cd2..3fee7464 100644 --- a/example/pubspec.yaml +++ b/example/pubspec.yaml @@ -15,14 +15,14 @@ dev_dependencies: path: ../shared_test # REQUIRED! - build_runner: ^2.3.3 + build_runner: ^2.6.0 # Used by tests. Not required to use `json_serializable`. build_verify: ^3.0.0 # REQUIRED! - json_serializable: ^6.8.0 + json_serializable: ^6.10.0 # Not required to use `json_serializable`. - path: ^1.8.0 - test: ^1.21.6 + path: ^1.9.0 + test: ^1.25.9 diff --git a/example/test/readme_test.dart b/example/test/readme_test.dart index 9ab00e93..c30313e0 100644 --- a/example/test/readme_test.dart +++ b/example/test/readme_test.dart @@ -28,6 +28,6 @@ dependencies: json_annotation: ^4.9.0 dev_dependencies: - build_runner: ^2.3.3 - json_serializable: ^6.8.0 + build_runner: ^2.6.0 + json_serializable: ^6.10.0 '''; diff --git a/json_annotation/CHANGELOG.md b/json_annotation/CHANGELOG.md index c43793a7..decb812d 100644 --- a/json_annotation/CHANGELOG.md +++ b/json_annotation/CHANGELOG.md @@ -1,7 +1,8 @@ ## 4.9.1-wip -- Require Dart 3.8 - Support `JsonKey` annotation on constructor parameters. +- Require `meta: ^1.15.0` +- Require Dart 3.8 ## 4.9.0 diff --git a/json_annotation/pubspec.yaml b/json_annotation/pubspec.yaml index f1cd2c79..eaae8a86 100644 --- a/json_annotation/pubspec.yaml +++ b/json_annotation/pubspec.yaml @@ -16,4 +16,4 @@ environment: resolution: workspace dependencies: - meta: ^1.4.0 + meta: ^1.15.0 diff --git a/json_serializable/CHANGELOG.md b/json_serializable/CHANGELOG.md index 531396ea..cbd31784 100644 --- a/json_serializable/CHANGELOG.md +++ b/json_serializable/CHANGELOG.md @@ -1,6 +1,10 @@ -## 6.11.0 +## 6.11.0-wip - Support `JsonKey` annotation on constructor parameters. +- Require `analyzer: '>=7.4.0 <9.0.0'` +- Require `dart_style: ^3.0.0` +- Require `meta: ^1.15.0` +- Require `source_helper: ^1.3.6` ## 6.10.0 diff --git a/json_serializable/pubspec.yaml b/json_serializable/pubspec.yaml index a9d4c9fb..c6e15f77 100644 --- a/json_serializable/pubspec.yaml +++ b/json_serializable/pubspec.yaml @@ -1,5 +1,5 @@ name: json_serializable -version: 6.11.0 +version: 6.11.0-wip description: >- Automatically generate code for converting to and from JSON by annotating Dart classes. @@ -15,31 +15,31 @@ topics: resolution: workspace dependencies: - analyzer: ^7.4.0 + analyzer: '>=7.4.0 <9.0.0' async: ^2.10.0 build: ^3.0.0 build_config: ^1.1.0 - dart_style: '>=2.3.7 <4.0.0' + dart_style: ^3.0.0 # Use a tight version constraint to ensure that a constraint on # `json_annotation` properly constrains all features it provides. json_annotation: '>=4.9.0 <4.10.0' - meta: ^1.14.0 + meta: ^1.15.0 path: ^1.9.0 pub_semver: ^2.1.4 pubspec_parse: ^1.0.0 source_gen: ^3.0.0 - source_helper: ^1.3.4 + source_helper: ^1.3.6 dev_dependencies: _json_serial_shared_test: path: ../shared_test - build_runner: ^2.4.6 + build_runner: ^2.6.0 build_verify: ^3.0.0 - collection: ^1.17.0 - logging: ^1.0.0 + collection: ^1.19.0 + logging: ^1.2.0 source_gen_test: ^1.3.0 - test: ^1.24.4 + test: ^1.25.9 test_descriptor: ^2.0.0 test_process: ^2.0.0 - yaml: ^3.0.0 + yaml: ^3.1.2 diff --git a/shared_test/pubspec.yaml b/shared_test/pubspec.yaml index 9b6990a4..cc11f4b5 100644 --- a/shared_test/pubspec.yaml +++ b/shared_test/pubspec.yaml @@ -7,4 +7,4 @@ resolution: workspace dependencies: stack_trace: ^1.10.0 - test: ^1.6.0 + test: ^1.25.9