diff --git a/CHANGELOG.md b/CHANGELOG.md index 89c5ada7a1..ffc2ec90a8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [7.0.10](https://github.com/ionic-team/ionic-framework/compare/v7.0.9...v7.0.10) (2023-05-31) + + +### Bug Fixes + +* **angular:** remove invalid z-index style ([#27559](https://github.com/ionic-team/ionic-framework/issues/27559)) ([2ce00cf](https://github.com/ionic-team/ionic-framework/commit/2ce00cf292e01664e02ecaf64af229d6a371c480)) + + +### Performance Improvements + +* passive event listener for focus visible ([#27568](https://github.com/ionic-team/ionic-framework/issues/27568)) ([e54bf14](https://github.com/ionic-team/ionic-framework/commit/e54bf142c39743913d982a1f1709629b4b034969)), closes [#27566](https://github.com/ionic-team/ionic-framework/issues/27566) + + + + + ## [7.0.9](https://github.com/ionic-team/ionic-framework/compare/v7.0.8...v7.0.9) (2023-05-25) diff --git a/angular/CHANGELOG.md b/angular/CHANGELOG.md index 580c71c51d..6834a8a876 100644 --- a/angular/CHANGELOG.md +++ b/angular/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [7.0.10](https://github.com/ionic-team/ionic-framework/compare/v7.0.9...v7.0.10) (2023-05-31) + + +### Bug Fixes + +* **angular:** remove invalid z-index style ([#27559](https://github.com/ionic-team/ionic-framework/issues/27559)) ([2ce00cf](https://github.com/ionic-team/ionic-framework/commit/2ce00cf292e01664e02ecaf64af229d6a371c480)) + + + + + ## [7.0.9](https://github.com/ionic-team/ionic-framework/compare/v7.0.8...v7.0.9) (2023-05-25) **Note:** Version bump only for package @ionic/angular diff --git a/angular/package-lock.json b/angular/package-lock.json index 34df457e37..c78500ca9f 100644 --- a/angular/package-lock.json +++ b/angular/package-lock.json @@ -1,15 +1,15 @@ { "name": "@ionic/angular", - "version": "7.0.9", + "version": "7.0.10", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@ionic/angular", - "version": "7.0.9", + "version": "7.0.10", "license": "MIT", "dependencies": { - "@ionic/core": "^7.0.9", + "@ionic/core": "^7.0.10", "ionicons": "^7.0.0", "jsonc-parser": "^3.0.0", "tslib": "^2.3.0" @@ -1227,9 +1227,9 @@ "dev": true }, "node_modules/@ionic/core": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.0.9.tgz", - "integrity": "sha512-HcDtDUcjYCwQKrPpOOI+FWuMHi0DYbDJCww9qDTW52B6LLXktoPCcCxNI8oiERjabXQNLB38r9yQNDGyrs913w==", + "version": "7.0.10", + "resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.0.10.tgz", + "integrity": "sha512-twpnJdS/1XEXISuUGqQ1x4hp24J+8Pl++7syDWLpOG7fFQk/RIYXDPA9/NPY8Fi1jUngnA6ivdSmkFSpFES07Q==", "dependencies": { "@stencil/core": "^3.2.2", "ionicons": "^7.1.0", @@ -8104,9 +8104,9 @@ "dev": true }, "@ionic/core": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.0.9.tgz", - "integrity": "sha512-HcDtDUcjYCwQKrPpOOI+FWuMHi0DYbDJCww9qDTW52B6LLXktoPCcCxNI8oiERjabXQNLB38r9yQNDGyrs913w==", + "version": "7.0.10", + "resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.0.10.tgz", + "integrity": "sha512-twpnJdS/1XEXISuUGqQ1x4hp24J+8Pl++7syDWLpOG7fFQk/RIYXDPA9/NPY8Fi1jUngnA6ivdSmkFSpFES07Q==", "requires": { "@stencil/core": "^3.2.2", "ionicons": "^7.1.0", diff --git a/angular/package.json b/angular/package.json index 321d2c3e1b..bf428ecea8 100644 --- a/angular/package.json +++ b/angular/package.json @@ -1,6 +1,6 @@ { "name": "@ionic/angular", - "version": "7.0.9", + "version": "7.0.10", "description": "Angular specific wrappers for @ionic/core", "keywords": [ "ionic", @@ -47,7 +47,7 @@ } }, "dependencies": { - "@ionic/core": "^7.0.9", + "@ionic/core": "^7.0.10", "ionicons": "^7.0.0", "jsonc-parser": "^3.0.0", "tslib": "^2.3.0" diff --git a/core/CHANGELOG.md b/core/CHANGELOG.md index 4292f98824..69ea122a38 100644 --- a/core/CHANGELOG.md +++ b/core/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [7.0.10](https://github.com/ionic-team/ionic-framework/compare/v7.0.9...v7.0.10) (2023-05-31) + + +### Performance Improvements + +* passive event listener for focus visible ([#27568](https://github.com/ionic-team/ionic-framework/issues/27568)) ([e54bf14](https://github.com/ionic-team/ionic-framework/commit/e54bf142c39743913d982a1f1709629b4b034969)), closes [#27566](https://github.com/ionic-team/ionic-framework/issues/27566) + + + + + ## [7.0.9](https://github.com/ionic-team/ionic-framework/compare/v7.0.8...v7.0.9) (2023-05-25) diff --git a/core/package-lock.json b/core/package-lock.json index 87a9372a76..affab7a005 100644 --- a/core/package-lock.json +++ b/core/package-lock.json @@ -1,12 +1,12 @@ { "name": "@ionic/core", - "version": "7.0.9", + "version": "7.0.10", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@ionic/core", - "version": "7.0.9", + "version": "7.0.10", "license": "MIT", "dependencies": { "@stencil/core": "^3.2.2", diff --git a/core/package.json b/core/package.json index ddf6474b79..be7a959e9a 100644 --- a/core/package.json +++ b/core/package.json @@ -1,6 +1,6 @@ { "name": "@ionic/core", - "version": "7.0.9", + "version": "7.0.10", "description": "Base components for Ionic", "keywords": [ "ionic", diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 180bc2f34a..8c25738b55 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [7.0.10](https://github.com/ionic-team/ionic-framework/compare/v7.0.9...v7.0.10) (2023-05-31) + +**Note:** Version bump only for package @ionic/docs + + + + + ## [7.0.9](https://github.com/ionic-team/ionic-framework/compare/v7.0.8...v7.0.9) (2023-05-25) **Note:** Version bump only for package @ionic/docs diff --git a/docs/package-lock.json b/docs/package-lock.json index 07fb263b76..c6578bdd57 100644 --- a/docs/package-lock.json +++ b/docs/package-lock.json @@ -1,12 +1,12 @@ { "name": "@ionic/docs", - "version": "7.0.9", + "version": "7.0.10", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@ionic/docs", - "version": "7.0.9", + "version": "7.0.10", "license": "MIT" } } diff --git a/docs/package.json b/docs/package.json index 02247900c0..450a61c5dd 100644 --- a/docs/package.json +++ b/docs/package.json @@ -1,6 +1,6 @@ { "name": "@ionic/docs", - "version": "7.0.9", + "version": "7.0.10", "description": "Pre-packaged API documentation for the Ionic docs.", "main": "core.json", "types": "core.d.ts", diff --git a/lerna.json b/lerna.json index ce1f655adc..ebef7df9ef 100644 --- a/lerna.json +++ b/lerna.json @@ -5,5 +5,5 @@ "angular", "packages/*" ], - "version": "7.0.9" + "version": "7.0.10" } diff --git a/packages/angular-server/CHANGELOG.md b/packages/angular-server/CHANGELOG.md index bacd103cae..2dc8b7c0e7 100644 --- a/packages/angular-server/CHANGELOG.md +++ b/packages/angular-server/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [7.0.10](https://github.com/ionic-team/ionic-framework/compare/v7.0.9...v7.0.10) (2023-05-31) + +**Note:** Version bump only for package @ionic/angular-server + + + + + ## [7.0.9](https://github.com/ionic-team/ionic-framework/compare/v7.0.8...v7.0.9) (2023-05-25) **Note:** Version bump only for package @ionic/angular-server diff --git a/packages/angular-server/package-lock.json b/packages/angular-server/package-lock.json index e10c01a07d..ac82e1ddbe 100644 --- a/packages/angular-server/package-lock.json +++ b/packages/angular-server/package-lock.json @@ -1,15 +1,15 @@ { "name": "@ionic/angular-server", - "version": "7.0.9", + "version": "7.0.10", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@ionic/angular-server", - "version": "7.0.9", + "version": "7.0.10", "license": "MIT", "dependencies": { - "@ionic/core": "^7.0.9" + "@ionic/core": "^7.0.10" }, "devDependencies": { "@angular-eslint/eslint-plugin": "^14.0.0", @@ -1060,9 +1060,9 @@ "dev": true }, "node_modules/@ionic/core": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.0.9.tgz", - "integrity": "sha512-HcDtDUcjYCwQKrPpOOI+FWuMHi0DYbDJCww9qDTW52B6LLXktoPCcCxNI8oiERjabXQNLB38r9yQNDGyrs913w==", + "version": "7.0.10", + "resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.0.10.tgz", + "integrity": "sha512-twpnJdS/1XEXISuUGqQ1x4hp24J+8Pl++7syDWLpOG7fFQk/RIYXDPA9/NPY8Fi1jUngnA6ivdSmkFSpFES07Q==", "dependencies": { "@stencil/core": "^3.2.2", "ionicons": "^7.1.0", @@ -7342,9 +7342,9 @@ "dev": true }, "@ionic/core": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.0.9.tgz", - "integrity": "sha512-HcDtDUcjYCwQKrPpOOI+FWuMHi0DYbDJCww9qDTW52B6LLXktoPCcCxNI8oiERjabXQNLB38r9yQNDGyrs913w==", + "version": "7.0.10", + "resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.0.10.tgz", + "integrity": "sha512-twpnJdS/1XEXISuUGqQ1x4hp24J+8Pl++7syDWLpOG7fFQk/RIYXDPA9/NPY8Fi1jUngnA6ivdSmkFSpFES07Q==", "requires": { "@stencil/core": "^3.2.2", "ionicons": "^7.1.0", diff --git a/packages/angular-server/package.json b/packages/angular-server/package.json index 91128c32d0..b8b04b4bf9 100644 --- a/packages/angular-server/package.json +++ b/packages/angular-server/package.json @@ -1,6 +1,6 @@ { "name": "@ionic/angular-server", - "version": "7.0.9", + "version": "7.0.10", "description": "Angular SSR Module for Ionic", "keywords": [ "ionic", @@ -61,6 +61,6 @@ }, "prettier": "@ionic/prettier-config", "dependencies": { - "@ionic/core": "^7.0.9" + "@ionic/core": "^7.0.10" } } diff --git a/packages/react-router/CHANGELOG.md b/packages/react-router/CHANGELOG.md index 8990f28e75..c28ee8db8f 100644 --- a/packages/react-router/CHANGELOG.md +++ b/packages/react-router/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [7.0.10](https://github.com/ionic-team/ionic-framework/compare/v7.0.9...v7.0.10) (2023-05-31) + +**Note:** Version bump only for package @ionic/react-router + + + + + ## [7.0.9](https://github.com/ionic-team/ionic-framework/compare/v7.0.8...v7.0.9) (2023-05-25) **Note:** Version bump only for package @ionic/react-router diff --git a/packages/react-router/package-lock.json b/packages/react-router/package-lock.json index 30351e7e2d..bf7f1c850e 100644 --- a/packages/react-router/package-lock.json +++ b/packages/react-router/package-lock.json @@ -1,15 +1,15 @@ { "name": "@ionic/react-router", - "version": "7.0.9", + "version": "7.0.10", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@ionic/react-router", - "version": "7.0.9", + "version": "7.0.10", "license": "MIT", "dependencies": { - "@ionic/react": "^7.0.9", + "@ionic/react": "^7.0.10", "tslib": "*" }, "devDependencies": { @@ -205,9 +205,9 @@ "dev": true }, "node_modules/@ionic/core": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.0.9.tgz", - "integrity": "sha512-HcDtDUcjYCwQKrPpOOI+FWuMHi0DYbDJCww9qDTW52B6LLXktoPCcCxNI8oiERjabXQNLB38r9yQNDGyrs913w==", + "version": "7.0.10", + "resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.0.10.tgz", + "integrity": "sha512-twpnJdS/1XEXISuUGqQ1x4hp24J+8Pl++7syDWLpOG7fFQk/RIYXDPA9/NPY8Fi1jUngnA6ivdSmkFSpFES07Q==", "dependencies": { "@stencil/core": "^3.2.2", "ionicons": "^7.1.0", @@ -381,11 +381,11 @@ } }, "node_modules/@ionic/react": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@ionic/react/-/react-7.0.9.tgz", - "integrity": "sha512-P/+5liJ8tRVlYlZ/r4dVYvEkbKUqSbS/gw7jgKNIgpWNlSKWO7ZRkYt6oRPcVscDLa6jX4sA1yHbc3yBV+sDdg==", + "version": "7.0.10", + "resolved": "https://registry.npmjs.org/@ionic/react/-/react-7.0.10.tgz", + "integrity": "sha512-DggKOQ0JRsOSVY+YZicVhgz5gouL7APQ73kue3PsFK/OrtfeN/5om+XRkqO9bYHam/W/xVp3kpXSYcnsUICntA==", "dependencies": { - "@ionic/core": "7.0.9", + "@ionic/core": "7.0.10", "ionicons": "^7.0.0", "tslib": "*" }, @@ -2161,9 +2161,9 @@ } }, "node_modules/ionicons": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/ionicons/-/ionicons-7.1.1.tgz", - "integrity": "sha512-DmX2W0q95JgX2MYSXGDSkTHNYzIK5Y9aZS9jkO0gCPp4VzpP7bkJhHZQUmNErQdFA408aZzJuMGwDS1v2kU0gQ==", + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/ionicons/-/ionicons-7.1.2.tgz", + "integrity": "sha512-zZ4njAqSP39H8RRvZhJvkHsv7cBjYE/VfInH218Osf2UVxJITSOutTTd25MW+tAXKN5fheYzclUXUsF55JHUDg==", "dependencies": { "@stencil/core": "^2.18.0" } @@ -3643,9 +3643,9 @@ "dev": true }, "@ionic/core": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.0.9.tgz", - "integrity": "sha512-HcDtDUcjYCwQKrPpOOI+FWuMHi0DYbDJCww9qDTW52B6LLXktoPCcCxNI8oiERjabXQNLB38r9yQNDGyrs913w==", + "version": "7.0.10", + "resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.0.10.tgz", + "integrity": "sha512-twpnJdS/1XEXISuUGqQ1x4hp24J+8Pl++7syDWLpOG7fFQk/RIYXDPA9/NPY8Fi1jUngnA6ivdSmkFSpFES07Q==", "requires": { "@stencil/core": "^3.2.2", "ionicons": "^7.1.0", @@ -3749,11 +3749,11 @@ "requires": {} }, "@ionic/react": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@ionic/react/-/react-7.0.9.tgz", - "integrity": "sha512-P/+5liJ8tRVlYlZ/r4dVYvEkbKUqSbS/gw7jgKNIgpWNlSKWO7ZRkYt6oRPcVscDLa6jX4sA1yHbc3yBV+sDdg==", + "version": "7.0.10", + "resolved": "https://registry.npmjs.org/@ionic/react/-/react-7.0.10.tgz", + "integrity": "sha512-DggKOQ0JRsOSVY+YZicVhgz5gouL7APQ73kue3PsFK/OrtfeN/5om+XRkqO9bYHam/W/xVp3kpXSYcnsUICntA==", "requires": { - "@ionic/core": "7.0.9", + "@ionic/core": "7.0.10", "ionicons": "^7.0.0", "tslib": "*" } @@ -5002,9 +5002,9 @@ } }, "ionicons": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/ionicons/-/ionicons-7.1.1.tgz", - "integrity": "sha512-DmX2W0q95JgX2MYSXGDSkTHNYzIK5Y9aZS9jkO0gCPp4VzpP7bkJhHZQUmNErQdFA408aZzJuMGwDS1v2kU0gQ==", + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/ionicons/-/ionicons-7.1.2.tgz", + "integrity": "sha512-zZ4njAqSP39H8RRvZhJvkHsv7cBjYE/VfInH218Osf2UVxJITSOutTTd25MW+tAXKN5fheYzclUXUsF55JHUDg==", "requires": { "@stencil/core": "^2.18.0" }, diff --git a/packages/react-router/package.json b/packages/react-router/package.json index 66f331e335..e54c84436b 100644 --- a/packages/react-router/package.json +++ b/packages/react-router/package.json @@ -1,6 +1,6 @@ { "name": "@ionic/react-router", - "version": "7.0.9", + "version": "7.0.10", "description": "React Router wrapper for @ionic/react", "keywords": [ "ionic", @@ -37,7 +37,7 @@ "dist/" ], "dependencies": { - "@ionic/react": "^7.0.9", + "@ionic/react": "^7.0.10", "tslib": "*" }, "peerDependencies": { diff --git a/packages/react/CHANGELOG.md b/packages/react/CHANGELOG.md index e49e3ed057..046a007a76 100644 --- a/packages/react/CHANGELOG.md +++ b/packages/react/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [7.0.10](https://github.com/ionic-team/ionic-framework/compare/v7.0.9...v7.0.10) (2023-05-31) + +**Note:** Version bump only for package @ionic/react + + + + + ## [7.0.9](https://github.com/ionic-team/ionic-framework/compare/v7.0.8...v7.0.9) (2023-05-25) diff --git a/packages/react/package-lock.json b/packages/react/package-lock.json index c96d328669..e10cd3700b 100644 --- a/packages/react/package-lock.json +++ b/packages/react/package-lock.json @@ -1,15 +1,15 @@ { "name": "@ionic/react", - "version": "7.0.9", + "version": "7.0.10", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@ionic/react", - "version": "7.0.9", + "version": "7.0.10", "license": "MIT", "dependencies": { - "@ionic/core": "^7.0.9", + "@ionic/core": "^7.0.10", "ionicons": "^7.0.0", "tslib": "*" }, @@ -697,9 +697,9 @@ "dev": true }, "node_modules/@ionic/core": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.0.9.tgz", - "integrity": "sha512-HcDtDUcjYCwQKrPpOOI+FWuMHi0DYbDJCww9qDTW52B6LLXktoPCcCxNI8oiERjabXQNLB38r9yQNDGyrs913w==", + "version": "7.0.10", + "resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.0.10.tgz", + "integrity": "sha512-twpnJdS/1XEXISuUGqQ1x4hp24J+8Pl++7syDWLpOG7fFQk/RIYXDPA9/NPY8Fi1jUngnA6ivdSmkFSpFES07Q==", "dependencies": { "@stencil/core": "^3.2.2", "ionicons": "^7.1.0", @@ -11778,9 +11778,9 @@ "dev": true }, "@ionic/core": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.0.9.tgz", - "integrity": "sha512-HcDtDUcjYCwQKrPpOOI+FWuMHi0DYbDJCww9qDTW52B6LLXktoPCcCxNI8oiERjabXQNLB38r9yQNDGyrs913w==", + "version": "7.0.10", + "resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.0.10.tgz", + "integrity": "sha512-twpnJdS/1XEXISuUGqQ1x4hp24J+8Pl++7syDWLpOG7fFQk/RIYXDPA9/NPY8Fi1jUngnA6ivdSmkFSpFES07Q==", "requires": { "@stencil/core": "^3.2.2", "ionicons": "^7.1.0", diff --git a/packages/react/package.json b/packages/react/package.json index ab918d1503..9e8703dbc0 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,6 +1,6 @@ { "name": "@ionic/react", - "version": "7.0.9", + "version": "7.0.10", "description": "React specific wrapper for @ionic/core", "keywords": [ "ionic", @@ -41,7 +41,7 @@ "css/" ], "dependencies": { - "@ionic/core": "^7.0.9", + "@ionic/core": "^7.0.10", "ionicons": "^7.0.0", "tslib": "*" }, diff --git a/packages/vue-router/CHANGELOG.md b/packages/vue-router/CHANGELOG.md index 6be0f2d425..0971544528 100644 --- a/packages/vue-router/CHANGELOG.md +++ b/packages/vue-router/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [7.0.10](https://github.com/ionic-team/ionic-framework/compare/v7.0.9...v7.0.10) (2023-05-31) + +**Note:** Version bump only for package @ionic/vue-router + + + + + ## [7.0.9](https://github.com/ionic-team/ionic-framework/compare/v7.0.8...v7.0.9) (2023-05-25) **Note:** Version bump only for package @ionic/vue-router diff --git a/packages/vue-router/package-lock.json b/packages/vue-router/package-lock.json index 92a84e5fcd..144f9eee30 100644 --- a/packages/vue-router/package-lock.json +++ b/packages/vue-router/package-lock.json @@ -1,15 +1,15 @@ { "name": "@ionic/vue-router", - "version": "7.0.9", + "version": "7.0.10", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@ionic/vue-router", - "version": "7.0.9", + "version": "7.0.10", "license": "MIT", "dependencies": { - "@ionic/vue": "^7.0.9" + "@ionic/vue": "^7.0.10" }, "devDependencies": { "@ionic/eslint-config": "^0.3.0", @@ -660,9 +660,9 @@ "dev": true }, "node_modules/@ionic/core": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.0.9.tgz", - "integrity": "sha512-HcDtDUcjYCwQKrPpOOI+FWuMHi0DYbDJCww9qDTW52B6LLXktoPCcCxNI8oiERjabXQNLB38r9yQNDGyrs913w==", + "version": "7.0.10", + "resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.0.10.tgz", + "integrity": "sha512-twpnJdS/1XEXISuUGqQ1x4hp24J+8Pl++7syDWLpOG7fFQk/RIYXDPA9/NPY8Fi1jUngnA6ivdSmkFSpFES07Q==", "dependencies": { "@stencil/core": "^3.2.2", "ionicons": "^7.1.0", @@ -851,11 +851,11 @@ } }, "node_modules/@ionic/vue": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@ionic/vue/-/vue-7.0.9.tgz", - "integrity": "sha512-TrFkhumhPHcV0JNaPc3DzdrKExSLcUXsqQP1uyDYKBwUETcMFijoBr1dzbPTS39cxaMo096MADp+bgghYHYB0Q==", + "version": "7.0.10", + "resolved": "https://registry.npmjs.org/@ionic/vue/-/vue-7.0.10.tgz", + "integrity": "sha512-3e3bHGBhhS85byghSbp3U1JP24lHrNilzN4WkBgc9aBeQvwczDNTO69qpiF69fJKDAvU1OrJaAbyomrskE9F9g==", "dependencies": { - "@ionic/core": "7.0.9", + "@ionic/core": "7.0.10", "ionicons": "^7.0.0" } }, @@ -4066,9 +4066,9 @@ } }, "node_modules/ionicons": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/ionicons/-/ionicons-7.1.1.tgz", - "integrity": "sha512-DmX2W0q95JgX2MYSXGDSkTHNYzIK5Y9aZS9jkO0gCPp4VzpP7bkJhHZQUmNErQdFA408aZzJuMGwDS1v2kU0gQ==", + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/ionicons/-/ionicons-7.1.2.tgz", + "integrity": "sha512-zZ4njAqSP39H8RRvZhJvkHsv7cBjYE/VfInH218Osf2UVxJITSOutTTd25MW+tAXKN5fheYzclUXUsF55JHUDg==", "dependencies": { "@stencil/core": "^2.18.0" } @@ -7677,9 +7677,9 @@ "dev": true }, "@ionic/core": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.0.9.tgz", - "integrity": "sha512-HcDtDUcjYCwQKrPpOOI+FWuMHi0DYbDJCww9qDTW52B6LLXktoPCcCxNI8oiERjabXQNLB38r9yQNDGyrs913w==", + "version": "7.0.10", + "resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.0.10.tgz", + "integrity": "sha512-twpnJdS/1XEXISuUGqQ1x4hp24J+8Pl++7syDWLpOG7fFQk/RIYXDPA9/NPY8Fi1jUngnA6ivdSmkFSpFES07Q==", "requires": { "@stencil/core": "^3.2.2", "ionicons": "^7.1.0", @@ -7792,11 +7792,11 @@ "requires": {} }, "@ionic/vue": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@ionic/vue/-/vue-7.0.9.tgz", - "integrity": "sha512-TrFkhumhPHcV0JNaPc3DzdrKExSLcUXsqQP1uyDYKBwUETcMFijoBr1dzbPTS39cxaMo096MADp+bgghYHYB0Q==", + "version": "7.0.10", + "resolved": "https://registry.npmjs.org/@ionic/vue/-/vue-7.0.10.tgz", + "integrity": "sha512-3e3bHGBhhS85byghSbp3U1JP24lHrNilzN4WkBgc9aBeQvwczDNTO69qpiF69fJKDAvU1OrJaAbyomrskE9F9g==", "requires": { - "@ionic/core": "7.0.9", + "@ionic/core": "7.0.10", "ionicons": "^7.0.0" } }, @@ -10201,9 +10201,9 @@ } }, "ionicons": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/ionicons/-/ionicons-7.1.1.tgz", - "integrity": "sha512-DmX2W0q95JgX2MYSXGDSkTHNYzIK5Y9aZS9jkO0gCPp4VzpP7bkJhHZQUmNErQdFA408aZzJuMGwDS1v2kU0gQ==", + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/ionicons/-/ionicons-7.1.2.tgz", + "integrity": "sha512-zZ4njAqSP39H8RRvZhJvkHsv7cBjYE/VfInH218Osf2UVxJITSOutTTd25MW+tAXKN5fheYzclUXUsF55JHUDg==", "requires": { "@stencil/core": "^2.18.0" }, diff --git a/packages/vue-router/package.json b/packages/vue-router/package.json index dc1fade87b..2de52d1aeb 100644 --- a/packages/vue-router/package.json +++ b/packages/vue-router/package.json @@ -1,6 +1,6 @@ { "name": "@ionic/vue-router", - "version": "7.0.9", + "version": "7.0.10", "description": "Vue Router integration for @ionic/vue", "scripts": { "test.spec": "jest", @@ -45,7 +45,7 @@ }, "homepage": "https://github.com/ionic-team/ionic#readme", "dependencies": { - "@ionic/vue": "^7.0.9" + "@ionic/vue": "^7.0.10" }, "devDependencies": { "@ionic/eslint-config": "^0.3.0", diff --git a/packages/vue/CHANGELOG.md b/packages/vue/CHANGELOG.md index 9ff37450a0..86ac3e75f1 100644 --- a/packages/vue/CHANGELOG.md +++ b/packages/vue/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [7.0.10](https://github.com/ionic-team/ionic-framework/compare/v7.0.9...v7.0.10) (2023-05-31) + +**Note:** Version bump only for package @ionic/vue + + + + + ## [7.0.9](https://github.com/ionic-team/ionic-framework/compare/v7.0.8...v7.0.9) (2023-05-25) diff --git a/packages/vue/package-lock.json b/packages/vue/package-lock.json index aaf488174f..2b31d3441e 100644 --- a/packages/vue/package-lock.json +++ b/packages/vue/package-lock.json @@ -1,15 +1,15 @@ { "name": "@ionic/vue", - "version": "7.0.9", + "version": "7.0.10", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@ionic/vue", - "version": "7.0.9", + "version": "7.0.10", "license": "MIT", "dependencies": { - "@ionic/core": "^7.0.9", + "@ionic/core": "^7.0.10", "ionicons": "^7.0.0" }, "devDependencies": { @@ -207,9 +207,9 @@ "dev": true }, "node_modules/@ionic/core": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.0.9.tgz", - "integrity": "sha512-HcDtDUcjYCwQKrPpOOI+FWuMHi0DYbDJCww9qDTW52B6LLXktoPCcCxNI8oiERjabXQNLB38r9yQNDGyrs913w==", + "version": "7.0.10", + "resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.0.10.tgz", + "integrity": "sha512-twpnJdS/1XEXISuUGqQ1x4hp24J+8Pl++7syDWLpOG7fFQk/RIYXDPA9/NPY8Fi1jUngnA6ivdSmkFSpFES07Q==", "dependencies": { "@stencil/core": "^3.2.2", "ionicons": "^7.1.0", @@ -3746,9 +3746,9 @@ "dev": true }, "@ionic/core": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.0.9.tgz", - "integrity": "sha512-HcDtDUcjYCwQKrPpOOI+FWuMHi0DYbDJCww9qDTW52B6LLXktoPCcCxNI8oiERjabXQNLB38r9yQNDGyrs913w==", + "version": "7.0.10", + "resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.0.10.tgz", + "integrity": "sha512-twpnJdS/1XEXISuUGqQ1x4hp24J+8Pl++7syDWLpOG7fFQk/RIYXDPA9/NPY8Fi1jUngnA6ivdSmkFSpFES07Q==", "requires": { "@stencil/core": "^3.2.2", "ionicons": "^7.1.0", diff --git a/packages/vue/package.json b/packages/vue/package.json index 4c4a34368f..b3d9078d34 100644 --- a/packages/vue/package.json +++ b/packages/vue/package.json @@ -1,6 +1,6 @@ { "name": "@ionic/vue", - "version": "7.0.9", + "version": "7.0.10", "description": "Vue specific wrapper for @ionic/core", "scripts": { "eslint": "eslint src", @@ -66,7 +66,7 @@ "vue-router": "^4.0.16" }, "dependencies": { - "@ionic/core": "^7.0.9", + "@ionic/core": "^7.0.10", "ionicons": "^7.0.0" }, "vetur": {