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
d68278e3
Unverified
Commit
d68278e3
authored
Jan 22, 2020
by
Jonah Williams
Committed by
GitHub
Jan 22, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[flutter_tools] rollback to dwds 0.8.5, fix versioning (#49301)
parent
14fc0e5c
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
11 additions
and
8 deletions
+11
-8
resident_web_runner.dart
...utter_tools/lib/src/build_runner/resident_web_runner.dart
+4
-1
web_fs.dart
packages/flutter_tools/lib/src/build_runner/web_fs.dart
+2
-2
update_packages.dart
packages/flutter_tools/lib/src/commands/update_packages.dart
+1
-0
devfs_web.dart
packages/flutter_tools/lib/src/web/devfs_web.dart
+2
-2
pubspec.yaml
packages/flutter_tools/pubspec.yaml
+2
-3
No files found.
packages/flutter_tools/lib/src/build_runner/resident_web_runner.dart
View file @
d68278e3
...
...
@@ -525,8 +525,11 @@ class _ExperimentalResidentWebRunner extends ResidentWebRunner {
if
(
device
.
device
is
ChromeDevice
)
{
final
Chrome
chrome
=
await
ChromeLauncher
.
connectedInstance
;
final
ChromeTab
chromeTab
=
await
chrome
.
chromeConnection
.
getTab
((
ChromeTab
chromeTab
)
{
return
chromeTab
.
url
.
contains
(
debuggingOptions
.
hostname
);
return
!
chromeTab
.
url
.
startsWith
(
'chrome-extension'
);
});
if
(
chromeTab
==
null
)
{
throwToolExit
(
'Failed to connect to Chrome instance.'
);
}
_wipConnection
=
await
chromeTab
.
connect
();
}
appStartedCompleter
?.
complete
();
...
...
packages/flutter_tools/lib/src/build_runner/web_fs.dart
View file @
d68278e3
...
...
@@ -342,8 +342,8 @@ class WebFs {
dwds
,
// Format ipv6 hosts according to RFC 5952.
internetAddress
.
type
==
InternetAddressType
.
IPv4
?
'
${internetAddress.address}
:
$hostPort
'
:
'[
${internetAddress.address}
]:
$hostPort
'
,
?
'
http://
${internetAddress.address}
:
$hostPort
'
:
'
http://
[
${internetAddress.address}
]:
$hostPort
'
,
assetServer
,
buildInfo
.
isDebug
,
flutterProject
,
...
...
packages/flutter_tools/lib/src/commands/update_packages.dart
View file @
d68278e3
...
...
@@ -23,6 +23,7 @@ const Map<String, String> _kManuallyPinnedDependencies = <String, String>{
'flutter_gallery_assets'
:
'0.1.9+2'
,
// See //examples/flutter_gallery/pubspec.yaml
'mockito'
:
'^4.1.0'
,
// Prevent mockito from downgrading to 4.0.0
'vm_service_client'
:
'0.2.6+2'
,
// Final version before being marked deprecated.
'dwds'
:
'0.8.5'
,
// Requires updates to web_fs due to breaking changes.
};
class
UpdatePackagesCommand
extends
FlutterCommand
{
...
...
packages/flutter_tools/lib/src/web/devfs_web.dart
View file @
d68278e3
...
...
@@ -280,8 +280,8 @@ class WebDevFS implements DevFS {
// Format ipv6 hosts according to RFC 5952.
return
Uri
.
parse
(
internetAddress
.
type
==
InternetAddressType
.
IPv4
?
'
${internetAddress.address}
:
$port
'
:
'[
${internetAddress.address}
]:
$port
'
?
'
http://
${internetAddress.address}
:
$port
'
:
'
http://
[
${internetAddress.address}
]:
$port
'
);
}
...
...
packages/flutter_tools/pubspec.yaml
View file @
d68278e3
...
...
@@ -11,7 +11,7 @@ dependencies:
# To update these, use "flutter update-packages --force-upgrade".
archive
:
2.0.11
args
:
1.5.2
dwds
:
0.
9.0
dwds
:
0.
8.5
completion
:
0.2.1+1
coverage
:
0.13.3+3
crypto
:
2.1.3
...
...
@@ -19,7 +19,6 @@ dependencies:
http
:
0.12.0+4
intl
:
0.16.1
json_rpc_2
:
2.1.0
linter
:
0.1.109
meta
:
1.1.8
multicast_dns
:
0.2.2
mustache
:
1.1.1
...
...
@@ -129,4 +128,4 @@ dartdoc:
# Exclude this package from the hosted API docs.
nodoc
:
true
# PUBSPEC CHECKSUM:
8f2
f
# PUBSPEC CHECKSUM:
7ce
f
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