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 <scheglov@google.com>
Commit-Queue: Paul Berry <paulberry@google.com>
This commit is contained in:
Paul Berry 2019-09-19 20:42:17 +00:00 committed by commit-bot@chromium.org
parent ccd19cd94d
commit dcd5cd13fb
4 changed files with 22 additions and 7 deletions

View file

@ -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 ## 0.38.2
* The type of `FunctionTypeAlias.declaredElement` has been refined to * The type of `FunctionTypeAlias.declaredElement` has been refined to
`FunctionTypeAliasElement`. Since the new type is a refinement of `FunctionTypeAliasElement`. Since the new type is a refinement of

View file

@ -1,5 +1,5 @@
name: analyzer name: analyzer
version: 0.38.2 version: 0.38.3
author: Dart Team <misc@dartlang.org> author: Dart Team <misc@dartlang.org>
description: This package provides a library that performs static analysis of Dart code. description: This package provides a library that performs static analysis of Dart code.
homepage: https://github.com/dart-lang/sdk/tree/master/pkg/analyzer homepage: https://github.com/dart-lang/sdk/tree/master/pkg/analyzer
@ -13,10 +13,10 @@ dependencies:
collection: ^1.10.1 collection: ^1.10.1
convert: ^2.0.0 convert: ^2.0.0
crypto: '>=1.1.1 <3.0.0' crypto: '>=1.1.1 <3.0.0'
front_end: 0.1.24 front_end: 0.1.25
glob: ^1.0.3 glob: ^1.0.3
html: '>=0.13.4+1 <0.15.0' html: '>=0.13.4+1 <0.15.0'
kernel: 0.3.24 kernel: 0.3.25
meta: ^1.0.2 meta: ^1.0.2
package_config: '>=0.1.5 <2.0.0' package_config: '>=0.1.5 <2.0.0'
path: '>=0.9.0 <2.0.0' path: '>=0.9.0 <2.0.0'

View file

@ -1,17 +1,17 @@
name: front_end name: front_end
# Currently, front_end API is not stable and users should not # Currently, front_end API is not stable and users should not
# depend on semver semantics when depending on this package. # depend on semver semantics when depending on this package.
version: 0.1.24 version: 0.1.25
author: Dart Team <misc@dartlang.org> author: Dart Team <misc@dartlang.org>
description: Front end for compilation of Dart code. description: Front end for compilation of Dart code.
homepage: https://github.com/dart-lang/sdk/tree/master/pkg/front_end homepage: https://github.com/dart-lang/sdk/tree/master/pkg/front_end
environment: environment:
sdk: '>=2.2.2 <3.0.0' sdk: '>=2.2.2 <3.0.0'
dependencies: dependencies:
kernel: 0.3.24 kernel: 0.3.25
package_config: '^1.1.0' package_config: '^1.1.0'
dev_dependencies: dev_dependencies:
analyzer: 0.38.2 analyzer: 0.38.3
args: '>=0.13.0 <2.0.0' args: '>=0.13.0 <2.0.0'
build_integration: build_integration:
path: ../build_integration path: ../build_integration

View file

@ -1,7 +1,7 @@
name: kernel name: kernel
# Currently, kernel API is not stable and users should # Currently, kernel API is not stable and users should
# not depend on semver semantics when depending on this package. # not depend on semver semantics when depending on this package.
version: 0.3.24 version: 0.3.25
author: Dart Team <misc@dartlang.org> author: Dart Team <misc@dartlang.org>
description: Dart IR (Intermediate Representation) description: Dart IR (Intermediate Representation)
homepage: https://github.com/dart-lang/sdk/tree/master/pkg/kernel homepage: https://github.com/dart-lang/sdk/tree/master/pkg/kernel