Closed domesticmouse closed 4 years ago
I should be updating dependency versions, but these versions are the maximum before we hit errors. We should probably have pub outdated figure out what the maximum allowed version is
The tool (theoretically, at least) already does this; it's the resolvable column (i.e., you should be able to move to >=
those listed versions).
How do you feel about Gitpod.io? I'm using it as an easy way to update Stagehand under the pre-release version of Dart.
I'm really curious about this. Can you briefly explain what you would do without gitpod, and what the gitpod flow is?
I should be updating dependency versions, but these versions are the maximum before we hit errors. We should probably have pub outdated figure out what the maximum allowed version is
The tool (theoretically, at least) already does this; it's the resolvable column (i.e., you should be able to move to
>=
those listed versions).
When I attempted to update angular_test: ^2.4.0
it all fell apart. The same with uplifting test
above 1.6.3.
How do you feel about Gitpod.io? I'm using it as an easy way to update Stagehand under the pre-release version of Dart.
I'm really curious about this. Can you briefly explain what you would do without gitpod, and what the gitpod flow is?
I'm using gitpod as a way of running dart versions that aren't my installed (stable) version. For example, I use gitpod to maintain PRs like https://github.com/dart-lang/dart-services/pull/518 to bump dart revisions each time a new beta/dev dart release happens.
Odd, created https://github.com/dart-lang/pub/issues/2468
@kwalrath How do you feel about Gitpod.io? I'm using it as an easy way to update Stagehand under the pre-release version of Dart.
I'm fine with it if people like @kevmoo and @mit-mit are fine with it.
Hey @kevmoo, can I have the commit bit back on this repo? I'd like to assign you as a reviewer for this PR, along with @mit-mit and @kwalrath =)
The false negatives are bugs we can file and get fixed before we get to beta!
On Thu, Apr 30, 2020 at 9:14 AM Michael Thomsen notifications@github.com wrote:
@mit-mit commented on this pull request.
In .travis.yml https://github.com/dart-lang/stagehand/pull/658#discussion_r418127907:
@@ -9,8 +9,8 @@ dart:
SDK version to prevent errors when using Stagehand from inside VSCode's
Dart and Flutter plugins. For more detail, please see:
https://github.com/dart-lang/stagehand/issues/617
- 2.7.0
- dev
Yes, but dev also has false negatives, and I'm not convinced the once a month cadence for beta is a real issue.
— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/dart-lang/stagehand/pull/658#discussion_r418127907, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAAEFCQZOXZGN5KPRSSMVS3RPGPXFANCNFSM4MTKMPLQ .
...we've found/fixed A LOT of bugs this way!
On Thu, Apr 30, 2020 at 9:41 AM Kevin Moore kevmoo@google.com wrote:
The false negatives are bugs we can file and get fixed before we get to beta!
On Thu, Apr 30, 2020 at 9:14 AM Michael Thomsen notifications@github.com wrote:
@mit-mit commented on this pull request.
In .travis.yml https://github.com/dart-lang/stagehand/pull/658#discussion_r418127907:
@@ -9,8 +9,8 @@ dart:
SDK version to prevent errors when using Stagehand from inside VSCode's
Dart and Flutter plugins. For more detail, please see:
https://github.com/dart-lang/stagehand/issues/617
- 2.7.0
- dev
Yes, but dev also has false negatives, and I'm not convinced the once a month cadence for beta is a real issue.
— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/dart-lang/stagehand/pull/658#discussion_r418127907, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAAEFCQZOXZGN5KPRSSMVS3RPGPXFANCNFSM4MTKMPLQ .
PTAL @kevmoo @mit-mit
@mit-mit I’ll update this PR when @athomas pushes 2.8.1. That way we know the PR is green. I can leave submitting the PR and publishing the updated version to pub to @kwalrath so it happens during the official launch window, when I’ll be sound asleep.
@mit-mit I believe everything is now in place for @kwalrath to land this PR and publish it. PTAL
@kwalrath How do you feel about Gitpod.io? I'm using it as an easy way to update Stagehand under the pre-release version of Dart.
@mit-mit I tried using
pub outdated
, but hit an interesting issue with our Angular sample. By my reading of the tool output I should be updating dependency versions, but these versions are the maximum before we hit errors. We should probably havepub outdated
figure out what the maximum allowed version is and either suggest an edit, or stay silent when upgrades are forbidden.