Skip to content

Commit bc75541

Browse files
sigurdmCommit Bot
authored and
Commit Bot
committed
Bump pub to 8f5ab7b1aba3b9f66b56246d77e167990339d317
Changes: ``` > git log --format="%C(auto) %h %s" dcb6aba..8f5ab7b https://dart.googlesource.com/pub.git/+/8f5ab7b1 Avoid raceconditions in `global activate`, `run` and `global run` (#3285) https://dart.googlesource.com/pub.git/+/6e03ec02 Support multiple packages in 'dart pub add' (#3283) https://dart.googlesource.com/pub.git/+/1a298f4d Fix --verbose doc, and accept verboseness setting from embedder (#3279) https://dart.googlesource.com/pub.git/+/5bda798c Avoid race condition for hosted source on package extraction (#3277) https://dart.googlesource.com/pub.git/+/17c5addb Error on acquireDependencies when the root pubspec has an unknown sdk in the environment. (#3271) https://dart.googlesource.com/pub.git/+/0a32ae4a folder/* should not ignore the folder itself, only the contents (#3267) https://dart.googlesource.com/pub.git/+/44b785aa Normalize file names for tar.gz (#3268) https://dart.googlesource.com/pub.git/+/2fd6b5f0 Fix repository specification: isRetracted -> retracted (#3249) https://dart.googlesource.com/pub.git/+/0fc71db4 Write log trace to $PUB_CACHE/log/pub_log.txt when crashing (#3240) ``` Diff: https://dart.googlesource.com/pub.git/+/dcb6abac2d7d43258c03b348be42bf4aab9529b1~..8f5ab7b1aba3b9f66b56246d77e167990339d317/ Change-Id: I54f1fde0f50ca19ca036bb1e6d9b166455031183 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/229542 Reviewed-by: Jonas Jensen <[email protected]> Commit-Queue: Sigurd Meldgaard <[email protected]>
1 parent 4b26ea0 commit bc75541

File tree

3 files changed

+13
-1
lines changed

3 files changed

+13
-1
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,17 @@ in 2018, as it doesn't work with any Dart 2.x release.
8383

8484
[an issue]: https://github.com/dart-lang/sdk/issues/new
8585

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+
8697
#### Linter
8798

8899
Updated the Linter to `1.18.0`, which includes changes that

DEPS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ vars = {
141141
"pool_rev": "7abe634002a1ba8a0928eded086062f1307ccfae",
142142
"process_rev": "56ece43b53b64c63ae51ec184b76bd5360c28d0b",
143143
"protobuf_rev": "c1eb6cb51af39ccbaa1a8e19349546586a5c8e31",
144-
"pub_rev": "dcb6abac2d7d43258c03b348be42bf4aab9529b1",
144+
"pub_rev": "8f5ab7b1aba3b9f66b56246d77e167990339d317",
145145
"pub_semver_rev": "a43ad72fb6b7869607581b5fedcb186d1e74276a",
146146
"root_certificates_rev": "692f6d6488af68e0121317a9c2c9eb393eb0ee50",
147147
"rust_revision": "b7856f695d65a8ebc846754f97d15814bcb1c244",

pkg/dartdev/lib/dartdev.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,7 @@ class DartdevRunner extends CommandRunner<int> {
128128
() => analytics,
129129
dependencyKindCustomDimensionName: dependencyKindCustomDimensionName,
130130
),
131+
isVerbose: () => verbose,
131132
),
132133
);
133134
addCommand(RunCommand(verbose: verbose));

0 commit comments

Comments
 (0)