Skip to content

Commit

Permalink
Merge pull request #81 from martin-doyle/feature
Browse files Browse the repository at this point in the history
Feature
  • Loading branch information
martin-doyle authored Jul 29, 2024
2 parents 99d367d + c50edec commit 6f5723d
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ jobs:

strategy:
matrix:
node-version: [16.x, 18.x, 20.x]
node-version: [18.x, 20.x, 22.x]
node-red: [2.x, 3.x, 4.x]

steps:
- uses: actions/checkout@v3
Expand All @@ -18,7 +19,7 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm install -g node-red
- run: npm install -g node-red@${{ matrix.node-red }}
- run: npm link node-red
- run: npm install -g mocha
- run: npm install -g semistandard
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# node-red-contrib-aedes Changelog

## Jul 29, 2024, Version 0.13.2
### Notable changes
- New tests with NodeJS 22

## Jun 21, 2024, Version 0.13.1
### Notable changes
- Update aedes to version 0.51.2

## Feb 16, 2024, Version 0.13.0
### Notable changes
- Update aedes to version 0.51.0
Expand Down
7 changes: 5 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "node-red-contrib-aedes",
"version": "0.13.0",
"version": "0.13.2",
"description": "Node Red MQTT broker node based on aedes.js",
"dependencies": {
"aedes": "^0.51.0",
Expand All @@ -12,6 +12,9 @@
"node-red-node-test-helper": "^0.3.3"
},
"scripts": {
"patch": "npm --no-git-tag-version version patch",
"minor": "npm version minor",
"major": "npm version major",
"test": "semistandard --verbose | snazzy && mocha test/**/*.js --exit"
},
"node-red": {
Expand All @@ -21,7 +24,7 @@
}
},
"engines": {
"node": ">=14.0.0"
"node": ">=16.0.0"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit 6f5723d

Please sign in to comment.