mirror of
https://github.com/dart-lang/sdk
synced 2024-11-05 18:22:09 +00:00
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:
parent
ccd19cd94d
commit
dcd5cd13fb
4 changed files with 22 additions and 7 deletions
|
@ -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
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
name: analyzer
|
||||
version: 0.38.2
|
||||
version: 0.38.3
|
||||
author: Dart Team <misc@dartlang.org>
|
||||
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'
|
||||
|
|
|
@ -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 <misc@dartlang.org>
|
||||
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
|
||||
|
|
|
@ -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 <misc@dartlang.org>
|
||||
description: Dart IR (Intermediate Representation)
|
||||
homepage: https://github.com/dart-lang/sdk/tree/master/pkg/kernel
|
||||
|
|
Loading…
Reference in a new issue