Skip to content

Commit

Permalink
v3.15.5
Browse files Browse the repository at this point in the history
  • Loading branch information
czy88840616 committed Mar 20, 2024
1 parent fc03daa commit dd49d32
Show file tree
Hide file tree
Showing 9 changed files with 48 additions and 11 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,25 @@
# Change Log


## v3.15.5 (2024-03-20)

#### :bug: Bug Fix
* `cache-manager`
* [#3715](https://github.com/midwayjs/midway/pull/3715) fix: cache manager cache key overwrite when use custom logic ([@czy88840616](https://github.com/czy88840616))

#### :memo: Documentation
* [#3714](https://github.com/midwayjs/midway/pull/3714) the dosc fix of extension casbin ([@jingmingji](https://github.com/jingmingji))

#### :package: Dependencies
* `mikro`
* [#3711](https://github.com/midwayjs/midway/pull/3711) chore(deps): update mikro-orm monorepo to v6.1.11 ([@renovate[bot]](https://github.com/apps/renovate))

#### Committers: 2
- Harry Chen ([@czy88840616](https://github.com/czy88840616))
- [@jingmingji](https://github.com/jingmingji)



## v3.15.4 (2024-03-18)

#### :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.15.4"
"version": "3.15.5"
}
2 changes: 1 addition & 1 deletion packages/cache-manager/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@midwayjs/cache-manager",
"version": "3.15.2",
"version": "3.15.5",
"description": "midway cache manager",
"main": "dist/index.js",
"typings": "index.d.ts",
Expand Down
4 changes: 2 additions & 2 deletions packages/captcha/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@midwayjs/captcha",
"version": "3.15.2",
"version": "3.15.5",
"description": "Midway Component for Captcha(Verification Code)",
"main": "dist/index.js",
"typings": "index.d.ts",
Expand All @@ -22,7 +22,7 @@
},
"license": "MIT",
"dependencies": {
"@midwayjs/cache-manager": "^3.15.2",
"@midwayjs/cache-manager": "^3.15.5",
"mini-svg-data-uri": "1.4.4",
"nanoid": "3.3.7",
"svg-captcha": "1.4.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/mikro/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@midwayjs/mikro",
"version": "3.15.4",
"version": "3.15.5",
"main": "dist/index.js",
"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,5 +1,5 @@
module.exports = {
"decorator": "3.15.0",
"core": "3.15.0",
"timestamp": 1710721844903
"timestamp": 1710949323786
};
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.15.4",
"version": "3.15.5",
"description": "Midway Package Version Manager",
"main": "index.js",
"scripts": {
Expand Down
12 changes: 8 additions & 4 deletions packages/version/versions/3_15_0-3_15_0.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,14 @@
],
"@midwayjs/cache-manager": [
"3.15.0",
"3.15.2"
"3.15.2",
"3.15.5"
],
"@midwayjs/captcha": [
"3.15.0",
"3.15.1",
"3.15.2"
"3.15.2",
"3.15.5"
],
"@midwayjs/casbin": [
"3.15.0",
Expand Down Expand Up @@ -125,7 +127,8 @@
"3.15.1",
"3.15.2",
"3.15.3",
"3.15.4"
"3.15.4",
"3.15.5"
],
"@midwayjs/mock": [
"3.15.0",
Expand Down Expand Up @@ -242,7 +245,8 @@
"3.15.1",
"3.15.2",
"3.15.3",
"3.15.4"
"3.15.4",
"3.15.5"
],
"@midwayjs/view": [
"3.15.0",
Expand Down
14 changes: 14 additions & 0 deletions scripts/rollback/rollback-3.15.5.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#!/bin/bash
# timestamp: 1710949307824

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

# Changes:

# - @midwayjs/cache-manager: 3.15.2 => 3.15.5
# - @midwayjs/captcha: 3.15.2 => 3.15.5
# - @midwayjs/mikro: 3.15.4 => 3.15.5
# - @midwayjs/version: 3.15.4 => 3.15.5

0 comments on commit dd49d32

Please sign in to comment.