Skip to content

Releases: jalik/meteor-jalik-ufs

v0.7.4_1

23 Feb 19:18
Compare
Choose a tag to compare

Fixes file selection visible in Safari (fixes #115)

v0.7.4

23 Feb 19:19
Compare
Choose a tag to compare
  • Adds method UploadFS.addStore(store)
  • Fixes store callback events not being called : onCopyError, onFinishUpload, onRead, onReadError, onWriteError

v0.7.3

23 Feb 19:22
Compare
Choose a tag to compare

Bypasses collection permissions check when calling version upgrade methods

v0.7.2

07 Feb 05:06
Compare
Choose a tag to compare
  • Fixes file path/url when app is in a subfolder (#104)
  • Adds attribute etag to uploaded files
  • Adds HTTP cache support : return HTTP code 304 depending of Last-Modified and If-None-Match request headers (#110)
  • Adds option Store.onValidate(file) to validate a file before writing to the store (#109)
  • Adds method UploadFS.addETagAttributeToFiles(where) to add etag attribute to existing files
  • Adds method UploadFS.generateEtag()
  • Adds method Store.validate(file)
  • Uses ES6 class syntax
  • Uses ES6 import syntax

NOTE: To add etag attribute to existing files, call once the method UploadFS.addETagAttributeToFiles({etag: null});

NOTE 2: If your ROOT_URL env var is pointing to a subfolder like http://localhost/myapp, please call this method once UploadFS.addPathAttributeToFiles({});

v0.7.1

13 Oct 04:22
Compare
Choose a tag to compare
  • Adds default store permissions (UploadFS.config.defaultStorePermissions)
  • Fixes store permissions (#95)
  • Fixes HTTP Range result from stream (#94) : works with ufs-local and ufs-gridfs

v0.7.0_2

02 Oct 03:39
Compare
Choose a tag to compare
  • Upgrades dependencies
  • Adds support for Range request headers (audio/video files mostly)

v0.6.9_1

23 Sep 19:39
Compare
Choose a tag to compare
Changes package version to 0.6.9.1

Sets file type only if not defined when saving
Changes MIME for .mp3 to audio/mpeg

v0.6.9

21 Sep 22:56
Compare
Choose a tag to compare
  • Adds ufs-mime.js file to handle mime related operations
  • Sets default file type to "application/octet-stream"
  • Detects automatically MIME type by checking file extension on upload (#84)
  • Fixes error thrown by UploadFS.Filter.checkContentType() when file type is empty
  • Fixes check(file, Object); into "ufsImportURL" method

v0.6.8

14 Sep 22:19
Compare
Choose a tag to compare
  • Passes full predicate in CRUD operations instead of just the ID
  • Removes file tokens when file is uploaded or removed
  • Adds the "originalUrl" attribute to files imported from URLs
  • Adds the "path" attribute to uploaded files corresponding to the relative URL of the file (#fix 78)
  • Adds UploadFS.Store.prototype.getRelativeURL(path) to get the relative URL of a store
  • Adds UploadFS.Store.prototype.getFileRelativeURL(path) to get the relative URL of a file in a store
  • Adds UploadFS.addPathAttributeToFiles(where) to add the path attribute to existing files
  • Unblock the UploadFS.importFromURL()
  • Fixes file deletion during upload (stop uploading and removes temp file)

v0.6.7

08 Sep 09:50
Compare
Choose a tag to compare
  • Allows to define stores on server only, you can pass the store name instead of the store instance on the client side methods like UploadFS.Uploader({store:'name'});
  • Fixes Upsert error while creating file upload token on multiple Mongo servers environment