Skip to content

Releases: zen-fs/core

1.6.16

24 Dec 01:16
v1.6.16
d78e35f
Compare
Choose a tag to compare
  • Fixed fs.promises.watch not passing the right this (context) to new FSWatcher
    • Added tests to prevent regression
  • Turned off some Eslint rules relating to any

1.6.15

23 Dec 23:03
v1.6.15
be3f663
Compare
Choose a tag to compare

The type of IndexData.version has been changed from 1 to number, to better support JSON imports.

1.6.14

23 Dec 21:36
v1.6.14
36ac80c
Compare
Choose a tag to compare

This release fixes watchers not supporting contexts correctly.

1.6.13

23 Dec 19:52
v1.6.13
468a43c
Compare
Choose a tag to compare
  • Updated npm dependencies
  • Removed lint-staged and minimatch

1.6.12

22 Dec 22:41
v1.6.12
b31af4b
Compare
Choose a tag to compare

Async's async methods will no longer try to sync to the cache before it is initialized. (zen-fs/dom#23)

1.6.11

20 Dec 03:26
v1.6.11
4eee287
Compare
Choose a tag to compare
  • Async now patches itself so async operations (even on child classes) will also update the sync cache (#132)
    • Added Async tests to prevent a regression
  • Simplified AsyncMixin interface
  • Made c8 an optional dependency instead of a development dependency
  • Changed target from ES2020 to ES2019
  • Removed bigint literals (#160)

1.6.10

17 Dec 16:30
v1.6.10
3887a8a
Compare
Choose a tag to compare

readlink (+Sync) now default to using utf-8 when no encoding is passed. (#159, thanks @mcandeia!)

1.6.9

15 Dec 19:27
v1.6.9
47b86fb
Compare
Choose a tag to compare
  • Remove /mixins export (you can import from /mixins/index.js
  • Removed undocumented and unused mkdirpSync
  • Removed internal levenshtein distance function
  • Streamlined checkOptions errors

1.6.8

10 Dec 18:41
v1.6.8
9421489
Compare
Choose a tag to compare
  • Fixed isBackend requiring Backend.isAvailable to be present
  • Fixed linkSync passing the unresolved link path to FileSystem.linkSync

1.6.7

09 Dec 19:09
v1.6.7
7fe7c44
Compare
Choose a tag to compare
  • Backend.isAvailable is now optional
  • Moved inode.ts to backends/store/inode.ts, since Inode is only used by StoreFS