Skip to content

Commit

Permalink
chore: bump deps/actions (#146)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
robertsLando authored Nov 8, 2023
1 parent 6ca28c2 commit a19df9c
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 15 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ jobs:

strategy:
matrix:
node-version: [12.x, 14.x, 16.x]
node-version: [16.x, 18.x, 20.x]

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3

- name: Use Node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}

Expand Down
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
package-lock=false
1 change: 0 additions & 1 deletion benchmarks/generateNet.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

const mqtt = require('../')
const max = 1000000
let i = 0
Expand Down
1 change: 0 additions & 1 deletion benchmarks/parse.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

const mqtt = require('../')
const parser = mqtt.parser()
const max = 10000000
Expand Down
1 change: 0 additions & 1 deletion benchmarks/writeToStream.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

const mqtt = require('../')
const max = 1000000
let i = 0
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,14 @@
"homepage": "https://github.com/mqttjs/mqtt-packet",
"devDependencies": {
"pre-commit": "^1.2.2",
"readable-stream": "^3.6.0",
"standard": "^16.0.0",
"readable-stream": "^4.4.2",
"standard": "^17.1.0",
"tap-spec": "^5.0.0",
"tape": "^5.0.1"
"tape": "^5.7.2"
},
"dependencies": {
"bl": "^5.0.0",
"debug": "^4.1.1",
"bl": "^6.0.8",
"debug": "^4.3.4",
"process-nextick-args": "^2.0.1"
}
}
8 changes: 4 additions & 4 deletions test.js
Original file line number Diff line number Diff line change
Expand Up @@ -1786,8 +1786,8 @@ test('split publish longer', t => {
retain: false,
qos: 0,
dup: false,
length: length,
topic: topic,
length,
topic,
payload: Buffer.from('a'.repeat(payloadLength))
}

Expand Down Expand Up @@ -1818,8 +1818,8 @@ test('split length parse', t => {
retain: false,
qos: 0,
dup: false,
length: length,
topic: topic,
length,
topic,
payload: Buffer.from('a'.repeat(payloadLength))
}

Expand Down

0 comments on commit a19df9c

Please sign in to comment.