Commit 51a9f6b3da3a7b2d09b6e1d90ffde05e6ca0e3dc
1 parent
c77f7e62
chore: bump 2.3.0
Showing
4 changed files
with
48 additions
and
3 deletions
CHANGELOG.en_US.md
1 | +## 2.3.0 (2021-04-10) | ||
2 | + | ||
3 | +## (Breaking changes) Breaking changes | ||
4 | + | ||
5 | +- Use `pinia` to replace `vuex`, `vuex-module-decorators`. | ||
6 | + | ||
7 | + -Impact, if you used vuex-module-decorators yourself before, you need to transform it to pinia. | ||
8 | + | ||
9 | + - the reason: -pinia is basically similar to vuex5api and is easy to understand. -Subsequent switching to vuex5 has a very low cost and can also be used as a third-party state management library | ||
10 | + | ||
11 | +- Remove `useKeyPress` and use `vueuse`-`onKeyStroke` instead | ||
12 | +- Remove `useDebounceFn` and use `vueuse`-`useDebounceFn` instead | ||
13 | +- Remove `useThrottle` and use `vueuse`-`useThrottleFn` instead | ||
14 | + | ||
15 | +### ✨ Features | ||
16 | + | ||
17 | +- Tabs support persistent storage | ||
18 | + | ||
19 | +### ✨ Refactor | ||
20 | + | ||
21 | +- Remove `useElResize` | ||
22 | + | ||
23 | +### 🐛 Bug Fixes | ||
24 | + | ||
25 | +- Login page style fix | ||
26 | +- Fix the known problems of the menu | ||
27 | +- Fix the problem of theme style switching | ||
28 | + | ||
1 | ## 2.2.0 (2021-04-06) | 29 | ## 2.2.0 (2021-04-06) |
2 | 30 | ||
3 | ### ✨ Features | 31 | ### ✨ Features |
CHANGELOG.md
1 | +# [2.3.0](https://github.com/anncwb/vue-vben-admin/compare/v2.2.0...v2.3.0) (2021-04-10) | ||
2 | + | ||
3 | +### Bug Fixes | ||
4 | + | ||
5 | +- **api-select:** make sure the type is correct, fix [#468](https://github.com/anncwb/vue-vben-admin/issues/468) ([37c5741](https://github.com/anncwb/vue-vben-admin/commit/37c5741601951349f622801a48a7bf9e45d723a4)) | ||
6 | +- **menu:** improve menu logic, fix [#461](https://github.com/anncwb/vue-vben-admin/issues/461) ([ee1c349](https://github.com/anncwb/vue-vben-admin/commit/ee1c3498587951a6a4cc0b49edb9dacf3f2af5c3)) | ||
7 | +- **theme:** make sure the menu style is correct, fix [#382](https://github.com/anncwb/vue-vben-admin/issues/382) ([c77f7e6](https://github.com/anncwb/vue-vben-admin/commit/c77f7e62aba51072325dffdb01d3c0cc87c578b0)) | ||
8 | +- **theme:** make sure the steps style is correct, fix [#414](https://github.com/anncwb/vue-vben-admin/issues/414) ([640a2c1](https://github.com/anncwb/vue-vben-admin/commit/640a2c17986e2b59be57125e91051ec879f31eeb)) | ||
9 | +- improve login page style ([780a8a6](https://github.com/anncwb/vue-vben-admin/commit/780a8a67b874ca1c8d05c2561f88081cc4ec4b28)) | ||
10 | +- Improve the picture cropping component ([#463](https://github.com/anncwb/vue-vben-admin/issues/463)) ([700306b](https://github.com/anncwb/vue-vben-admin/commit/700306bb45d5f2b975c20bd2581fb87a210e589c)) | ||
11 | +- login page overflow show problem ([#455](https://github.com/anncwb/vue-vben-admin/issues/455)) ([af6d58e](https://github.com/anncwb/vue-vben-admin/commit/af6d58eb26875f02afb419d9d4d5ee2454292863)) | ||
12 | + | ||
13 | +### Features | ||
14 | + | ||
15 | +- persistent save tab, fix [#359](https://github.com/anncwb/vue-vben-admin/issues/359) ([967b28c](https://github.com/anncwb/vue-vben-admin/commit/967b28c4c06cf92e9ab90cff51f59a0d6ced5d7b)) | ||
16 | + | ||
1 | # [2.2.0](https://github.com/anncwb/vue-vben-admin/compare/v2.1.1...v2.2.0) (2021-04-07) | 17 | # [2.2.0](https://github.com/anncwb/vue-vben-admin/compare/v2.1.1...v2.2.0) (2021-04-07) |
2 | 18 | ||
3 | ### Bug Fixes | 19 | ### Bug Fixes |
CHANGELOG.zh_CN.md
package.json
1 | { | 1 | { |
2 | "name": "vben-admin", | 2 | "name": "vben-admin", |
3 | - "version": "2.2.0", | 3 | + "version": "2.3.0", |
4 | "author": { | 4 | "author": { |
5 | "name": "vben", | 5 | "name": "vben", |
6 | "email": "anncwb@126.com", | 6 | "email": "anncwb@126.com", |
@@ -113,7 +113,7 @@ | @@ -113,7 +113,7 @@ | ||
113 | "vite-plugin-pwa": "^0.7.0", | 113 | "vite-plugin-pwa": "^0.7.0", |
114 | "vite-plugin-style-import": "^0.9.2", | 114 | "vite-plugin-style-import": "^0.9.2", |
115 | "vite-plugin-svg-icons": "^0.4.1", | 115 | "vite-plugin-svg-icons": "^0.4.1", |
116 | - "vite-plugin-theme": "^0.6.4", | 116 | + "vite-plugin-theme": "^0.6.5", |
117 | "vite-plugin-windicss": "0.13.2", | 117 | "vite-plugin-windicss": "0.13.2", |
118 | "vue-eslint-parser": "^7.6.0" | 118 | "vue-eslint-parser": "^7.6.0" |
119 | }, | 119 | }, |