bfj 9.0.1 → 9.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/HISTORY.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # History
2
2
 
3
+ ## 9.0.2
4
+
5
+ ### Bug fixes
6
+
7
+ * deps: fix bad lockfile (446370bc4547ce68c398fb1daf7d73fa3aa8349d)
8
+
9
+ ### Other changes
10
+
11
+ * tests: `new Buffer` => `Buffer.from` (6a6d08eb89ddcca2cec94bdd9f54b295172623c0)
12
+ * deps: upgrade `please-release-me` to `2.1.4` (ee3f56de430b3f9a18a590c5425b3f9ab88cf9cb)
13
+
3
14
  ## 9.0.1
4
15
 
5
16
  ### Other changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bfj",
3
- "version": "9.0.1",
3
+ "version": "9.0.2",
4
4
  "description": "Big-friendly JSON. Asynchronous streaming functions for large JSON data sets.",
5
5
  "homepage": "https://gitlab.com/philbooth/bfj",
6
6
  "bugs": "https://gitlab.com/philbooth/bfj/issues",
@@ -39,7 +39,7 @@
39
39
  "chai": "^4.5.0",
40
40
  "eslint": "^8.57.1",
41
41
  "mocha": "^10.7.3",
42
- "please-release-me": "^2.1.4",
42
+ "please-release-me": "^2.1.6",
43
43
  "proxyquire": "^2.1.3",
44
44
  "spooks": "^2.0.0"
45
45
  },
@@ -1387,7 +1387,7 @@ suite('eventify:', () => {
1387
1387
  setup(done => {
1388
1388
  let resolve
1389
1389
 
1390
- const emitter = eventify(new Buffer('foo bar baz qux'))
1390
+ const emitter = eventify(Buffer.from('foo bar baz qux'))
1391
1391
 
1392
1392
  Object.entries(events).forEach(([ key, value ]) => {
1393
1393
  emitter.on(value, spooks.fn({
@@ -1457,7 +1457,7 @@ suite('eventify:', () => {
1457
1457
  setup(done => {
1458
1458
  let resolve
1459
1459
 
1460
- const emitter = eventify(new Buffer('foo bar baz qux'), { buffers: 'ignore' })
1460
+ const emitter = eventify(Buffer.from('foo bar baz qux'), { buffers: 'ignore' })
1461
1461
 
1462
1462
  Object.entries(events).forEach(([ key, value ]) => {
1463
1463
  emitter.on(value, spooks.fn({