Skip to content

Commit e379a90

Browse files
committed
Merge branch 'main' into chore/update-from-main
2 parents f72f753 + 8675198 commit e379a90

File tree

179 files changed

+3097
-9107
lines changed

Some content is hidden

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

179 files changed

+3097
-9107
lines changed

.github/ionic-issue-bot.yml

Lines changed: 0 additions & 67 deletions
Original file line numberDiff line numberDiff line change
@@ -56,14 +56,6 @@ closeAndLock:
5656
bug reports and feature requests. Please use our [forum](https://forum.ionicframework.com) for questions about the framework.
5757
5858
59-
Thank you for using Ionic!
60-
- label: "ionitron: appflow"
61-
message: >
62-
Thanks for the issue! This issue appears to be related to Ionic Appflow. We use this issue tracker exclusively for
63-
bug reports and feature requests. Please use the [Ionic Appflow Support Forum](https://ionic.zendesk.com/hc/en-us/requests/new)
64-
to report this issue.
65-
66-
6759
Thank you for using Ionic!
6860
- label: "ionitron: missing template"
6961
message: >
@@ -145,65 +137,6 @@ noReproduction:
145137
lock: true
146138
dryRun: false
147139

148-
wrongRepo:
149-
repos:
150-
- label: "ionitron: capacitor"
151-
repo: capacitor
152-
message: >
153-
Thanks for the issue! We use this issue tracker exclusively for bug reports and feature requests
154-
associated with the Ionic Framework. It appears that this issue is associated with Capacitor.
155-
I am moving this issue to the Capacitor repository. Please track this issue over there.
156-
157-
158-
Thank you for using Ionic!
159-
- label: "ionitron: v3"
160-
repo: ionic-v3
161-
message: >
162-
Thanks for the issue! We have moved the source code and issues for Ionic 3 into a separate repository.
163-
I am moving this issue to the repository for Ionic 3. Please track this issue over there.
164-
165-
166-
Thank you for using Ionic!
167-
- label: "ionitron: cli"
168-
repo: ionic-cli
169-
message: >
170-
Thanks for the issue! We use this issue tracker exclusively for bug reports and feature requests
171-
associated with the Ionic Framework. It appears that this issue is associated with the Ionic CLI.
172-
I am moving this issue to the Ionic CLI repository. Please track this issue over there.
173-
174-
175-
Thank you for using Ionic!
176-
- label: "ionitron: docs"
177-
repo: ionic-docs
178-
message: >
179-
Thanks for the issue! We use this issue tracker exclusively for bug reports and feature requests
180-
associated with the Ionic Framework. It appears that this issue is associated with the Ionic Documentation.
181-
I am moving this issue to the Ionic Docs repository. Please track this issue over there.
182-
183-
184-
Thank you for using Ionic!
185-
- label: "ionitron: stencil"
186-
repo: stencil
187-
message: >
188-
Thanks for the issue! We use this issue tracker exclusively for bug reports and feature requests
189-
associated with the Ionic Framework. It appears that this issue is associated with Stencil.
190-
I am moving this issue to the Stencil repository. Please track this issue over there.
191-
192-
193-
Thank you for using Ionic!
194-
- label: "ionitron: native"
195-
repo: ionic-native
196-
message: >
197-
Thanks for the issue! We use this issue tracker exclusively for bug reports and feature requests
198-
associated with the Ionic Framework. It appears that this issue is associated with Ionic Native.
199-
I am moving this issue to the Ionic Native repository. Please track this issue over there.
200-
201-
202-
Thank you for using Ionic!
203-
close: true
204-
lock: true
205-
dryRun: false
206-
207140
screenshot:
208141
appId: 18001
209142
checkName: "build"

.github/workflows/actions/build-core-stencil-prerelease/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ inputs:
88
runs:
99
using: 'composite'
1010
steps:
11-
- uses: actions/checkout@v4
11+
- uses: actions/checkout@v5
1212
- uses: actions/setup-node@v4
1313
with:
1414
node-version: 22.x

.github/workflows/actions/build-core/action.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ inputs:
88
runs:
99
using: 'composite'
1010
steps:
11-
- uses: actions/checkout@v4
11+
- uses: actions/checkout@v5
1212
- uses: actions/setup-node@v4
1313
with:
1414
node-version: 22.x
@@ -31,4 +31,6 @@ runs:
3131
with:
3232
name: ionic-core
3333
output: core/CoreBuild.zip
34-
paths: core/dist core/components core/src/foundations core/css core/hydrate core/loader core/src/components.d.ts core/api.txt
34+
# Include generated proxy files from Stencil output targets so
35+
# framework builds can detect when they need to be updated
36+
paths: core/dist core/components core/src/foundations core/css core/hydrate core/loader core/src/components.d.ts core/api.txt packages/angular/src/directives/proxies.ts packages/angular/src/directives/proxies-list.ts packages/angular/standalone/src/directives/proxies.ts packages/vue/src/proxies.ts packages/react/src/components/proxies.ts packages/react/src/components/inner-proxies.ts packages/react/src/components/routing-proxies.ts

.github/workflows/actions/download-archive/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ inputs:
1010
runs:
1111
using: 'composite'
1212
steps:
13-
- uses: actions/download-artifact@v4
13+
- uses: actions/download-artifact@v5
1414
with:
1515
name: ${{ inputs.name }}
1616
path: ${{ inputs.path }}

.github/workflows/actions/test-angular-e2e/action.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,10 @@ runs:
3232
run: npm install
3333
shell: bash
3434
working-directory: ./packages/angular/test/build/${{ inputs.app }}
35+
- name: Install Playwright Browsers
36+
run: npx playwright install
37+
shell: bash
38+
working-directory: ./packages/angular/test/build/${{ inputs.app }}
3539
- name: Sync Built Changes
3640
run: npm run sync
3741
shell: bash

.github/workflows/actions/update-reference-screenshots/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ runs:
1010
- uses: actions/setup-node@v4
1111
with:
1212
node-version: 22.x
13-
- uses: actions/download-artifact@v4
13+
- uses: actions/download-artifact@v5
1414
with:
1515
path: ./artifacts
1616
- name: Extract Archives

.github/workflows/build.yml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
build-core:
2323
runs-on: ubuntu-latest
2424
steps:
25-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@v5
2626
- uses: ./.github/workflows/actions/build-core
2727
with:
2828
ionicons-version: ${{ inputs.ionicons_npm_release_tag }}
@@ -31,21 +31,21 @@ jobs:
3131
needs: [build-core]
3232
runs-on: ubuntu-latest
3333
steps:
34-
- uses: actions/checkout@v4
34+
- uses: actions/checkout@v5
3535
- uses: ./.github/workflows/actions/test-core-clean-build
3636

3737
test-core-lint:
3838
needs: [build-core]
3939
runs-on: ubuntu-latest
4040
steps:
41-
- uses: actions/checkout@v4
41+
- uses: actions/checkout@v5
4242
- uses: ./.github/workflows/actions/test-core-lint
4343

4444
test-core-spec:
4545
needs: [build-core]
4646
runs-on: ubuntu-latest
4747
steps:
48-
- uses: actions/checkout@v4
48+
- uses: actions/checkout@v5
4949
- uses: ./.github/workflows/actions/test-core-spec
5050

5151
test-core-screenshot:
@@ -62,7 +62,7 @@ jobs:
6262
needs: [build-core]
6363
runs-on: ubuntu-latest
6464
steps:
65-
- uses: actions/checkout@v4
65+
- uses: actions/checkout@v5
6666
- uses: ./.github/workflows/actions/test-core-screenshot
6767
with:
6868
shard: ${{ matrix.shard }}
@@ -90,14 +90,14 @@ jobs:
9090
needs: [build-core]
9191
runs-on: ubuntu-latest
9292
steps:
93-
- uses: actions/checkout@v4
93+
- uses: actions/checkout@v5
9494
- uses: ./.github/workflows/actions/build-vue
9595

9696
build-vue-router:
9797
needs: [build-vue]
9898
runs-on: ubuntu-latest
9999
steps:
100-
- uses: actions/checkout@v4
100+
- uses: actions/checkout@v5
101101
- uses: ./.github/workflows/actions/build-vue-router
102102

103103
test-vue-e2e:
@@ -108,7 +108,7 @@ jobs:
108108
needs: [build-vue, build-vue-router]
109109
runs-on: ubuntu-latest
110110
steps:
111-
- uses: actions/checkout@v4
111+
- uses: actions/checkout@v5
112112
- uses: ./.github/workflows/actions/test-vue-e2e
113113
with:
114114
app: ${{ matrix.apps }}
@@ -126,14 +126,14 @@ jobs:
126126
needs: [build-core]
127127
runs-on: ubuntu-latest
128128
steps:
129-
- uses: actions/checkout@v4
129+
- uses: actions/checkout@v5
130130
- uses: ./.github/workflows/actions/build-angular
131131

132132
build-angular-server:
133133
needs: [build-core]
134134
runs-on: ubuntu-latest
135135
steps:
136-
- uses: actions/checkout@v4
136+
- uses: actions/checkout@v5
137137
- uses: ./.github/workflows/actions/build-angular-server
138138

139139
test-angular-e2e:
@@ -144,7 +144,7 @@ jobs:
144144
needs: [build-angular, build-angular-server]
145145
runs-on: ubuntu-latest
146146
steps:
147-
- uses: actions/checkout@v4
147+
- uses: actions/checkout@v5
148148
- uses: ./.github/workflows/actions/test-angular-e2e
149149
with:
150150
app: ${{ matrix.apps }}
@@ -162,14 +162,14 @@ jobs:
162162
needs: [build-core]
163163
runs-on: ubuntu-latest
164164
steps:
165-
- uses: actions/checkout@v4
165+
- uses: actions/checkout@v5
166166
- uses: ./.github/workflows/actions/build-react
167167

168168
build-react-router:
169169
needs: [build-react]
170170
runs-on: ubuntu-latest
171171
steps:
172-
- uses: actions/checkout@v4
172+
- uses: actions/checkout@v5
173173
- uses: ./.github/workflows/actions/build-react-router
174174

175175
test-react-router-e2e:
@@ -180,7 +180,7 @@ jobs:
180180
needs: [build-react, build-react-router]
181181
runs-on: ubuntu-latest
182182
steps:
183-
- uses: actions/checkout@v4
183+
- uses: actions/checkout@v5
184184
- uses: ./.github/workflows/actions/test-react-router-e2e
185185
with:
186186
app: ${{ matrix.apps }}
@@ -202,7 +202,7 @@ jobs:
202202
needs: [build-react, build-react-router]
203203
runs-on: ubuntu-latest
204204
steps:
205-
- uses: actions/checkout@v4
205+
- uses: actions/checkout@v5
206206
- uses: ./.github/workflows/actions/test-react-e2e
207207
with:
208208
app: ${{ matrix.apps }}

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
permissions:
1515
security-events: write
1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v5
1818
- uses: github/codeql-action/init@v3
1919
with:
2020
languages: javascript

.github/workflows/conventional-commit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
if: |
1313
!contains(github.event.pull_request.title, 'release') &&
1414
!contains(github.event.pull_request.title, 'chore')
15-
uses: amannn/action-semantic-pull-request@v5
15+
uses: amannn/action-semantic-pull-request@v6
1616
env:
1717
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1818
with:

.github/workflows/dev-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
outputs:
1010
dev-hash: ${{ steps.create-dev-hash.outputs.DEV_HASH }}
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v5
1313
# A 1 is required before the timestamp
1414
# as lerna will fail when there is a leading 0
1515
# See https://github.com/lerna/lerna/issues/2840

0 commit comments

Comments
 (0)