Skip to content

Releases: pellepl/spiffs

0.3.7

17 Jul 07:46
Compare
Choose a tag to compare
  • fixed prevent seeking to negative offsets #158
  • fixed file descriptor offsets not updated for multiple fds on same file #157
  • fixed cache page not closed for removed files #156
  • fixed a lseek bug when seeking exactly to end of a fully indexed first level LUT #148
  • fixed wear leveling issue #145
  • fixed attempt to write out of bounds in flash #130,
  • set file offset when seeking over end #121 (thanks @sensslen)
  • fixed seeking in virgin files #120 (thanks @sensslen)
  • Optional file metadata #128 (thanks @cesanta)
  • AFL testing framework #100 #143 (thanks @pjsg)
  • Testframe updates

New API functions:

  • SPIFFS_update_meta, SPIFFS_fupdate_meta - updates metadata for a file

New config defines:

  • SPIFFS_OBJ_META_LEN - enable possibility to add extra metadata to files

0.3.6

09 Aug 17:17
Compare
Choose a tag to compare

Fix range bug in index memory mapping #98
Add index memory mapping #97
Optimize SPIFFS_read for large files #96
Add temporal cache for opening files #95
More robust gc #93 (thanks @dismirlian)
Fixed a double write of same data in certain cache situations
Fixed an open bug in READ_ONLY builds
File not visible in SPIFFS_readdir #90 (thanks @benpicco-tmp)
Cache load code cleanup #92 (thanks @niclash)
Fixed lock/unlock asymmetry #88 #87 (thanks @JackJefferson, @dpruessner)
Testframe updates
New API functions:

SPIFFS_ix_map - map index meta data to memory for a file
SPIFFS_ix_unmap - unmaps index meta data for a file
SPIFFS_ix_remap - changes file offset for index metadata map
SPIFFS_bytes_to_ix_map_entries - utility, get length of needed vector for given amount of bytes
SPIFFS_ix_map_entries_to_bytes - utility, get number of bytes a vector can represent given length
New config defines:

SPIFFS_IX_MAP - enable possibility to map index meta data to memory for reading faster
SPIFFS_TEMPORAL_FD_CACHE - enable temporal cache for opening files faster
SPIFFS_TEMPORAL_CACHE_HIT_SCORE - for tuning the temporal cache

0.3.5

27 Apr 17:57
Compare
Choose a tag to compare

0.3.4

15 Feb 22:15
Compare
Choose a tag to compare

Added user callback file func.
Fixed a stat bug with obj id.
SPIFFS_probe_fs added
Add possibility to compile a read-only version of spiffs
Make magic dependent on fs length, if needed (see #59 & #66) (thanks @hreintke)
Exposed SPIFFS_open_by_page_function
Zero-size file cannot be seek #57 (thanks @lishen2)
Add tell and eof functions #54 (thanks @raburton)
Make api string params const #53 (thanks @raburton)
Preserve user_data during mount() #51 (thanks @rojer)

New API functions:
SPIFFS_set_file_callback_func
SPIFFS_probe_fs
SPIFFS_open_by_page
SPIFFS_eof
SPIFFS_tell
Added configs:
SPIFFS_READ_ONLY
SPIFFS_USE_MAGIC_LENGTH

0.3.3

03 Oct 18:02
Compare
Choose a tag to compare

Possibility to add integer offset to file handles
Truncate function presumes too few free pages #49
Bug in truncate function #48 (thanks @PawelDefee)
Update spiffs_gc.c - remove unnecessary parameter (thanks @PawelDefee)
Update INTEGRATION docs (thanks @PawelDefee)
Fix pointer truncation in 64-bit platforms (thanks @igrr)
Zero-sized files cannot be read #44 (thanks @)
(More) correct calculation of max_id in obj_lu_find #42 #41 (thanks @lishen2)
Check correct error code in obj_lu_find_free #41 (thanks @lishen2)
Moar comments for SPIFFS_lseek (thanks @igrr)
Fixed padding in spiffs_page_object_ix #40 (thanks @jmattsson @lishen2)
Fixed gc_quick test (thanks @jmattsson)
Add SPIFFS_EXCL flag #36
SPIFFS_close may fail silently if cache is enabled #37
User data in callbacks #34
Ignoring SINGLETON build in cache setup (thanks Luca)
Compilation error fixed #32 (thanks @chotasanjiv)
Align cand_scores (thanks @hefloryd)
Fix build warnings when SPIFFS_CACHE is 0 (thanks @ajaybhargav)

New config defines:
SPIFFS_FILEHDL_OFFSET

0.3.2

13 Jul 19:12
Compare
Choose a tag to compare

0.3.2
Limit cache size if too much cache is given (thanks pgeiem)
New feature - Controlled erase. #23
SPIFFS_rename leaks file descriptors #28 (thanks benpicco)
moved dbg print defines in test framework to params_test.h
lseek should return the resulting offset (thanks hefloryd)
fixed type on dbg ifdefs
silence warning about signed/unsigned comparison when spiffs_obj_id is 32 bit (thanks benpicco)
Possible error in test_spiffs.c #21 (thanks yihcdaso-yeskela)
Cache might writethrough too often #16
even moar testrunner updates
Test framework update and some added tests
Some thoughts for next gen
Test sigsevs when having too many sectors #13 (thanks alonewolfx2)
GC might be suboptimal #11
Fix eternal readdir when objheader at last block, last entry

New API functions:
SPIFFS_gc_quick - call a nonintrusive gc
SPIFFS_gc - call a full-scale intrusive gc

0.3.1

25 Mar 12:45
Compare
Choose a tag to compare

Removed two return warnings, was to triggerhappy on release

0.3.0

24 Mar 19:06
Compare
Choose a tag to compare

Changes:
Added existing namecheck when creating files
Lots of static analysis bugs #6
Added rename func
Fix SPIFFS_read length when reading beyond file size
Added reading beyond file length testcase
Made build a bit more configurable
Changed name in spiffs from "errno" to "err_code" due to conflicts compiling
in mingw
Improved GC checks, fixed an append bug, more robust truncate for very special
case
GC checks preempts GC, truncate even less picky
Struct alignment needed for some targets, define in spiffs config #10
Spiffs filesystem magic, definable in config

New config defines:
SPIFFS_USE_MAGIC - enable or disable magic check upon mount
SPIFFS_ALIGNED_OBJECT_INDEX_TABLES - alignment for certain targets
New API functions:
SPIFFS_rename - rename files
SPIFFS_clearerr - clears last errno
SPIFFS_info - returns info on used and total bytes in fs
SPIFFS_format - formats the filesystem
SPIFFS_mounted - checks if filesystem is mounted

0.2.2

29 Jan 10:24
Compare
Choose a tag to compare

added minor features
updated docs
updated tests

0.2.1

30 Oct 19:07
Compare
Choose a tag to compare

Bugfixes, doc updates