Commit c9e44ce9af3072772c5eacc83fabaa438f5e9319

Authored by vben
1 parent 54d14056

chore: bump 2.0.0.rc12

CHANGELOG.en_US.md
  1 +## 2.0.0-rc.12 (2020-11-30)
  2 +
  3 +## (破坏性更新) Breaking changes
  4 +
  5 +- The ClickOutSide component import method is changed from `import ClickOutSide from'/@/components/ClickOutSide/index.vue'` to `import {ClickOutSide} from'/@/components/ClickOutSide'`
  6 +- Button component import method changed from `import ClickOutSide from'/@/components/Button/index.vue'` to `import {Button} from'/@/components/Button'`
  7 +- StrengthMeter component import method is changed from `import StrengthMeter from'/@/components/StrengthMeter'` to `import {StrengthMeter} from'/@/components/StrengthMeter'`
  8 +- In addition to the examples, the global internationalization function is added, supporting Chinese and English
  9 +
  10 +### ✨ Refactor
  11 +
  12 +- Refactor the overall layout. Change the code implementation method. Code is more streamlined
  13 +- Configuration item reconstruction
  14 +- Remove messageSetting configuration
  15 +- BasicTitle component `showSpan`=> `span`
  16 +
  17 +### ✨ Features
  18 +
  19 +- The cache can be configured to encrypt or not, and Aes encryption is enabled in the production environment by default
  20 +- Add tab drag and drop sort
  21 +- Added LayoutFooter. The default display, can be closed in the configuration
  22 +
  23 +### ⚡ Performance Improvements
  24 +
  25 +- Optimized the problem that the full screen animation of `Modal` component is not smooth
  26 +
  27 +### 🐛 Bug Fixes
  28 +
  29 +- tree: Fix the problem that the text exceeds the operation button
  30 +- useRedo: Fix the problem of missing parameters when refreshing the page through useRedo
  31 +- form: Fix the problem that the form verification is first set in the verification and the console error message
  32 +- `modal`&`drawer` fix the problem of component passing array parameters
  33 +- form: fix `updateSchema` does not take effect when the value contains `[]`
  34 +- table: Fix the display problem of the table `TableAction` icon
  35 +- table: fix table column settings not displayed by `setColumns` setting
  36 +
  37 +### 🎫 Chores
  38 +
  39 +- Update antdv to `2.0.0-rc.2`
  40 +- Update vue to `3.0.3`
  41 +- Update vite to `1.0.0.rc13`
  42 +- Temporarily delete `@vueuse/core`. After it is stable, it will be integrated. It is currently not stable.
  43 +
1 44 ## 2.0.0-rc.11 (2020-11-18)
2 45  
3 46 ### ✨ Features
... ...
CHANGELOG.zh_CN.md
1   -## Wip
  1 +## 2.0.0-rc.12 (2020-11-30)
2 2  
3 3 ## (破坏性更新) Breaking changes
4 4  
... ...
package.json
1 1 {
2 2 "name": "vben-admin-2.0",
3   - "version": "2.0.0-rc.11",
  3 + "version": "2.0.0-rc.12",
4 4 "scripts": {
5 5 "bootstrap": "yarn install",
6 6 "serve": "esno ./build/script/preserve.ts && cross-env NODE_ENV=development vite",
... ...