Skip to content

Commit

Permalink
Merge branch 'master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
robertsLando authored Jun 30, 2023
2 parents 849d947 + 0d11888 commit 9d01518
Show file tree
Hide file tree
Showing 66 changed files with 5,016 additions and 2,619 deletions.
3 changes: 3 additions & 0 deletions .zuul.yml → .airtaprc.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
sauce_connect: true
ui: mocha-bdd
browsers:
- name: chrome
Expand All @@ -8,3 +9,5 @@ browsers:
version: latest
- name: internet explorer
version: latest
- name: microsoftedge
version: latest
32 changes: 32 additions & 0 deletions .github/workflows/nodejs.yml
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*"
23 changes: 23 additions & 0 deletions .github/workflows/syncToDevOps.yml
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ npm-debug.log
dist/
yarn.lock
coverage
.nyc_output
.idea/*
test/typescript/.idea/*
test/typescript/*.js
Expand Down
23 changes: 0 additions & 23 deletions .travis.yml

This file was deleted.

89 changes: 89 additions & 0 deletions CHANGELOG.md
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.
Loading

0 comments on commit 9d01518

Please sign in to comment.