Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update dependency memfs to v4 #180

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Jun 26, 2023

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
memfs ^3.5.3 -> ^4.17.0 age adoption passing confidence

Release Notes

streamich/memfs (memfs)

v4.17.0

Compare Source

Features

v4.16.0

Compare Source

Features

4.15.4 (2025-01-09)

Bug Fixes

4.15.3 (2025-01-01)

Bug Fixes
  • allow setting custom file types beyond S_IFREG and S_IFDIR (#​1082) (24da3e7)

4.15.2 (2024-12-30)

Bug Fixes

4.15.1 (2024-12-22)

Bug Fixes

v4.15.4

Compare Source

Bug Fixes

v4.15.3

Compare Source

Bug Fixes
  • allow setting custom file types beyond S_IFREG and S_IFDIR (#​1082) (24da3e7)

v4.15.2

Compare Source

Bug Fixes

v4.15.1

Compare Source

Bug Fixes

v4.15.0

Compare Source

Features

4.14.1 (2024-12-02)

Bug Fixes
  • accept passing a FileHandle to createReadStream and createWriteStream (#​1077) (af163dc)

v4.14.1

Compare Source

Bug Fixes
  • accept passing a FileHandle to createReadStream and createWriteStream (#​1077) (af163dc)

v4.14.0

Compare Source

Features
  • support stream as source in promises version of writeFile (#​1069) (11f8a36)

v4.13.0

Compare Source

Features

v4.12.0

Compare Source

Features

4.11.2 (2024-09-17)

Bug Fixes

4.11.1 (2024-08-01)

Bug Fixes

v4.11.2

Compare Source

Bug Fixes

v4.11.1

Compare Source

Bug Fixes

v4.11.0

Compare Source

Features
  • volume implementation of .opendir() method (7072fb7)

v4.10.0

Compare Source

Features
  • 🎸 add IReadableWebStreamOptions type (99ebd64)
  • 🎸 implement FileHandle.readableWebStream() (c3ddc6c)

4.9.4 (2024-07-23)

Bug Fixes
  • ensure files in subdirectories are returned as buffers when calling toJSON with asBuffer (#​1041) (c3d4cf3)

4.9.3 (2024-06-14)

Bug Fixes

4.9.2 (2024-04-30)

Bug Fixes

4.9.1 (2024-04-27)

Bug Fixes
  • 🐛 use latest json-pack implementation (de54ab5)

v4.9.4

Compare Source

Bug Fixes
  • ensure files in subdirectories are returned as buffers when calling toJSON with asBuffer (#​1041) (c3d4cf3)

v4.9.3

Compare Source

Bug Fixes

v4.9.2

Compare Source

Bug Fixes

v4.9.1

Compare Source

Bug Fixes
  • 🐛 use latest json-pack implementation (de54ab5)

v4.9.0

Compare Source

Features
  • 🎸 define .scan() CRUD method (921e05d)
  • 🎸 implement .scan() in Node.js CRUD (3d973b7)
  • 🎸 implement .scan() method for FSA CRUD (a148fb8)

4.8.2 (2024-04-14)

Bug Fixes
  • don't include filename in path when calling readdir with withFileTypes: true (#​1024) (711c4bd)

4.8.1 (2024-03-31)

Bug Fixes

v4.8.2

Compare Source

Bug Fixes
  • don't include filename in path when calling readdir with withFileTypes: true (#​1024) (711c4bd)

v4.8.1

Compare Source

Bug Fixes

v4.8.0

Compare Source

Features
  • 🎸 allow to customize CAS storage hash and location mappin (e32a57d)

4.7.7 (2024-02-21)

Bug Fixes

4.7.6 (2024-02-17)

Bug Fixes

4.7.5 (2024-02-17)

Bug Fixes

4.7.4 (2024-02-17)

Bug Fixes

4.7.3 (2024-02-17)

Bug Fixes

4.7.2 (2024-02-17)

Bug Fixes

4.7.1 (2024-02-16)

Bug Fixes

v4.7.7

Compare Source

Bug Fixes

v4.7.6

Compare Source

Bug Fixes

v4.7.5

Compare Source

Bug Fixes

v4.7.4

Compare Source

Bug Fixes

v4.7.3

Compare Source

Bug Fixes

v4.7.2

Compare Source

Bug Fixes

v4.7.1

Compare Source

Bug Fixes

v4.7.0

Compare Source

Bug Fixes
  • ensure consistent file path formatting when reading directories recursively (#​990) (36def27)
Features

4.6.1 (2024-02-12)

Bug Fixes

v4.6.1

Compare Source

Bug Fixes

v4.6.0

Compare Source

Features
  • add queueMicrotask implementation (45d1784)

v4.5.0

Compare Source

Features
  • volume: fromJSON now accepts Buffer as volume content (#​880) (9c0a6ff)

v4.4.0

Compare Source

Features

v4.3.0

Compare Source

Features

4.2.3 (2023-09-15)

Bug Fixes
  • add missing nanosecond-precision properties to Stats (#​943) (b9d4c6d)

4.2.2 (2023-09-15)

Bug Fixes

4.2.1 (2023-08-07)

Bug Fixes

v4.2.3

Compare Source

Bug Fixes
  • add missing nanosecond-precision properties to Stats (#​943) (b9d4c6d)

v4.2.2

Compare Source

Bug Fixes

v4.2.1

Compare Source

Bug Fixes

v4.2.0: memfs v4

Compare Source

memfs v4 has been released, install 4.2.0 NPM package.

File System Access API

memfs added adapters for File System Access (FAS) API, which is a file system API available in browsers. FSA can write to a real user folder, which user picks; or without any permissions can write to a virtual file system, called OPFS (Origin Private File System). memfs implements adapters, which:

  • Construct a Node's fs-like API out of the FSA API.
    • In browser, support for synchronous fs methods is also available using a WebWorker.
  • Also, the other way around, memfs can provide FSA API on top of any fs-like file system.

Other notable changes

  • In-memory fs changes
    • A number of in-memory fs bugs were fixed.
    • Type interfaces of methods and options objects for in-memory fs were improved.
    • mkdirp and mkdripSync were removed, they were deprecated before. (You can pass the "recursive" flag to mkdir and mkdirSync, instead.)
    • Many re-usable Node.js fs utilities now live in the /src/node folder.
    • Promises API methods are now bound by default to their this object, just like in native fs module.
  • crudfs and casfs
    • crudfs implementation on top of Node fs was added.
    • crudfs implementation on top of File System Access API was added.
    • casfs implementation on top of crudfs was added.
  • print utility was added which allows to recursively print a directory tree to terminal.
  • snapshot utility was added which allows to create recursive binary snapshots of folders and then load them back into some folder.
  • The /demo folder now contains multiple Webpack demos.
  • Build changes and deprecations
    • TypeScript was upgraded from version 4 to 5.
    • tslib is now included as peer dependency, instead of TypeScript helpers being emitted into distributable.
    • TypeScript build target of the distributable is no es2017, instead of previously es5.
    • The library is now tested on Node v18+ versions.
    • BigInt shim is no longer shipped, memfs will rely on the BigInt provided by the JavaScript environment. You can shim that global, if necessary.
    • fs-monkey dependency was removed.
  • New features in this major release are marked as experimental, which means those APIs are in preview, their public interface may have breaking changes even across minor releases.
  • CircleCI was removed, now GitHub Actions power all builds and releases.
  • The next branch was tested, which deploys pre-releases.
Bug Fixes
* 🐛 add support for unknown nodes (77786f1)
* 🐛 allow readin into various kinds of buffers (361812d)
* 🐛 allow readin into various kinds of buffers (e9c70e9)
* 🐛 allow to seek in file (c04895b)
* 🐛 allow to seek in file (b363689)
* 🐛 correctly handle directory paths (ea909e8)
* 🐛 do not allow empty children names (f014fd8)
* 🐛 do not allow empty children names (43da1d6)
* 🐛 handle root folder better (89bbffd)
* 🐛 handle root folder better (76de780)
* 🐛 improve file opening and closing logic (403c271)
* 🐛 throw "ENOENT" and "ENOTDIR" when folder or file 404 (5de4faa)
* 🐛 throw "ENOENT" and "ENOTDIR" when folder or file 404 (ddd5d56)
Features
  • 🎸 add .toTree() to Volume (2d5c4cb)
  • 🎸 add .truncate() method (038ab36)
  • 🎸 add .truncate() method (085335c)
  • 🎸 add ability to close files (0db56be)
  • 🎸 add ability to close files (d3828a8)
  • 🎸 add ability to create sub directories (8f15bd9)
  • 🎸 add ability to create sub directories (528c807)
  • 🎸 add ability to remove all files (76cabc7)
  • 🎸 add ability to remove all files (566e29b)
  • 🎸 add appendFileSync() method (57192fe)
  • 🎸 add appendFileSync() method (27411e4)
  • 🎸 add basenem() utility (8b27695)
  • 🎸 add basenem() utility (43354e5)
  • 🎸 add binary serialization to snapshots (c1cd615)
  • 🎸 add copyFile() method (de2bb0a)
  • 🎸 add copyFile() method (5e207c4)
  • 🎸 add copyFileSync() method (7e0137c)
  • 🎸 add copyFileSync() method (5fc1bac)
  • 🎸 add createSwapFile() method (dfdb908)
  • 🎸 add createSwapFile() method (b07ce79)
  • 🎸 add crudfs types (18c0658)
  • 🎸 add existsSync() method (0492a98)
  • 🎸 add existsSync() method (073ec6b)
  • 🎸 add fstatSync() method (f13ddb7)
  • 🎸 add fstatSync() method (6b1597a)
  • 🎸 add initial writing implementation (2f9542c)
  • 🎸 add initial writing implementation (6a50382)
  • 🎸 add integrity check on read (710eb2f)
  • 🎸 add json encoding for snapshots (41f9b8c)
  • 🎸 add lstat() and fstat() methods (ce5dd5e)
  • 🎸 add lstat() and fstat() methods (e147d58)
  • 🎸 add missing callback API methods and some sync API ones (956533a)
  • 🎸 add missing promises API types (f6727f3)
  • 🎸 add missing synchronous method types (ac38b5d)
  • 🎸 add mkdirSync() method (57f386b)
  • 🎸 add mkdirSync() method (bcad970)
  • 🎸 add mkdtempSync() method (1ac2df4)
  • 🎸 add mkdtempSync() method (68033dd)
  • 🎸 add options to promises.rmdir() method (ce268bb)
  • 🎸 add options to promises.rmdir() method (0628d56)
  • 🎸 add pathToLocation() utility (8e0136a)
  • 🎸 add pathToLocation() utility (cb92a99)
  • 🎸 add read/write mode separation (b4b6fcb)
  • 🎸 add read/write mode separation (60a65c1)
  • 🎸 add readdirSync() method (2178a50)
  • 🎸 add readdirSync() method (3689abd)
  • 🎸 add readlinkSync() method (f398908)
  • 🎸 add readlinkSync() method (8d243a0)
  • 🎸 add readSync() method (31383a8)
  • 🎸 add readSync() method (3729cd0)
  • 🎸 add realpathSync() method (f9a3cbe)
  • 🎸 add realpathSync() method (75890e0)
  • 🎸 add renameSync() method (a1674e4)
  • 🎸 add renameSync() method (5b1cd63)
  • 🎸 add rm() method (239437d)
  • 🎸 add rm() method (29a7dc8)
  • 🎸 add rmdirSync() method (59ccf3c)
  • 🎸 add rmdirSync() method (695b62a)
  • 🎸 add rmSync() method (a39e9a2)
  • 🎸 add rmSync() method (aa9acb3)
  • 🎸 add snapshot creation utilities (9fc8f13)
  • 🎸 add some common objects (b68ea2a)
  • 🎸 add some common objects (c89744d)
  • 🎸 add sumlink printing support (1850dae)
  • 🎸 add sync api (29c035a)
  • 🎸 add sync api (16d6600)
  • 🎸 add timeout to spin lock (1e2fc72)
  • 🎸 add timeout to spin lock (48e8e74)
  • 🎸 add truncateSync() and ftruncateSync() methods (4caf28b)
  • 🎸 add truncateSync() and ftruncateSync() methods (2b77619)
  • 🎸 add typed array view support to volume (a8bee73)
  • 🎸 add typed array view support to volume (7c8439f)
  • 🎸 add unlinkSync() method (4b3444d)
  • 🎸 add unlinkSync() method (417f911)
  • 🎸 add writev() method (17b0446)
  • 🎸 add writev() method (8190bfd)
  • 🎸 create FSA types folder (c153506)
  • 🎸 create FSA types folder (bb0c75a)
  • 🎸 create Node fs api tyeps (27fd08a)
  • 🎸 create Node fs api tyeps (4db1321)
  • 🎸 expose FSA from index file (6865a05)
  • 🎸 expose FSA from index file (77696f5)
  • 🎸 implement .del() method (9a7fd37)
  • 🎸 implement .drop() method (1b893a2)
  • 🎸 implement .get() method (63aacb6)
  • 🎸 implement .getDirectoryHandle() method (b6b026a)
  • 🎸 implement .getDirectoryHandle() method (090980c)
  • 🎸 implement .getFile() method (b8601cc)
  • 🎸 implement .getFile() method (17015a3)
  • 🎸 implement .getFileHandle() method (71567c9)
  • 🎸 implement .getFileHandle() method (40bdc13)
  • 🎸 implement .isSameEntry() method (f18d91e)
  • 🎸 implement .isSameEntry() method (438806b)
  • 🎸 implement .list() method (4a064cf)
  • 🎸 implement .mkdir method (2623049)
  • 🎸 implement .mkdir method (be1525a)
  • 🎸 implement .mkdtemp() method (cd54e9b)
  • 🎸 implement .mkdtemp() method (2db4cd0)
  • 🎸 implement .removeEntry() method (48617aa)
  • 🎸 implement .removeEntry() method (dca57a2)
  • 🎸 implement .resolve() method (bf47b96)
  • 🎸 implement .resolve() method (9d5669c)
  • 🎸 implement .values() and .entries() (f13de3b)
  • 🎸 implement .values() and .entries() (177010a)
  • 🎸 implement .write() for FSA (8226541)
  • 🎸 implement .write() for FSA (6a2fa2d)
  • 🎸 implement access() method (0a43a1b)
  • 🎸 implement access() method (c72390b)
  • 🎸 implement accessSync() method (accebdb)
  • 🎸 implement accessSync() method (719a19f)
  • 🎸 implement async verions of snapshotting (18912bf)
  • 🎸 implement basic readdir (898e221)
  • 🎸 implement basic readdir (685bc7e)
  • 🎸 implement basic rename() method, only for files (169662a)
  • 🎸 implement basic rename() method, only for files (4769314)
  • 🎸 implement basic state() method (425cad7)
  • 🎸 implement basic state() method (4039d64)
  • 🎸 implement CAS storage (33ddbcc)
  • 🎸 implement closeSync() method (24841fa)
  • 🎸 implement closeSync() method (646efaf)
  • 🎸 implement crudfs .put() method (505dc20)
  • 🎸 implement crudfs on top of fs (cb7ac4d)
  • 🎸 implement Dirent listings (03e60d0)
  • 🎸 implement Dirent listings (5d6f976)
  • 🎸 implement exists() method (615e88f)
  • 🎸 implement exists() method (0753937)
  • 🎸 implement first version of readFile() method (e046128)
  • 🎸 implement first version of readFile() method (629f22a)
  • 🎸 implement first version of worker (3662003)
  • 🎸 implement first version of worker (caf8394)
  • 🎸 implement FSA ReadStream (bc50fc5)
  • 🎸 implement FSA ReadStream (53784d9)
  • 🎸 implement info() method (eea9215)
  • 🎸 implement initial version of .open() method (b3983df)
  • 🎸 implement initial version of .open() method (cb363b5)
  • 🎸 implement initial version of appendFile() method (616be8d)
  • 🎸 implement initial version of appendFile() method (65580aa)
  • 🎸 implement initial version of writeFile() method (80e8499)
  • 🎸 implement initial version of writeFile() method (e2b2bfd)
  • 🎸 implement keys() method (33f9af0)
  • 🎸 implement keys() method (b8e8a4c)
  • 🎸 implement openSync() method (8ecac69)
  • 🎸 implement openSync() method (4b7eddd)
  • 🎸 implement read() method (33bea4b)
  • 🎸 implement read() method (7357c14)
  • 🎸 implement readFileSync() method (3a1b737)
  • 🎸 implement readFileSync() method (2a07e34)
  • 🎸 implement readFileSync() method (953d276)
  • 🎸 implement readFileSync() method (bb803e2)
  • 🎸 implement realpath() method (458a7b2)
  • 🎸 implement realpath() method (99b12dc)
  • 🎸 implement rmdir() method (c06734b)
  • 🎸 implement rmdir() method (973af0a)
  • 🎸 implement sync messenger (1c0bd59)
  • 🎸 implement sync messenger (d221870)
  • 🎸 implement sync write method (3017ecd)
  • 🎸 implement sync write method (22047da)
  • 🎸 implement toTreeSync() method (09c9770)
  • 🎸 implement truncation (af8452e)
  • 🎸 implement truncation (d4469d1)
  • 🎸 implement unlink() method (e11a383)
  • 🎸 implement unlink() method (6bd3e75)
  • 🎸 implement writeSync() method (7a2fced)
  • 🎸 implement writeSync() method (12a8b3f)
  • 🎸 improve mkdir method (e6dd59e)
  • 🎸 improve mkdir method (c393f6c)
  • 🎸 improve read stream interfaces (7e1a844)
  • 🎸 improve read stream interfaces (6d5de0c)
  • 🎸 improve stat method (505a1d9)
  • 🎸 improve stat method (c6eeab4)
  • 🎸 improve write stream, better flag handling (531f2a7)
  • 🎸 improve write stream, better flag handling (7b9e0a3)
  • 🎸 improve writing at offset logic (71b6afc)
  • 🎸 improve writing at offset logic (392932a)
  • 🎸 improve writing to file (1de0e06)
  • 🎸 improve writing to file (3edcac1)
  • 🎸 include "writeSync" method for sync writer (b267f78)
  • 🎸 include "writeSync" method for sync writer (b006b2d)
  • 🎸 introduce FSA context (f603262)
  • 🎸 introduce FSA context (b696e09)
  • 🎸 make basic WriteStream work (69281ff)
  • 🎸 make basic WriteStream work (c109af1)
  • 🎸 make promises methods bound (3010141)
  • 🎸 make statSync() resolve the path correctly (0d81728)
  • 🎸 make statSync() resolve the path correctly (7801533)
  • 🎸 normalize adapter rpc (16ce2cf)
  • 🎸 normalize adapter rpc (96b8374)
  • 🎸 progress on writable stream (a568afd)
  • 🎸 progress on writable stream (9900423)
  • 🎸 setup fsa to node utility (50d2a1e)
  • 🎸 setup fsa to node utility (5fa0d61)
  • 🎸 setup node-to-fsa folder (a4268c6)
  • 🎸 setup node-to-fsa folder (16e78e3)
  • 🎸 setup NodeCrud implementation (39073ce)
  • 🎸 setup webfs (68f0014)
  • 🎸 setup webfs (99c915f)
  • 🎸 standardize message contents (b3254f6)
  • 🎸 standardize message contents (c254dc7)
  • 🎸 start synchronous file handle implementation (f9b0f73)
  • 🎸 start synchronous file handle implementation (d05c407)
  • 🎸 start WriteStream implementation (5971c39)
  • 🎸 start WriteStream implementation (32e13a8)
  • 🎸 throw exception on closed files (7adff27)
  • 🎸 throw exception on closed files (5119b8f)
  • 🎸 track number of written bytes (b80f7b7)
  • 🎸 track number of written bytes (7a65daa)
  • 🎸 write through a swap file (84cecec)
  • 🎸 write through a swap file (5134766)

Full Changelog: streamich/memfs@v3.6.0...v4.2.0

v4.1.0

Compare Source

Bug Fixes
  • 🐛 add support for unknown nodes (77786f1)
  • 🐛 allow readin into various kinds of buffers (361812d)
  • 🐛 allow readin into various kinds of buffers (e9c70e9)
  • 🐛 allow to seek in file (c04895b)
  • 🐛 allow to seek in file (b363689)
  • 🐛 correctly handle directory paths (ea909e8)
  • 🐛 do not allow empty children names (f014fd8)
  • 🐛 do not allow empty children names (43da1d6)
  • 🐛 handle root folder better (89bbffd)
  • 🐛 handle root folder better (76de780)
  • 🐛 improve file opening and closing logic (403c271)
  • 🐛 throw "ENOENT" and "ENOTDIR" when folder or file 404 (5de4faa)
  • 🐛 throw "ENOENT" and "ENOTDIR" when folder or file 404 (ddd5d56)
Features
  • 🎸 add .toTree() to Volume (2d5c4cb)
  • 🎸 add .truncate() method (038ab36)
  • 🎸 add .truncate() method (085335c)
  • 🎸 add ability to close files (0db56be)
  • 🎸 add ability to close files (d3828a8)
  • 🎸 add ability to create sub directories (8f15bd9)
  • 🎸 add ability to create sub directories (528c807)
  • 🎸 add ability to remove all files (76cabc7)
  • 🎸 add ability to remove all files (566e29b)
  • 🎸 add appendFileSync() method (57192fe)
  • 🎸 add appendFileSync() method (27411e4)
  • 🎸 add basenem() utility (8b27695)
  • 🎸 add basenem() utility (43354e5)
  • 🎸 add binary serialization to snapshots (c1cd615)
  • 🎸 add copyFile() method (de2bb0a)
  • 🎸 add copyFile() method (5e207c4)
  • 🎸 add copyFileSync() method (7e0137c)
  • 🎸 add copyFileSync() method (5fc1bac)
  • 🎸 add createSwapFile() method (dfdb908)
  • 🎸 add createSwapFile() method (b07ce79)
  • 🎸 add crudfs types (18c0658)
  • 🎸 add existsSync() method (0492a98)
  • 🎸 add existsSync() method ([073ec6b](https:

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/memfs-4.x branch from c94e9e5 to 9a3ed6b Compare June 29, 2023 13:53
@renovate renovate bot force-pushed the renovate/memfs-4.x branch from 9a3ed6b to 6baf7e6 Compare August 10, 2023 23:23
@renovate renovate bot force-pushed the renovate/memfs-4.x branch 2 times, most recently from 7155f85 to 7a96797 Compare September 25, 2023 07:20
@renovate renovate bot force-pushed the renovate/memfs-4.x branch from 7a96797 to cac979a Compare September 28, 2023 22:00
@renovate renovate bot force-pushed the renovate/memfs-4.x branch from cac979a to 037c165 Compare October 10, 2023 13:27
@renovate renovate bot force-pushed the renovate/memfs-4.x branch 4 times, most recently from 9645394 to 9037467 Compare February 20, 2024 22:35
@renovate renovate bot force-pushed the renovate/memfs-4.x branch from 9037467 to 17170e2 Compare February 24, 2024 04:52
@renovate renovate bot force-pushed the renovate/memfs-4.x branch from 17170e2 to d89ee27 Compare March 22, 2024 13:20
@renovate renovate bot force-pushed the renovate/memfs-4.x branch from d89ee27 to 19aa7d2 Compare April 3, 2024 00:58
@renovate renovate bot force-pushed the renovate/memfs-4.x branch from 19aa7d2 to 8d64694 Compare April 17, 2024 20:17
@renovate renovate bot force-pushed the renovate/memfs-4.x branch 2 times, most recently from af85a78 to 42fe2e3 Compare May 3, 2024 21:40
@renovate renovate bot force-pushed the renovate/memfs-4.x branch from 42fe2e3 to dd78e2a Compare June 18, 2024 02:15
@renovate renovate bot force-pushed the renovate/memfs-4.x branch 3 times, most recently from f8bf648 to c4fc1f0 Compare July 30, 2024 15:35
@renovate renovate bot force-pushed the renovate/memfs-4.x branch from c4fc1f0 to d730a58 Compare August 4, 2024 06:13
@renovate renovate bot force-pushed the renovate/memfs-4.x branch 2 times, most recently from 42c53a8 to 87ba680 Compare September 22, 2024 04:18
@renovate renovate bot force-pushed the renovate/memfs-4.x branch 2 times, most recently from 7f916a8 to 435e631 Compare October 16, 2024 18:33
@renovate renovate bot force-pushed the renovate/memfs-4.x branch from 435e631 to 692cc4e Compare December 5, 2024 01:53
@renovate renovate bot force-pushed the renovate/memfs-4.x branch from 692cc4e to 6b6211c Compare December 12, 2024 03:43
@renovate renovate bot force-pushed the renovate/memfs-4.x branch from 6b6211c to d378b68 Compare December 25, 2024 04:08
@renovate renovate bot force-pushed the renovate/memfs-4.x branch 2 times, most recently from a7f26ec to bed00ec Compare January 4, 2025 18:47
@renovate renovate bot force-pushed the renovate/memfs-4.x branch from bed00ec to 3ab3653 Compare January 13, 2025 10:31
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants