From c1fe16193e603f343a298c970dda2aa26da3b1d9 Mon Sep 17 00:00:00 2001 From: Liam DeBeasi Date: Thu, 17 Sep 2020 11:34:41 -0400 Subject: [PATCH] chore(): release Ionic Vue 0.4.0 (#22105) --- core/package-lock.json | 2 +- core/package.json | 2 +- packages/vue-router/package-lock.json | 16 ++++++++-------- packages/vue-router/package.json | 4 ++-- packages/vue/CHANGELOG.md | 17 +++++++++++++++++ packages/vue/package-lock.json | 2 +- packages/vue/package.json | 4 ++-- 7 files changed, 32 insertions(+), 15 deletions(-) diff --git a/core/package-lock.json b/core/package-lock.json index 7b7d876478..0c8a426568 100644 --- a/core/package-lock.json +++ b/core/package-lock.json @@ -1,6 +1,6 @@ { "name": "@ionic/core", - "version": "5.4.0-dev.202009151947.352e16b", + "version": "0.4.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/core/package.json b/core/package.json index a9d3973c7b..0f4661ce5c 100644 --- a/core/package.json +++ b/core/package.json @@ -1,6 +1,6 @@ { "name": "@ionic/core", - "version": "5.4.0-dev.202009151947.352e16b", + "version": "0.4.0", "description": "Base components for Ionic", "keywords": [ "ionic", diff --git a/packages/vue-router/package-lock.json b/packages/vue-router/package-lock.json index 2d3ee80ddc..1af1bf513a 100644 --- a/packages/vue-router/package-lock.json +++ b/packages/vue-router/package-lock.json @@ -1,6 +1,6 @@ { "name": "@ionic/vue-router", - "version": "5.4.0-dev.202009151837.5c69db1", + "version": "0.4.0", "lockfileVersion": 1, "requires": true, "dependencies": { @@ -452,9 +452,9 @@ } }, "@ionic/core": { - "version": "0.2.0-5", - "resolved": "https://registry.npmjs.org/@ionic/core/-/core-0.2.0-5.tgz", - "integrity": "sha512-6G26jBbk0HOEbGqvgtTp/x4CrjWPLp0sQoTbeUkoJC5qHgs8rQbt77wJjbja6iSQbMGZIQQc1gLDviVQoaY9EA==", + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/@ionic/core/-/core-0.3.1.tgz", + "integrity": "sha512-Qdo1Sc5SMFDn3X/pT+5KtOATpgpDJbWLEBzZxHk+2GKfZ5Ypv/qMRg/II/IaoH2GmeIZoKdDmLGTQQjqVw1/oA==", "dev": true, "requires": { "ionicons": "^5.1.2", @@ -462,12 +462,12 @@ } }, "@ionic/vue": { - "version": "0.2.0-5", - "resolved": "https://registry.npmjs.org/@ionic/vue/-/vue-0.2.0-5.tgz", - "integrity": "sha512-NYMFmWRPmCnm4oEdsEJajs4lg8OTTM7ICSxAJRnWyO4pf/6UFlWQvCpHW7MaWcQB7wpeqYkQkg7bSFQXiAZt2g==", + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/@ionic/vue/-/vue-0.3.1.tgz", + "integrity": "sha512-9pfIaMVKiBcvsdJ5XEAwOILhiGyDmqQOXBlDfka8QeYQ9xpdSntP9IlmEzkPfvHaHnxQeeVqaWAaStg3OOksug==", "dev": true, "requires": { - "@ionic/core": "0.2.0-5", + "@ionic/core": "0.3.1", "ionicons": "^5.1.2" } }, diff --git a/packages/vue-router/package.json b/packages/vue-router/package.json index ccbcbc411c..cd7e5d74d0 100644 --- a/packages/vue-router/package.json +++ b/packages/vue-router/package.json @@ -1,6 +1,6 @@ { "name": "@ionic/vue-router", - "version": "5.4.0-dev.202009101934.5ffa65f", + "version": "0.4.0", "description": "Vue Router integration for @ionic/vue", "scripts": { "test.spec": "jest", @@ -42,7 +42,7 @@ }, "homepage": "https://github.com/ionic-team/ionic#readme", "devDependencies": { - "@ionic/vue": "0.3.1", + "@ionic/vue": "0.4.0", "@types/jest": "^26.0.13", "@types/node": "^14.10.1", "jest": "^26.4.2", diff --git a/packages/vue/CHANGELOG.md b/packages/vue/CHANGELOG.md index 5577b95058..56fa2f47fd 100644 --- a/packages/vue/CHANGELOG.md +++ b/packages/vue/CHANGELOG.md @@ -1,5 +1,22 @@ # Ionic Vue +# 0.4.0 + +### Bug Fixes + +* **vue:** canGoBack now returns correct result with initial load redirect ([#22071](https://github.com/ionic-team/ionic/issues/22071)) ([8227844](https://github.com/ionic-team/ionic/commit/8227844cbc6da252acb97bfa0f9a2cefa40185f9)) +* **vue:** ensure dynamic classes are synced with internal Ionic component classes ([#22096](https://github.com/ionic-team/ionic/issues/22096)) ([9cb22be](https://github.com/ionic-team/ionic/commit/9cb22be91a232c395780f7ceb50c3e9ae28e7dc2)), closes [#22051](https://github.com/ionic-team/ionic/issues/22051) +* **vue:** using refs with v-model now works properly ([#22092](https://github.com/ionic-team/ionic/issues/22092)) ([67fbb3b](https://github.com/ionic-team/ionic/commit/67fbb3b963e2e75284b578777057c0822720fb1e)), closes [#22076](https://github.com/ionic-team/ionic/issues/22076) + + +### Features + +* **vue:** add hardware back button hook ([#22069](https://github.com/ionic-team/ionic/issues/22069)) ([a7f564b](https://github.com/ionic-team/ionic/commit/a7f564b818a6ce5f97d999934d5cca77da1b2c83)) +* **vue:** add hook to access Ionic Vue router ([#22072](https://github.com/ionic-team/ionic/issues/22072)) ([3d34b68](https://github.com/ionic-team/ionic/commit/3d34b68fbd25b724b6f89c01642788d325f6e909)) +* **vue:** add webHashHistory and memoryHistory options for router ([#22101](https://github.com/ionic-team/ionic/issues/22101)) ([fe2cf22](https://github.com/ionic-team/ionic/commit/fe2cf22f5dab4e13458be0a93d38d346a03f7e3d)) + + + ## 0.3.1 * Vue 3 support diff --git a/packages/vue/package-lock.json b/packages/vue/package-lock.json index 13e6dc1211..0128404d2b 100644 --- a/packages/vue/package-lock.json +++ b/packages/vue/package-lock.json @@ -1,6 +1,6 @@ { "name": "@ionic/vue", - "version": "5.4.0-dev.202009151837.5c69db1", + "version": "0.4.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/packages/vue/package.json b/packages/vue/package.json index e352d31670..6a7c34f81a 100644 --- a/packages/vue/package.json +++ b/packages/vue/package.json @@ -1,6 +1,6 @@ { "name": "@ionic/vue", - "version": "5.4.0-dev.202009101933.5ffa65f", + "version": "0.4.0", "description": "Vue specific wrapper for @ionic/core", "scripts": { "lint": "echo add linter", @@ -52,7 +52,7 @@ "workbox-build": "4.3.1" }, "dependencies": { - "@ionic/core": "0.3.1", + "@ionic/core": "0.4.0", "ionicons": "^5.1.2" } }