Skip to content

Commit af50a47

Browse files
committed
fix(QDate): resolve merge conflict - preserve aria-label accessibility fix with upstream/dev formatting
2 parents 055e64d + 2e0c2a8 commit af50a47

2,966 files changed

Lines changed: 91390 additions & 74356 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.

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ root = true
33

44
[*]
55
charset = utf-8
6-
indent_style = space
76
indent_size = 2
7+
indent_style = space
88
end_of_line = lf
99
insert_final_newline = true
1010
trim_trailing_whitespace = true

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
- [ ] Any necessary documentation has been added or updated [in the docs](https://github.com/quasarframework/quasar/tree/dev/docs) <!-- for faster update click on "Suggest an edit on GitHub" at bottom of page --> or explained in the PR's description.
3333

3434
If adding a **new feature**, the PR's description includes:
35+
3536
- [ ] A convincing reason for adding this feature (to avoid wasting your time, it's best to [start a new feature discussion](https://github.com/quasarframework/quasar/discussions/new?category=ideas-proposals) first and wait for approval before working on it)
3637

3738
**Other information:**

.github/RELEASE-TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ The documentation can be found at [quasar.dev](https://quasar.dev/)
1515
Quasar Framework is an open-source MIT licensed project that has been made possible due to the **generous contributions** by [sponsors and backers](https://github.com/sponsors/rstoenescu). If you are interested in supporting this project, please consider:
1616

1717
- [Becoming a sponsor on Github](https://github.com/sponsors/rstoenescu)
18-
- [One-off donation via PayPal](https://paypal.me/rstoenescu1)
18+
- [One-off donation via PayPal](https://paypal.me/rstoenescu1)

.github/workflows/build-types.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -45,19 +45,18 @@ jobs:
4545

4646
permissions:
4747
contents: read # to fetch code (actions/checkout)
48-
actions: write # to upload artifacts (actions/upload-artifact)
4948

5049
defaults:
5150
run:
5251
working-directory: ui
5352

5453
steps:
55-
- uses: actions/checkout@v4
54+
- uses: actions/checkout@v6
5655

5756
- name: Setup pnpm
58-
uses: pnpm/action-setup@v3
57+
uses: pnpm/action-setup@v5
5958

60-
- uses: actions/setup-node@v4
59+
- uses: actions/setup-node@v6
6160
with:
6261
node-version: 24
6362
cache: 'pnpm'
@@ -66,17 +65,17 @@ jobs:
6665
run: pnpm i
6766

6867
- name: Ensure types are formatted correctly
69-
run: pnpm format:types --write=false --check
68+
run: pnpm lint:check
7069

7170
- name: Build the types
7271
run: pnpm build js types
7372

7473
- if: ${{ github.event_name == 'pull_request' }}
7574
run: |
76-
echo ${{ github.event.number }} > dist/.pr-number
75+
echo "${{ github.event.number }}" > dist/.pr-number
7776
7877
- name: Upload the build artifact
79-
uses: actions/upload-artifact@v4
78+
uses: actions/upload-artifact@v7
8079
with:
8180
name: types-build
8281
include-hidden-files: true # to include the .pr-number file

.github/workflows/comment-build-results.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
steps:
2929
- name: Check current types build workflow run
3030
id: current-workflow-run
31-
uses: actions/github-script@v7
31+
uses: actions/github-script@v8
3232
with:
3333
script: |
3434
const { data: { workflow_runs: [workflowRun] } } = await github.rest.actions.listWorkflowRuns({
@@ -56,7 +56,7 @@ jobs:
5656

5757
steps:
5858
- name: Download the current types build
59-
uses: actions/github-script@v7
59+
uses: actions/github-script@v8
6060
env:
6161
CURRENT_RUN_ID: ${{ needs.check-current-build.outputs.run-id }}
6262
with:
@@ -85,7 +85,7 @@ jobs:
8585
8686
- name: Download the PR information artifact
8787
id: pr-info
88-
uses: actions/github-script@v7
88+
uses: actions/github-script@v8
8989
with:
9090
script: |
9191
const { readFile, writeFile, unlink } = require('node:fs/promises');
@@ -149,7 +149,7 @@ jobs:
149149
fi
150150
echo "" >> build-results.md
151151
152-
- uses: marocchino/sticky-pull-request-comment@v2
152+
- uses: marocchino/sticky-pull-request-comment@v3
153153
with:
154154
number: ${{ fromJSON(steps.pr-info.outputs.result).number }}
155155
hide_and_recreate: true

.github/workflows/process-created-issue.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@ jobs:
2121
TEMPLATE_VERSION: 'v2'
2222
# TEMPLATE_VERSION: ${{ contains(github.event.issue.labels.*.name, 'Qv2') && 'v2' || 'v3' }} # uncomment when Quasar v3 is available
2323
steps:
24-
- uses: actions/checkout@v4
24+
- uses: actions/checkout@v6
2525

2626
- uses: stefanbuck/github-issue-parser@v3
2727
id: issue-parser
2828
with:
2929
template-path: .github/ISSUE_TEMPLATE/${{ env.TEMPLATE_TYPE }}-report--quasar-${{ env.TEMPLATE_VERSION }}.yml
3030

31-
- uses: actions/github-script@v7
31+
- uses: actions/github-script@v8
3232
env:
3333
ISSUE_MODEL: ${{ steps.issue-parser.outputs.jsonString }}
3434
INVALID_REPRO_MESSAGE: |

.github/workflows/project-creation-tests.yml

Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ on:
1313
- '.github/workflows/project-creation-tests.yml'
1414
- 'create-quasar/**'
1515

16+
concurrency:
17+
group: ${{ github.workflow }}-${{ github.ref }}
18+
cancel-in-progress: true
19+
1620
jobs:
1721
lint:
1822
if: >-
@@ -38,15 +42,15 @@ jobs:
3842
name: Lint create-quasar
3943
steps:
4044
- name: Checkout code
41-
uses: actions/checkout@v4
45+
uses: actions/checkout@v6
4246

4347
- name: Setup pnpm
44-
uses: pnpm/action-setup@v3
48+
uses: pnpm/action-setup@v5
4549

4650
- name: Setup Node
47-
uses: actions/setup-node@v4
51+
uses: actions/setup-node@v6
4852
with:
49-
node-version: 20
53+
node-version: 22
5054
cache: 'pnpm'
5155

5256
- name: Install dependencies
@@ -83,13 +87,13 @@ jobs:
8387

8488
steps:
8589
- name: Checkout code
86-
uses: actions/checkout@v4
90+
uses: actions/checkout@v6
8791

8892
- name: Setup pnpm
89-
uses: pnpm/action-setup@v3
93+
uses: pnpm/action-setup@v5
9094

9195
- name: Setup Node
92-
uses: actions/setup-node@v4
96+
uses: actions/setup-node@v6
9397
with:
9498
node-version: ${{ matrix.node-version }}
9599
cache: 'pnpm'
@@ -105,7 +109,7 @@ jobs:
105109
echo "PNPM_CACHE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
106110
- name: Setup pnpm cache
107111
if: ${{ matrix.package-manager == 'pnpm' }}
108-
uses: actions/cache@v4
112+
uses: actions/cache@v5
109113
with:
110114
path: ${{ steps.pnpm-cache.outputs.PNPM_CACHE_PATH }}
111115
key: pnpm-cache-${{ matrix.app-engine }}-${{ matrix.script-type }}
@@ -121,7 +125,7 @@ jobs:
121125
echo "YARN_CACHE_PATH=$(yarn cache dir)" >> $GITHUB_OUTPUT
122126
- name: Setup yarn cache
123127
if: ${{ matrix.package-manager == 'yarn' }}
124-
uses: actions/cache@v4
128+
uses: actions/cache@v5
125129
with:
126130
path: ${{ steps.yarn-cache.outputs.YARN_CACHE_PATH }}
127131
key: yarn-cache-${{ matrix.app-engine }}-${{ matrix.script-type }}
@@ -137,7 +141,7 @@ jobs:
137141
echo "NPM_CACHE_PATH=$(npm config get cache)" >> $GITHUB_OUTPUT
138142
- name: Setup npm cache
139143
if: ${{ matrix.package-manager == 'npm' }}
140-
uses: actions/cache@v4
144+
uses: actions/cache@v5
141145
with:
142146
path: ${{ steps.npm-cache.outputs.NPM_CACHE_PATH }}
143147
key: npm-cache-${{ matrix.app-engine }}-${{ matrix.script-type }}

.github/workflows/release-notes.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ jobs:
1313
contents: read # to fetch code (actions/checkout) and to read releases (actions/github-script)
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v6
1717
with:
1818
ref: dev
1919

2020
- name: Setup pnpm
21-
uses: pnpm/action-setup@v3
21+
uses: pnpm/action-setup@v5
2222

23-
- uses: actions/setup-node@v4
23+
- uses: actions/setup-node@v6
2424
with:
2525
node-version: 24
2626
cache: 'pnpm'
@@ -29,7 +29,7 @@ jobs:
2929
run: pnpm i
3030

3131
- name: Generate Release Notes
32-
uses: actions/github-script@v7
32+
uses: actions/github-script@v8
3333
with:
3434
script: |
3535
const { mkdir, writeFile } = require('node:fs/promises');
@@ -154,7 +154,7 @@ jobs:
154154
);
155155
156156
- name: Upload release notes JSON files
157-
uses: actions/upload-artifact@v4
157+
uses: actions/upload-artifact@v7
158158
with:
159159
name: release-notes
160160
path: docs/dist/release-notes
@@ -167,18 +167,18 @@ jobs:
167167
runs-on: ubuntu-latest
168168
needs: generate
169169
steps:
170-
- uses: actions/checkout@v4
170+
- uses: actions/checkout@v6
171171
with:
172172
repository: quasarframework/cdn
173173
token: ${{ secrets.CDN_REPO_PAT }}
174174

175175
- name: Download generated release notes JSON files
176-
uses: actions/download-artifact@v4
176+
uses: actions/download-artifact@v8
177177
with:
178178
name: release-notes
179179
path: release-notes
180180

181-
- uses: stefanzweifel/git-auto-commit-action@v5
181+
- uses: stefanzweifel/git-auto-commit-action@v7
182182
with:
183183
commit_message: |
184184
Generated release notes for Quasar packages

.github/workflows/tests-on-pr-report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
steps:
2626
- name: Download the tests results artifacts
2727
id: results
28-
uses: actions/github-script@v7
28+
uses: actions/github-script@v8
2929
with:
3030
script: |
3131
const { readFile, writeFile, unlink } = require('node:fs/promises');

.github/workflows/tests-on-pr.yml

Lines changed: 17 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ on:
1111
- 'ui/package.json'
1212
- 'ui/playground/package.json'
1313

14+
concurrency:
15+
group: ${{ github.workflow }}-${{ github.ref }}
16+
cancel-in-progress: true
17+
1418
jobs:
1519
build:
1620
permissions:
@@ -23,13 +27,13 @@ jobs:
2327
name: Build the packages
2428
steps:
2529
- name: Checkout code
26-
uses: actions/checkout@v4
30+
uses: actions/checkout@v6
2731

2832
- name: Setup pnpm
29-
uses: pnpm/action-setup@v3
33+
uses: pnpm/action-setup@v5
3034

3135
- name: Setup Node
32-
uses: actions/setup-node@v4
36+
uses: actions/setup-node@v6
3337
with:
3438
node-version: 24
3539
cache: 'pnpm'
@@ -42,7 +46,7 @@ jobs:
4246
run: pnpm build
4347

4448
- name: Upload UI build artifact
45-
uses: actions/upload-artifact@v4
49+
uses: actions/upload-artifact@v7
4650
with:
4751
name: ui-build
4852
path: ui/dist
@@ -52,7 +56,7 @@ jobs:
5256
run: pnpm build
5357

5458
- name: Upload vite-plugin build artifact
55-
uses: actions/upload-artifact@v4
59+
uses: actions/upload-artifact@v7
5660
with:
5761
name: vite-plugin-build
5862
path: vite-plugin/dist
@@ -77,28 +81,28 @@ jobs:
7781
name: Tests
7882
steps:
7983
- name: Checkout code
80-
uses: actions/checkout@v4
84+
uses: actions/checkout@v6
8185

8286
- name: Setup pnpm
83-
uses: pnpm/action-setup@v3
87+
uses: pnpm/action-setup@v5
8488

8589
- name: Setup Node
86-
uses: actions/setup-node@v4
90+
uses: actions/setup-node@v6
8791
with:
88-
node-version: 20
92+
node-version: 24
8993
cache: 'pnpm'
9094

9195
- name: Install dependencies
9296
run: pnpm i
9397

9498
- name: Download UI build artifact
95-
uses: actions/download-artifact@v4
99+
uses: actions/download-artifact@v8
96100
with:
97101
name: ui-build
98102
path: ui/dist
99103

100104
- name: Download vite-plugin build artifact
101-
uses: actions/download-artifact@v4
105+
uses: actions/download-artifact@v8
102106
with:
103107
name: vite-plugin-build
104108
path: vite-plugin/dist
@@ -110,14 +114,14 @@ jobs:
110114

111115
- name: Upload test results
112116
if: ${{ always() }}
113-
uses: actions/upload-artifact@v4
117+
uses: actions/upload-artifact@v7
114118
with:
115119
name: test-results
116120
path: ui/testing/test-results
117121

118122
- name: Upload GitHub Actions event data
119123
if: ${{ always() }}
120-
uses: actions/upload-artifact@v4
124+
uses: actions/upload-artifact@v7
121125
with:
122126
name: event-data
123127
path: ${{ github.event_path }}

0 commit comments

Comments
 (0)