2a52d40bbf
This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---| | [jsdom](https://github.com/jsdom/jsdom) | [`28.1.0` → `29.0.0`](https://renovatebot.com/diffs/npm/jsdom/28.1.0/29.0.0) |  |  | --- ### Release Notes <details> <summary>jsdom/jsdom (jsdom)</summary> ### [`v29.0.0`](https://github.com/jsdom/jsdom/blob/HEAD/Changelog.md#2900) [Compare Source](https://github.com/jsdom/jsdom/compare/v28.1.0...v29.0.0) Breaking changes: - Node.js v22.13.0+ is now the minimum supported v22 version (was v22.12.0+). Other changes: - Overhauled the CSSOM implementation, replacing the [`@acemir/cssom`](https://www.npmjs.com/package/@​acemir/cssom) and [`cssstyle`](https://github.com/jsdom/cssstyle) dependencies with fresh internal implementations built on webidl2js wrappers and the [`css-tree`](https://www.npmjs.com/package/css-tree) parser. Serialization, parsing, and API behavior is improved in various ways, especially around edge cases. - Added `CSSCounterStyleRule` and `CSSNamespaceRule` to jsdom `Window`s. - Added `cssMediaRule.matches` and `cssSupportsRule.matches` getters. - Added proper media query parsing in `MediaList`, using `css-tree` instead of naive comma-splitting. Invalid queries become `"not all"` per spec. - Added `cssKeyframeRule.keyText` getter/setter validation. - Added `cssStyleRule.selectorText` setter validation: invalid selectors are now rejected. - Added `styleSheet.ownerNode`, `styleSheet.href`, and `styleSheet.title`. - Added bad port blocking per the [fetch specification](https://fetch.spec.whatwg.org/#bad-port), preventing fetches to commonly-abused ports. - Improved `Document` initialization performance by lazily initializing the CSS selector engine, avoiding \~0.5 ms of overhead per `Document`. (thypon) - Fixed a memory leak when stylesheets were removed from the document. - Fixed `CSSStyleDeclaration` modifications to properly trigger custom element reactions. - Fixed nested `@media` rule parsing. - Fixed `CSSStyleSheet`'s "disallow modification" flag not being checked in all mutation methods. - Fixed `XMLHttpRequest`'s `response` getter returning parsed JSON during the `LOADING` state instead of `null`. - Fixed `getComputedStyle()` crashing in XHTML documents when stylesheets contained at-rules such as `@page` or `@font-face`. - Fixed a potential hang in synchronous `XMLHttpRequest` caused by a race condition with the worker thread's idle timeout. </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My41OS40IiwidXBkYXRlZEluVmVyIjoiNDMuNTkuNCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==--> Reviewed-on: #142 Co-authored-by: Renovate Bot <renovate@unbound.se> Co-committed-by: Renovate Bot <renovate@unbound.se>
65 lines
2.0 KiB
JSON
65 lines
2.0 KiB
JSON
{
|
|
"name": "schemas-app",
|
|
"type": "module",
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "nuxt build",
|
|
"dev": "nuxt dev",
|
|
"generate": "nuxt generate",
|
|
"preview": "nuxt preview",
|
|
"postinstall": "nuxt prepare",
|
|
"codegen": "graphql-codegen --config codegen.yml",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"test:coverage": "vitest run --coverage",
|
|
"lint:js": "eslint .",
|
|
"lint:style": "stylelint \"**/*.{css,scss,sass,html,vue}\" --ignore-path .gitignore",
|
|
"lint": "npm run lint:js && npm run lint:style",
|
|
"lintfix": "eslint --fix . && npm run lint:style --fix"
|
|
},
|
|
"dependencies": {
|
|
"@apollo/client": "3.14.1",
|
|
"@auth0/auth0-vue": "2.5.0",
|
|
"@vue/apollo-composable": "4.2.2",
|
|
"graphql": "16.13.1",
|
|
"graphql-ws": "6.0.7",
|
|
"nuxt": "4.3.1",
|
|
"vue": "3.5.30",
|
|
"vuetify-nuxt-module": "0.19.5"
|
|
},
|
|
"version": "1.0.0",
|
|
"description": "Look at the [Nuxt documentation](https://nuxt.com/docs/getting-started/introduction) to learn more.",
|
|
"main": "index.js",
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"devDependencies": {
|
|
"@commitlint/cli": "20.4.4",
|
|
"@commitlint/config-conventional": "20.4.4",
|
|
"@graphql-codegen/cli": "6.2.1",
|
|
"@graphql-codegen/typed-document-node": "6.1.7",
|
|
"@graphql-codegen/typescript": "5.0.9",
|
|
"@graphql-codegen/typescript-operations": "5.0.9",
|
|
"@graphql-codegen/typescript-vue-apollo": "5.0.0",
|
|
"@nuxt/devtools": "3.2.3",
|
|
"@nuxt/eslint": "1.15.2",
|
|
"@nuxtjs/stylelint-module": "5.2.1",
|
|
"@stylistic/eslint-plugin": "5.10.0",
|
|
"@vitejs/plugin-vue": "6.0.5",
|
|
"@vitest/coverage-v8": "4.1.0",
|
|
"@vue/test-utils": "2.4.6",
|
|
"eslint": "10.0.3",
|
|
"eslint-plugin-simple-import-sort": "12.1.1",
|
|
"eslint-plugin-vue": "10.8.0",
|
|
"jsdom": "29.0.0",
|
|
"postcss-html": "1.8.1",
|
|
"stylelint": "17.4.0",
|
|
"stylelint-config-recommended-vue": "1.6.1",
|
|
"stylelint-config-standard": "40.0.0",
|
|
"typescript": "5.9.3",
|
|
"typescript-eslint": "8.57.0",
|
|
"vitest": "4.1.0",
|
|
"vue-eslint-parser": "10.4.0"
|
|
}
|
|
}
|