From dcd5cd13fb40266272b6d64551fb3874ff933293 Mon Sep 17 00:00:00 2001 From: Paul Berry Date: Thu, 19 Sep 2019 20:42:17 +0000 Subject: [PATCH] Prepare to publish analyzer version 0.38.3. Change-Id: I338f5a5ae9f3384ecb1d3e9ae5d3231e0288552d Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/118160 Reviewed-by: Konstantin Shcheglov Commit-Queue: Paul Berry --- pkg/analyzer/CHANGELOG.md | 15 +++++++++++++++ pkg/analyzer/pubspec.yaml | 6 +++--- pkg/front_end/pubspec.yaml | 6 +++--- pkg/kernel/pubspec.yaml | 2 +- 4 files changed, 22 insertions(+), 7 deletions(-) diff --git a/pkg/analyzer/CHANGELOG.md b/pkg/analyzer/CHANGELOG.md index 6c308d73d02..04cd0e5d779 100644 --- a/pkg/analyzer/CHANGELOG.md +++ b/pkg/analyzer/CHANGELOG.md @@ -1,3 +1,18 @@ +## 0.38.3 +* Deprecated the following codes from `StaticWarningCode`. Please use the + corresponding error codes from `CompileTimeErrorCode` instead: + * `EXTRA_POSITIONAL_ARGUMENTS` + * `EXTRA_POSITIONAL_ARGUMENTS_COULD_BE_NAMED` + * `IMPORT_OF_NON_LIBRARY` + * `NOT_ENOUGH_REQUIRED_ARGUMENTS` + * `REDIRECT_TO_MISSING_CONSTRUCTOR` + * `REDIRECT_TO_NON_CLASS` + * `UNDEFINED_CLASS` + * `UNDEFINED_NAMED_PARAMETER` +* Bug fixes: #33749, #35985, #37708, #37857, #37858, #37859, #37945, #38022, + #38057, #38071, #38091, #38095, #38105, #38113, #38198, #38202, #38203, + #38261, #38282, #38365, #38417, #38448, #38449. + ## 0.38.2 * The type of `FunctionTypeAlias.declaredElement` has been refined to `FunctionTypeAliasElement`. Since the new type is a refinement of diff --git a/pkg/analyzer/pubspec.yaml b/pkg/analyzer/pubspec.yaml index 5314552bfe0..67ae0272bc5 100644 --- a/pkg/analyzer/pubspec.yaml +++ b/pkg/analyzer/pubspec.yaml @@ -1,5 +1,5 @@ name: analyzer -version: 0.38.2 +version: 0.38.3 author: Dart Team description: This package provides a library that performs static analysis of Dart code. homepage: https://github.com/dart-lang/sdk/tree/master/pkg/analyzer @@ -13,10 +13,10 @@ dependencies: collection: ^1.10.1 convert: ^2.0.0 crypto: '>=1.1.1 <3.0.0' - front_end: 0.1.24 + front_end: 0.1.25 glob: ^1.0.3 html: '>=0.13.4+1 <0.15.0' - kernel: 0.3.24 + kernel: 0.3.25 meta: ^1.0.2 package_config: '>=0.1.5 <2.0.0' path: '>=0.9.0 <2.0.0' diff --git a/pkg/front_end/pubspec.yaml b/pkg/front_end/pubspec.yaml index ea3f3bfcbcc..e39bb2e575c 100644 --- a/pkg/front_end/pubspec.yaml +++ b/pkg/front_end/pubspec.yaml @@ -1,17 +1,17 @@ name: front_end # Currently, front_end API is not stable and users should not # depend on semver semantics when depending on this package. -version: 0.1.24 +version: 0.1.25 author: Dart Team description: Front end for compilation of Dart code. homepage: https://github.com/dart-lang/sdk/tree/master/pkg/front_end environment: sdk: '>=2.2.2 <3.0.0' dependencies: - kernel: 0.3.24 + kernel: 0.3.25 package_config: '^1.1.0' dev_dependencies: - analyzer: 0.38.2 + analyzer: 0.38.3 args: '>=0.13.0 <2.0.0' build_integration: path: ../build_integration diff --git a/pkg/kernel/pubspec.yaml b/pkg/kernel/pubspec.yaml index d28cdb0a29c..b0b05b0726f 100644 --- a/pkg/kernel/pubspec.yaml +++ b/pkg/kernel/pubspec.yaml @@ -1,7 +1,7 @@ name: kernel # Currently, kernel API is not stable and users should # not depend on semver semantics when depending on this package. -version: 0.3.24 +version: 0.3.25 author: Dart Team description: Dart IR (Intermediate Representation) homepage: https://github.com/dart-lang/sdk/tree/master/pkg/kernel