Skip to content

Commit 3a80bde

Browse files
authored
chore: release-it and semantic pr title (#1614)
1 parent aa2e0ad commit 3a80bde

9 files changed

+16845
-7108
lines changed

.github/workflows/release-it.yml

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
# #########################################################################
2+
# Creates a new release using `workflow_dispatch` event trigger with `type`
3+
# as input to describe the type of release to create
4+
name: 'Release-it: Create a new release on demand'
5+
6+
on:
7+
workflow_dispatch:
8+
inputs:
9+
type:
10+
description: 'Type. Can be `beta`, `patch`, `minor` or `major`'
11+
required: true
12+
default: 'patch'
13+
14+
jobs:
15+
release:
16+
runs-on: [ubuntu-latest]
17+
strategy:
18+
matrix:
19+
node-version: [16.x]
20+
steps:
21+
- name: Checkout master
22+
uses: actions/checkout@v3
23+
with:
24+
ref: 'master'
25+
fetch-depth: 0 # fetch all commits history to create the changelog
26+
token: ${{ secrets.GITHUB_TOKEN }}
27+
28+
- name: Use Node.js ${{ matrix.node-version }}
29+
uses: actions/[email protected]
30+
with:
31+
node-version: ${{ matrix.node-version }}
32+
cache: 'npm'
33+
34+
- name: Install dependencies
35+
run: npm ci
36+
37+
- name: Initialize Git user
38+
run: |
39+
git config --global user.email "${{ github.actor }}@users.noreply.github.com }}"
40+
git config --global user.name "${{ github.actor }}"
41+
42+
- name: Initialize NPM config
43+
run: |
44+
npm config set //registry.npmjs.org/:_authToken $NPM_TOKEN
45+
env:
46+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
47+
48+
- name: Make the release
49+
env:
50+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
51+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
52+
run: |
53+
npx release-it ${{github.event.inputs.type}} --ci --verbose

.github/workflows/semantic-pr.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: "Semantic PR Title"
2+
3+
on:
4+
pull_request_target:
5+
types:
6+
- opened
7+
- edited
8+
- synchronize
9+
10+
permissions:
11+
pull-requests: read
12+
13+
jobs:
14+
main:
15+
name: Validate PR title
16+
runs-on: ubuntu-latest
17+
steps:
18+
- uses: amannn/action-semantic-pull-request@v5
19+
env:
20+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,5 @@ test/typescript/*.map
1818
# VS Code stuff
1919
**/typings/**
2020
**/.vscode/**
21+
22+
.npmrc

.npmrc

Whitespace-only changes.

CHANGELOG.OLD.md

+115
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,115 @@
1+
# Release History
2+
3+
## 4.3.7
4+
5+
### PR
6+
7+
fix: regression from #1401 and allow CI test failures to break gitthub workflow (#1443)
8+
9+
## 4.3.6
10+
11+
### PR
12+
13+
chore: update CI
14+
15+
fix(browser): require buffer (#1420)
16+
17+
fix(types): connect function proper overloads (#1416)
18+
19+
## 4.3.5
20+
21+
### PR
22+
23+
fix(drain-leak): fix regression introduced in #1301 (#1401)
24+
25+
## 4.3.4
26+
27+
### PR
28+
29+
fix(dependency): migrate LruMap from collections to lru-cache (#1396)
30+
31+
## 4.3.3
32+
33+
### PR
34+
35+
fix(publish): call callback when messageId available (#1393)
36+
37+
fix: remove collections.js depdendency from number-allocator (#1394)
38+
39+
### PR
40+
41+
fix(dependencies): update collections (#1386)
42+
43+
## 4.3.2
44+
45+
### PR
46+
47+
fix(dependencies): update collections (#1386)
48+
49+
## 4.3.1
50+
51+
### PR
52+
53+
fix(dependencies): remove babel-eslint and snazzy (#1383)
54+
55+
## 4.3.0
56+
57+
### PR
58+
59+
refined topic alias support (#1301)
60+
61+
fix security vulnerability in ws stream (#1307)
62+
63+
skip TLS SNI if host is IP address (#1311)
64+
65+
update readme about vNext discussions (#1328)
66+
67+
update readme sample (#1331)
68+
69+
add support for ALPN TLS extension (#1332)
70+
71+
align onConnectCallback with specs expecting connack packet (#1333)
72+
73+
fix resubscribe messageId allocate twice (#1337)
74+
75+
rework examples to be a bit more specific (#1352)
76+
77+
readme typo fixed (#1353)
78+
79+
fix(typescript): use correct version of @types/ws (#1358)
80+
81+
fix(type): fix push properties types (#1359)
82+
83+
fix: audit dev dependencies (#1374)
84+
85+
fix(type): add properties type for IClientSubscribeOptions (#1378)
86+
87+
feat(client): auth handler for enhanced auth (#1380)
88+
89+
## 4.2.8
90+
91+
### PR
92+
93+
Fix ws vulnerability and typescript bug (#1292)
94+
95+
## 4.2.7
96+
97+
### PR
98+
99+
#1287 - Fix production vulnerabilities (#1289)
100+
101+
#1215 - Add missing 'duplexify' dependency (#1266)
102+
103+
Improve type definition for 'wsOptions' (#1256)
104+
105+
Improve Typescript Declaratiosn for userProperties (#1249)
106+
107+
#1235 - Call the end on the WebSocket stream when WebSocket close event is emitted. (#1239)
108+
109+
#1201 - Uncaught TypeError: net.createConnection is not a function. (#1236)
110+
111+
Improve Documentation for Browserify (#1224)
112+
113+
## v4.2.6 and Below
114+
115+
The release history has been documented in the GitHub releases and tags historically.

0 commit comments

Comments
 (0)