-
-
Notifications
You must be signed in to change notification settings - Fork 68
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
Support middleware compression with Zlib, LZW, Brotli, and Zstd encoders #220
Support middleware compression with Zlib, LZW, Brotli, and Zstd encoders #220
Conversation
This pull request provides new Encoders for the Goyave compress middleware using the following algorithms: - Zlib (deflate) - LZW - Brotli - Zstd Tests and comments are included.
Pull Request Test Coverage Report for Build 10181781816Details
💛 - Coveralls |
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.
Four PR in one! Thanks a lot! It just needs a few minor adjustments but otherwise it looks good to me. 👍🏻
Thanks @System-Glitch @ccoVeille for your reviews! I think I have incorporated everything. Tests appears to be failing on /websocket, but I don't think these code changes are related. Please let me know if anything else is needed. |
It's the db timeout plugin. It happens sometimes when the runner is a bit too busy. I'm not sure how I could make this test more consistent. |
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.
LGTM
Merged! Thank you very much. 🎉 |
Issue(s): #197, #198, #199, #200
This pull request provides new Encoders for the Goyave compress middleware using the following algorithms:
Tests and comments are included