This commit is contained in:
Liam DeBeasi
2021-12-07 09:21:00 -05:00
parent 5e5054d369
commit da3b93b4a2
14 changed files with 62 additions and 45 deletions

View File

@ -1,3 +1,20 @@
## [5.9.2](https://github.com/ionic-team/ionic/compare/v5.9.1...v5.9.2) (2021-12-07)
### Bug Fixes
* **angular:** improve typing when compiling with legacy View Engine ([#24221](https://github.com/ionic-team/ionic/issues/24221)) ([816096f](https://github.com/ionic-team/ionic/commit/816096f89747e943a4a273175d384189f25e4628))
* **content:** ensure fixed slot renders on top of content in iOS ([#24300](https://github.com/ionic-team/ionic/issues/24300)) ([e41b0e0](https://github.com/ionic-team/ionic/commit/e41b0e0cf2a794972d7f4d8943a0bec3d1e08016)), closes [#24286](https://github.com/ionic-team/ionic-framework/issues/24286)
* **popover:** improve scrolling in popover when using header and footer ([#24294](https://github.com/ionic-team/ionic/issues/24294)) ([f6a00ea](https://github.com/ionic-team/ionic/commit/f6a00ea9544aa70620b5f8f65a7702fa3bedd974))
* **react:** present and dismiss hooks return promises ([#24299](https://github.com/ionic-team/ionic/issues/24299)) ([4b26fea](https://github.com/ionic-team/ionic/commit/4b26feaa47efed4806aba565a52554db232b99e2)), closes [#24293](https://github.com/ionic-team/ionic-framework/issues/24293)
* **react:** properly check for custom elements to avoid errors in unit tests ([#24156](https://github.com/ionic-team/ionic/issues/24156)) ([8f188ea](https://github.com/ionic-team/ionic/commit/8f188eaae7422c9e81053868b9dd93b4ac738e98)), closes [#24149](https://github.com/ionic-team/ionic/issues/24149)
* **router:** popping route now accounts for route params ([#24315](https://github.com/ionic-team/ionic/issues/24315)) ([5e5054d](https://github.com/ionic-team/ionic/commit/5e5054d369ad68c9ac43e12439d71fb42d6ca26b)), closes [#24223](https://github.com/ionic-team/ionic-framework/issues/24223)
* **slides:** update swiper instance after initialization ([#24257](https://github.com/ionic-team/ionic/issues/24257)) ([89e4bc5](https://github.com/ionic-team/ionic/commit/89e4bc56a1c3cd4fb26fc5514f38c6a01f047297)), closes [#19638](https://github.com/ionic-team/ionic-framework/issues/19638)
* **vue:** ionic lifecycle hooks now run when using vue 3.2 setup syntax ([#24253](https://github.com/ionic-team/ionic/issues/24253)) ([fb96ab5](https://github.com/ionic-team/ionic/commit/fb96ab5a26d87818a8b64ee82df0020355054183)), closes [#23824](https://github.com/ionic-team/ionic/issues/23824)
* **vue:** switching between tabs preserves query string ([#24297](https://github.com/ionic-team/ionic/issues/24297)) ([047d3c7](https://github.com/ionic-team/ionic/commit/047d3c77729db08e4fd84f426f6c5c2af0eacc52)), closes [#23699](https://github.com/ionic-team/ionic/issues/23699)
## [5.9.1](https://github.com/ionic-team/ionic/compare/v5.9.0...v5.9.1) (2021-11-17)

View File

@ -1,15 +1,15 @@
{
"name": "@ionic/angular",
"version": "5.9.1",
"version": "5.9.2",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@ionic/angular",
"version": "5.9.1",
"version": "5.9.2",
"license": "MIT",
"dependencies": {
"@ionic/core": "5.9.0",
"@ionic/core": "5.9.1",
"tslib": "^1.9.3"
},
"devDependencies": {
@ -204,9 +204,9 @@
}
},
"node_modules/@ionic/core": {
"version": "5.9.0",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-5.9.0.tgz",
"integrity": "sha512-0mUnNPFzQK89/ZsuiKb9tQ1rRzILDSeNsp+4ASjf9z8FJuULeTqyDEHU3Pwnje7cLwl8lezGlvNpOXu7Xlz+/w==",
"version": "5.9.1",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-5.9.1.tgz",
"integrity": "sha512-/jVO0N5ESs/iPFcrFZ/JFvW2Uh0ZV1uLFT2vtbtMfCaOMZK8Bmt36ZR1cDDFTuw14vPOLz/1wI2pbQru48JpkQ==",
"dependencies": {
"@stencil/core": "^2.4.0",
"ionicons": "^5.5.3",
@ -5156,9 +5156,9 @@
}
},
"@ionic/core": {
"version": "5.9.0",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-5.9.0.tgz",
"integrity": "sha512-0mUnNPFzQK89/ZsuiKb9tQ1rRzILDSeNsp+4ASjf9z8FJuULeTqyDEHU3Pwnje7cLwl8lezGlvNpOXu7Xlz+/w==",
"version": "5.9.1",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-5.9.1.tgz",
"integrity": "sha512-/jVO0N5ESs/iPFcrFZ/JFvW2Uh0ZV1uLFT2vtbtMfCaOMZK8Bmt36ZR1cDDFTuw14vPOLz/1wI2pbQru48JpkQ==",
"requires": {
"@stencil/core": "^2.4.0",
"ionicons": "^5.5.3",

View File

@ -1,6 +1,6 @@
{
"name": "@ionic/angular",
"version": "5.9.1",
"version": "5.9.2",
"description": "Angular specific wrappers for @ionic/core",
"keywords": [
"ionic",
@ -42,7 +42,7 @@
"validate": "npm i && npm run lint && npm run test && npm run build"
},
"dependencies": {
"@ionic/core": "5.9.1",
"@ionic/core": "5.9.2",
"tslib": "^1.9.3"
},
"peerDependencies": {

View File

@ -1,12 +1,12 @@
{
"name": "@ionic/core",
"version": "5.9.1",
"version": "5.9.2",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@ionic/core",
"version": "5.9.1",
"version": "5.9.2",
"license": "MIT",
"dependencies": {
"@stencil/core": "^2.4.0",

View File

@ -1,6 +1,6 @@
{
"name": "@ionic/core",
"version": "5.9.1",
"version": "5.9.2",
"description": "Base components for Ionic",
"keywords": [
"ionic",

View File

@ -1,6 +1,6 @@
{
"name": "@ionic/docs",
"version": "5.9.1",
"version": "5.9.2",
"description": "Pre-packaged API documentation for the Ionic docs.",
"main": "core.json",
"types": "core.d.ts",

View File

@ -1,12 +1,12 @@
{
"name": "@ionic/angular-server",
"version": "5.9.1",
"version": "5.9.2",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@ionic/angular-server",
"version": "5.9.1",
"version": "5.9.2",
"license": "MIT",
"devDependencies": {
"@angular/animations": "8.2.13",
@ -16,7 +16,7 @@
"@angular/core": "8.2.13",
"@angular/platform-browser": "8.2.13",
"@angular/platform-server": "8.2.13",
"@ionic/core": "5.9.0",
"@ionic/core": "5.9.1",
"ng-packagr": "5.7.1",
"tslint": "^5.12.1",
"tslint-ionic-rules": "0.0.21",
@ -137,9 +137,9 @@
}
},
"node_modules/@ionic/core": {
"version": "5.9.0",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-5.9.0.tgz",
"integrity": "sha512-0mUnNPFzQK89/ZsuiKb9tQ1rRzILDSeNsp+4ASjf9z8FJuULeTqyDEHU3Pwnje7cLwl8lezGlvNpOXu7Xlz+/w==",
"version": "5.9.1",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-5.9.1.tgz",
"integrity": "sha512-/jVO0N5ESs/iPFcrFZ/JFvW2Uh0ZV1uLFT2vtbtMfCaOMZK8Bmt36ZR1cDDFTuw14vPOLz/1wI2pbQru48JpkQ==",
"dev": true,
"dependencies": {
"@stencil/core": "^2.4.0",
@ -5424,9 +5424,9 @@
}
},
"@ionic/core": {
"version": "5.9.0",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-5.9.0.tgz",
"integrity": "sha512-0mUnNPFzQK89/ZsuiKb9tQ1rRzILDSeNsp+4ASjf9z8FJuULeTqyDEHU3Pwnje7cLwl8lezGlvNpOXu7Xlz+/w==",
"version": "5.9.1",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-5.9.1.tgz",
"integrity": "sha512-/jVO0N5ESs/iPFcrFZ/JFvW2Uh0ZV1uLFT2vtbtMfCaOMZK8Bmt36ZR1cDDFTuw14vPOLz/1wI2pbQru48JpkQ==",
"dev": true,
"requires": {
"@stencil/core": "^2.4.0",

View File

@ -1,6 +1,6 @@
{
"name": "@ionic/angular-server",
"version": "5.9.1",
"version": "5.9.2",
"description": "Angular SSR Module for Ionic",
"keywords": [
"ionic",
@ -49,7 +49,7 @@
"@angular/core": "8.2.13",
"@angular/platform-browser": "8.2.13",
"@angular/platform-server": "8.2.13",
"@ionic/core": "5.9.1",
"@ionic/core": "5.9.2",
"ng-packagr": "5.7.1",
"tslint": "^5.12.1",
"tslint-ionic-rules": "0.0.21",

View File

@ -1,6 +1,6 @@
{
"name": "@ionic/react-router",
"version": "5.9.1",
"version": "5.9.2",
"description": "React Router wrapper for @ionic/react",
"keywords": [
"ionic",
@ -40,14 +40,14 @@
"tslib": "*"
},
"peerDependencies": {
"@ionic/react": "5.9.1",
"@ionic/react": "5.9.2",
"react": ">=16.8.6",
"react-dom": ">=16.8.6",
"react-router": "^5.0.1",
"react-router-dom": "^5.0.1"
},
"devDependencies": {
"@ionic/react": "5.9.1",
"@ionic/react": "5.9.2",
"@rollup/plugin-node-resolve": "^8.1.0",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^11.2.2",

View File

@ -1,6 +1,6 @@
{
"name": "@ionic/react",
"version": "5.9.1",
"version": "5.9.2",
"description": "React specific wrapper for @ionic/core",
"keywords": [
"ionic",
@ -40,7 +40,7 @@
"css/"
],
"dependencies": {
"@ionic/core": "5.9.1",
"@ionic/core": "5.9.2",
"ionicons": "^5.1.2",
"tslib": "*"
},

View File

@ -1,12 +1,12 @@
{
"name": "@ionic/vue-router",
"version": "5.9.1",
"version": "5.9.2",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@ionic/vue-router",
"version": "5.9.1",
"version": "5.9.2",
"license": "MIT",
"devDependencies": {
"@ionic/vue": "5.4.1",

View File

@ -1,6 +1,6 @@
{
"name": "@ionic/vue-router",
"version": "5.9.1",
"version": "5.9.2",
"description": "Vue Router integration for @ionic/vue",
"scripts": {
"test.spec": "jest",

View File

@ -1,15 +1,15 @@
{
"name": "@ionic/vue",
"version": "5.9.1",
"version": "5.9.2",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@ionic/vue",
"version": "5.9.1",
"version": "5.9.2",
"license": "MIT",
"dependencies": {
"@ionic/core": "5.9.0",
"@ionic/core": "5.9.1",
"ionicons": "^5.1.2"
},
"devDependencies": {
@ -53,9 +53,9 @@
}
},
"node_modules/@ionic/core": {
"version": "5.9.0",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-5.9.0.tgz",
"integrity": "sha512-0mUnNPFzQK89/ZsuiKb9tQ1rRzILDSeNsp+4ASjf9z8FJuULeTqyDEHU3Pwnje7cLwl8lezGlvNpOXu7Xlz+/w==",
"version": "5.9.1",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-5.9.1.tgz",
"integrity": "sha512-/jVO0N5ESs/iPFcrFZ/JFvW2Uh0ZV1uLFT2vtbtMfCaOMZK8Bmt36ZR1cDDFTuw14vPOLz/1wI2pbQru48JpkQ==",
"dependencies": {
"@stencil/core": "^2.4.0",
"ionicons": "^5.5.3",
@ -633,9 +633,9 @@
}
},
"@ionic/core": {
"version": "5.9.0",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-5.9.0.tgz",
"integrity": "sha512-0mUnNPFzQK89/ZsuiKb9tQ1rRzILDSeNsp+4ASjf9z8FJuULeTqyDEHU3Pwnje7cLwl8lezGlvNpOXu7Xlz+/w==",
"version": "5.9.1",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-5.9.1.tgz",
"integrity": "sha512-/jVO0N5ESs/iPFcrFZ/JFvW2Uh0ZV1uLFT2vtbtMfCaOMZK8Bmt36ZR1cDDFTuw14vPOLz/1wI2pbQru48JpkQ==",
"requires": {
"@stencil/core": "^2.4.0",
"ionicons": "^5.5.3",

View File

@ -1,6 +1,6 @@
{
"name": "@ionic/vue",
"version": "5.9.1",
"version": "5.9.2",
"description": "Vue specific wrapper for @ionic/core",
"scripts": {
"lint": "echo add linter",
@ -59,7 +59,7 @@
"vue-router": "^4.0.0-rc.4"
},
"dependencies": {
"@ionic/core": "5.9.1",
"@ionic/core": "5.9.2",
"ionicons": "^5.1.2"
},
"vetur": {