Skip to content

Commit 67c8445

Browse files
Merge pull request #59576 from nextcloud/dependabot/npm_and_yarn/stable33/vite-20b630b4a0
[stable33] chore(deps-dev): Bump the vite group across 2 directories with 1 update
2 parents f4fa083 + 4c92bb7 commit 67c8445

15 files changed

Lines changed: 123 additions & 53 deletions

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,8 @@ Vagrantfile
161161
/config/autoconfig.php
162162
clover.xml
163163
/coverage
164+
.vitest*/
165+
__screenshots__/
164166

165167
# Tests - dependencies
166168
tests/acceptance/vendor/

apps/files/src/services/Search.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ describe('Search service', () => {
3535
searchNodes.mockImplementationOnce(() => {
3636
throw new Error('expected error')
3737
})
38-
expect(() => getContents('', { signal: new AbortController().signal })).rejects.toThrow('expected error')
38+
await expect(() => getContents('', { signal: new AbortController().signal })).rejects.toThrow('expected error')
3939
})
4040

4141
it('returns the search results and a fake root', async () => {

build/frontend-legacy/package-lock.json

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

build/frontend-legacy/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@
131131
"regextras": "^0.8.0",
132132
"sass": "^1.99.0",
133133
"typescript": "^5.9.2",
134-
"vite": "^7.3.1",
134+
"vite": "^7.3.2",
135135
"vitest": "^4.1.4",
136136
"vue-loader": "^15.11.1",
137137
"vue-template-compiler": "^2.7.16",

build/frontend-legacy/vitest.config.mts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@ export default defineConfig({
5757
coverage: {
5858
include: ['./apps/*/src/**', 'core/src/**'],
5959
exclude: ['**.spec.*', '**.test.*', '**.cy.*', 'core/src/tests/**'],
60-
provider: 'istanbul',
6160
reporter: ['lcov', 'text'],
6261
reportsDirectory: resolve(import.meta.dirname, '../../coverage/legacy'),
6362
},

build/frontend/vitest.config.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ export default defineConfig({
5454
/* 'core/src/**', */
5555
],
5656
exclude: ['**.spec.*', '**.test.*', '**.cy.*', 'core/src/tests/**'],
57-
provider: 'istanbul',
5857
reporter: ['lcov', 'text'],
5958
reportsDirectory: resolve(import.meta.dirname, '../../coverage'),
6059
},
@@ -72,5 +71,11 @@ export default defineConfig({
7271
inline: [/@nextcloud\//],
7372
},
7473
},
74+
onUnhandledError(error) {
75+
// TODO: remove when this is fixed: https://github.com/nextcloud-libraries/nextcloud-vue/issues/8090
76+
if (error.message.includes('`fallbackFocus` was specified but was not a node, or did not return a node')) {
77+
return false
78+
}
79+
},
7580
},
7681
})

dist/index-BgmsSgl5.chunk.mjs.license

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ This file is generated from multiple sources. Included packages:
2020
- version: 6.0.1
2121
- license: MIT
2222
- vite
23-
- version: 7.3.1
23+
- version: 7.3.2
2424
- license: MIT

dist/index-BgmsSgl5.chunk.mjs.map.license

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ This file is generated from multiple sources. Included packages:
2020
- version: 6.0.1
2121
- license: MIT
2222
- vite
23-
- version: 7.3.1
23+
- version: 7.3.2
2424
- license: MIT

dist/index-Bndk0DrU.chunk.mjs.license

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ This file is generated from multiple sources. Included packages:
2828
- version: 7.7.3
2929
- license: ISC
3030
- vite
31-
- version: 7.3.1
31+
- version: 7.3.2
3232
- license: MIT
3333
- vite-plugin-node-polyfills
3434
- version: 0.24.0

dist/index-Bndk0DrU.chunk.mjs.map.license

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ This file is generated from multiple sources. Included packages:
2828
- version: 7.7.3
2929
- license: ISC
3030
- vite
31-
- version: 7.3.1
31+
- version: 7.3.2
3232
- license: MIT
3333
- vite-plugin-node-polyfills
3434
- version: 0.24.0

0 commit comments

Comments
 (0)