-
Couldn't load subscription status.
- Fork 11
Changes from all commits
8e85e91
f0ceb28
a38bed6
17dd960
1ef39b8
0f708e1
a910496
3aff9c8
cb6896a
58532e0
6ee3ab8
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,7 +1,6 @@ | ||
| language: dart | ||
| dart: | ||
| - dev | ||
| - stable | ||
|
|
||
| dart_task: | ||
| - test: -p vm,firefox | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,9 +1,9 @@ | ||
| name: typed_data | ||
| version: 1.1.5 | ||
| version: 1.1.6 | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Since this doesn't change any user-consumable code, can we just make it 1.1.6-dev? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. done. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. bumped version and updated sdk constraints. does this look ok? |
||
| author: Dart Team <[email protected]> | ||
| description: Utility functions and classes related to the 'dart:typed_data' library. | ||
| homepage: https://github.com/dart-lang/typed_data | ||
| dev_dependencies: | ||
| test: "^0.12.0" | ||
| environment: | ||
| sdk: ">=1.8.0 <2.0.0" | ||
| sdk: ">=2.0.0-dev.16.0 <2.0.0" | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does this really need to drop stable? I don't see BigInt being used...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The except in the test returns different results on stable and dev, cause of difference in int64 behavior in the VM. Fixed it for dev16, but now it fails on stable.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh...hrm...
Couldn't we modify the tests so they work on both?
My concern: if we drop testing for stable, we should likely drop it in the pubspec, too.
But it'd be nice to avoid that since – AFAICT – there is no behavior change
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
With dev 16, min-1=max and max+1=min for int 64, so it wraps around. So now min-1 and max+1 are contained in the buffer, whereas previously they were not. This is a corner case, but it is a change in behavior. So change the pubspec?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@lrhn ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure, change the pubspec to require the next version of the SDK,
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@kevmoo ptal.