Merged
Conversation
typo
Fix typo in `.write()` method docs, thanks to @niklasdahlheimer
- ☄️ Use recommended `fetch` library to send HTTP request - 👷 Discard using `request-libcurl` potentially fixing #781 - ✨ Add `timeout` option to `.load()` method - 📋 Update `.load()` method documentation
For stability and reliability recovering after interrupted commection reasons
Major update is out 🎉 __Major changes__: - __[Deprecated]__ `streams` of `.insert()` method; - `http` module raplcaed with `fetch` — *As suggested* in `meteor@2.0.0` release and `http` package being deprecated; - `request-libcurl` replaced with `fetch` — Should fix #781 and similar issues; - __[removed]__ `file-type` library used to detect file-type (*file's mime-type*) based on "magic numbers". Now mime-type detected from data supplied by browser. __Regresion possible upgrade with care if you rely on mime-type detected after file is fully uploaded to server, this change won't affect mime-type detected on the *Client* before file fully loaded to server__. __Improved__: - Pause/Resume logic when connection with server is interrupted (*no more missed chunks*); - Chunks deliverability, including retries if chunk was sent only partially. __Other changes__: - 🤝 Compatibility with `meteor@2.0.0`; - 📦 `ostrio:cookies@2.7.0`, *was `v2.6.1`*; - 📦 `fs-extra@9.1.0`, *was `v9.0.1`*; - 🖥 Update, refactor, and refine [demo app](https://github.com/veliovgroup/meteor-files-website #file-sharing-web-app) - 👨💻 Update [`meteor-files-autoform`](https://github.com/VeliovGroup/meteor-autoform-file) package; - 📋 Documentation refactoring.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Major update is out 🎉
Major changes:
streamsof.insert()method;httpmodule raplcaed withfetch— As suggested inmeteor@2.0.0release andhttppackage being deprecated;request-libcurlreplaced withfetch— As a fix for Invaild ELF header when deploying to server but not locally #781 and similar issues;file-typelibrary used to detect file-type (file's mime-type) based on "magic numbers". Now mime-type detected from data supplied by browser. Regresion possible upgrade with care if your app rely on mime-type detected after file is fully uploaded to server, this change won't affect mime-type detected on the Client before file fully loaded to server.Improved:
Other changes:
meteor@2.0.0;ostrio:cookies@2.7.0, wasv2.6.1;fs-extra@9.1.0, wasv9.0.1;meteor-files-autoformpackage;