File tree 3 files changed +16
-3
lines changed
pkg/dartdev/test/commands 3 files changed +16
-3
lines changed Original file line number Diff line number Diff line change @@ -159,6 +159,20 @@ Updated the Linter to `1.28.0`, which includes changes that
159
159
- Remove remaining support for ` .packages ` files. The flag
160
160
` --legacy-packages-file ` is no longer supported.
161
161
- Support a new field ` funding ` in pubspec.yaml.
162
+ - Validate the CRC32c checksum of downloaded archives and retry on failure.
163
+ - ` dart pub add foo:<constraint> ` with an existing dependency will now update
164
+ the constraint rather than fail.
165
+ - Update ` dart pub publish ` to allow ` dependency_overrides ` in pubspec.yaml.
166
+ They will still cause a publication warning.
167
+ Note that only ` dependency_overrides ` from the root package effect resolution.
168
+ - Update ` dart pub publish ` to require a working resolution.
169
+ If publishing a breaking release of mutually dependent packages use ` dependency_overrides `
170
+ to obtain a resolution.
171
+ - ` dart pub get ` now fails gracefully when run from inside the pub-cache.
172
+ - ` dart pub publish ` now shows the file sizes of large files in your package to
173
+ prevent accidental publication of large unrelated files.
174
+ - Fix a bug in ` dart pub upgrade --major-versions ` where packages not requiring
175
+ major updates would be held back unless needed.
162
176
163
177
#### dart2js
164
178
Original file line number Diff line number Diff line change @@ -139,7 +139,7 @@ vars = {
139
139
"ply_rev" : "604b32590ffad5cbb82e4afef1d305512d06ae93" ,
140
140
"pool_rev" : "fa84ddd0e39f45bf3f09dcc5d6b9fbdda7820fef" ,
141
141
"protobuf_rev" : "1d175bef6043bc4bdef5970f6dbd6d3001124373" ,
142
- "pub_rev" : "ec35d46261b610e558dfd0d8525ca3fc8387b4b7 " , # manually rev'd
142
+ "pub_rev" : "28a2503d7f4806e6854e3ed0d783f065abfd1b5f " , # manually rev'd
143
143
"pub_semver_rev" : "9fd28757ba45961ac5449e0f2b0020670e921475" ,
144
144
"root_certificates_rev" : "692f6d6488af68e0121317a9c2c9eb393eb0ee50" ,
145
145
"shelf_rev" : "39d820d4e32fc99c65f562786097487d597dcee1" ,
Original file line number Diff line number Diff line change @@ -63,8 +63,7 @@ void pub() {
63
63
64
64
expect (result.exitCode, 0 );
65
65
66
- expect (result.stdout,
67
- contains ('Publish the current package to pub.dartlang.org.' ));
66
+ expect (result.stdout, contains ('Publish the current package to pub.dev.' ));
68
67
expect (result.stdout, result2.stdout);
69
68
70
69
expect (result.stderr, isEmpty);
You can’t perform that action at this time.
0 commit comments