-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docs(updating): add v8 migration guide #3475
Merged
Merged
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
db525bf
docs(updating): v6 references correct archive
liamdebeasi 13cde51
add migration guide
liamdebeasi 15533bc
use next tag
liamdebeasi a1a2468
lint
liamdebeasi e7763eb
Update docs/updating/8-0.md
liamdebeasi fa43542
Update docs/updating/8-0.md
liamdebeasi 571c068
Update docs/updating/8-0.md
liamdebeasi 9a0f321
Update docs/updating/8-0.md
liamdebeasi 62fb09c
Update docs/updating/8-0.md
liamdebeasi ce8f10b
Update docs/updating/8-0.md
liamdebeasi 8bc07dc
Update docs/updating/8-0.md
liamdebeasi ec65471
Update docs/updating/8-0.md
liamdebeasi 637b3b6
fix wording
liamdebeasi 7bdf9f2
note that legacy picker will be removed
liamdebeasi File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ This guide assumes that you have already updated your app to the latest version | |
::: | ||
|
||
:::info Breaking Changes | ||
For a **complete list of breaking changes** from Ionic 5 to Ionic 6, please refer to [the breaking changes document](https://github.com/ionic-team/ionic-framework/blob/main/BREAKING.md) in the Ionic Framework repository. | ||
For a **complete list of breaking changes** from Ionic 5 to Ionic 6, please refer to [the breaking changes document](https://github.com/ionic-team/ionic-framework/blob/main/BREAKING_ARCHIVE/v6.md) in the Ionic Framework repository. | ||
::: | ||
|
||
## Getting Started | ||
|
@@ -473,6 +473,6 @@ If you are still running into issues, here are a couple things to try: | |
|
||
## Need Help Upgrading? | ||
|
||
Be sure to look at the [Ionic 6 Breaking Changes Guide](https://github.com/ionic-team/ionic-framework/blob/main/BREAKING.md). There were several changes to default property and CSS Variable values that developers may need to be aware of. Only the breaking changes that required user action are listed on this page. | ||
Be sure to look at the [Ionic 6 Breaking Changes Guide](https://github.com/ionic-team/ionic-framework/blob/main/BREAKING_ARCHIVE/v6.md). There were several changes to default property and CSS Variable values that developers may need to be aware of. Only the breaking changes that required user action are listed on this page. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This link redirected to the v7 breaking changes |
||
|
||
If you need help upgrading, please post a thread on the [Ionic Forum](https://forum.ionicframework.com/). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,182 @@ | ||
--- | ||
title: Updating to v8 | ||
--- | ||
|
||
# Updating from Ionic 7 to 8 | ||
|
||
:::note | ||
This guide assumes that you have already updated your app to the latest version of Ionic 7. Make sure you have followed the [Upgrading to Ionic 7 Guide](./7-0) before starting this guide. | ||
::: | ||
|
||
:::info Breaking Changes | ||
For a **complete list of breaking changes** from Ionic 7 to Ionic 8, please refer to [the breaking changes document](https://github.com/ionic-team/ionic-framework/blob/feature-8.0/BREAKING.md#version-8x) in the Ionic Framework repository. | ||
thetaPC marked this conversation as resolved.
Show resolved
Hide resolved
|
||
::: | ||
|
||
## Getting Started | ||
|
||
### Angular | ||
|
||
1. Ionic 8 supports Angular 16+. Update to the latest version of Angular by following the [Angular Update Guide](https://update.angular.io/). | ||
|
||
2. Update to the latest version of Ionic 8: | ||
|
||
```shell | ||
npm install @ionic/angular@next | ||
``` | ||
|
||
If you are using Ionic Angular Server and Ionic Angular Toolkit, be sure to update those as well: | ||
|
||
```shell | ||
npm install @ionic/angular@next @ionic/angular-server@next @ionic/angular-toolkit@11 | ||
``` | ||
|
||
> Note: `@ionic/angular-toolkit@11` requires a minimum of Angular 17. If you are still on Angular 16, then you may want to only update to to `@ionic/angular-toolkit@10` instead. | ||
|
||
3. Update any `IonBackButtonDelegate` imports from `@ionic/angular` to import `IonBackButton` from `@ionic/angular` instead. | ||
|
||
### React | ||
|
||
1. Ionic 8 supports React 17+. Update to the latest version of React: | ||
|
||
```shell | ||
npm install react@latest react-dom@latest | ||
``` | ||
|
||
2. Update to the latest version of Ionic 8: | ||
|
||
```shell | ||
npm install @ionic/react@next @ionic/react-router@next | ||
``` | ||
|
||
### Vue | ||
|
||
1. Ionic 7 supports Vue 3.0.6+. Update to the latest version of Vue: | ||
|
||
```shell | ||
npm install vue@latest vue-router@latest | ||
``` | ||
|
||
3. Update to the latest version of Ionic 8: | ||
|
||
```shell | ||
npm install @ionic/vue@next @ionic/vue-router@next | ||
``` | ||
|
||
### Core | ||
|
||
1. Update to the latest version of Ionic 8: | ||
|
||
```shell | ||
npm install @ionic/core@next | ||
``` | ||
|
||
## Recommended Changes | ||
|
||
The following changes are not required to update to Ionic 8 as your application will continue to work. However, we recommend making the following changes to ensure you can use the new features in Ionic 8. | ||
|
||
### Dark Theme | ||
|
||
In previous versions, it was recommended to define the dark theme in the following way: | ||
|
||
```css | ||
@media (prefers-color-scheme: dark) { | ||
body { | ||
/* global app variables */ | ||
} | ||
|
||
.ios body { | ||
/* global ios app variables */ | ||
} | ||
|
||
.md body { | ||
/* global md app variables */ | ||
} | ||
} | ||
``` | ||
|
||
In Ionic Framework version 8, the dark theme is being distributed via css files that can be imported. Below is an example of importing a dark theme file in Angular: | ||
|
||
```css | ||
/* @import '@ionic/angular/css/themes/dark.always.css'; */ | ||
/* @import "@ionic/angular/css/themes/dark.class.css"; */ | ||
@import '@ionic/angular/css/themes/dark.system.css'; | ||
``` | ||
|
||
The dark theme is now applied to the `:root` selector instead of the `body` selector. The [`:root`](https://developer.mozilla.org/en-US/docs/Web/CSS/:root) selector represents the `<html>` element and is identical to the selector `html`, except that its specificity is higher. | ||
|
||
While migrating to include the new dark theme files is unlikely to cause breaking changes, these new selectors can lead to unexpected overrides if custom CSS variables are being set on the `body` element. We recommend updating any instances where global application variables are set to target the `:root` selector instead. | ||
|
||
For more information on the new dark theme files, refer to the [Dark Mode documentation](../theming/dark-mode). | ||
|
||
### Dynamic Font | ||
|
||
The `core.css` file has been updated to enable dynamic font scaling by default. | ||
|
||
The `--ion-default-dynamic-font` variable has been removed and replaced with `--ion-dynamic-font`. | ||
|
||
Developers who had previously chosen dynamic font scaling by activating it in their global stylesheets can revert to the default setting by removing their custom CSS. In doing so, their application will seamlessly continue utilizing dynamic font scaling as it did before. It's essential to note that altering the font-size of the html element should be avoided, as it may disrupt the proper functioning of dynamic font scaling. | ||
|
||
Developers who want to disable dynamic font scaling can set `--ion-dynamic-font: initial;` in their global stylesheets. However, this is not recommended because it may introduce accessibility challenges for users who depend on enlarged font sizes. | ||
|
||
For more information on the dynamic font, refer to the [Dynamic Font Scaling documentation](../layout/dynamic-font-scaling). | ||
|
||
## Required Changes | ||
|
||
### Browser Support | ||
|
||
The list of browsers that Ionic supports has changed. Review the [Browser Support Guide](../reference/browser-support) to ensure you are deploying apps to supported browsers. | ||
|
||
If you have a `browserslist` or `.browserslistrc` file, update it with the following content: | ||
|
||
``` | ||
Chrome >=89 | ||
ChromeAndroid >=89 | ||
Firefox >=75 | ||
Edge >=89 | ||
Safari >=15 | ||
iOS >=15 | ||
``` | ||
|
||
### Checkbox | ||
|
||
1. Migrate any remaining instances of Checkbox to use the [modern form control syntax](../api/checkbox#migrating-from-legacy-checkbox-syntax). Additionally, remove any usages of the `legacy` property as the legacy form control syntax has been removed. | ||
|
||
### Input | ||
|
||
1. Remove any usages of the `size` property. CSS should be used to specify the visible width of the input instead. | ||
2. Remove any usages of the `accept` property. | ||
3. Migrate any remaining instances of Input to use the [modern form control syntax](../api/input#migrating-from-legacy-input-syntax). Additionally, remove any usages of the `legacy` property as the legacy form control syntax has been removed. | ||
|
||
### Nav | ||
|
||
1. Update any usages of `getLength` to `await` the call before accessing the returned value as this method now returns `Promise<number>` instead of `number`. | ||
|
||
### Picker | ||
|
||
1. Ionic 8 now ships with an inline `ion-picker` component. Developers who wish to continue using the legacy picker should update any `ion-picker` usages to `ion-picker-legacy`. The `pickerController` import remains unchanged. Note that the `ion-picker-legacy` component will be removed in an upcoming major release of Ionic. | ||
|
||
### Toast | ||
|
||
1. Remove any usages of the `cssClass` property from `ToastButton`. The `button` CSS Shadow Part should be used instead. | ||
|
||
### Radio | ||
|
||
1. Migrate any remaining instances of Radio to use the [modern form control syntax](../api/radio#migrating-from-legacy-radio-syntax). Additionally, remove any usages of the `legacy` property as the legacy form control syntax has been removed. | ||
|
||
### Select | ||
|
||
1. Migrate any remaining instances of Select to use the [modern form control syntax](../api/select#migrating-from-legacy-select-syntax). Additionally, remove any usages of the `legacy` property as the legacy form control syntax has been removed. | ||
|
||
### Textarea | ||
|
||
1. Migrate any remaining instances of Textarea to use the [modern form control syntax](../api/textarea#migrating-from-legacy-textarea-syntax). Additionally, remove any usages of the `legacy` property as the legacy form control syntax has been removed. | ||
|
||
### Toggle | ||
|
||
1. Migrate any remaining instances of Toggle to use the [modern form control syntax](../api/toggle#migrating-from-legacy-toggle-syntax). Additionally, remove any usages of the `legacy` property as the legacy form control syntax has been removed. | ||
|
||
## Need Help Upgrading? | ||
|
||
Be sure to look at the [Ionic 8 Breaking Changes Guide](https://github.com/ionic-team/ionic-framework/blob/main/BREAKING.md#version-8x). There were several changes to default property and CSS Variable values that developers may need to be aware of. Only the breaking changes that require user action are listed on this page. | ||
|
||
If you need help upgrading, please post a thread on the [Ionic Forum](https://forum.ionicframework.com/). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This link redirected to the v7 breaking changes