Skip to content

Commit

Permalink
v3.8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
czy88840616 committed Nov 26, 2022
1 parent 3b2cbfd commit 2812173
Show file tree
Hide file tree
Showing 8 changed files with 59 additions and 8 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,29 @@
# Change Log


## v3.8.2 (2022-11-26)

#### :bug: Bug Fix
* `sequelize`
* [#2525](https://github.com/midwayjs/midway/pull/2525) fix: sequelize inject data source forgot to export ([@czy88840616](https://github.com/czy88840616))

#### :nail_care: Polish
* `swagger`
* [#2518](https://github.com/midwayjs/midway/pull/2518) fix: swagger global prefix without path ([@czy88840616](https://github.com/czy88840616))

#### :memo: Documentation
* [#2516](https://github.com/midwayjs/midway/pull/2516) docs: update the configuration description of AccessKey ([@yantze](https://github.com/yantze))
* [#2515](https://github.com/midwayjs/midway/pull/2515) docs(site): update awesome_midway.md ([@waitingsong](https://github.com/waitingsong))
* [#2514](https://github.com/midwayjs/midway/pull/2514) doc(consul.md): fix port type error ([@xnng](https://github.com/xnng))

#### Committers: 4
- Harry Chen ([@czy88840616](https://github.com/czy88840616))
- [@xnng](https://github.com/xnng)
- waiting ([@waitingsong](https://github.com/waitingsong))
- zhi ([@yantze](https://github.com/yantze))



## v3.8.1 (2022-11-20)

#### :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 @@ -46,5 +46,5 @@
"cacheDir": ".changelog"
},
"npmClient": "npm",
"version": "3.8.1"
"version": "3.8.2"
}
2 changes: 1 addition & 1 deletion packages/sequelize/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@midwayjs/sequelize",
"version": "3.8.0",
"version": "3.8.2",
"main": "dist/index",
"typings": "index.d.ts",
"files": [
Expand Down
2 changes: 1 addition & 1 deletion packages/swagger/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@midwayjs/swagger",
"version": "3.8.0",
"version": "3.8.2",
"main": "dist/index",
"typings": "index.d.ts",
"files": [
Expand Down
2 changes: 1 addition & 1 deletion packages/version/index.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
console.log('1668922920150');
console.log('1669457485533');
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.8.1",
"version": "3.8.2",
"description": "Midway Package Version Manager",
"main": "index.js",
"scripts": {
Expand Down
13 changes: 10 additions & 3 deletions packages/version/versions/3_8_0-3_8_0.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,19 +42,26 @@
"@midwayjs/rabbitmq": "3.8.0",
"@midwayjs/redis": "3.8.0",
"@midwayjs/security": "3.8.0",
"@midwayjs/sequelize": "3.8.0",
"@midwayjs/sequelize": [
"3.8.0",
"3.8.2"
],
"@midwayjs/session": "3.8.0",
"@midwayjs/socketio": "3.8.0",
"@midwayjs/static-file": "3.8.0",
"@midwayjs/swagger": "3.8.0",
"@midwayjs/swagger": [
"3.8.0",
"3.8.2"
],
"@midwayjs/tablestore": "3.8.0",
"@midwayjs/typegoose": "3.8.0",
"@midwayjs/typeorm": "3.8.0",
"@midwayjs/upload": "3.8.0",
"@midwayjs/validate": "3.8.0",
"@midwayjs/version": [
"3.8.0",
"3.8.1"
"3.8.1",
"3.8.2"
],
"@midwayjs/view-ejs": "3.8.0",
"@midwayjs/view-nunjucks": "3.8.0",
Expand Down
21 changes: 21 additions & 0 deletions scripts/rollback/rollback-3.8.2.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
#!/bin/bash
# timestamp: 1669457456501

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
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
tnpm dist-tag add @midwayjs/[email protected] latest
tnpm dist-tag add @midwayjs/[email protected] beta

# Changes:

# - @midwayjs/sequelize: 3.8.0 => 3.8.2
# - @midwayjs/swagger: 3.8.0 => 3.8.2
# - @midwayjs/version: 3.8.1 => 3.8.2

0 comments on commit 2812173

Please sign in to comment.