Skip to content

Releases: NyllRE/nuxt-file-storage

v0.2.8

09 Oct 20:20
Compare
Choose a tag to compare

compare changes

🩹 Fixes

  • Update to latest @nuxt/module-builder (2d0c20c)
  • Fix conflicting File name and Promise resolve issue #19

❤️ Contributors

v0.2.7

12 Jul 15:35
Compare
Choose a tag to compare

handleFileInput returns a promise if you need to know if the file serialization has concluded

fixes: #13

compare changes

v0.2.6

08 Jun 02:21
Compare
Choose a tag to compare

changed storeFileLocally property

previously you had to put the file.content only, now you will need to put the file entirely to check the properties of the file

here is a before and after to clarify what you should do:

before:

await storeFileLocally(
   file.content,
   12,
   '/specificFolder'
)

after:

await storeFileLocally(
-   file.content,
+   file,
   12,
   '/specificFolder'
)

compare changes

Issues Fixed

  • Save with original file extension, without browser type detection #12

v0.2.5

04 Jun 16:16
Compare
Choose a tag to compare

fixed update concerns + readme issues

compare changes

v0.2.3

28 May 21:00
f32a853
Compare
Choose a tag to compare

file submit handler returns file properties. from #5 by @puzzle-it-nu

compare changes

v0.2.2

26 Apr 13:34
Compare
Choose a tag to compare

declustered module setup & added an import to runtimeConfig

compare changes

v0.2-beta.1

25 Apr 19:34
Compare
Choose a tag to compare
v0.2-beta.1 Pre-release
Pre-release

fixed typescript declarations for server utilss

compare changes

v0.2.0

26 Mar 23:42
Compare
Choose a tag to compare
  • tested on production
  • added the mount nuxt config key for mounting a storage location
  • added a storage utility for parsing the file data

v0.1.2

03 Feb 03:59
Compare
Choose a tag to compare
v0.1.2 Pre-release
Pre-release

compare changes
Changed the name of the composable from useStorage to useNitroStorage due to conflicting packages

v0.1.1

31 Jan 01:01
Compare
Choose a tag to compare
v0.1.1 Pre-release
Pre-release

First working release of the Nuxt Nitro Storage! ✨

Current Working Features:

  • Storing Files Locally
  • Deleting Files Locally (untested)
  • useStorage() Composable to handle file input and return a ref for a list of the files