Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

hello world #1481

Closed
wants to merge 40 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
a18380f
Add note to README about vNext discussions
vishnureddy17 Sep 24, 2021
dbdbe45
Merge pull request #1328 from vishnureddy17/patch-1
Sep 24, 2021
25784d5
Update README.md
maikelsson Sep 28, 2021
8aa2f8d
Merge pull request #1331 from maikelsson/patch-1
kartben Sep 28, 2021
c92b877
fix(client): Refined Topic Alias support. (Implement #1300) (#1301)
redboltz Oct 4, 2021
e3e15c3
fix(typescript): OnConnectCallback with specs expecting Connack pack…
ccarcaci Oct 4, 2021
7466819
fix(resubscribe): message id allocate twice (#1337)
redboltz Oct 11, 2021
59fab36
fix: types (#1341)
Oct 19, 2021
e6672e8
Revert "fix: types (#1341)" (#1344)
Oct 22, 2021
c424426
fix(README): typo Support (#1353)
canerturkmen0 Nov 17, 2021
2e845f3
chore(README): rework examples to be a bit more specific (#1352)
cruxicheiros Nov 17, 2021
cb6bdcb
fix(type): fix push properties types (#1359)
oceanlvr Dec 13, 2021
6581d33
fix(typescript): Use correct version of @types/ws (#1358)
orgads Dec 13, 2021
2679952
fix(tls): Skip TLS SNI if host is IP address (#1311)
A3K Dec 13, 2021
e1aa949
chore: var to let/const and audit dev dependencies (#1374)
Dec 21, 2021
8de9394
fix(type): add properties type for IClientSubscribeOptions (#1378)
Dec 21, 2021
06f2fd2
feat: add support for ALPN TLS extension (#1332)
marcotuna Dec 21, 2021
d5850b7
feat(client): auth handler for enhanced auth (#1380)
Dec 22, 2021
b5d8c72
release: 4.2.8 (#1381)
Dec 22, 2021
66d43d4
fix(dependencies): remove babel-eslint and update snazzy (#1383)
Dec 24, 2021
aa443fc
release: 4.3.1 (#1384)
Dec 24, 2021
df89a2e
fix(dependency): Updated collections.js related package version. (#1386)
redboltz Dec 29, 2021
f04c24b
release: 4.3.2 (#1388)
Dec 29, 2021
ee75c32
fix: remove collections.js dependency from number-allocator. (#1394)
redboltz Jan 5, 2022
58fb8df
Fix(publish): call callback when messageId available (#1393)
redboltz Jan 5, 2022
b4925d0
release(1.5.2022): 4.3.3 (#1395)
Jan 5, 2022
5c67037
fix: migrate LruMap from collections to lru-cache. (#1396)
redboltz Jan 6, 2022
0a8e3b2
release(1.6.2022): 4.3.4 (#1397)
Jan 6, 2022
4604b10
chore(README): add announcements (#1399)
Jan 7, 2022
7ec4b8f
fix(sendPacket): drain leak (#1401)
BertKleewein Jan 18, 2022
9eb4c79
release: 4.3.5 (#1414)
YoDaMa Feb 7, 2022
28c4040
fix(types): connect function proper overloads for its parameters (#1416)
erichardson-lee Feb 10, 2022
fad8ad6
chores: update CI (#1421)
YoDaMa Feb 15, 2022
f5ab1b5
fix: buffer is not defined in browser (#1420)
flyfishzy Feb 17, 2022
fe78288
release: 4.3.6 (#1425)
YoDaMa Feb 17, 2022
accd78e
fix: fix regression from #1401 and allow CI test failures to break gi…
BertKleewein Mar 14, 2022
55f6bc9
release(4.3.7): bump version (#1450)
YoDaMa Mar 16, 2022
b2745d9
add 'ETIMEDOUT' to socketErrors so we can get error event when broker…
caoyawu Mar 18, 2022
9cb4f3c
docs: Update TypeScript docs to include installing @types/ws (#1432)
StenAL Mar 18, 2022
5c04ab4
chore: update minimist to 1.2.6 (#1460)
dwillskits Mar 23, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 4 additions & 6 deletions .airtaprc.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
sauce_connect: true
providers:
- airtap-system
- airtap-playwright
ui: mocha-bdd
browsers:
- name: chrome
- name: chromium
version: latest
- name: firefox
version: latest
- name: opera
version: latest
- name: internet explorer
version: latest
- name: microsoftedge
version: latest
41 changes: 41 additions & 0 deletions .github/workflows/mqttjs-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: MQTT.js Tests

on:
workflow_dispatch:
inputs:
logLevel:
description: 'Debug Filter'
required: true
default: 'mqttjs*'
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 14.x, 16.x]
fail-fast: false

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- name: Node Tests
run: npm run test:node
env:
CI: true
DEBUG: "mqttjs"
- name: Test Typescript
run: npm run test:typescript
env:
CI: true
DEBUG: "mqttjs"

32 changes: 0 additions & 32 deletions .github/workflows/nodejs.yml

This file was deleted.

23 changes: 0 additions & 23 deletions .github/workflows/syncToDevOps.yml

This file was deleted.

1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ coverage
test/typescript/.idea/*
test/typescript/*.js
test/typescript/*.map
package-lock.json
# VS Code stuff
**/typings/**
**/.vscode/**
1 change: 0 additions & 1 deletion .npmrc
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@
package-lock = false
88 changes: 87 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,91 @@
# Release History

## 4.3.7

### PR

fix: regression from #1401 and allow CI test failures to break gitthub workflow (#1443)

## 4.3.6

### PR

chore: update CI

fix(browser): require buffer (#1420)

fix(types): connect function proper overloads (#1416)

## 4.3.5

### PR

fix(drain-leak): fix regression introduced in #1301 (#1401)

## 4.3.4

### PR

fix(dependency): migrate LruMap from collections to lru-cache (#1396)

## 4.3.3

### PR

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
Expand All @@ -26,4 +112,4 @@ Improve Documentation for Browserify (#1224)

## v4.2.6 and Below

The release history has beend documented in the GitHub releases and tags historically.
The release history has been documented in the GitHub releases and tags historically.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Individuals making significant and valuable contributions are given commit-acces
There are a few basic ground-rules for contributors:

1. **No `--force` pushes** or modifying the Git history in any way.
1. **Non-master branches** ought to be used for ongoing work.
1. **Non-main branches** ought to be used for ongoing work.
1. **External API changes and significant modifications** ought to be subject to an **internal pull-request** to solicit feedback from other contributors.
1. Internal pull-requests to solicit feedback are *encouraged* for any other non-trivial contribution but left to the discretion of the contributor.
1. Contributors should attempt to adhere to the prevailing code-style.
Expand Down
Loading