Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
95544383
Commit
95544383
authored
7 years ago
by
Phil Quitslund
Committed by
GitHub
7 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bump to Dart SDK 1.24.0-dev.6.7. (#10585)
* Bump to Dart SDK 1.24.0-dev.6.7. * nits and fixes
parent
1eaefe18
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
12 additions
and
9 deletions
+12
-9
dart-sdk.version
bin/internal/dart-sdk.version
+1
-1
pubspec.yaml
dev/devicelab/pubspec.yaml
+1
-1
pubspec.yaml
packages/flutter_driver/pubspec.yaml
+1
-1
pubspec.yaml
packages/flutter_test/pubspec.yaml
+1
-1
analyze_once.dart
packages/flutter_tools/lib/src/commands/analyze_once.dart
+7
-4
pubspec.yaml
packages/flutter_tools/pubspec.yaml
+1
-1
No files found.
bin/internal/dart-sdk.version
View file @
95544383
1.24.0-dev.
3.0
1.24.0-dev.
6.7
This diff is collapsed.
Click to expand it.
dev/devicelab/pubspec.yaml
View file @
95544383
...
...
@@ -17,4 +17,4 @@ dependencies:
dev_dependencies
:
# See packages/flutter_test/pubspec.yaml for why we're pinning this version.
test
:
0.12.2
0
test
:
0.12.2
1
This diff is collapsed.
Click to expand it.
packages/flutter_driver/pubspec.yaml
View file @
95544383
...
...
@@ -21,6 +21,6 @@ dependencies:
sdk
:
flutter
dev_dependencies
:
test
:
0.12.2
0
test
:
0.12.2
1
mockito
:
^2.0.2
quiver
:
^0.24.0
This diff is collapsed.
Click to expand it.
packages/flutter_test/pubspec.yaml
View file @
95544383
...
...
@@ -4,7 +4,7 @@ dependencies:
# The flutter tools depend on very specific internal implementation
# details of the 'test' package, which change between versions, so
# here we pin it precisely to avoid version skew across our packages.
test
:
0.12.2
0
test
:
0.12.2
1
# We use FakeAsync and other testing utilities.
quiver
:
^0.24.0
...
...
This diff is collapsed.
Click to expand it.
packages/flutter_tools/lib/src/commands/analyze_once.dart
View file @
95544383
...
...
@@ -31,6 +31,9 @@ class AnalyzeOnce extends AnalyzeBase {
/// The working directory for testing analysis using dartanalyzer
final
Directory
workingDirectory
;
/// Packages whose source is defined in the vended SDK.
static
const
List
<
String
>
_vendedSdkPackages
=
const
<
String
>[
'analyzer'
,
'front_end'
,
'kernel'
];
@override
Future
<
Null
>
analyze
()
async
{
final
Stopwatch
stopwatch
=
new
Stopwatch
()..
start
();
...
...
@@ -158,10 +161,10 @@ class AnalyzeOnce extends AnalyzeBase {
if
(
colon
>
0
)
{
final
String
packageName
=
line
.
substring
(
0
,
colon
);
final
String
packagePath
=
fs
.
path
.
fromUri
(
line
.
substring
(
colon
+
1
));
// Ensure that we only add
the `analyzer` package defined in the vended SDK (and referred to with a local fs.path. directive).
//
Analyzer package versions reached via transitive dependencies (e.g., via `test`) are ignored since they would produce
// spurious conflicts.
if
(
packageName
!=
'analyzer'
||
packagePath
.
startsWith
(
'..'
))
// Ensure that we only add
`analyzer` and dependent packages defined in the vended SDK (and referred to with a local
//
fs.path. directive). Analyzer package versions reached via transitive dependencies (e.g., via `test`) are ignored
// s
ince they would produce s
purious conflicts.
if
(
!
_vendedSdkPackages
.
contains
(
packageName
)
||
packagePath
.
startsWith
(
'..'
))
dependencies
.
add
(
packageName
,
fs
.
path
.
normalize
(
fs
.
path
.
absolute
(
directory
.
path
,
packagePath
)),
dotPackagesPath
);
}
});
...
...
This diff is collapsed.
Click to expand it.
packages/flutter_tools/pubspec.yaml
View file @
95544383
...
...
@@ -33,7 +33,7 @@ dependencies:
# We depend on very specific internal implementation details of the
# 'test' package, which change between versions, so here we pin it
# precisely.
test
:
0.12.2
0
test
:
0.12.2
1
# Version from the vended Dart SDK as defined in `dependency_overrides`.
analyzer
:
any
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment