Skip to content

Commit d9032e8

Browse files
committed
v3.20.9
1 parent 20a1d94 commit d9032e8

File tree

9 files changed

+48
-11
lines changed

9 files changed

+48
-11
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,25 @@
11
# Change Log
22

33

4+
## v3.20.9 (2025-07-13)
5+
6+
#### :nail_care: Polish
7+
* `ws`
8+
* [#4360](https://github.com/midwayjs/midway/pull/4360) feat: add ws upgrade handler ([@czy88840616](https://github.com/czy88840616))
9+
10+
#### :memo: Documentation
11+
* [#4359](https://github.com/midwayjs/midway/pull/4359) docs: update the wrong spelling of DefaultConfig ([@mmdapl](https://github.com/mmdapl))
12+
13+
#### :package: Dependencies
14+
* `jwt`
15+
* [#4356](https://github.com/midwayjs/midway/pull/4356) fix(deps): update dependency @types/jsonwebtoken to v9.0.10 ([@renovate[bot]](https://github.com/apps/renovate))
16+
17+
#### Committers: 2
18+
- 142vip.cn ([@mmdapl](https://github.com/mmdapl))
19+
- Harry Chen ([@czy88840616](https://github.com/czy88840616))
20+
21+
22+
423
## v3.20.8 (2025-06-25)
524

625
#### :nail_care: Polish

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,5 +47,5 @@
4747
"cacheDir": ".changelog"
4848
},
4949
"npmClient": "npm",
50-
"version": "3.20.8"
50+
"version": "3.20.9"
5151
}

packages/jwt/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@midwayjs/jwt",
33
"description": "midway jwt component",
4-
"version": "3.20.5",
4+
"version": "3.20.9",
55
"main": "dist/index.js",
66
"typings": "index.d.ts",
77
"files": [

packages/passport/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@midwayjs/passport",
33
"description": "midway passport component",
4-
"version": "3.20.5",
4+
"version": "3.20.9",
55
"main": "dist/index.js",
66
"typings": "index.d.ts",
77
"files": [
@@ -24,7 +24,7 @@
2424
"devDependencies": {
2525
"@midwayjs/core": "^3.20.4",
2626
"@midwayjs/express": "^3.20.4",
27-
"@midwayjs/jwt": "^3.20.5",
27+
"@midwayjs/jwt": "^3.20.9",
2828
"@midwayjs/koa": "^3.20.5",
2929
"@midwayjs/mock": "^3.20.4",
3030
"@midwayjs/web": "^3.20.4",

packages/version/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module.exports = {
22
"decorator": "3.20.4",
33
"core": "3.20.4",
4-
"timestamp": 1750814333871
4+
"timestamp": 1752411069971
55
};

packages/version/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@midwayjs/version",
3-
"version": "3.20.8",
3+
"version": "3.20.9",
44
"description": "Midway Package Version Manager",
55
"main": "index.js",
66
"scripts": {

packages/version/versions/3_20_4-3_20_4.json

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,8 @@
7575
],
7676
"@midwayjs/jwt": [
7777
"3.20.4",
78-
"3.20.5"
78+
"3.20.5",
79+
"3.20.9"
7980
],
8081
"@midwayjs/kafka": "3.20.4",
8182
"@midwayjs/leoric": [
@@ -99,7 +100,8 @@
99100
],
100101
"@midwayjs/passport": [
101102
"3.20.4",
102-
"3.20.5"
103+
"3.20.5",
104+
"3.20.9"
103105
],
104106
"@midwayjs/process-agent": [
105107
"3.20.4",
@@ -161,7 +163,8 @@
161163
"3.20.5",
162164
"3.20.6",
163165
"3.20.7",
164-
"3.20.8"
166+
"3.20.8",
167+
"3.20.9"
165168
],
166169
"@midwayjs/view": [
167170
"3.20.4",
@@ -183,6 +186,7 @@
183186
],
184187
"@midwayjs/ws": [
185188
"3.20.4",
186-
"3.20.8"
189+
"3.20.8",
190+
"3.20.9"
187191
]
188192
}

packages/ws/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@midwayjs/ws",
3-
"version": "3.20.8",
3+
"version": "3.20.9",
44
"description": "Midway Web Framework for ws",
55
"main": "dist/index.js",
66
"typings": "index.d.ts",
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#!/bin/bash
2+
# timestamp: 1752411054746
3+
4+
npm dist-tag add @midwayjs/jwt@3.20.5 latest
5+
npm dist-tag add @midwayjs/passport@3.20.5 latest
6+
npm dist-tag add @midwayjs/version@3.20.8 latest
7+
npm dist-tag add @midwayjs/ws@3.20.8 latest
8+
9+
# Changes:
10+
11+
# - @midwayjs/jwt: 3.20.5 => 3.20.9
12+
# - @midwayjs/passport: 3.20.5 => 3.20.9
13+
# - @midwayjs/version: 3.20.8 => 3.20.9
14+
# - @midwayjs/ws: 3.20.8 => 3.20.9

0 commit comments

Comments
 (0)