-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
66 changed files
with
5,015 additions
and
2,618 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: MQTT.js CI | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
matrix: | ||
node-version: [12.x, 14.x] | ||
fail-fast: false | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
- run: npm install | ||
- run: npm run build --if-present | ||
- run: npm test | ||
env: | ||
CI: true | ||
DEBUG: "mqttjs*" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
|
||
name: Sync issue to Azure DevOps work item | ||
|
||
"on": | ||
issues: | ||
types: | ||
[opened, edited, deleted, closed, reopened, labeled, unlabeled] | ||
|
||
jobs: | ||
alert: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: danhellem/github-actions-issue-to-work-item@master | ||
env: | ||
ado_token: "${{ secrets.ADO_PERSONAL_ACCESS_TOKEN }}" | ||
github_token: "${{ secrets.GH_PERSONAL_ACCESS_TOKEN }}" | ||
ado_organization: "${{ secrets.ADO_ORGANIZATION }}" | ||
ado_project: "${{ secrets.ADO_PROJECT }}" | ||
ado_area_path: "${{ secrets.ADO_AREA_PATH }}" | ||
ado_wit: "Bug" | ||
ado_new_state: "New" | ||
ado_close_state: "Done" | ||
ado_bypassrules: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
# Release History | ||
|
||
## 4.3.4 | ||
|
||
fix(dependency): migrate LruMap from collections to lru-cache (#1396) | ||
|
||
## 4.3.3 | ||
|
||
fix(publish): call callback when messageId available (#1393) | ||
|
||
fix: remove collections.js depdendency from number-allocator (#1394) | ||
|
||
### PR | ||
|
||
fix(dependencies): update collections (#1386) | ||
|
||
## 4.3.2 | ||
|
||
### PR | ||
|
||
fix(dependencies): update collections (#1386) | ||
|
||
## 4.3.1 | ||
|
||
### PR | ||
|
||
fix(dependencies): remove babel-eslint and snazzy (#1383) | ||
|
||
## 4.3.0 | ||
|
||
### PR | ||
|
||
refined topic alias support (#1301) | ||
|
||
fix security vulnerability in ws stream (#1307) | ||
|
||
skip TLS SNI if host is IP address (#1311) | ||
|
||
update readme about vNext discussions (#1328) | ||
|
||
update readme sample (#1331) | ||
|
||
add support for ALPN TLS extension (#1332) | ||
|
||
align onConnectCallback with specs expecting connack packet (#1333) | ||
|
||
fix resubscribe messageId allocate twice (#1337) | ||
|
||
rework examples to be a bit more specific (#1352) | ||
|
||
readme typo fixed (#1353) | ||
|
||
fix(typescript): use correct version of @types/ws (#1358) | ||
|
||
fix(type): fix push properties types (#1359) | ||
|
||
fix: audit dev dependencies (#1374) | ||
|
||
fix(type): add properties type for IClientSubscribeOptions (#1378) | ||
|
||
feat(client): auth handler for enhanced auth (#1380) | ||
|
||
## 4.2.8 | ||
|
||
### PR | ||
|
||
Fix ws vulnerability and typescript bug (#1292) | ||
|
||
## 4.2.7 | ||
|
||
### PR | ||
|
||
#1287 - Fix production vulnerabilities (#1289) | ||
|
||
#1215 - Add missing 'duplexify' dependency (#1266) | ||
|
||
Improve type definition for 'wsOptions' (#1256) | ||
|
||
Improve Typescript Declaratiosn for userProperties (#1249) | ||
|
||
#1235 - Call the end on the WebSocket stream when WebSocket close event is emitted. (#1239) | ||
|
||
#1201 - Uncaught TypeError: net.createConnection is not a function. (#1236) | ||
|
||
Improve Documentation for Browserify (#1224) | ||
|
||
## v4.2.6 and Below | ||
|
||
The release history has beend documented in the GitHub releases and tags historically. |
Oops, something went wrong.