File tree 3 files changed +13
-1
lines changed 3 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -83,6 +83,17 @@ in 2018, as it doesn't work with any Dart 2.x release.
83
83
84
84
[ an issue ] : https://github.com/dart-lang/sdk/issues/new
85
85
86
+ #### Pub
87
+
88
+ - Fixed race conditions in ` dart pub get ` , ` dart run ` and ` dart pub global run ` .
89
+ It should now be safe to run these concurrently.
90
+ - If (when) Pub crashes it will save a verbose log in
91
+ ` $PUB_CACHE/log/pub_log.txt ` This can be used for filing issues to the issue
92
+ tracker.
93
+
94
+ ` dart --verbose pub [command] ` will also cause the log file to be written.
95
+ - ` dart pub add ` can now add multiple packages in one command.
96
+
86
97
#### Linter
87
98
88
99
Updated the Linter to ` 1.18.0 ` , which includes changes that
Original file line number Diff line number Diff line change @@ -141,7 +141,7 @@ vars = {
141
141
"pool_rev" : "7abe634002a1ba8a0928eded086062f1307ccfae" ,
142
142
"process_rev" : "56ece43b53b64c63ae51ec184b76bd5360c28d0b" ,
143
143
"protobuf_rev" : "c1eb6cb51af39ccbaa1a8e19349546586a5c8e31" ,
144
- "pub_rev" : "dcb6abac2d7d43258c03b348be42bf4aab9529b1 " ,
144
+ "pub_rev" : "8f5ab7b1aba3b9f66b56246d77e167990339d317 " ,
145
145
"pub_semver_rev" : "a43ad72fb6b7869607581b5fedcb186d1e74276a" ,
146
146
"root_certificates_rev" : "692f6d6488af68e0121317a9c2c9eb393eb0ee50" ,
147
147
"rust_revision" : "b7856f695d65a8ebc846754f97d15814bcb1c244" ,
Original file line number Diff line number Diff line change @@ -128,6 +128,7 @@ class DartdevRunner extends CommandRunner<int> {
128
128
() => analytics,
129
129
dependencyKindCustomDimensionName: dependencyKindCustomDimensionName,
130
130
),
131
+ isVerbose: () => verbose,
131
132
),
132
133
);
133
134
addCommand (RunCommand (verbose: verbose));
You can’t perform that action at this time.
0 commit comments