Skip to content

Commit e5c36fd

Browse files
committed
release: release v1.4.3
1 parent b043ce3 commit e5c36fd

File tree

4 files changed

+22
-3
lines changed

4 files changed

+22
-3
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
### [1.4.3](https://github.com/runkids/vue-condition-watcher/releases/tag/1.4.3) (2022-01-13)
2+
* Fix: Sync query string to conditions convert type bug fix, need check the initial array value type before update conditions.
3+
```js
4+
// If query string &types=1,2,3
5+
const conditions = {
6+
types: []
7+
}
8+
// the conditions.types convert value will be ['1', '2', '3']
9+
10+
const conditions = {
11+
types: ['1']
12+
}
13+
// the conditions.types convert value will be ['1', '2', '3']
14+
15+
const conditions = {
16+
types: [1]
17+
}
18+
// the conditions.types convert value will be [1, 2, 3]
19+
```
120
### [1.4.2](https://github.com/runkids/vue-condition-watcher/releases/tag/1.4.2) (2022-01-10)
221
* Fix: Cache not work on globally.
322
### Changed

examples/vue2/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"@vue/composition-api": "^1.4.3",
1212
"core-js": "^3.6.5",
1313
"vue": "^2.6.14",
14-
"vue-condition-watcher": "1.4.2",
14+
"vue-condition-watcher": "1.4.3",
1515
"vue-infinite-scroll": "^2.0.2",
1616
"vue-router": "^3.3.4"
1717
},

examples/vue3/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"dependencies": {
99
"element-plus": "^1.3.0-beta.1",
1010
"vue": "^3.2.26",
11-
"vue-condition-watcher": "1.4.2",
11+
"vue-condition-watcher": "1.4.3",
1212
"vue-router": "^4.0.10"
1313
},
1414
"devDependencies": {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-condition-watcher",
3-
"version": "1.4.2",
3+
"version": "1.4.3",
44
"description": "Vue composition API for automatic data fetching. With conditions as the core. Easily control and sync to URL query string by conditions",
55
"main": "./dist/index.js",
66
"module": "./esm/index.js",

0 commit comments

Comments
 (0)