feat/compaction-failure-event
Timothée Rebours 11 months ago
parent 20b0ec441e
commit 29cce2da81
  1. 4
      CHANGELOG.md
  2. 2
      lib/byline.js

@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres
to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## Unreleased
### Fixed
- Explicitly import `buffer` [#34](https://github.com/seald/nedb/pull/34).
## [4.0.3] - 2023-12-13
### Fixed
- Fixed EPERM Exception when datastore is at the root of a disk on Windows [#48](https://github.com/seald/nedb/issues/48)

@ -25,7 +25,7 @@
*/
const stream = require('stream')
const timers = require('timers')
const Buffer = require('buffer').Buffer;
const { Buffer } = require('buffer')
const createLineStream = (readStream, options) => {
if (!readStream) throw new Error('expected readStream')

Loading…
Cancel
Save