-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove extra initial (blank) message for streaming requests #37
base: master
Are you sure you want to change the base?
Changes from all commits
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 |
---|---|---|
|
@@ -24,7 +24,7 @@ | |
}, | ||
"dependencies": { | ||
"lodash": "^4.0.0", | ||
"rxjs": "5.0.0-rc.5" | ||
"rxjs": "5.4.2" | ||
}, | ||
"devDependencies": { | ||
"@types/es6-promise": "0.0.32", | ||
|
@@ -41,7 +41,7 @@ | |
"protobufjs": "^5.0.0", | ||
"ts-node": "^1.7.0", | ||
"tslint": "^4.0.0", | ||
"typescript": "^2.1.0" | ||
"typescript": "2.4.2" | ||
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. Again here, I'd prefer ^2.4.0 to 2.4.2 speciically 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. Although this is a compiler question so it's not actually that critical to do this, I suppose 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. Again, I believe there was a breaking change specifically between 2.4.0 and 2.4.1, so I don't think 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. If you want to keep it pegged that's fine. I see what you're saying about the breaking changes |
||
}, | ||
"config": { | ||
"commitizen": { | ||
|
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.
Can we pin this to something a bit more liberal, like rxjs at ~5.4.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.
The specific fix needed was in 5.4.2, so
~5.4.0
won't do, but I believe~5.4.2
should work. I'll make the 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.
OK, this change is good. ~5.4.2, that is.