Skip to content

Commit

Permalink
v3.11.17
Browse files Browse the repository at this point in the history
  • Loading branch information
czy88840616 committed Aug 1, 2023
1 parent 1d9a92f commit c6d8317
Show file tree
Hide file tree
Showing 7 changed files with 37 additions and 6 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
# Change Log


## v3.11.17 (2023-08-01)

#### :bug: Bug Fix
* `http-proxy`
* [#3130](https://github.com/midwayjs/midway/pull/3130) fix(http-proxy): readableStream.pipe(res) and res.on('finish') ([@wakeGISer](https://github.com/wakeGISer))

#### Committers: 1
- Suel ([@wakeGISer](https://github.com/wakeGISer))



## v3.11.16 (2023-08-01)

#### :bug: Bug Fix
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,5 +47,5 @@
"cacheDir": ".changelog"
},
"npmClient": "npm",
"version": "3.11.16"
"version": "3.11.17"
}
2 changes: 1 addition & 1 deletion packages/http-proxy/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@midwayjs/http-proxy",
"version": "3.11.15",
"version": "3.11.17",
"description": "Midway Component for http proxy",
"main": "dist/index.js",
"typings": "index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/version/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module.exports = {
"decorator": "3.11.15",
"core": "3.11.15",
"timestamp": 1690875103682
"timestamp": 1690900994129
};
2 changes: 1 addition & 1 deletion packages/version/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@midwayjs/version",
"version": "3.11.16",
"version": "3.11.17",
"description": "Midway Package Version Manager",
"main": "index.js",
"scripts": {
Expand Down
8 changes: 6 additions & 2 deletions packages/version/versions/3_11_15-3_11_15.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,10 @@
"@midwayjs/express-session": "3.11.15",
"@midwayjs/faas": "3.11.15",
"@midwayjs/grpc": "3.11.15",
"@midwayjs/http-proxy": "3.11.15",
"@midwayjs/http-proxy": [
"3.11.15",
"3.11.17"
],
"@midwayjs/i18n": "3.11.15",
"@midwayjs/info": "3.11.15",
"@midwayjs/jwt": "3.11.15",
Expand Down Expand Up @@ -59,7 +62,8 @@
"@midwayjs/validate": "3.11.15",
"@midwayjs/version": [
"3.11.15",
"3.11.16"
"3.11.16",
"3.11.17"
],
"@midwayjs/view": "3.11.15",
"@midwayjs/view-ejs": "3.11.15",
Expand Down
16 changes: 16 additions & 0 deletions scripts/rollback/rollback-3.11.17.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#!/bin/bash
# timestamp: 1690900871742

npm dist-tag add @midwayjs/[email protected] latest
npm dist-tag add @midwayjs/[email protected] beta
npm dist-tag add @midwayjs/[email protected] latest
npm dist-tag add @midwayjs/[email protected] beta
tnpm dist-tag add @midwayjs/[email protected] latest
tnpm dist-tag add @midwayjs/[email protected] beta
tnpm dist-tag add @midwayjs/[email protected] latest
tnpm dist-tag add @midwayjs/[email protected] beta

# Changes:

# - @midwayjs/http-proxy: 3.11.15 => 3.11.17
# - @midwayjs/version: 3.11.16 => 3.11.17

0 comments on commit c6d8317

Please sign in to comment.