-
Notifications
You must be signed in to change notification settings - Fork 157
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
Upgrade to Hyper 0.10 #395
Comments
+1. It appears to be a backwards-compatible upgrade as well, I recommend updating the version range to |
I have testing a naive upgrading to 0.10.x. It was necessary to remove the line
since that feature is no longer available in hyper 0.10.x. Running cargo test resulted in the same tests failing that fail with 0.9:
So far the upgrade does not cause any issues. I can't easily test much further than this, since the hyper 0.10.x upgrade will require changes to my application. The two questions I see are:
|
Any thoughts about this? |
In addition to hyper, the following crates are out dated:
All but regex update without breaking the build, or any tests (that aren't already failing). Regex has an api change which will require more changes. These outdated packages are starting to cause problems for my project. If I can get a response from someone who can approve pull requests, I will do the necessary work to fix regex and the currently failing tests. The easy fixes I can do right away, and I expect the rest can happen early next week. |
The test failures appear to be the same as #399, so those can be dealt there. I have hyper upgrade and other upgrades mentioned above, including the necessary fixes for regex, in my fork at https://github.com/jolhoeft/nickel.rs/tree/upgrade. However, I have not yet been able to test this in my application because I have upgrade breakage there to resolve. Once I have that done, I can create a pull request. |
My testing is complete, and everything is working so far. I've created pull request #400 for discussion. |
Nice job, I will test this. |
I've just merge pull request #401, which resolves this. I'll push to crates.io momentarily. |
Need an upgrade of hyper.
The text was updated successfully, but these errors were encountered: