chore(deps): move @conduction/nextcloud-vue to 2.57.1 (Dexie loads on first use) - #1092
Merged
Merged
Conversation
… first use) 2.57.1 imports Dexie on first use of the offline database instead of at import time, so this app's bundle no longer evaluates Dexie on every page.
Contributor
Quality Report — ConductionNL/stackiq @
|
| Check | PHP | Vue | Security | License | Tests |
|---|---|---|---|---|---|
| lint | ✅ | ||||
| phpcs | ✅ | ||||
| phpmd | ✅ | ||||
| psalm | ✅ | ||||
| phpstan | ✅ | ||||
| phpmetrics | ✅ | ||||
| eslint | ✅ | ||||
| stylelint | ✅ | ||||
| build | ✅ | ||||
| check-manifest | ✅ | ||||
| check-vue-demi | ✅ | ||||
| test-l10n | ✅ | ||||
| format | ✅ | ||||
| check-schema-l10n | ✅ | ||||
| check-l10n-js | ✅ | ||||
| composer | ✅ | ✅ 130/130 | |||
| npm | ✅ | ✅ 807/807 | |||
| app:check-code | ⏭️ | ||||
| info.xml | ✅ | ||||
| REUSE | ❌ | ||||
| lockfile sync | ✅ | ||||
| PHPUnit | ✅ | ||||
| Newman | ⏭️ | ||||
| Playwright | ⏭️ deferred: E2E runs locally and on the promotion path only. This pull request targets development, so the suite is asked once per promotion into beta and main rather than once per push per open pull request. Run it on any branch from the Actions tab, or locally with npx playwright test. |
||||
| Hydra gates | ❌ |
Quality workflow — 2026-09-27 15:59 UTC
Download the full PDF report from the workflow artifacts.
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Moves
@conduction/nextcloud-vuefrom 2.55.1 to 2.57.1 (lockfile: 1 file changed, 4 insertions(+), 4 deletions(-)). The exactdexiepin (4.4.6) is unchanged.2.57.1 loads Dexie lazily:
openDb()doesimport('dexie')on first use (nextcloud-vue#1266, released through #1267). Before, the package root reachedofflineDb.js, which imported Dexie statically, so every page that loaded this app evaluated it. Dexie throws "Two different versions of Dexie loaded in the same app" when two bundles on one page carry different versions, and the app goes blank.Verified locally (serial run, npm 11):
npm ciandnpm run buildexit 0.semVer:"4.4.x"): stackiq-node_modules_dexie_import-wrapper-prod_mjs.jsjs/stackiq-main.jscarry no Dexie.Not verified: a browser pass on an instance. This is a lockfile-only change.
🤖 Generated with Claude Code