Skip to content

Commit 31b2943

Browse files
docs(v9): update demos and support info to use v9 version (#4642)
Co-authored-by: Brandy Smith <6577830+brandyscarney@users.noreply.github.com> Co-authored-by: Shane <shane@shanessite.net>
1 parent 6dffc4f commit 31b2943

449 files changed

Lines changed: 930 additions & 938 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

_templates/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Once you've generated your playground, you need to add it to the main markdown f
2626
```
2727
## Feature
2828
29-
import Feature from '@site/static/usage/v8/button/feature/index.md';
29+
import Feature from '@site/static/usage/v9/button/feature/index.md';
3030
3131
<Feature />
3232
```

_templates/playground/new/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ module.exports = {
5454
type: 'select',
5555
name: 'version',
5656
message: 'Select the Ionic Framework version for the playground',
57-
initial: '8',
58-
choices: ['6', '7', '8'],
57+
initial: '9',
58+
choices: ['6', '7', '8', '9'],
5959
},
6060
{
6161
type: 'toggle',

docs/angular/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import DocsCards from '@components/global/DocsCards';
1818

1919
## Angular Version Support
2020

21-
Ionic Angular v9 supports Angular versions 18 through 21. For detailed information on supported versions and our support policy, refer to the [Ionic Angular Support Policy](/docs/reference/support#ionic-angular).
21+
Ionic Angular v9 supports Angular versions 18 through 22. For detailed information on supported versions and our support policy, refer to the [Ionic Angular Support Policy](/docs/reference/support#ionic-angular).
2222

2323
## Angular Tooling
2424

docs/reference/support.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ The current status of each Ionic Framework version is:
2222

2323
| Version | Status | Released | Maintenance Ends | Ext. Support Ends |
2424
| :-----: | :------------: | :----------: | :--------------: | :---------------: |
25-
| V9 | **Active** | TBD | TBD | TBD |
26-
| V8 | Maintenance | Apr 17, 2024 | TBD | TBD |
25+
| V9 | **Active** | Aug 17, 2026 | TBD | TBD |
26+
| V8 | Maintenance | Apr 17, 2024 | Feb 17, 2027 | Aug 17, 2027 |
2727
| V7 | End of Support | Mar 29, 2023 | Oct 17, 2024 | Apr 17, 2025 |
2828
| V6 | End of Support | Dec 8, 2021 | Sep 29, 2023 | Mar 29, 2024 |
2929
| V5 | End of Support | Feb 11, 2020 | June 8, 2022 | Dec 8, 2022 |

docs/vue/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import DocsCards from '@components/global/DocsCards';
1818

1919
## Vue Version Support
2020

21-
Ionic Vue v8 supports Vue 3.x. For detailed information on supported versions and our support policy, refer to the [Ionic Vue Support Policy](/docs/reference/support#ionic-vue).
21+
Ionic Vue v9 supports Vue 3.5 and later. For detailed information on supported versions and our support policy, refer to the [Ionic Vue Support Policy](/docs/reference/support#ionic-vue).
2222

2323
## Vue Tooling
2424

plugins/docusaurus-plugin-ionic-component-api/index.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,7 @@ module.exports = function (context, options) {
5454
await generateMarkdownForVersion(version, npmTag, context.i18n.currentLocale, false);
5555
}
5656

57-
// TODO(FW-7097): Replace this with `latest` when v9 is released.
58-
// Dev build from the `major-9.0` branch of `ionic-framework` (sha a334b43).
59-
let npmTag = '8.8.16-dev.11784913436.1a334b43';
57+
let npmTag = 'latest';
6058
if (currentVersion.banner === 'unreleased') {
6159
npmTag = 'next';
6260
} else if (currentVersion.path !== undefined) {

static/code/stackblitz/v9/angular/package-lock.json

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

static/code/stackblitz/v9/angular/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
"@angular/platform-browser": "^22.0.0",
1616
"@angular/platform-browser-dynamic": "^22.0.0",
1717
"@angular/router": "^22.0.0",
18-
"@ionic/angular": "8.8.16-dev.11785274070.1b3387c9",
19-
"@ionic/core": "8.8.16-dev.11785274070.1b3387c9",
18+
"@ionic/angular": "9.0.0",
19+
"@ionic/core": "9.0.0",
2020
"ionicons": "8.1.0",
2121
"rxjs": "^7.8.1",
2222
"tslib": "^2.5.0"

static/code/stackblitz/v9/html/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

static/code/stackblitz/v9/html/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"start": "vite preview"
1010
},
1111
"dependencies": {
12-
"@ionic/core": "8.8.16-dev.11785274070.1b3387c9",
12+
"@ionic/core": "9.0.0",
1313
"ionicons": "8.1.0"
1414
},
1515
"devDependencies": {

0 commit comments

Comments
 (0)