Skip to content

Commit a19df9c

Browse files
authored
chore: bump deps/actions (#146)
* chore: bump deps and actions bl ^5.0.0 → ^6.0.8 debug ^4.1.1 → ^4.3.4 readable-stream ^3.6.0 → ^4.4.2 standard ^16.0.0 → ^17.1.0 tape ^5.0.1 → ^5.7.2 * chore: add release script * chore: remove release script
1 parent 6ca28c2 commit a19df9c

File tree

7 files changed

+13
-15
lines changed

7 files changed

+13
-15
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ jobs:
88

99
strategy:
1010
matrix:
11-
node-version: [12.x, 14.x, 16.x]
11+
node-version: [16.x, 18.x, 20.x]
1212

1313
steps:
14-
- uses: actions/checkout@v1
14+
- uses: actions/checkout@v3
1515

1616
- name: Use Node.js
17-
uses: actions/setup-node@v1
17+
uses: actions/setup-node@v3
1818
with:
1919
node-version: ${{ matrix.node-version }}
2020

.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
package-lock=false

benchmarks/generateNet.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
const mqtt = require('../')
32
const max = 1000000
43
let i = 0

benchmarks/parse.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
const mqtt = require('../')
32
const parser = mqtt.parser()
43
const max = 10000000

benchmarks/writeToStream.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
const mqtt = require('../')
32
const max = 1000000
43
let i = 0

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,14 @@
3535
"homepage": "https://github.com/mqttjs/mqtt-packet",
3636
"devDependencies": {
3737
"pre-commit": "^1.2.2",
38-
"readable-stream": "^3.6.0",
39-
"standard": "^16.0.0",
38+
"readable-stream": "^4.4.2",
39+
"standard": "^17.1.0",
4040
"tap-spec": "^5.0.0",
41-
"tape": "^5.0.1"
41+
"tape": "^5.7.2"
4242
},
4343
"dependencies": {
44-
"bl": "^5.0.0",
45-
"debug": "^4.1.1",
44+
"bl": "^6.0.8",
45+
"debug": "^4.3.4",
4646
"process-nextick-args": "^2.0.1"
4747
}
4848
}

test.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1786,8 +1786,8 @@ test('split publish longer', t => {
17861786
retain: false,
17871787
qos: 0,
17881788
dup: false,
1789-
length: length,
1790-
topic: topic,
1789+
length,
1790+
topic,
17911791
payload: Buffer.from('a'.repeat(payloadLength))
17921792
}
17931793

@@ -1818,8 +1818,8 @@ test('split length parse', t => {
18181818
retain: false,
18191819
qos: 0,
18201820
dup: false,
1821-
length: length,
1822-
topic: topic,
1821+
length,
1822+
topic,
18231823
payload: Buffer.from('a'.repeat(payloadLength))
18241824
}
18251825

0 commit comments

Comments
 (0)