diff --git a/CHANGELOG.md b/CHANGELOG.md index 69de9397d3..f9f3b088ce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.14](https://github.com/feathersjs/feathers/compare/v5.0.13...v5.0.14) (2024-01-05) + +### Bug Fixes + +- **generators:** Harden mongodb.js to reliably extract database from any connection string ([#3264](https://github.com/feathersjs/feathers/issues/3264)) ([7b0f82c](https://github.com/feathersjs/feathers/commit/7b0f82c631ff5549cdc9a8e0ffcc705d067c2157)) +- **knex:** Add Error Handler to knex \_update function ([#3371](https://github.com/feathersjs/feathers/issues/3371)) ([210f103](https://github.com/feathersjs/feathers/commit/210f1037bf69c641d4fd335cd4f084cbbac0a922)) +- **schema:** Fix setting dispatch on existing nested objects ([#3380](https://github.com/feathersjs/feathers/issues/3380)) ([04efd5a](https://github.com/feathersjs/feathers/commit/04efd5ab3339beafa0e1a9ef851483a387c6ec96)) + ## [5.0.13](https://github.com/feathersjs/feathers/compare/v5.0.12...v5.0.13) (2023-12-29) **Note:** Version bump only for package feathers diff --git a/docs/cookbook/authentication/anonymous.md b/docs/cookbook/authentication/anonymous.md index a761a13c35..b8a4d88f22 100644 --- a/docs/cookbook/authentication/anonymous.md +++ b/docs/cookbook/authentication/anonymous.md @@ -68,10 +68,10 @@ Next, we create a hook called `allow-anonymous` that sets `params.authentication import { Hook, HookContext } from '@feathersjs/feathers'; export default (): Hook => { - return async (context: HookContext) => { + return async (context: HookContext, next?: NextFunction) => { const { params } = context; - if(params.provider && !params.authentication) { + if (params.provider && !params.authentication) { context.params = { ...params, authentication: { @@ -80,6 +80,10 @@ export default (): Hook => { } } + if (next) { + await next(); + } + return context; } } diff --git a/docs/package.json b/docs/package.json index 9603302d7c..355a1be3af 100644 --- a/docs/package.json +++ b/docs/package.json @@ -11,33 +11,33 @@ "start": "npm run dev" }, "dependencies": { - "@vueuse/core": "^10.7.0", - "date-fns": "^3.0.5", + "@vueuse/core": "^10.7.1", + "date-fns": "^3.0.6", "element-plus": "^2.4.4", "query-string": "^8.1.0", "shiki": "^0.14.7", - "vue": "^3.3.13" + "vue": "^3.4.3" }, "devDependencies": { - "@feathersjs/generators": "^5.0.12", + "@feathersjs/generators": "^5.0.13", "@iconify-json/carbon": "^1.1.27", - "@types/node": "^20.10.5", - "@unocss/preset-typography": "^0.58.0", - "@unocss/reset": "^0.58.0", - "@unocss/transformer-directives": "^0.58.0", - "@vitejs/plugin-vue": "^4.5.2", + "@types/node": "^20.10.6", + "@unocss/preset-typography": "^0.58.2", + "@unocss/reset": "^0.58.2", + "@unocss/transformer-directives": "^0.58.2", + "@vitejs/plugin-vue": "^5.0.2", "esno": "^4.0.0", "fast-glob": "^3.3.2", "flexsearch": "^0.7.31", "https-localhost": "^4.7.1", "markdown-it": "^14.0.0", - "sass": "^1.69.5", + "sass": "^1.69.6", "sitemap": "^7.1.1", - "unocss": "^0.58.0", - "unplugin-auto-import": "^0.17.2", + "unocss": "^0.58.2", + "unplugin-auto-import": "^0.17.3", "unplugin-vue-components": "^0.26.0", "vite-plugin-pwa": "^0.17.4", - "vitepress": "^1.0.0-rc.32", + "vitepress": "^1.0.0-rc.34", "vitepress-plugin-google-analytics": "^1.0.2", "vitepress-plugin-search": "^1.0.4-alpha.21", "workbox-window": "^7.0.0" diff --git a/lerna.json b/lerna.json index 71172d58d0..76d1aff6ac 100644 --- a/lerna.json +++ b/lerna.json @@ -1,7 +1,7 @@ { "ci": false, "packages": ["packages/*"], - "version": "5.0.13", + "version": "5.0.14", "command": { "bootstrap": { "hoist": true diff --git a/package-lock.json b/package-lock.json index 9ba7e2c45d..c872c25421 100644 --- a/package-lock.json +++ b/package-lock.json @@ -12,12 +12,12 @@ ], "devDependencies": { "@feathershq/pinion": "^0.4.0-pre.3", - "@typescript-eslint/eslint-plugin": "^6.15.0", - "@typescript-eslint/parser": "^6.15.0", + "@typescript-eslint/eslint-plugin": "^6.16.0", + "@typescript-eslint/parser": "^6.16.0", "c8": "^8.0.1", "eslint": "^8.56.0", "eslint-config-prettier": "^9.1.0", - "eslint-plugin-prettier": "^5.1.1", + "eslint-plugin-prettier": "^5.1.2", "lerna": "^8.0.1", "npm-check-updates": "^16.14.12", "prettier": "^3.1.1", @@ -33,33 +33,33 @@ }, "docs": { "dependencies": { - "@vueuse/core": "^10.7.0", - "date-fns": "^3.0.5", + "@vueuse/core": "^10.7.1", + "date-fns": "^3.0.6", "element-plus": "^2.4.4", "query-string": "^8.1.0", "shiki": "^0.14.7", - "vue": "^3.3.13" + "vue": "^3.4.3" }, "devDependencies": { - "@feathersjs/generators": "^5.0.12", + "@feathersjs/generators": "^5.0.13", "@iconify-json/carbon": "^1.1.27", - "@types/node": "^20.10.5", - "@unocss/preset-typography": "^0.58.0", - "@unocss/reset": "^0.58.0", - "@unocss/transformer-directives": "^0.58.0", - "@vitejs/plugin-vue": "^4.5.2", + "@types/node": "^20.10.6", + "@unocss/preset-typography": "^0.58.2", + "@unocss/reset": "^0.58.2", + "@unocss/transformer-directives": "^0.58.2", + "@vitejs/plugin-vue": "^5.0.2", "esno": "^4.0.0", "fast-glob": "^3.3.2", "flexsearch": "^0.7.31", "https-localhost": "^4.7.1", "markdown-it": "^14.0.0", - "sass": "^1.69.5", + "sass": "^1.69.6", "sitemap": "^7.1.1", - "unocss": "^0.58.0", - "unplugin-auto-import": "^0.17.2", + "unocss": "^0.58.2", + "unplugin-auto-import": "^0.17.3", "unplugin-vue-components": "^0.26.0", "vite-plugin-pwa": "^0.17.4", - "vitepress": "^1.0.0-rc.32", + "vitepress": "^1.0.0-rc.34", "vitepress-plugin-google-analytics": "^1.0.2", "vitepress-plugin-search": "^1.0.4-alpha.21", "workbox-window": "^7.0.0" @@ -71,13 +71,13 @@ "integrity": "sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==" }, "docs/node_modules/@vueuse/core": { - "version": "10.7.0", - "resolved": "https://registry.npmjs.org/@vueuse/core/-/core-10.7.0.tgz", - "integrity": "sha512-4EUDESCHtwu44ZWK3Gc/hZUVhVo/ysvdtwocB5vcauSV4B7NiGY5972WnsojB3vRNdxvAt7kzJWE2h9h7C9d5w==", + "version": "10.7.1", + "resolved": "https://registry.npmjs.org/@vueuse/core/-/core-10.7.1.tgz", + "integrity": "sha512-74mWHlaesJSWGp1ihg76vAnfVq9NTv1YT0SYhAQ6zwFNdBkkP+CKKJmVOEHcdSnLXCXYiL5e7MaewblfiYLP7g==", "dependencies": { "@types/web-bluetooth": "^0.0.20", - "@vueuse/metadata": "10.7.0", - "@vueuse/shared": "10.7.0", + "@vueuse/metadata": "10.7.1", + "@vueuse/shared": "10.7.1", "vue-demi": ">=0.14.6" }, "funding": { @@ -110,17 +110,17 @@ } }, "docs/node_modules/@vueuse/metadata": { - "version": "10.7.0", - "resolved": "https://registry.npmjs.org/@vueuse/metadata/-/metadata-10.7.0.tgz", - "integrity": "sha512-GlaH7tKP2iBCZ3bHNZ6b0cl9g0CJK8lttkBNUX156gWvNYhTKEtbweWLm9rxCPIiwzYcr/5xML6T8ZUEt+DkvA==", + "version": "10.7.1", + "resolved": "https://registry.npmjs.org/@vueuse/metadata/-/metadata-10.7.1.tgz", + "integrity": "sha512-jX8MbX5UX067DYVsbtrmKn6eG6KMcXxLRLlurGkZku5ZYT3vxgBjui2zajvUZ18QLIjrgBkFRsu7CqTAg18QFw==", "funding": { "url": "https://github.com/sponsors/antfu" } }, "docs/node_modules/@vueuse/shared": { - "version": "10.7.0", - "resolved": "https://registry.npmjs.org/@vueuse/shared/-/shared-10.7.0.tgz", - "integrity": "sha512-kc00uV6CiaTdc3i1CDC4a3lBxzaBE9AgYNtFN87B5OOscqeWElj/uza8qVDmk7/U8JbqoONLbtqiLJ5LGRuqlw==", + "version": "10.7.1", + "resolved": "https://registry.npmjs.org/@vueuse/shared/-/shared-10.7.1.tgz", + "integrity": "sha512-v0jbRR31LSgRY/C5i5X279A/WQjD6/JsMzGa+eqt658oJ75IvQXAeONmwvEMrvJQKnRElq/frzBR7fhmWY5uLw==", "dependencies": { "vue-demi": ">=0.14.6" }, @@ -436,9 +436,9 @@ } }, "node_modules/@antfu/utils": { - "version": "0.7.6", - "resolved": "https://registry.npmjs.org/@antfu/utils/-/utils-0.7.6.tgz", - "integrity": "sha512-pvFiLP2BeOKA/ZOS6jxx4XhKzdVLHDhGlFEaZ2flWWYf2xOqVniqpk38I04DFRyz+L0ASggl7SkItTc+ZLju4w==", + "version": "0.7.7", + "resolved": "https://registry.npmjs.org/@antfu/utils/-/utils-0.7.7.tgz", + "integrity": "sha512-gFPqTG7otEJ8uP6wrhDv6mqwGWYZKNvAcCq6u9hOj0c+IKCEsY4L1oC9trPq2SaWIzAfHvqfBDxF591JkMf+kg==", "dev": true, "funding": { "url": "https://github.com/sponsors/antfu" @@ -1477,9 +1477,9 @@ } }, "node_modules/@babel/core": { - "version": "7.23.6", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.23.6.tgz", - "integrity": "sha512-FxpRyGjrMJXh7X3wGLGhNDCRiwpWEF74sKjTLDJSG5Kyvow3QZaG0Adbqzi9ZrVjTWpsX+2cxWXD71NMg93kdw==", + "version": "7.23.7", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.23.7.tgz", + "integrity": "sha512-+UpDgowcmqe36d4NwqvKsyPMlOLNGMsfMmQ5WGCu+siCe3t3dfe9njrzGfdN4qq+bcNUt0+Vw6haRxBOycs4dw==", "dev": true, "dependencies": { "@ampproject/remapping": "^2.2.0", @@ -1487,10 +1487,10 @@ "@babel/generator": "^7.23.6", "@babel/helper-compilation-targets": "^7.23.6", "@babel/helper-module-transforms": "^7.23.3", - "@babel/helpers": "^7.23.6", + "@babel/helpers": "^7.23.7", "@babel/parser": "^7.23.6", "@babel/template": "^7.22.15", - "@babel/traverse": "^7.23.6", + "@babel/traverse": "^7.23.7", "@babel/types": "^7.23.6", "convert-source-map": "^2.0.0", "debug": "^4.1.0", @@ -1611,9 +1611,9 @@ "dev": true }, "node_modules/@babel/helper-create-class-features-plugin": { - "version": "7.23.5", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.23.5.tgz", - "integrity": "sha512-QELlRWxSpgdwdJzSJn4WAhKC+hvw/AtHbbrIoncKHkhKKR/luAlKkgBDcri1EzWAo8f8VvYVryEHN4tax/V67A==", + "version": "7.23.7", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.23.7.tgz", + "integrity": "sha512-xCoqR/8+BoNnXOY7RVSgv6X+o7pmT5q1d+gGcRlXYkI+9B31glE4jeejhKVpA04O1AtzOt7OSQ6VYKP5FcRl9g==", "dev": true, "dependencies": { "@babel/helper-annotate-as-pure": "^7.22.5", @@ -1669,9 +1669,9 @@ } }, "node_modules/@babel/helper-define-polyfill-provider": { - "version": "0.4.3", - "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.3.tgz", - "integrity": "sha512-WBrLmuPP47n7PNwsZ57pqam6G/RGo1vw/87b0Blc53tZNGZ4x7YvZ6HgQe2vo1W/FR20OgjeZuGXzudPiXHFug==", + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.4.tgz", + "integrity": "sha512-QcJMILQCu2jm5TFPGA3lCpJJTeEP+mqeXooG/NZbg/h5FTFi6V0+99ahlRsW8/kRLyb24LZVCCiclDedhLKcBA==", "dev": true, "dependencies": { "@babel/helper-compilation-targets": "^7.22.6", @@ -1894,13 +1894,13 @@ } }, "node_modules/@babel/helpers": { - "version": "7.23.6", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.23.6.tgz", - "integrity": "sha512-wCfsbN4nBidDRhpDhvcKlzHWCTlgJYUUdSJfzXb2NuBssDSIjc3xcb+znA7l+zYsFljAcGM0aFkN40cR3lXiGA==", + "version": "7.23.7", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.23.7.tgz", + "integrity": "sha512-6AMnjCoC8wjqBzDHkuqpa7jAKwvMo4dC+lr/TFBz+ucfulO1XMpDnwWPGBNwClOKZ8h6xn5N81W/R5OrcKtCbQ==", "dev": true, "dependencies": { "@babel/template": "^7.22.15", - "@babel/traverse": "^7.23.6", + "@babel/traverse": "^7.23.7", "@babel/types": "^7.23.6" }, "engines": { @@ -2036,9 +2036,9 @@ } }, "node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.23.3.tgz", - "integrity": "sha512-XaJak1qcityzrX0/IU5nKHb34VaibwP3saKqG6a/tppelgllOH13LUann4ZCIBcVOeE6H18K4Vx9QKkVww3z/w==", + "version": "7.23.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.23.7.tgz", + "integrity": "sha512-LlRT7HgaifEpQA1ZgLVOIJZZFVPWN5iReq/7/JixwBtwcoeVGDBD53ZV28rrsLYOZs1Y/EHhA8N/Z6aazHR8cw==", "dev": true, "dependencies": { "@babel/helper-environment-visitor": "^7.22.20", @@ -2344,9 +2344,9 @@ } }, "node_modules/@babel/plugin-transform-async-generator-functions": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.23.4.tgz", - "integrity": "sha512-efdkfPhHYTtn0G6n2ddrESE91fgXxjlqLsnUtPWnJs4a4mZIbUaK7ffqKIIUKXSHwcDvaCVX6GXkaJJFqtX7jw==", + "version": "7.23.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.23.7.tgz", + "integrity": "sha512-PdxEpL71bJp1byMG0va5gwQcXHxuEYC/BgI/e88mGTtohbZN28O5Yit0Plkkm/dBzCF/BxmbNcses1RH1T+urA==", "dev": true, "dependencies": { "@babel/helper-environment-visitor": "^7.22.20", @@ -3048,13 +3048,13 @@ } }, "node_modules/@babel/plugin-transform-typescript": { - "version": "7.23.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.23.5.tgz", - "integrity": "sha512-2fMkXEJkrmwgu2Bsv1Saxgj30IXZdJ+84lQcKKI7sm719oXs0BBw2ZENKdJdR1PjWndgLCEBNXJOri0fk7RYQA==", + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.23.6.tgz", + "integrity": "sha512-6cBG5mBvUu4VUD04OHKnYzbuHNP8huDsD3EDqqpIpsswTDoqHCjLoHb6+QgsV1WsT2nipRqCPgxD3LXnEO7XfA==", "dev": true, "dependencies": { "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-create-class-features-plugin": "^7.23.5", + "@babel/helper-create-class-features-plugin": "^7.23.6", "@babel/helper-plugin-utils": "^7.22.5", "@babel/plugin-syntax-typescript": "^7.23.3" }, @@ -3129,9 +3129,9 @@ } }, "node_modules/@babel/preset-env": { - "version": "7.23.6", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.23.6.tgz", - "integrity": "sha512-2XPn/BqKkZCpzYhUUNZ1ssXw7DcXfKQEjv/uXZUXgaebCMYmkEsfZ2yY+vv+xtXv50WmL5SGhyB6/xsWxIvvOQ==", + "version": "7.23.7", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.23.7.tgz", + "integrity": "sha512-SY27X/GtTz/L4UryMNJ6p4fH4nsgWbz84y9FE0bQeWJP6O5BhgVCt53CotQKHCOeXJel8VyhlhujhlltKms/CA==", "dev": true, "dependencies": { "@babel/compat-data": "^7.23.5", @@ -3140,7 +3140,7 @@ "@babel/helper-validator-option": "^7.23.5", "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.23.3", "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.23.3", - "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.23.3", + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.23.7", "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", "@babel/plugin-syntax-async-generators": "^7.8.4", "@babel/plugin-syntax-class-properties": "^7.12.13", @@ -3161,7 +3161,7 @@ "@babel/plugin-syntax-top-level-await": "^7.14.5", "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", "@babel/plugin-transform-arrow-functions": "^7.23.3", - "@babel/plugin-transform-async-generator-functions": "^7.23.4", + "@babel/plugin-transform-async-generator-functions": "^7.23.7", "@babel/plugin-transform-async-to-generator": "^7.23.3", "@babel/plugin-transform-block-scoped-functions": "^7.23.3", "@babel/plugin-transform-block-scoping": "^7.23.4", @@ -3209,9 +3209,9 @@ "@babel/plugin-transform-unicode-regex": "^7.23.3", "@babel/plugin-transform-unicode-sets-regex": "^7.23.3", "@babel/preset-modules": "0.1.6-no-external-plugins", - "babel-plugin-polyfill-corejs2": "^0.4.6", - "babel-plugin-polyfill-corejs3": "^0.8.5", - "babel-plugin-polyfill-regenerator": "^0.5.3", + "babel-plugin-polyfill-corejs2": "^0.4.7", + "babel-plugin-polyfill-corejs3": "^0.8.7", + "babel-plugin-polyfill-regenerator": "^0.5.4", "core-js-compat": "^3.31.0", "semver": "^6.3.1" }, @@ -3307,9 +3307,9 @@ } }, "node_modules/@babel/traverse": { - "version": "7.23.6", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.6.tgz", - "integrity": "sha512-czastdK1e8YByZqezMPFiZ8ahwVMh/ESl9vPgvgdB9AmFMGP5jfpFax74AQgl5zj4XHzqeYAg2l8PuUeRS1MgQ==", + "version": "7.23.7", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.7.tgz", + "integrity": "sha512-tY3mM8rH9jM0YHFGyfC0/xf+SB5eKUu7HPj7/k3fpi9dAlsMc5YbQvDi0Sh2QTPXqMhyaAtzAr807TIyfQrmyg==", "dev": true, "dependencies": { "@babel/code-frame": "^7.23.5", @@ -4118,9 +4118,9 @@ "dev": true }, "node_modules/@iconify/utils": { - "version": "2.1.12", - "resolved": "https://registry.npmjs.org/@iconify/utils/-/utils-2.1.12.tgz", - "integrity": "sha512-7vf3Uk6H7TKX4QMs2gbg5KR1X9J0NJzKSRNWhMZ+PWN92l0t6Q3tj2ZxLDG07rC3ppWBtTtA4FPmkQphuEmdsg==", + "version": "2.1.14", + "resolved": "https://registry.npmjs.org/@iconify/utils/-/utils-2.1.14.tgz", + "integrity": "sha512-9pKIntkbLbjVVFxH32td21Am3AGGJfyI2KY2d8yDQxkZe4BBZtufJI8NgcamFn8B5QKLU9ai2VMo8OEov8jAtw==", "dev": true, "dependencies": { "@antfu/install-pkg": "^0.1.1", @@ -6074,19 +6074,11 @@ "node": ">=14" } }, - "node_modules/@pkgr/utils": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/@pkgr/utils/-/utils-2.4.2.tgz", - "integrity": "sha512-POgTXhjrTfbTV63DiFXav4lBHiICLKKwDeaKn9Nphwj7WH6m0hMMCaJkMyRWjgtPFyRKRVoMXXjczsTQRDEhYw==", + "node_modules/@pkgr/core": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/@pkgr/core/-/core-0.1.0.tgz", + "integrity": "sha512-Zwq5OCzuwJC2jwqmpEQt7Ds1DTi6BWSwoGkbb1n9pO3hzb35BoJELx7c0T23iDkBGkh2e7tvOtjF3tr3OaQHDQ==", "dev": true, - "dependencies": { - "cross-spawn": "^7.0.3", - "fast-glob": "^3.3.0", - "is-glob": "^4.0.3", - "open": "^9.1.0", - "picocolors": "^1.0.0", - "tslib": "^2.6.0" - }, "engines": { "node": "^12.20.0 || ^14.18.0 || >=16.0.0" }, @@ -6094,36 +6086,6 @@ "url": "https://opencollective.com/unts" } }, - "node_modules/@pkgr/utils/node_modules/define-lazy-prop": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz", - "integrity": "sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@pkgr/utils/node_modules/open": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/open/-/open-9.1.0.tgz", - "integrity": "sha512-OS+QTnw1/4vrf+9hh1jc1jnYjzSG4ttTBB8UxOwAnInG3Uo4ssetzC1ihqaIHjLJnA5GGlRl6QlZXOTQhRBUvg==", - "dev": true, - "dependencies": { - "default-browser": "^4.0.0", - "define-lazy-prop": "^3.0.0", - "is-inside-container": "^1.0.0", - "is-wsl": "^2.2.0" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/@pnpm/config.env-replace": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/@pnpm/config.env-replace/-/config.env-replace-1.1.0.tgz", @@ -7386,9 +7348,9 @@ } }, "node_modules/@types/cookiejar": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/@types/cookiejar/-/cookiejar-2.1.2.tgz", - "integrity": "sha512-t73xJJrvdTjXrn4jLS9VSGRbz0nUY3cl2DMGDU48lKl+HR9dbbjW2A9r3g40VA++mQpy6uuHg33gy7du2BKpog==" + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@types/cookiejar/-/cookiejar-2.1.5.tgz", + "integrity": "sha512-he+DHOWReW0nghN24E1WUqM0efK4kI9oTqDm6XmK8ZPe2djZ90BSNdGnIyCLzCPw7/pogPlGbzI2wHGGmi4O/Q==" }, "node_modules/@types/cookies": { "version": "0.7.7", @@ -7477,15 +7439,6 @@ "@types/node": "*" } }, - "node_modules/@types/hast": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@types/hast/-/hast-3.0.3.tgz", - "integrity": "sha512-2fYGlaDy/qyLlhidX42wAH0KBi2TCjKMH8CHmBXgRlJ3Y+OXTiqsPQ6IWarZKwF1JoUcAJdPogv1d4b0COTpmQ==", - "dev": true, - "dependencies": { - "@types/unist": "*" - } - }, "node_modules/@types/http-assert": { "version": "1.5.3", "resolved": "https://registry.npmjs.org/@types/http-assert/-/http-assert-1.5.3.tgz", @@ -7552,9 +7505,9 @@ } }, "node_modules/@types/koa__cors": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/@types/koa__cors/-/koa__cors-4.0.3.tgz", - "integrity": "sha512-zj+1sQO/6GGRGINRXlMmoiFwHibKVcjNGdh+p2SpqHDMLyvC+ce0LMHX6UBi1rdpnPZ/+osUwWdGKF945ffrzA==", + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@types/koa__cors/-/koa__cors-5.0.0.tgz", + "integrity": "sha512-LCk/n25Obq5qlernGOK/2LUwa/2YJb2lxHUkkvYFDOpLXlVI6tKcdfCHRBQnOY4LwH6el5WOLs6PD/a8Uzau6g==", "dependencies": { "@types/koa": "*" } @@ -7631,15 +7584,6 @@ "@types/mdurl": "*" } }, - "node_modules/@types/mdast": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.3.tgz", - "integrity": "sha512-LsjtqsyF+d2/yFOYaN22dHZI1Cpwkrj+g06G8+qtUKlhovPW89YhqSnfKtMbkgmEtYpH2gydRNULd6y8mciAFg==", - "dev": true, - "dependencies": { - "@types/unist": "*" - } - }, "node_modules/@types/mdurl": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/@types/mdurl/-/mdurl-1.0.5.tgz", @@ -7685,17 +7629,17 @@ } }, "node_modules/@types/node": { - "version": "20.10.5", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.10.5.tgz", - "integrity": "sha512-nNPsNE65wjMxEKI93yOP+NPGGBJz/PoN3kZsVLee0XMiJolxSekEVD8wRwBUBqkwc7UWop0edW50yrCQW4CyRw==", + "version": "20.10.6", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.10.6.tgz", + "integrity": "sha512-Vac8H+NlRNNlAmDfGUP7b5h/KA+AtWIzuXy0E6OyP8f1tCLYAtPvKRRDJjAPqhpCb0t6U2j7/xqAuLEebW2kiw==", "dependencies": { "undici-types": "~5.26.4" } }, "node_modules/@types/node-fetch": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.9.tgz", - "integrity": "sha512-bQVlnMLFJ2d35DkPNjEPmd9ueO/rh5EiaZt2bhqiSarPjZIuIV6bPQVqcrEyvNo+AfTrRGVazle1tl597w3gfA==", + "version": "2.6.10", + "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.10.tgz", + "integrity": "sha512-PPpPK6F9ALFTn59Ka3BaL+qGuipRfxNE8qVgkp0bVixeiR2c2/L+IVOiBdu9JhhT22sWnQEp6YyHGI2b2+CMcA==", "dev": true, "dependencies": { "@types/node": "*", @@ -7768,12 +7712,12 @@ } }, "node_modules/@types/superagent": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/@types/superagent/-/superagent-8.1.0.tgz", - "integrity": "sha512-GXR/ZID+mf0z4pHnN25tBma8iZMuoQWbOS5DCUUACC5VI0WiYt2YmeK09ttsci3l2Ucrfn56Bj701z5iLqpiDw==", + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/@types/superagent/-/superagent-8.1.1.tgz", + "integrity": "sha512-YQyEXA4PgCl7EVOoSAS3o0fyPFU6erv5mMixztQYe1bqbWmmn8c+IrqoxjQeZe4MgwXikgcaZPiI/DsbmOVlzA==", "dependencies": { - "@types/cookiejar": "*", - "@types/methods": "*", + "@types/cookiejar": "^2.1.5", + "@types/methods": "^1.1.4", "@types/node": "*" } }, @@ -7797,12 +7741,6 @@ "integrity": "sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==", "dev": true }, - "node_modules/@types/unist": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.2.tgz", - "integrity": "sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ==", - "dev": true - }, "node_modules/@types/uuid": { "version": "9.0.7", "resolved": "https://registry.npmjs.org/@types/uuid/-/uuid-9.0.7.tgz", @@ -7841,16 +7779,16 @@ "integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==" }, "node_modules/@typescript-eslint/eslint-plugin": { - "version": "6.15.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.15.0.tgz", - "integrity": "sha512-j5qoikQqPccq9QoBAupOP+CBu8BaJ8BLjaXSioDISeTZkVO3ig7oSIKh3H+rEpee7xCXtWwSB4KIL5l6hWZzpg==", + "version": "6.16.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.16.0.tgz", + "integrity": "sha512-O5f7Kv5o4dLWQtPX4ywPPa+v9G+1q1x8mz0Kr0pXUtKsevo+gIJHLkGc8RxaZWtP8RrhwhSNIWThnW42K9/0rQ==", "dev": true, "dependencies": { "@eslint-community/regexpp": "^4.5.1", - "@typescript-eslint/scope-manager": "6.15.0", - "@typescript-eslint/type-utils": "6.15.0", - "@typescript-eslint/utils": "6.15.0", - "@typescript-eslint/visitor-keys": "6.15.0", + "@typescript-eslint/scope-manager": "6.16.0", + "@typescript-eslint/type-utils": "6.16.0", + "@typescript-eslint/utils": "6.16.0", + "@typescript-eslint/visitor-keys": "6.16.0", "debug": "^4.3.4", "graphemer": "^1.4.0", "ignore": "^5.2.4", @@ -7876,15 +7814,15 @@ } }, "node_modules/@typescript-eslint/parser": { - "version": "6.15.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-6.15.0.tgz", - "integrity": "sha512-MkgKNnsjC6QwcMdlNAel24jjkEO/0hQaMDLqP4S9zq5HBAUJNQB6y+3DwLjX7b3l2b37eNAxMPLwb3/kh8VKdA==", + "version": "6.16.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-6.16.0.tgz", + "integrity": "sha512-H2GM3eUo12HpKZU9njig3DF5zJ58ja6ahj1GoHEHOgQvYxzoFJJEvC1MQ7T2l9Ha+69ZSOn7RTxOdpC/y3ikMw==", "dev": true, "dependencies": { - "@typescript-eslint/scope-manager": "6.15.0", - "@typescript-eslint/types": "6.15.0", - "@typescript-eslint/typescript-estree": "6.15.0", - "@typescript-eslint/visitor-keys": "6.15.0", + "@typescript-eslint/scope-manager": "6.16.0", + "@typescript-eslint/types": "6.16.0", + "@typescript-eslint/typescript-estree": "6.16.0", + "@typescript-eslint/visitor-keys": "6.16.0", "debug": "^4.3.4" }, "engines": { @@ -7904,13 +7842,13 @@ } }, "node_modules/@typescript-eslint/scope-manager": { - "version": "6.15.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-6.15.0.tgz", - "integrity": "sha512-+BdvxYBltqrmgCNu4Li+fGDIkW9n//NrruzG9X1vBzaNK+ExVXPoGB71kneaVw/Jp+4rH/vaMAGC6JfMbHstVg==", + "version": "6.16.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-6.16.0.tgz", + "integrity": "sha512-0N7Y9DSPdaBQ3sqSCwlrm9zJwkpOuc6HYm7LpzLAPqBL7dmzAUimr4M29dMkOP/tEwvOCC/Cxo//yOfJD3HUiw==", "dev": true, "dependencies": { - "@typescript-eslint/types": "6.15.0", - "@typescript-eslint/visitor-keys": "6.15.0" + "@typescript-eslint/types": "6.16.0", + "@typescript-eslint/visitor-keys": "6.16.0" }, "engines": { "node": "^16.0.0 || >=18.0.0" @@ -7921,13 +7859,13 @@ } }, "node_modules/@typescript-eslint/type-utils": { - "version": "6.15.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-6.15.0.tgz", - "integrity": "sha512-CnmHKTfX6450Bo49hPg2OkIm/D/TVYV7jO1MCfPYGwf6x3GO0VU8YMO5AYMn+u3X05lRRxA4fWCz87GFQV6yVQ==", + "version": "6.16.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-6.16.0.tgz", + "integrity": "sha512-ThmrEOcARmOnoyQfYkHw/DX2SEYBalVECmoldVuH6qagKROp/jMnfXpAU/pAIWub9c4YTxga+XwgAkoA0pxfmg==", "dev": true, "dependencies": { - "@typescript-eslint/typescript-estree": "6.15.0", - "@typescript-eslint/utils": "6.15.0", + "@typescript-eslint/typescript-estree": "6.16.0", + "@typescript-eslint/utils": "6.16.0", "debug": "^4.3.4", "ts-api-utils": "^1.0.1" }, @@ -7948,9 +7886,9 @@ } }, "node_modules/@typescript-eslint/types": { - "version": "6.15.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-6.15.0.tgz", - "integrity": "sha512-yXjbt//E4T/ee8Ia1b5mGlbNj9fB9lJP4jqLbZualwpP2BCQ5is6BcWwxpIsY4XKAhmdv3hrW92GdtJbatC6dQ==", + "version": "6.16.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-6.16.0.tgz", + "integrity": "sha512-hvDFpLEvTJoHutVl87+MG/c5C8I6LOgEx05zExTSJDEVU7hhR3jhV8M5zuggbdFCw98+HhZWPHZeKS97kS3JoQ==", "dev": true, "engines": { "node": "^16.0.0 || >=18.0.0" @@ -7961,16 +7899,17 @@ } }, "node_modules/@typescript-eslint/typescript-estree": { - "version": "6.15.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-6.15.0.tgz", - "integrity": "sha512-7mVZJN7Hd15OmGuWrp2T9UvqR2Ecg+1j/Bp1jXUEY2GZKV6FXlOIoqVDmLpBiEiq3katvj/2n2mR0SDwtloCew==", + "version": "6.16.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-6.16.0.tgz", + "integrity": "sha512-VTWZuixh/vr7nih6CfrdpmFNLEnoVBF1skfjdyGnNwXOH1SLeHItGdZDHhhAIzd3ACazyY2Fg76zuzOVTaknGA==", "dev": true, "dependencies": { - "@typescript-eslint/types": "6.15.0", - "@typescript-eslint/visitor-keys": "6.15.0", + "@typescript-eslint/types": "6.16.0", + "@typescript-eslint/visitor-keys": "6.16.0", "debug": "^4.3.4", "globby": "^11.1.0", "is-glob": "^4.0.3", + "minimatch": "9.0.3", "semver": "^7.5.4", "ts-api-utils": "^1.0.1" }, @@ -7987,18 +7926,42 @@ } } }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": { + "version": "9.0.3", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", + "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, "node_modules/@typescript-eslint/utils": { - "version": "6.15.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-6.15.0.tgz", - "integrity": "sha512-eF82p0Wrrlt8fQSRL0bGXzK5nWPRV2dYQZdajcfzOD9+cQz9O7ugifrJxclB+xVOvWvagXfqS4Es7vpLP4augw==", + "version": "6.16.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-6.16.0.tgz", + "integrity": "sha512-T83QPKrBm6n//q9mv7oiSvy/Xq/7Hyw9SzSEhMHJwznEmQayfBM87+oAlkNAMEO7/MjIwKyOHgBJbxB0s7gx2A==", "dev": true, "dependencies": { "@eslint-community/eslint-utils": "^4.4.0", "@types/json-schema": "^7.0.12", "@types/semver": "^7.5.0", - "@typescript-eslint/scope-manager": "6.15.0", - "@typescript-eslint/types": "6.15.0", - "@typescript-eslint/typescript-estree": "6.15.0", + "@typescript-eslint/scope-manager": "6.16.0", + "@typescript-eslint/types": "6.16.0", + "@typescript-eslint/typescript-estree": "6.16.0", "semver": "^7.5.4" }, "engines": { @@ -8013,12 +7976,12 @@ } }, "node_modules/@typescript-eslint/visitor-keys": { - "version": "6.15.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-6.15.0.tgz", - "integrity": "sha512-1zvtdC1a9h5Tb5jU9x3ADNXO9yjP8rXlaoChu0DQX40vf5ACVpYIVIZhIMZ6d5sDXH7vq4dsZBT1fEGj8D2n2w==", + "version": "6.16.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-6.16.0.tgz", + "integrity": "sha512-QSFQLruk7fhs91a/Ep/LqRdbJCZ1Rq03rqBdKT5Ky17Sz8zRLUksqIe9DW0pKtg/Z35/ztbLQ6qpOCN6rOC11A==", "dev": true, "dependencies": { - "@typescript-eslint/types": "6.15.0", + "@typescript-eslint/types": "6.16.0", "eslint-visitor-keys": "^3.4.1" }, "engines": { @@ -8036,14 +7999,14 @@ "dev": true }, "node_modules/@unocss/astro": { - "version": "0.58.0", - "resolved": "https://registry.npmjs.org/@unocss/astro/-/astro-0.58.0.tgz", - "integrity": "sha512-df+tEFO5eKXjQOwSWQhS9IdjD0sfLHLtn8U09sEKR2Nmh5CvpwyBxmvLQgOCilPou7ehmyKfsyGRLZg7IMp+Ew==", + "version": "0.58.2", + "resolved": "https://registry.npmjs.org/@unocss/astro/-/astro-0.58.2.tgz", + "integrity": "sha512-KbcSSy1L8XS6+Y9XlVJ2+T4gMJOYmsFn3HDC26xJienomxoBvafT7I89zqRKoUKuBDOLd4SY5j0te84gCFrR3A==", "dev": true, "dependencies": { - "@unocss/core": "0.58.0", - "@unocss/reset": "0.58.0", - "@unocss/vite": "0.58.0" + "@unocss/core": "0.58.2", + "@unocss/reset": "0.58.2", + "@unocss/vite": "0.58.2" }, "funding": { "url": "https://github.com/sponsors/antfu" @@ -8058,16 +8021,16 @@ } }, "node_modules/@unocss/cli": { - "version": "0.58.0", - "resolved": "https://registry.npmjs.org/@unocss/cli/-/cli-0.58.0.tgz", - "integrity": "sha512-rhsrDBxAVueygMcAbMkbuvsHbBL2rG6N96LllYwHn16FLgOE3Sf4JW1/LlNjQje3BtwMMtbSCCAeu2SryFhzbw==", + "version": "0.58.2", + "resolved": "https://registry.npmjs.org/@unocss/cli/-/cli-0.58.2.tgz", + "integrity": "sha512-iRIsMUOQFwOQXZuhhZ2CTadElnEbySb5MrQ3ArZZgoOVr/PPdHSsOfqlY/mo6ObCwU0wSDw9uZHVgP6BAYkt0w==", "dev": true, "dependencies": { "@ampproject/remapping": "^2.2.1", "@rollup/pluginutils": "^5.1.0", - "@unocss/config": "0.58.0", - "@unocss/core": "0.58.0", - "@unocss/preset-uno": "0.58.0", + "@unocss/config": "0.58.2", + "@unocss/core": "0.58.2", + "@unocss/preset-uno": "0.58.2", "cac": "^6.7.14", "chokidar": "^3.5.3", "colorette": "^2.0.20", @@ -8094,12 +8057,12 @@ "dev": true }, "node_modules/@unocss/config": { - "version": "0.58.0", - "resolved": "https://registry.npmjs.org/@unocss/config/-/config-0.58.0.tgz", - "integrity": "sha512-WQD29gCZ7cajnMzezD1PRW0qQSxo/C6PX9ktygwhdinFx9nXuLZnKFOz65TiI8y48e53g1i7ivvgY3m4Sq5mIg==", + "version": "0.58.2", + "resolved": "https://registry.npmjs.org/@unocss/config/-/config-0.58.2.tgz", + "integrity": "sha512-HRii38g7Hm+OKNcxZdNQM08+b9/rZKHFX7yAKQXKIzWusYWF63aTfp3/nnfMf1Hqo8S3go78cPfFuLywW8dBng==", "dev": true, "dependencies": { - "@unocss/core": "0.58.0", + "@unocss/core": "0.58.2", "unconfig": "^0.3.11" }, "engines": { @@ -8110,50 +8073,50 @@ } }, "node_modules/@unocss/core": { - "version": "0.58.0", - "resolved": "https://registry.npmjs.org/@unocss/core/-/core-0.58.0.tgz", - "integrity": "sha512-KhABQXGE2AgtO9vE28d+HnciuyGDcuygsnQdUwlzUuR4K05OSw2kRE9emRN4HaMycD+gA/zDbQrJxTXb6mQUiA==", + "version": "0.58.2", + "resolved": "https://registry.npmjs.org/@unocss/core/-/core-0.58.2.tgz", + "integrity": "sha512-TYU6IRgnsZGVXpca6FYuXa3iJ1zI3hxgRhnb7TwE9j5t2GY4a/mjvg0K3MdiC8rzPP5hWWd9NXivBfJsr1SQpQ==", "dev": true, "funding": { "url": "https://github.com/sponsors/antfu" } }, "node_modules/@unocss/extractor-arbitrary-variants": { - "version": "0.58.0", - "resolved": "https://registry.npmjs.org/@unocss/extractor-arbitrary-variants/-/extractor-arbitrary-variants-0.58.0.tgz", - "integrity": "sha512-s9wK2UugJM0WK1HpgPz2kTbpeyQc46zais+nauN/ykVX6NMq8PtGzSWszzf+0aIbtWAQGiqAfiYNTpf09tJHfg==", + "version": "0.58.2", + "resolved": "https://registry.npmjs.org/@unocss/extractor-arbitrary-variants/-/extractor-arbitrary-variants-0.58.2.tgz", + "integrity": "sha512-/UOd7iGL8FxRnd4pvYzKX1lHvBeqgfw/MUwrIirta6k4sYsO4PVIszKGOEkstNqjGl90oQgxLGMjF3HGRAw8pg==", "dev": true, "dependencies": { - "@unocss/core": "0.58.0" + "@unocss/core": "0.58.2" }, "funding": { "url": "https://github.com/sponsors/antfu" } }, "node_modules/@unocss/inspector": { - "version": "0.58.0", - "resolved": "https://registry.npmjs.org/@unocss/inspector/-/inspector-0.58.0.tgz", - "integrity": "sha512-ZC4QauFGdh3/VkzW/FqkO2R03JEbzGNuX0DK03pwas8/jFIGh8pPldesj8GEKm1YWr1emx9cw7JUnhR8XSUBlA==", + "version": "0.58.2", + "resolved": "https://registry.npmjs.org/@unocss/inspector/-/inspector-0.58.2.tgz", + "integrity": "sha512-j4gDaW8fVI21HcbdbMp5k1YrQPeeDYRKn3j1k8KCZHNNODFR4vRgDW30uqsX9jhVHMMIWA8YTL3qkF4gOBXQaw==", "dev": true, "dependencies": { - "@unocss/core": "0.58.0", - "@unocss/rule-utils": "0.58.0", + "@unocss/core": "0.58.2", + "@unocss/rule-utils": "0.58.2", "gzip-size": "^6.0.0", - "sirv": "^2.0.3" + "sirv": "^2.0.4" }, "funding": { "url": "https://github.com/sponsors/antfu" } }, "node_modules/@unocss/postcss": { - "version": "0.58.0", - "resolved": "https://registry.npmjs.org/@unocss/postcss/-/postcss-0.58.0.tgz", - "integrity": "sha512-2hAwLbfUFqysi8FN1cn3xkHy5GhLMlYy6W4NrAZ2ws7F2MKpsCT2xCj7dT5cI2tW8ulD2YoVbKH15dBhNsMNUA==", + "version": "0.58.2", + "resolved": "https://registry.npmjs.org/@unocss/postcss/-/postcss-0.58.2.tgz", + "integrity": "sha512-5x6W9WxxU2NtaKJfhIKBtZs+KhvP8dOg/jG0VV+jrlwq67gMxa2LHdF1qI8kRje9L5th3Yz7Gl3TP2x/l/sbPQ==", "dev": true, "dependencies": { - "@unocss/config": "0.58.0", - "@unocss/core": "0.58.0", - "@unocss/rule-utils": "0.58.0", + "@unocss/config": "0.58.2", + "@unocss/core": "0.58.2", + "@unocss/rule-utils": "0.58.2", "css-tree": "^2.3.1", "fast-glob": "^3.3.2", "magic-string": "^0.30.5", @@ -8170,25 +8133,25 @@ } }, "node_modules/@unocss/preset-attributify": { - "version": "0.58.0", - "resolved": "https://registry.npmjs.org/@unocss/preset-attributify/-/preset-attributify-0.58.0.tgz", - "integrity": "sha512-Ew78noYes12K9gk4dF36MkjpiIqTi1XVqcniiAzxCkzuctxN4B57vW3LVTwjInGmWNNKWN3UNR4q1o0VxH4xJg==", + "version": "0.58.2", + "resolved": "https://registry.npmjs.org/@unocss/preset-attributify/-/preset-attributify-0.58.2.tgz", + "integrity": "sha512-AqJLta1+ZEGochFkE1/ft7udxKnVmnra22LmpGBP8nfZU1GoBamwpOnxAfYjM9e8HPs+BCAt1KJsGacFhC7Mzw==", "dev": true, "dependencies": { - "@unocss/core": "0.58.0" + "@unocss/core": "0.58.2" }, "funding": { "url": "https://github.com/sponsors/antfu" } }, "node_modules/@unocss/preset-icons": { - "version": "0.58.0", - "resolved": "https://registry.npmjs.org/@unocss/preset-icons/-/preset-icons-0.58.0.tgz", - "integrity": "sha512-niT32avw+8l+L40LGhrmX6qDV9Z8/gOn4xjjRhLZZouKni3CJOpz9taILyF4xp1nak5nxGT4wa0tuC/htvOF5A==", + "version": "0.58.2", + "resolved": "https://registry.npmjs.org/@unocss/preset-icons/-/preset-icons-0.58.2.tgz", + "integrity": "sha512-fN70AUDK635B1Ls2Td5nyJogwjbcnyMOscD6zvgGWn0O9YH5EXr7Wtww4Kd0We7TgglGuHpf5GIwFwllpcUfsQ==", "dev": true, "dependencies": { - "@iconify/utils": "^2.1.12", - "@unocss/core": "0.58.0", + "@iconify/utils": "^2.1.13", + "@unocss/core": "0.58.2", "ofetch": "^1.3.3" }, "funding": { @@ -8196,63 +8159,63 @@ } }, "node_modules/@unocss/preset-mini": { - "version": "0.58.0", - "resolved": "https://registry.npmjs.org/@unocss/preset-mini/-/preset-mini-0.58.0.tgz", - "integrity": "sha512-oMliJZVTN3ecAvf52yN+MyJszaJOZoKwMMbUAFqVis62MaqRzZ8mSw12QFLFyX2pltulDFpMBTAKro+hP0wXEg==", + "version": "0.58.2", + "resolved": "https://registry.npmjs.org/@unocss/preset-mini/-/preset-mini-0.58.2.tgz", + "integrity": "sha512-RhKRKKMCVMoceG8kcgoVm66GeCICM8mAStGSVnc6YUd2rwVVuJ3U8BD+szq6UnB6sISn9acfdCANUup91F5lEw==", "dev": true, "dependencies": { - "@unocss/core": "0.58.0", - "@unocss/extractor-arbitrary-variants": "0.58.0", - "@unocss/rule-utils": "0.58.0" + "@unocss/core": "0.58.2", + "@unocss/extractor-arbitrary-variants": "0.58.2", + "@unocss/rule-utils": "0.58.2" }, "funding": { "url": "https://github.com/sponsors/antfu" } }, "node_modules/@unocss/preset-tagify": { - "version": "0.58.0", - "resolved": "https://registry.npmjs.org/@unocss/preset-tagify/-/preset-tagify-0.58.0.tgz", - "integrity": "sha512-I+dzfs/bofiGb2AUxkhcTDhB+r2+/3SO81PFwf3Ae7afnzhA2SLsKAkEqO8YN3M3mwZL7IfXn6vpsWeEAlk/yw==", + "version": "0.58.2", + "resolved": "https://registry.npmjs.org/@unocss/preset-tagify/-/preset-tagify-0.58.2.tgz", + "integrity": "sha512-wfnzqHjSKCJgqy9yUt7e9yujDNcWIy0NyQrDqY8qqVzYKaP24t+Y13j4odH0dI2Gt9FFZHExjtHQAIH1bKJL5A==", "dev": true, "dependencies": { - "@unocss/core": "0.58.0" + "@unocss/core": "0.58.2" }, "funding": { "url": "https://github.com/sponsors/antfu" } }, "node_modules/@unocss/preset-typography": { - "version": "0.58.0", - "resolved": "https://registry.npmjs.org/@unocss/preset-typography/-/preset-typography-0.58.0.tgz", - "integrity": "sha512-8qo+Z1CJtXFMDbAvtizUTRLuLxCIzytgYU0GmuRkfc2iwASSDNDsvh8nAYQfWpyAEOV7QEHtS9c9xL4b0c89FA==", + "version": "0.58.2", + "resolved": "https://registry.npmjs.org/@unocss/preset-typography/-/preset-typography-0.58.2.tgz", + "integrity": "sha512-8T9Ftf8uhURjYY6REd3hziTyOti3T3OAUHlnCfYcS29bQmn/hTczq+D/ljB41RXoFybcy454Om1QDmdc0+Ky1w==", "dev": true, "dependencies": { - "@unocss/core": "0.58.0", - "@unocss/preset-mini": "0.58.0" + "@unocss/core": "0.58.2", + "@unocss/preset-mini": "0.58.2" } }, "node_modules/@unocss/preset-uno": { - "version": "0.58.0", - "resolved": "https://registry.npmjs.org/@unocss/preset-uno/-/preset-uno-0.58.0.tgz", - "integrity": "sha512-DpgfjtvSgsWeyZH+jQHc1k5IReiZNb7oGpHVnfF6SlHETTnMHSeNetxkPQWYrqJLPI6llNLPTdTa5j47NtmOiA==", + "version": "0.58.2", + "resolved": "https://registry.npmjs.org/@unocss/preset-uno/-/preset-uno-0.58.2.tgz", + "integrity": "sha512-9CrXrhN1yOaPv8z9jzQZ28qntB26t6eiY/LyQcYZf00AAz54JOyK+rDbArTuDXQBOcnDMTGgR7zEt19fLnSxrg==", "dev": true, "dependencies": { - "@unocss/core": "0.58.0", - "@unocss/preset-mini": "0.58.0", - "@unocss/preset-wind": "0.58.0", - "@unocss/rule-utils": "0.58.0" + "@unocss/core": "0.58.2", + "@unocss/preset-mini": "0.58.2", + "@unocss/preset-wind": "0.58.2", + "@unocss/rule-utils": "0.58.2" }, "funding": { "url": "https://github.com/sponsors/antfu" } }, "node_modules/@unocss/preset-web-fonts": { - "version": "0.58.0", - "resolved": "https://registry.npmjs.org/@unocss/preset-web-fonts/-/preset-web-fonts-0.58.0.tgz", - "integrity": "sha512-QarDDEUlexQ2IIn23pE1eHDskG2Tz+JjCe+FAN0DoNLLhvUUWSB4cQIMFWP6dSMJ047Blj9IpgAl9dERICW1qQ==", + "version": "0.58.2", + "resolved": "https://registry.npmjs.org/@unocss/preset-web-fonts/-/preset-web-fonts-0.58.2.tgz", + "integrity": "sha512-8CAJGIlG35XY0xkyMzYQp3eALb9zjlDFfKEelJuCqwN4bRL2wh3BdOB96a8isTqbCU2FXeXWNZHtM7zRP3LwQw==", "dev": true, "dependencies": { - "@unocss/core": "0.58.0", + "@unocss/core": "0.58.2", "ofetch": "^1.3.3" }, "funding": { @@ -8260,35 +8223,35 @@ } }, "node_modules/@unocss/preset-wind": { - "version": "0.58.0", - "resolved": "https://registry.npmjs.org/@unocss/preset-wind/-/preset-wind-0.58.0.tgz", - "integrity": "sha512-2zgaIy9RAGie9CsUYCkYRDSERBi8kG6Q/mQLgNfP9HMz5IThlnDHFWF/hLAVD51xQUg9gH8qWBR9kN/1ioT5Tw==", + "version": "0.58.2", + "resolved": "https://registry.npmjs.org/@unocss/preset-wind/-/preset-wind-0.58.2.tgz", + "integrity": "sha512-WevI3Cv0J7EXCsC+KVgs7/Ar1m9dBazlD+ooGIli5Fm7RWxp9+xg/UeaxdRaoDUaj6AQBIg1U0ZxHySM6VitiA==", "dev": true, "dependencies": { - "@unocss/core": "0.58.0", - "@unocss/preset-mini": "0.58.0", - "@unocss/rule-utils": "0.58.0" + "@unocss/core": "0.58.2", + "@unocss/preset-mini": "0.58.2", + "@unocss/rule-utils": "0.58.2" }, "funding": { "url": "https://github.com/sponsors/antfu" } }, "node_modules/@unocss/reset": { - "version": "0.58.0", - "resolved": "https://registry.npmjs.org/@unocss/reset/-/reset-0.58.0.tgz", - "integrity": "sha512-UVZ5kz37JGbwAA06k/gjKYcekcTwi6oIhev1EpTtCvHLL6XYcYqcwb/u4Wjzprd3L3lxDGYXvGdjREGm2u7vbQ==", + "version": "0.58.2", + "resolved": "https://registry.npmjs.org/@unocss/reset/-/reset-0.58.2.tgz", + "integrity": "sha512-ZzskZzrs7fPoKWrSpF1vehIr8TI7u4eS+MSurE0qUXatg0/nsXAZvaFYu0obu1kWrmnHyzA7G+m6LMX1h1tT7Q==", "dev": true, "funding": { "url": "https://github.com/sponsors/antfu" } }, "node_modules/@unocss/rule-utils": { - "version": "0.58.0", - "resolved": "https://registry.npmjs.org/@unocss/rule-utils/-/rule-utils-0.58.0.tgz", - "integrity": "sha512-LBJ9dJ/j5UIMzJF7pmIig55MtJAYtG+tn/zQRveZuPRVahzP+KqwlyB7u3uCUnQhdgo/MJODMcqyr0jl6+kTuA==", + "version": "0.58.2", + "resolved": "https://registry.npmjs.org/@unocss/rule-utils/-/rule-utils-0.58.2.tgz", + "integrity": "sha512-cbrMvSuLf2ZMqJqmiCzIrrH59wEhnH4Ui/dnq/goWAqFe042nET8TcHz++2npc2T8EZlCMoC3zstCJzVbxGCVQ==", "dev": true, "dependencies": { - "@unocss/core": "^0.58.0", + "@unocss/core": "^0.58.2", "magic-string": "^0.30.5" }, "engines": { @@ -8299,86 +8262,86 @@ } }, "node_modules/@unocss/scope": { - "version": "0.58.0", - "resolved": "https://registry.npmjs.org/@unocss/scope/-/scope-0.58.0.tgz", - "integrity": "sha512-XgUXZJvbxWSRC/DNOWI5DYdR6Nd6IZxsE5ls3AFA5msgtk5OH4YNQELLMabQw7xbRbU/fftlRJa3vncSfOyl6w==", + "version": "0.58.2", + "resolved": "https://registry.npmjs.org/@unocss/scope/-/scope-0.58.2.tgz", + "integrity": "sha512-1FnI7ANHLD3RdlPXoX0vlz5U3hZWe3vfqE71Ybzmgw6Yd2SASqXgtYu6BUvXIUC6lRv91reASJKziD+kXH5AnQ==", "dev": true }, "node_modules/@unocss/transformer-attributify-jsx": { - "version": "0.58.0", - "resolved": "https://registry.npmjs.org/@unocss/transformer-attributify-jsx/-/transformer-attributify-jsx-0.58.0.tgz", - "integrity": "sha512-QDdBEFDE7ntfCH7+8zHRW72MIQ9NH3uYGUE7lYgr5Ap8qzBHCxMT1kUrY6gwuoo3U4dMu2wruglYRHD88hvGkw==", + "version": "0.58.2", + "resolved": "https://registry.npmjs.org/@unocss/transformer-attributify-jsx/-/transformer-attributify-jsx-0.58.2.tgz", + "integrity": "sha512-ONP1u7OUd5T4fXFIikTk6+NPEs14T/x8lokWAoTsFxkDmf28AWZw/4rHiZ23e725M4sjRrjcUzX/kyHnTUEiKQ==", "dev": true, "dependencies": { - "@unocss/core": "0.58.0" + "@unocss/core": "0.58.2" }, "funding": { "url": "https://github.com/sponsors/antfu" } }, "node_modules/@unocss/transformer-attributify-jsx-babel": { - "version": "0.58.0", - "resolved": "https://registry.npmjs.org/@unocss/transformer-attributify-jsx-babel/-/transformer-attributify-jsx-babel-0.58.0.tgz", - "integrity": "sha512-ckDq/q476x2yikjS8usmSUGuakqMQrg2pm8sdBINTPdJxGc7kJRvI5UDnzRw4W9hE5IH+E4gg0XfCtFad0O3eg==", + "version": "0.58.2", + "resolved": "https://registry.npmjs.org/@unocss/transformer-attributify-jsx-babel/-/transformer-attributify-jsx-babel-0.58.2.tgz", + "integrity": "sha512-MrFyefBBuwhccS8di4RMdsUQnaN+zLCB/IJkXGY07Qlble9onDSrixZzAdG+TsY9kE/yPZ5UxvhMgOk23rda+w==", "dev": true, "dependencies": { - "@babel/core": "^7.23.5", + "@babel/core": "^7.23.6", "@babel/plugin-syntax-jsx": "^7.23.3", "@babel/preset-typescript": "^7.23.3", - "@unocss/core": "0.58.0" + "@unocss/core": "0.58.2" }, "funding": { "url": "https://github.com/sponsors/antfu" } }, "node_modules/@unocss/transformer-compile-class": { - "version": "0.58.0", - "resolved": "https://registry.npmjs.org/@unocss/transformer-compile-class/-/transformer-compile-class-0.58.0.tgz", - "integrity": "sha512-/BysfTg2q9sGPfiRHqWw/bT60/gjpBGBRVkIFsG4WVT2pgf3BfQUPu5FumSvZSRd0rA/pR57Lp6ZREAdj6+q+A==", + "version": "0.58.2", + "resolved": "https://registry.npmjs.org/@unocss/transformer-compile-class/-/transformer-compile-class-0.58.2.tgz", + "integrity": "sha512-Qn6XM7HYl7fnVqa2RkFNjrX10jAeaOvUJyC3PjaOUd1pk+lV4kMKQp/pDTZ3ZNpmvwNy80KCh2qEoj4MuUua1Q==", "dev": true, "dependencies": { - "@unocss/core": "0.58.0" + "@unocss/core": "0.58.2" }, "funding": { "url": "https://github.com/sponsors/antfu" } }, "node_modules/@unocss/transformer-directives": { - "version": "0.58.0", - "resolved": "https://registry.npmjs.org/@unocss/transformer-directives/-/transformer-directives-0.58.0.tgz", - "integrity": "sha512-sU2U/aIykRkGGbA4Qo9Z5XE/KqWf7KhBwC1m8pUoqjawsZex4aVnQgXzDPfcjtmy6pElwK0z2U5DnO+OK9vCgQ==", + "version": "0.58.2", + "resolved": "https://registry.npmjs.org/@unocss/transformer-directives/-/transformer-directives-0.58.2.tgz", + "integrity": "sha512-tvGvAiUozDXzTIvS/nrC6cGe3yYkB+KDl/evAbP/jZ55lGjL1B5kl/WQLdgptk2REyu8UTLne63U1Vv+tiB9Zw==", "dev": true, "dependencies": { - "@unocss/core": "0.58.0", - "@unocss/rule-utils": "0.58.0", + "@unocss/core": "0.58.2", + "@unocss/rule-utils": "0.58.2", "css-tree": "^2.3.1" } }, "node_modules/@unocss/transformer-variant-group": { - "version": "0.58.0", - "resolved": "https://registry.npmjs.org/@unocss/transformer-variant-group/-/transformer-variant-group-0.58.0.tgz", - "integrity": "sha512-O2n8uVIpNic57rrkaaQ8jnC1WJ9N6FkoqxatRDXZ368aJ1CJNya0ZcVUL6lGGND0bOLXen4WmEN62ZxEWTqdkA==", + "version": "0.58.2", + "resolved": "https://registry.npmjs.org/@unocss/transformer-variant-group/-/transformer-variant-group-0.58.2.tgz", + "integrity": "sha512-tfq8Kk4+RCO4wyVda8lPN6qrmCIR/6Yhilzt6cwnY6J4+V2q8dSi+Rpcs/UupZWhrwgohDroIYZHf6XEdQW7Eg==", "dev": true, "dependencies": { - "@unocss/core": "0.58.0" + "@unocss/core": "0.58.2" }, "funding": { "url": "https://github.com/sponsors/antfu" } }, "node_modules/@unocss/vite": { - "version": "0.58.0", - "resolved": "https://registry.npmjs.org/@unocss/vite/-/vite-0.58.0.tgz", - "integrity": "sha512-OCUOLMSOBEtXOEyBbAvMI3/xdR175BWRzmvV9Wc34ANZclEvCdVH8+WU725ibjY4VT0gVIuX68b13fhXdHV41A==", + "version": "0.58.2", + "resolved": "https://registry.npmjs.org/@unocss/vite/-/vite-0.58.2.tgz", + "integrity": "sha512-5mqHJ8QJEueF77YGSOHhcUHOblhX4aZc2Uvvjkqkord+19cEpZ8moyYuWjnYp5ja6EGaLLAjPs1011Byk4f7aw==", "dev": true, "dependencies": { "@ampproject/remapping": "^2.2.1", "@rollup/pluginutils": "^5.1.0", - "@unocss/config": "0.58.0", - "@unocss/core": "0.58.0", - "@unocss/inspector": "0.58.0", - "@unocss/scope": "0.58.0", - "@unocss/transformer-directives": "0.58.0", + "@unocss/config": "0.58.2", + "@unocss/core": "0.58.2", + "@unocss/inspector": "0.58.2", + "@unocss/scope": "0.58.2", + "@unocss/transformer-directives": "0.58.2", "chokidar": "^3.5.3", "fast-glob": "^3.3.2", "magic-string": "^0.30.5" @@ -8391,49 +8354,60 @@ } }, "node_modules/@vitejs/plugin-vue": { - "version": "4.5.2", - "resolved": "https://registry.npmjs.org/@vitejs/plugin-vue/-/plugin-vue-4.5.2.tgz", - "integrity": "sha512-UGR3DlzLi/SaVBPX0cnSyE37vqxU3O6chn8l0HJNzQzDia6/Au2A4xKv+iIJW8w2daf80G7TYHhi1pAUjdZ0bQ==", + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/@vitejs/plugin-vue/-/plugin-vue-5.0.2.tgz", + "integrity": "sha512-kEjJHrLb5ePBvjD0SPZwJlw1QTRcjjCA9sB5VyfonoXVBxTS7TMnqL6EkLt1Eu61RDeiuZ/WN9Hf6PxXhPI2uA==", "dev": true, "engines": { - "node": "^14.18.0 || >=16.0.0" + "node": "^18.0.0 || >=20.0.0" }, "peerDependencies": { - "vite": "^4.0.0 || ^5.0.0", + "vite": "^5.0.0", "vue": "^3.2.25" } }, "node_modules/@vue/compiler-core": { - "version": "3.3.13", - "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.3.13.tgz", - "integrity": "sha512-bwi9HShGu7uaZLOErZgsH2+ojsEdsjerbf2cMXPwmvcgZfVPZ2BVZzCVnwZBxTAYd6Mzbmf6izcUNDkWnBBQ6A==", + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.4.3.tgz", + "integrity": "sha512-u8jzgFg0EDtSrb/hG53Wwh1bAOQFtc1ZCegBpA/glyvTlgHl+tq13o1zvRfLbegYUw/E4mSTGOiCnAJ9SJ+lsg==", "dependencies": { - "@babel/parser": "^7.23.5", - "@vue/shared": "3.3.13", + "@babel/parser": "^7.23.6", + "@vue/shared": "3.4.3", + "entities": "^4.5.0", "estree-walker": "^2.0.2", "source-map-js": "^1.0.2" } }, + "node_modules/@vue/compiler-core/node_modules/entities": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", + "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, "node_modules/@vue/compiler-dom": { - "version": "3.3.13", - "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.3.13.tgz", - "integrity": "sha512-EYRDpbLadGtNL0Gph+HoKiYqXLqZ0xSSpR5Dvnu/Ep7ggaCbjRDIus1MMxTS2Qm0koXED4xSlvTZaTnI8cYAsw==", + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.4.3.tgz", + "integrity": "sha512-oGF1E9/htI6JWj/lTJgr6UgxNCtNHbM6xKVreBWeZL9QhRGABRVoWGAzxmtBfSOd+w0Zi5BY0Es/tlJrN6WgEg==", "dependencies": { - "@vue/compiler-core": "3.3.13", - "@vue/shared": "3.3.13" + "@vue/compiler-core": "3.4.3", + "@vue/shared": "3.4.3" } }, "node_modules/@vue/compiler-sfc": { - "version": "3.3.13", - "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.3.13.tgz", - "integrity": "sha512-DQVmHEy/EKIgggvnGRLx21hSqnr1smUS9Aq8tfxiiot8UR0/pXKHN9k78/qQ7etyQTFj5em5nruODON7dBeumw==", - "dependencies": { - "@babel/parser": "^7.23.5", - "@vue/compiler-core": "3.3.13", - "@vue/compiler-dom": "3.3.13", - "@vue/compiler-ssr": "3.3.13", - "@vue/reactivity-transform": "3.3.13", - "@vue/shared": "3.3.13", + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.4.3.tgz", + "integrity": "sha512-NuJqb5is9I4uzv316VRUDYgIlPZCG8D+ARt5P4t5UDShIHKL25J3TGZAUryY/Aiy0DsY7srJnZL5ryB6DD63Zw==", + "dependencies": { + "@babel/parser": "^7.23.6", + "@vue/compiler-core": "3.4.3", + "@vue/compiler-dom": "3.4.3", + "@vue/compiler-ssr": "3.4.3", + "@vue/shared": "3.4.3", "estree-walker": "^2.0.2", "magic-string": "^0.30.5", "postcss": "^8.4.32", @@ -8441,12 +8415,12 @@ } }, "node_modules/@vue/compiler-ssr": { - "version": "3.3.13", - "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.3.13.tgz", - "integrity": "sha512-d/P3bCeUGmkJNS1QUZSAvoCIW4fkOKK3l2deE7zrp0ypJEy+En2AcypIkqvcFQOcw3F0zt2VfMvNsA9JmExTaw==", + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.4.3.tgz", + "integrity": "sha512-wnYQtMBkeFSxgSSQbYGQeXPhQacQiog2c6AlvMldQH6DB+gSXK/0F6DVXAJfEiuBSgBhUc8dwrrG5JQcqwalsA==", "dependencies": { - "@vue/compiler-dom": "3.3.13", - "@vue/shared": "3.3.13" + "@vue/compiler-dom": "3.4.3", + "@vue/shared": "3.4.3" } }, "node_modules/@vue/devtools-api": { @@ -8456,60 +8430,48 @@ "dev": true }, "node_modules/@vue/reactivity": { - "version": "3.3.13", - "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.3.13.tgz", - "integrity": "sha512-fjzCxceMahHhi4AxUBzQqqVhuA21RJ0COaWTbIBl1PruGW1CeY97louZzLi4smpYx+CHfFPPU/CS8NybbGvPKQ==", - "dependencies": { - "@vue/shared": "3.3.13" - } - }, - "node_modules/@vue/reactivity-transform": { - "version": "3.3.13", - "resolved": "https://registry.npmjs.org/@vue/reactivity-transform/-/reactivity-transform-3.3.13.tgz", - "integrity": "sha512-oWnydGH0bBauhXvh5KXUy61xr9gKaMbtsMHk40IK9M4gMuKPJ342tKFarY0eQ6jef8906m35q37wwA8DMZOm5Q==", + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.4.3.tgz", + "integrity": "sha512-q5f9HLDU+5aBKizXHAx0w4whkIANs1Muiq9R5YXm0HtorSlflqv9u/ohaMxuuhHWCji4xqpQ1eL04WvmAmGnFg==", "dependencies": { - "@babel/parser": "^7.23.5", - "@vue/compiler-core": "3.3.13", - "@vue/shared": "3.3.13", - "estree-walker": "^2.0.2", - "magic-string": "^0.30.5" + "@vue/shared": "3.4.3" } }, "node_modules/@vue/runtime-core": { - "version": "3.3.13", - "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.3.13.tgz", - "integrity": "sha512-1TzA5TvGuh2zUwMJgdfvrBABWZ7y8kBwBhm7BXk8rvdx2SsgcGfz2ruv2GzuGZNvL1aKnK8CQMV/jFOrxNQUMA==", + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.4.3.tgz", + "integrity": "sha512-C1r6QhB1qY7D591RCSFhMULyzL9CuyrGc+3PpB0h7dU4Qqw6GNyo4BNFjHZVvsWncrUlKX3DIKg0Y7rNNr06NQ==", "dependencies": { - "@vue/reactivity": "3.3.13", - "@vue/shared": "3.3.13" + "@vue/reactivity": "3.4.3", + "@vue/shared": "3.4.3" } }, "node_modules/@vue/runtime-dom": { - "version": "3.3.13", - "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.3.13.tgz", - "integrity": "sha512-JJkpE8R/hJKXqVTgUoODwS5wqKtOsmJPEqmp90PDVGygtJ4C0PtOkcEYXwhiVEmef6xeXcIlrT3Yo5aQ4qkHhQ==", + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.4.3.tgz", + "integrity": "sha512-wrsprg7An5Ec+EhPngWdPuzkp0BEUxAKaQtN9dPU/iZctPyD9aaXmVtehPJerdQxQale6gEnhpnfywNw3zOv2A==", "dependencies": { - "@vue/runtime-core": "3.3.13", - "@vue/shared": "3.3.13", + "@vue/runtime-core": "3.4.3", + "@vue/shared": "3.4.3", "csstype": "^3.1.3" } }, "node_modules/@vue/server-renderer": { - "version": "3.3.13", - "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.3.13.tgz", - "integrity": "sha512-vSnN+nuf6iSqTL3Qgx/9A+BT+0Zf/VJOgF5uMZrKjYPs38GMYyAU1coDyBNHauehXDaP+zl73VhwWv0vBRBHcg==", + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.4.3.tgz", + "integrity": "sha512-BUxt8oVGMKKsqSkM1uU3d3Houyfy4WAc2SpSQRebNd+XJGATVkW/rO129jkyL+kpB/2VRKzE63zwf5RtJ3XuZw==", "dependencies": { - "@vue/compiler-ssr": "3.3.13", - "@vue/shared": "3.3.13" + "@vue/compiler-ssr": "3.4.3", + "@vue/shared": "3.4.3" }, "peerDependencies": { - "vue": "3.3.13" + "vue": "3.4.3" } }, "node_modules/@vue/shared": { - "version": "3.3.13", - "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.3.13.tgz", - "integrity": "sha512-/zYUwiHD8j7gKx2argXEMCUXVST6q/21DFU0sTfNX0URJroCe3b1UF6vLJ3lQDfLNIiiRl2ONp7Nh5UVWS6QnA==" + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.4.3.tgz", + "integrity": "sha512-rIwlkkP1n4uKrRzivAKPZIEkHiuwY5mmhMJ2nZKCBLz8lTUlE73rQh4n1OnnMurXt1vcUNyH4ZPfdh8QweTjpQ==" }, "node_modules/@vueuse/core": { "version": "9.13.0", @@ -8551,13 +8513,13 @@ } }, "node_modules/@vueuse/integrations": { - "version": "10.7.0", - "resolved": "https://registry.npmjs.org/@vueuse/integrations/-/integrations-10.7.0.tgz", - "integrity": "sha512-rxiMYgS+91n93qXpHZF9NbHhppWY6IJyVTDxt4acyChL0zZVx7P8FAAfpF1qVK8e4wfjerhpEiMJ0IZ1GWUZ2A==", + "version": "10.7.1", + "resolved": "https://registry.npmjs.org/@vueuse/integrations/-/integrations-10.7.1.tgz", + "integrity": "sha512-cKo5LEeKVHdBRBtMTOrDPdR0YNtrmN9IBfdcnY2P3m5LHVrsD0xiHUtAH1WKjHQRIErZG6rJUa6GA4tWZt89Og==", "dev": true, "dependencies": { - "@vueuse/core": "10.7.0", - "@vueuse/shared": "10.7.0", + "@vueuse/core": "10.7.1", + "@vueuse/shared": "10.7.1", "vue-demi": ">=0.14.6" }, "funding": { @@ -8623,14 +8585,14 @@ "dev": true }, "node_modules/@vueuse/integrations/node_modules/@vueuse/core": { - "version": "10.7.0", - "resolved": "https://registry.npmjs.org/@vueuse/core/-/core-10.7.0.tgz", - "integrity": "sha512-4EUDESCHtwu44ZWK3Gc/hZUVhVo/ysvdtwocB5vcauSV4B7NiGY5972WnsojB3vRNdxvAt7kzJWE2h9h7C9d5w==", + "version": "10.7.1", + "resolved": "https://registry.npmjs.org/@vueuse/core/-/core-10.7.1.tgz", + "integrity": "sha512-74mWHlaesJSWGp1ihg76vAnfVq9NTv1YT0SYhAQ6zwFNdBkkP+CKKJmVOEHcdSnLXCXYiL5e7MaewblfiYLP7g==", "dev": true, "dependencies": { "@types/web-bluetooth": "^0.0.20", - "@vueuse/metadata": "10.7.0", - "@vueuse/shared": "10.7.0", + "@vueuse/metadata": "10.7.1", + "@vueuse/shared": "10.7.1", "vue-demi": ">=0.14.6" }, "funding": { @@ -8638,18 +8600,18 @@ } }, "node_modules/@vueuse/integrations/node_modules/@vueuse/metadata": { - "version": "10.7.0", - "resolved": "https://registry.npmjs.org/@vueuse/metadata/-/metadata-10.7.0.tgz", - "integrity": "sha512-GlaH7tKP2iBCZ3bHNZ6b0cl9g0CJK8lttkBNUX156gWvNYhTKEtbweWLm9rxCPIiwzYcr/5xML6T8ZUEt+DkvA==", + "version": "10.7.1", + "resolved": "https://registry.npmjs.org/@vueuse/metadata/-/metadata-10.7.1.tgz", + "integrity": "sha512-jX8MbX5UX067DYVsbtrmKn6eG6KMcXxLRLlurGkZku5ZYT3vxgBjui2zajvUZ18QLIjrgBkFRsu7CqTAg18QFw==", "dev": true, "funding": { "url": "https://github.com/sponsors/antfu" } }, "node_modules/@vueuse/integrations/node_modules/@vueuse/shared": { - "version": "10.7.0", - "resolved": "https://registry.npmjs.org/@vueuse/shared/-/shared-10.7.0.tgz", - "integrity": "sha512-kc00uV6CiaTdc3i1CDC4a3lBxzaBE9AgYNtFN87B5OOscqeWElj/uza8qVDmk7/U8JbqoONLbtqiLJ5LGRuqlw==", + "version": "10.7.1", + "resolved": "https://registry.npmjs.org/@vueuse/shared/-/shared-10.7.1.tgz", + "integrity": "sha512-v0jbRR31LSgRY/C5i5X279A/WQjD6/JsMzGa+eqt658oJ75IvQXAeONmwvEMrvJQKnRElq/frzBR7fhmWY5uLw==", "dev": true, "dependencies": { "vue-demi": ">=0.14.6" @@ -9442,9 +9404,9 @@ } }, "node_modules/axios": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/axios/-/axios-1.6.2.tgz", - "integrity": "sha512-7i24Ri4pmDRfJTR7LDBhsOTtcm+9kjX5WiY1X3wIisx6G9So3pfMkEiU7emUBe46oceVImccTEM3k6C5dbVW8A==", + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.6.3.tgz", + "integrity": "sha512-fWyNdeawGam70jXSVlKl+SUNVcL6j6W79CuSIPfi6HnDUmSCH6gyUys/HrqHeA/wU0Az41rRgean494d0Jb+ww==", "dependencies": { "follow-redirects": "^1.15.0", "form-data": "^4.0.0", @@ -9475,13 +9437,13 @@ } }, "node_modules/babel-plugin-polyfill-corejs2": { - "version": "0.4.6", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.6.tgz", - "integrity": "sha512-jhHiWVZIlnPbEUKSSNb9YoWcQGdlTLq7z1GHL4AjFxaoOUMuuEVJ+Y4pAaQUGOGk93YsVCKPbqbfw3m0SM6H8Q==", + "version": "0.4.7", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.7.tgz", + "integrity": "sha512-LidDk/tEGDfuHW2DWh/Hgo4rmnw3cduK6ZkOI1NPFceSK3n/yAGeOsNT7FLnSGHkXj3RHGSEVkN3FsCTY6w2CQ==", "dev": true, "dependencies": { "@babel/compat-data": "^7.22.6", - "@babel/helper-define-polyfill-provider": "^0.4.3", + "@babel/helper-define-polyfill-provider": "^0.4.4", "semver": "^6.3.1" }, "peerDependencies": { @@ -9498,12 +9460,12 @@ } }, "node_modules/babel-plugin-polyfill-corejs3": { - "version": "0.8.6", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.6.tgz", - "integrity": "sha512-leDIc4l4tUgU7str5BWLS2h8q2N4Nf6lGZP6UrNDxdtfF2g69eJ5L0H7S8A5Ln/arfFAfHor5InAdZuIOwZdgQ==", + "version": "0.8.7", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.7.tgz", + "integrity": "sha512-KyDvZYxAzkC0Aj2dAPyDzi2Ym15e5JKZSK+maI7NAwSqofvuFglbSsxE7wUOvTg9oFVnHMzVzBKcqEb4PJgtOA==", "dev": true, "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.4.3", + "@babel/helper-define-polyfill-provider": "^0.4.4", "core-js-compat": "^3.33.1" }, "peerDependencies": { @@ -9511,12 +9473,12 @@ } }, "node_modules/babel-plugin-polyfill-regenerator": { - "version": "0.5.3", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.3.tgz", - "integrity": "sha512-8sHeDOmXC8csczMrYEOf0UTNa4yE2SxV5JGeT/LP1n0OYVDUUFPxG9vdk2AlDlIit4t+Kf0xCtpgXPBwnn/9pw==", + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.4.tgz", + "integrity": "sha512-S/x2iOCvDaCASLYsOOgWOq4bCfKYVqvO/uxjkaYyZ3rVsVE3CeAI/c84NpyuBBymEgNvHgjEot3a9/Z/kXvqsg==", "dev": true, "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.4.3" + "@babel/helper-define-polyfill-provider": "^0.4.4" }, "peerDependencies": { "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" @@ -9566,15 +9528,6 @@ "integrity": "sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==", "dev": true }, - "node_modules/big-integer": { - "version": "1.6.51", - "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.51.tgz", - "integrity": "sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==", - "dev": true, - "engines": { - "node": ">=0.6" - } - }, "node_modules/bignumber.js": { "version": "9.0.0", "resolved": "https://registry.npmjs.org/bignumber.js/-/bignumber.js-9.0.0.tgz", @@ -9811,18 +9764,6 @@ "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, - "node_modules/bplist-parser": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.2.0.tgz", - "integrity": "sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==", - "dev": true, - "dependencies": { - "big-integer": "^1.6.44" - }, - "engines": { - "node": ">= 5.10.0" - } - }, "node_modules/brace-expansion": { "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", @@ -9970,21 +9911,6 @@ "semver": "^7.0.0" } }, - "node_modules/bundle-name": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bundle-name/-/bundle-name-3.0.0.tgz", - "integrity": "sha512-PKA4BeSvBpQKQ8iPOGCSiell+N8P+Tf1DlwqmYhpe2gAhKPHn8EYOxVT+ShuGmhg8lN8XiSlS80yiExKXrURlw==", - "dev": true, - "dependencies": { - "run-applescript": "^5.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/byte-size": { "version": "8.1.1", "resolved": "https://registry.npmjs.org/byte-size/-/byte-size-8.1.1.tgz", @@ -10335,16 +10261,6 @@ } ] }, - "node_modules/ccount": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/ccount/-/ccount-2.0.1.tgz", - "integrity": "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==", - "dev": true, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, "node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", @@ -10360,26 +10276,6 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/character-entities-html4": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-2.1.0.tgz", - "integrity": "sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==", - "dev": true, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/character-entities-legacy": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz", - "integrity": "sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==", - "dev": true, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, "node_modules/chardet": { "version": "0.7.0", "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", @@ -10652,16 +10548,6 @@ "node": ">= 0.8" } }, - "node_modules/comma-separated-tokens": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz", - "integrity": "sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==", - "dev": true, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, "node_modules/commander": { "version": "11.1.0", "resolved": "https://registry.npmjs.org/commander/-/commander-11.1.0.tgz", @@ -11084,9 +10970,9 @@ } }, "node_modules/core-js-compat": { - "version": "3.34.0", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.34.0.tgz", - "integrity": "sha512-4ZIyeNbW/Cn1wkMMDy+mvrRUxrwFNjKwbhCfQpDd+eLgYipDqp8oGFGtLmhh18EDPKA0g3VUBYOxQGGwvWLVpA==", + "version": "3.35.0", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.35.0.tgz", + "integrity": "sha512-5blwFAddknKeNgsjBzilkdQ0+YK8L1PfqPYq40NOYMYFSS38qj+hpTcLLWwpIwA2A5bje/x5jmVn2tzUMg9IVw==", "dev": true, "dependencies": { "browserslist": "^4.22.2" @@ -11225,9 +11111,9 @@ } }, "node_modules/date-fns": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-3.0.5.tgz", - "integrity": "sha512-Q4Tq5c5s/Zl/zbgdWf6pejn9ru7UwdIlLfvEEg1hVsQNQ7LKt76qIduagIT9OPK7+JCv1mAKherdU6bOqGYDnw==", + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-3.0.6.tgz", + "integrity": "sha512-W+G99rycpKMMF2/YD064b2lE7jJGUe+EjOES7Q8BIGY8sbNdbgcs9XFTZwvzc9Jx1f3k7LB7gZaZa7f8Agzljg==", "funding": { "type": "github", "url": "https://github.com/sponsors/kossnocorp" @@ -11367,162 +11253,6 @@ "node": ">=0.10.0" } }, - "node_modules/default-browser": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/default-browser/-/default-browser-4.0.0.tgz", - "integrity": "sha512-wX5pXO1+BrhMkSbROFsyxUm0i/cJEScyNhA4PPxc41ICuv05ZZB/MX28s8aZx6xjmatvebIapF6hLEKEcpneUA==", - "dev": true, - "dependencies": { - "bundle-name": "^3.0.0", - "default-browser-id": "^3.0.0", - "execa": "^7.1.1", - "titleize": "^3.0.0" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/default-browser-id": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/default-browser-id/-/default-browser-id-3.0.0.tgz", - "integrity": "sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==", - "dev": true, - "dependencies": { - "bplist-parser": "^0.2.0", - "untildify": "^4.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/default-browser/node_modules/execa": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-7.1.1.tgz", - "integrity": "sha512-wH0eMf/UXckdUYnO21+HDztteVv05rq2GXksxT4fCGeHkBhw1DROXh40wcjMcRqDOWE7iPJ4n3M7e2+YFP+76Q==", - "dev": true, - "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.1", - "human-signals": "^4.3.0", - "is-stream": "^3.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^5.1.0", - "onetime": "^6.0.0", - "signal-exit": "^3.0.7", - "strip-final-newline": "^3.0.0" - }, - "engines": { - "node": "^14.18.0 || ^16.14.0 || >=18.0.0" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" - } - }, - "node_modules/default-browser/node_modules/get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/default-browser/node_modules/human-signals": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-4.3.1.tgz", - "integrity": "sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==", - "dev": true, - "engines": { - "node": ">=14.18.0" - } - }, - "node_modules/default-browser/node_modules/is-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", - "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", - "dev": true, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/default-browser/node_modules/mimic-fn": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", - "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/default-browser/node_modules/npm-run-path": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz", - "integrity": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==", - "dev": true, - "dependencies": { - "path-key": "^4.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/default-browser/node_modules/onetime": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", - "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", - "dev": true, - "dependencies": { - "mimic-fn": "^4.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/default-browser/node_modules/path-key": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", - "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/default-browser/node_modules/strip-final-newline": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", - "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/defaults": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz", @@ -11616,15 +11346,6 @@ "integrity": "sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==", "dev": true }, - "node_modules/dequal": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", - "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", - "dev": true, - "engines": { - "node": ">=6" - } - }, "node_modules/destr": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/destr/-/destr-2.0.2.tgz", @@ -11664,19 +11385,6 @@ "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==", "dev": true }, - "node_modules/devlop": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/devlop/-/devlop-1.1.0.tgz", - "integrity": "sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==", - "dev": true, - "dependencies": { - "dequal": "^2.0.0" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, "node_modules/dezalgo": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/dezalgo/-/dezalgo-1.0.4.tgz", @@ -12313,19 +12021,19 @@ } }, "node_modules/eslint-plugin-prettier": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-5.1.1.tgz", - "integrity": "sha512-WQpV3mSmIobb77s4qiCZu3dBrZZ0rj8ckSfBtRrgNK9Wnh2s3eiaxNTWloz1LJ1WtvqZES/PAI7PLvsrGt/CEA==", + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-5.1.2.tgz", + "integrity": "sha512-dhlpWc9vOwohcWmClFcA+HjlvUpuyynYs0Rf+L/P6/0iQE6vlHW9l5bkfzN62/Stm9fbq8ku46qzde76T1xlSg==", "dev": true, "dependencies": { "prettier-linter-helpers": "^1.0.0", - "synckit": "^0.8.5" + "synckit": "^0.8.6" }, "engines": { "node": "^14.18.0 || >=16.0.0" }, "funding": { - "url": "https://opencollective.com/prettier" + "url": "https://opencollective.com/eslint-plugin-prettier" }, "peerDependencies": { "@types/eslint": ">=8.0.0", @@ -13981,137 +13689,6 @@ "node": ">= 0.4" } }, - "node_modules/hast-util-from-parse5": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/hast-util-from-parse5/-/hast-util-from-parse5-8.0.1.tgz", - "integrity": "sha512-Er/Iixbc7IEa7r/XLtuG52zoqn/b3Xng/w6aZQ0xGVxzhw5xUFxcRqdPzP6yFi/4HBYRaifaI5fQ1RH8n0ZeOQ==", - "dev": true, - "dependencies": { - "@types/hast": "^3.0.0", - "@types/unist": "^3.0.0", - "devlop": "^1.0.0", - "hastscript": "^8.0.0", - "property-information": "^6.0.0", - "vfile": "^6.0.0", - "vfile-location": "^5.0.0", - "web-namespaces": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/hast-util-parse-selector": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/hast-util-parse-selector/-/hast-util-parse-selector-4.0.0.tgz", - "integrity": "sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==", - "dev": true, - "dependencies": { - "@types/hast": "^3.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/hast-util-raw": { - "version": "9.0.1", - "resolved": "https://registry.npmjs.org/hast-util-raw/-/hast-util-raw-9.0.1.tgz", - "integrity": "sha512-5m1gmba658Q+lO5uqL5YNGQWeh1MYWZbZmWrM5lncdcuiXuo5E2HT/CIOp0rLF8ksfSwiCVJ3twlgVRyTGThGA==", - "dev": true, - "dependencies": { - "@types/hast": "^3.0.0", - "@types/unist": "^3.0.0", - "@ungap/structured-clone": "^1.0.0", - "hast-util-from-parse5": "^8.0.0", - "hast-util-to-parse5": "^8.0.0", - "html-void-elements": "^3.0.0", - "mdast-util-to-hast": "^13.0.0", - "parse5": "^7.0.0", - "unist-util-position": "^5.0.0", - "unist-util-visit": "^5.0.0", - "vfile": "^6.0.0", - "web-namespaces": "^2.0.0", - "zwitch": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/hast-util-to-html": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/hast-util-to-html/-/hast-util-to-html-9.0.0.tgz", - "integrity": "sha512-IVGhNgg7vANuUA2XKrT6sOIIPgaYZnmLx3l/CCOAK0PtgfoHrZwX7jCSYyFxHTrGmC6S9q8aQQekjp4JPZF+cw==", - "dev": true, - "dependencies": { - "@types/hast": "^3.0.0", - "@types/unist": "^3.0.0", - "ccount": "^2.0.0", - "comma-separated-tokens": "^2.0.0", - "hast-util-raw": "^9.0.0", - "hast-util-whitespace": "^3.0.0", - "html-void-elements": "^3.0.0", - "mdast-util-to-hast": "^13.0.0", - "property-information": "^6.0.0", - "space-separated-tokens": "^2.0.0", - "stringify-entities": "^4.0.0", - "zwitch": "^2.0.4" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/hast-util-to-parse5": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/hast-util-to-parse5/-/hast-util-to-parse5-8.0.0.tgz", - "integrity": "sha512-3KKrV5ZVI8if87DVSi1vDeByYrkGzg4mEfeu4alwgmmIeARiBLKCZS2uw5Gb6nU9x9Yufyj3iudm6i7nl52PFw==", - "dev": true, - "dependencies": { - "@types/hast": "^3.0.0", - "comma-separated-tokens": "^2.0.0", - "devlop": "^1.0.0", - "property-information": "^6.0.0", - "space-separated-tokens": "^2.0.0", - "web-namespaces": "^2.0.0", - "zwitch": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/hast-util-whitespace": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-3.0.0.tgz", - "integrity": "sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==", - "dev": true, - "dependencies": { - "@types/hast": "^3.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/hastscript": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/hastscript/-/hastscript-8.0.0.tgz", - "integrity": "sha512-dMOtzCEd3ABUeSIISmrETiKuyydk1w0pa+gE/uormcTpSYuaNJPbX1NU3JLyscSLjwAQM8bWMhhIlnCqnRvDTw==", - "dev": true, - "dependencies": { - "@types/hast": "^3.0.0", - "comma-separated-tokens": "^2.0.0", - "hast-util-parse-selector": "^4.0.0", - "property-information": "^6.0.0", - "space-separated-tokens": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, "node_modules/he": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", @@ -14202,16 +13779,6 @@ "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", "dev": true }, - "node_modules/html-void-elements": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/html-void-elements/-/html-void-elements-3.0.0.tgz", - "integrity": "sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==", - "dev": true, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, "node_modules/http-assert": { "version": "1.5.0", "resolved": "https://registry.npmjs.org/http-assert/-/http-assert-1.5.0.tgz", @@ -14820,58 +14387,25 @@ "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", - "dev": true, - "dependencies": { - "is-extglob": "^2.1.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-inside-container": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz", - "integrity": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==", - "dev": true, - "dependencies": { - "is-docker": "^3.0.0" - }, - "bin": { - "is-inside-container": "cli.js" + "has-tostringtag": "^1.0.0" }, "engines": { - "node": ">=14.16" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-inside-container/node_modules/is-docker": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz", - "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==", + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", "dev": true, - "bin": { - "is-docker": "cli.js" + "dependencies": { + "is-extglob": "^2.1.1" }, "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=0.10.0" } }, "node_modules/is-installed-globally": { @@ -15730,15 +15264,15 @@ "peer": true }, "node_modules/koa": { - "version": "2.14.2", - "resolved": "https://registry.npmjs.org/koa/-/koa-2.14.2.tgz", - "integrity": "sha512-VFI2bpJaodz6P7x2uyLiX6RLYpZmOJqNmoCst/Yyd7hQlszyPwG/I9CQJ63nOtKSxpt5M7NH67V6nJL2BwCl7g==", + "version": "2.15.0", + "resolved": "https://registry.npmjs.org/koa/-/koa-2.15.0.tgz", + "integrity": "sha512-KEL/vU1knsoUvfP4MC4/GthpQrY/p6dzwaaGI6Rt4NQuFqkw3qrvsdYF5pz3wOfi7IGTvMPHC9aZIcUKYFNxsw==", "dependencies": { "accepts": "^1.3.5", "cache-content-type": "^1.0.0", "content-disposition": "~0.5.2", "content-type": "^1.0.4", - "cookies": "~0.8.0", + "cookies": "~0.9.0", "debug": "^4.3.2", "delegates": "^1.0.0", "depd": "^2.0.0", @@ -15890,6 +15424,18 @@ "ms": "^2.1.1" } }, + "node_modules/koa/node_modules/cookies": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/cookies/-/cookies-0.9.0.tgz", + "integrity": "sha512-mtyMqy14RsH7+IRJglGcKtRLOq0SRt0DdXVrLgc+v1e/o0TNJUpdElhgr3AAi638LO0xZwEPcRRkJ3afxvGhUw==", + "dependencies": { + "depd": "~2.0.0", + "keygrip": "~1.1.0" + }, + "engines": { + "node": ">= 0.8" + } + }, "node_modules/koa/node_modules/http-errors": { "version": "1.8.1", "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.8.1.tgz", @@ -17419,26 +16965,6 @@ "markdown-it": "bin/markdown-it.js" } }, - "node_modules/mdast-util-to-hast": { - "version": "13.0.2", - "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-13.0.2.tgz", - "integrity": "sha512-U5I+500EOOw9e3ZrclN3Is3fRpw8c19SMyNZlZ2IS+7vLsNzb2Om11VpIVOR+/0137GhZsFEF6YiKD5+0Hr2Og==", - "dev": true, - "dependencies": { - "@types/hast": "^3.0.0", - "@types/mdast": "^4.0.0", - "@ungap/structured-clone": "^1.0.0", - "devlop": "^1.0.0", - "micromark-util-sanitize-uri": "^2.0.0", - "trim-lines": "^3.0.0", - "unist-util-position": "^5.0.0", - "unist-util-visit": "^5.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, "node_modules/mdn-data": { "version": "2.0.30", "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.30.tgz", @@ -17663,95 +17189,6 @@ "node": ">= 0.6" } }, - "node_modules/micromark-util-character": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.0.1.tgz", - "integrity": "sha512-3wgnrmEAJ4T+mGXAUfMvMAbxU9RDG43XmGce4j6CwPtVxB3vfwXSZ6KhFwDzZ3mZHhmPimMAXg71veiBGzeAZw==", - "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "dependencies": { - "micromark-util-symbol": "^2.0.0", - "micromark-util-types": "^2.0.0" - } - }, - "node_modules/micromark-util-encode": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.0.tgz", - "integrity": "sha512-pS+ROfCXAGLWCOc8egcBvT0kf27GoWMqtdarNfDcjb6YLuV5cM3ioG45Ys2qOVqeqSbjaKg72vU+Wby3eddPsA==", - "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ] - }, - "node_modules/micromark-util-sanitize-uri": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.0.tgz", - "integrity": "sha512-WhYv5UEcZrbAtlsnPuChHUAsu/iBPOVaEVsntLBIdpibO0ddy8OzavZz3iL2xVvBZOpolujSliP65Kq0/7KIYw==", - "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "dependencies": { - "micromark-util-character": "^2.0.0", - "micromark-util-encode": "^2.0.0", - "micromark-util-symbol": "^2.0.0" - } - }, - "node_modules/micromark-util-symbol": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.0.tgz", - "integrity": "sha512-8JZt9ElZ5kyTnO94muPxIGS8oyElRJaiJO8EzV6ZSyGQ1Is8xwl4Q45qU5UOg+bGH4AikWziz0iN4sFLWs8PGw==", - "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ] - }, - "node_modules/micromark-util-types": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.0.tgz", - "integrity": "sha512-oNh6S2WMHWRZrmutsRmDDfkzKtxF+bc2VxLC9dvtrDIRFln627VsFP6fLMgTryGDljgLPjkrzQSDcPrjPyDJ5w==", - "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ] - }, "node_modules/micromatch": { "version": "4.0.5", "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", @@ -18433,9 +17870,9 @@ } }, "node_modules/mrmime": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-1.0.1.tgz", - "integrity": "sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-2.0.0.tgz", + "integrity": "sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==", "dev": true, "engines": { "node": ">=10" @@ -19948,30 +19385,6 @@ "parse-path": "^7.0.0" } }, - "node_modules/parse5": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.1.2.tgz", - "integrity": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==", - "dev": true, - "dependencies": { - "entities": "^4.4.0" - }, - "funding": { - "url": "https://github.com/inikulin/parse5?sponsor=1" - } - }, - "node_modules/parse5/node_modules/entities": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", - "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", - "dev": true, - "engines": { - "node": ">=0.12" - }, - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" - } - }, "node_modules/parseurl": { "version": "1.3.3", "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", @@ -20516,16 +19929,6 @@ "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/property-information": { - "version": "6.4.0", - "resolved": "https://registry.npmjs.org/property-information/-/property-information-6.4.0.tgz", - "integrity": "sha512-9t5qARVofg2xQqKtytzt+lZ4d1Qvj8t5B8fEwXK6qOfgRLgH/b13QlgEyDh033NOS31nXeFbYv7CLUDG1CeifQ==", - "dev": true, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, "node_modules/proto-list": { "version": "1.2.4", "resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz", @@ -21575,21 +20978,6 @@ "fsevents": "~2.3.2" } }, - "node_modules/run-applescript": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/run-applescript/-/run-applescript-5.0.0.tgz", - "integrity": "sha512-XcT5rBksx1QdIhlFOCtgZkB99ZEouFZ1E2Kc2LHqNW13U3/74YGdkQRmThTwxy4QIyookibDKYZOPqX//6BlAg==", - "dev": true, - "dependencies": { - "execa": "^5.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/run-async": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", @@ -21678,9 +21066,9 @@ "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" }, "node_modules/sass": { - "version": "1.69.5", - "resolved": "https://registry.npmjs.org/sass/-/sass-1.69.5.tgz", - "integrity": "sha512-qg2+UCJibLr2LCVOt3OlPhr/dqVHWOa9XtZf2OjbLs/T4VPSJ00udtgJxH3neXZm+QqX8B+3cU7RaLqp1iVfcQ==", + "version": "1.69.6", + "resolved": "https://registry.npmjs.org/sass/-/sass-1.69.6.tgz", + "integrity": "sha512-qbRr3k9JGHWXCvZU77SD2OTwUlC+gNT+61JOLcmLm+XqH4h/5D+p4IIsxvpkB89S9AwJOyb5+rWNpIucaFxSFQ==", "dev": true, "dependencies": { "chokidar": ">=3.0.0 <4.0.0", @@ -21958,21 +21346,27 @@ } }, "node_modules/shikiji": { - "version": "0.9.2", - "resolved": "https://registry.npmjs.org/shikiji/-/shikiji-0.9.2.tgz", - "integrity": "sha512-bxXd5iOVvuPj0NVFWQG3YMNLAGkWHyjTGixM7wLzqJNz3WMaeiOZbOP12gjQWKMJg+Ca4jmgATrUWu/rFb3B8A==", + "version": "0.9.15", + "resolved": "https://registry.npmjs.org/shikiji/-/shikiji-0.9.15.tgz", + "integrity": "sha512-+inN4cN+nY7b0uCPOiqFHAk+cn2DEdM3AIQgPhAV7QKqhww/o7OGS5xvLh3SNnjke9C/HispALqGOQGYHVq7KQ==", "dev": true, "dependencies": { - "hast-util-to-html": "^9.0.0" + "shikiji-core": "0.9.15" } }, + "node_modules/shikiji-core": { + "version": "0.9.15", + "resolved": "https://registry.npmjs.org/shikiji-core/-/shikiji-core-0.9.15.tgz", + "integrity": "sha512-7hqIcUKS15OMs/61Qp2GvO1fSajBB36bDqi8vexIg5kp80V6v6SGtBrlq+nLlo7erMG2d1kvIuTIq1bwKI6fEg==", + "dev": true + }, "node_modules/shikiji-transformers": { - "version": "0.9.2", - "resolved": "https://registry.npmjs.org/shikiji-transformers/-/shikiji-transformers-0.9.2.tgz", - "integrity": "sha512-WEBeNm+oUL/4OTENjnZ5G29ErNM2cPGJHRRhqjwoTFkHnsJsACtTluTaYjPEppCl46Vo3M4TV9GwrMxz2WeCSg==", + "version": "0.9.15", + "resolved": "https://registry.npmjs.org/shikiji-transformers/-/shikiji-transformers-0.9.15.tgz", + "integrity": "sha512-k0sQ6tX26/cdb8QV9CCwwr7QjRp6/AVP9C0oNIXNld3of+xCrpf74kD74piybG6vMfzBoHGsz/s60RVBJOUaYQ==", "dev": true, "dependencies": { - "shikiji": "0.9.2" + "shikiji": "0.9.15" } }, "node_modules/shx": { @@ -22032,13 +21426,13 @@ } }, "node_modules/sirv": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/sirv/-/sirv-2.0.3.tgz", - "integrity": "sha512-O9jm9BsID1P+0HOi81VpXPoDxYP374pkOLzACAoyUQ/3OUVndNpsz6wMnY2z+yOxzbllCKZrM+9QrWsv4THnyA==", + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/sirv/-/sirv-2.0.4.tgz", + "integrity": "sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==", "dev": true, "dependencies": { - "@polka/url": "^1.0.0-next.20", - "mrmime": "^1.0.0", + "@polka/url": "^1.0.0-next.24", + "mrmime": "^2.0.0", "totalist": "^3.0.0" }, "engines": { @@ -22247,16 +21641,6 @@ "deprecated": "Please use @jridgewell/sourcemap-codec instead", "dev": true }, - "node_modules/space-separated-tokens": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz", - "integrity": "sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==", - "dev": true, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, "node_modules/sparse-bitfield": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/sparse-bitfield/-/sparse-bitfield-3.0.3.tgz", @@ -22822,20 +22206,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/stringify-entities": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-4.0.3.tgz", - "integrity": "sha512-BP9nNHMhhfcMbiuQKCqMjhDP5yBCAxsPu4pHFFzJ6Alo9dZgY4VLDPutXqIjpRiMoKdp7Av85Gr73Q5uH9k7+g==", - "dev": true, - "dependencies": { - "character-entities-html4": "^2.0.0", - "character-entities-legacy": "^3.0.0" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, "node_modules/stringify-object": { "version": "3.3.0", "resolved": "https://registry.npmjs.org/stringify-object/-/stringify-object-3.3.0.tgz", @@ -23027,13 +22397,13 @@ } }, "node_modules/synckit": { - "version": "0.8.5", - "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.8.5.tgz", - "integrity": "sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q==", + "version": "0.8.8", + "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.8.8.tgz", + "integrity": "sha512-HwOKAP7Wc5aRGYdKH+dw0PRRpbO841v2DENBtjnR5HFWoiNByAl7vrx3p0G/rCyYXQsrxqtX48TImFtPcIHSpQ==", "dev": true, "dependencies": { - "@pkgr/utils": "^2.3.1", - "tslib": "^2.5.0" + "@pkgr/core": "^0.1.0", + "tslib": "^2.6.2" }, "engines": { "node": "^14.18.0 || >=16.0.0" @@ -23465,18 +22835,6 @@ "node": ">=8" } }, - "node_modules/titleize": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/titleize/-/titleize-3.0.0.tgz", - "integrity": "sha512-KxVu8EYHDPBdUYdKZdKtU2aj2XfEx9AfjXxE/Aj0vT06w2icA09Vus1rh6eSu1y01akYg6BjIK/hxyLJINoMLQ==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/tmp": { "version": "0.0.33", "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", @@ -23561,16 +22919,6 @@ "node": ">=14" } }, - "node_modules/trim-lines": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/trim-lines/-/trim-lines-3.0.1.tgz", - "integrity": "sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==", - "dev": true, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, "node_modules/trim-newlines": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-3.0.1.tgz", @@ -24012,20 +23360,22 @@ } }, "node_modules/unimport": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/unimport/-/unimport-3.6.0.tgz", - "integrity": "sha512-yXW3Z30yk1vX8fxO8uHlq9wY9K+L56LHp4Hlbv8i7tW+NENSOv8AaFJUPtOQchxlT7/JBAzCtkrBtcVjKIr1VQ==", + "version": "3.7.1", + "resolved": "https://registry.npmjs.org/unimport/-/unimport-3.7.1.tgz", + "integrity": "sha512-V9HpXYfsZye5bPPYUgs0Otn3ODS1mDUciaBlXljI4C2fTwfFpvFZRywmlOu943puN9sncxROMZhsZCjNXEpzEQ==", "dev": true, "dependencies": { - "@rollup/pluginutils": "^5.0.5", + "@rollup/pluginutils": "^5.1.0", + "acorn": "^8.11.2", "escape-string-regexp": "^5.0.0", + "estree-walker": "^3.0.3", "fast-glob": "^3.3.2", "local-pkg": "^0.5.0", "magic-string": "^0.30.5", "mlly": "^1.4.2", "pathe": "^1.1.1", "pkg-types": "^1.0.3", - "scule": "^1.1.0", + "scule": "^1.1.1", "strip-literal": "^1.3.0", "unplugin": "^1.5.1" } @@ -24042,6 +23392,15 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/unimport/node_modules/estree-walker": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", + "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", + "dev": true, + "dependencies": { + "@types/estree": "^1.0.0" + } + }, "node_modules/unimport/node_modules/local-pkg": { "version": "0.5.0", "resolved": "https://registry.npmjs.org/local-pkg/-/local-pkg-0.5.0.tgz", @@ -24097,74 +23456,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/unist-util-is": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-6.0.0.tgz", - "integrity": "sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==", - "dev": true, - "dependencies": { - "@types/unist": "^3.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/unist-util-position": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-5.0.0.tgz", - "integrity": "sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==", - "dev": true, - "dependencies": { - "@types/unist": "^3.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/unist-util-stringify-position": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz", - "integrity": "sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==", - "dev": true, - "dependencies": { - "@types/unist": "^3.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/unist-util-visit": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-5.0.0.tgz", - "integrity": "sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==", - "dev": true, - "dependencies": { - "@types/unist": "^3.0.0", - "unist-util-is": "^6.0.0", - "unist-util-visit-parents": "^6.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/unist-util-visit-parents": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-6.0.1.tgz", - "integrity": "sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==", - "dev": true, - "dependencies": { - "@types/unist": "^3.0.0", - "unist-util-is": "^6.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, "node_modules/universal-user-agent": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-6.0.1.tgz", @@ -24181,31 +23472,31 @@ } }, "node_modules/unocss": { - "version": "0.58.0", - "resolved": "https://registry.npmjs.org/unocss/-/unocss-0.58.0.tgz", - "integrity": "sha512-MSPRHxBqWN+1AHGV+J5uUy4//e6ZBK6O+ISzD0qrXcCD/GNtxk1+lYjOK2ltkUiKX539+/KF91vNxzhhwEf+xA==", - "dev": true, - "dependencies": { - "@unocss/astro": "0.58.0", - "@unocss/cli": "0.58.0", - "@unocss/core": "0.58.0", - "@unocss/extractor-arbitrary-variants": "0.58.0", - "@unocss/postcss": "0.58.0", - "@unocss/preset-attributify": "0.58.0", - "@unocss/preset-icons": "0.58.0", - "@unocss/preset-mini": "0.58.0", - "@unocss/preset-tagify": "0.58.0", - "@unocss/preset-typography": "0.58.0", - "@unocss/preset-uno": "0.58.0", - "@unocss/preset-web-fonts": "0.58.0", - "@unocss/preset-wind": "0.58.0", - "@unocss/reset": "0.58.0", - "@unocss/transformer-attributify-jsx": "0.58.0", - "@unocss/transformer-attributify-jsx-babel": "0.58.0", - "@unocss/transformer-compile-class": "0.58.0", - "@unocss/transformer-directives": "0.58.0", - "@unocss/transformer-variant-group": "0.58.0", - "@unocss/vite": "0.58.0" + "version": "0.58.2", + "resolved": "https://registry.npmjs.org/unocss/-/unocss-0.58.2.tgz", + "integrity": "sha512-M82hvJojUsjD98HWLhOU/SITD/9WuHhYoSrQYG6TAa7PuQKJbvxZnZP9hifVjiTSO/VN8MELcdwiuzTTa5GlKQ==", + "dev": true, + "dependencies": { + "@unocss/astro": "0.58.2", + "@unocss/cli": "0.58.2", + "@unocss/core": "0.58.2", + "@unocss/extractor-arbitrary-variants": "0.58.2", + "@unocss/postcss": "0.58.2", + "@unocss/preset-attributify": "0.58.2", + "@unocss/preset-icons": "0.58.2", + "@unocss/preset-mini": "0.58.2", + "@unocss/preset-tagify": "0.58.2", + "@unocss/preset-typography": "0.58.2", + "@unocss/preset-uno": "0.58.2", + "@unocss/preset-web-fonts": "0.58.2", + "@unocss/preset-wind": "0.58.2", + "@unocss/reset": "0.58.2", + "@unocss/transformer-attributify-jsx": "0.58.2", + "@unocss/transformer-attributify-jsx-babel": "0.58.2", + "@unocss/transformer-compile-class": "0.58.2", + "@unocss/transformer-directives": "0.58.2", + "@unocss/transformer-variant-group": "0.58.2", + "@unocss/vite": "0.58.2" }, "engines": { "node": ">=14" @@ -24214,7 +23505,7 @@ "url": "https://github.com/sponsors/antfu" }, "peerDependencies": { - "@unocss/webpack": "0.58.0", + "@unocss/webpack": "0.58.2", "vite": "^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0" }, "peerDependenciesMeta": { @@ -24235,31 +23526,31 @@ } }, "node_modules/unplugin": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/unplugin/-/unplugin-1.5.1.tgz", - "integrity": "sha512-0QkvG13z6RD+1L1FoibQqnvTwVBXvS4XSPwAyinVgoOCl2jAgwzdUKmEj05o4Lt8xwQI85Hb6mSyYkcAGwZPew==", + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/unplugin/-/unplugin-1.6.0.tgz", + "integrity": "sha512-BfJEpWBu3aE/AyHx8VaNE/WgouoQxgH9baAiH82JjX8cqVyi3uJQstqwD5J+SZxIK326SZIhsSZlALXVBCknTQ==", "dev": true, "dependencies": { "acorn": "^8.11.2", "chokidar": "^3.5.3", "webpack-sources": "^3.2.3", - "webpack-virtual-modules": "^0.6.0" + "webpack-virtual-modules": "^0.6.1" } }, "node_modules/unplugin-auto-import": { - "version": "0.17.2", - "resolved": "https://registry.npmjs.org/unplugin-auto-import/-/unplugin-auto-import-0.17.2.tgz", - "integrity": "sha512-Eu/xWI6SH4jTWXvzOfXQWAxRtiz/gMObm7wXtgMj7wBjHQKLgHTmHd4R4oha87KYGah1aKMqiqDeAxiPmfSoTg==", + "version": "0.17.3", + "resolved": "https://registry.npmjs.org/unplugin-auto-import/-/unplugin-auto-import-0.17.3.tgz", + "integrity": "sha512-0cn0wr8X579TtdZKUAps0dDVrYzttx38ImdxZjmCeNlMDJX8UuSjO83vFqgS4ClNDIGWAute+xl9j5vRSX+vsw==", "dev": true, "dependencies": { - "@antfu/utils": "^0.7.6", + "@antfu/utils": "^0.7.7", "@rollup/pluginutils": "^5.1.0", "fast-glob": "^3.3.2", "local-pkg": "^0.5.0", "magic-string": "^0.30.5", "minimatch": "^9.0.3", - "unimport": "^3.6.0", - "unplugin": "^1.5.1" + "unimport": "^3.7.0", + "unplugin": "^1.6.0" }, "engines": { "node": ">=14" @@ -24607,49 +23898,6 @@ "node": ">= 0.8" } }, - "node_modules/vfile": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/vfile/-/vfile-6.0.1.tgz", - "integrity": "sha512-1bYqc7pt6NIADBJ98UiG0Bn/CHIVOoZ/IyEkqIruLg0mE1BKzkOXY2D6CSqQIcKqgadppE5lrxgWXJmXd7zZJw==", - "dev": true, - "dependencies": { - "@types/unist": "^3.0.0", - "unist-util-stringify-position": "^4.0.0", - "vfile-message": "^4.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/vfile-location": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/vfile-location/-/vfile-location-5.0.2.tgz", - "integrity": "sha512-NXPYyxyBSH7zB5U6+3uDdd6Nybz6o6/od9rk8bp9H8GR3L+cm/fC0uUTbqBmUTnMCUDslAGBOIKNfvvb+gGlDg==", - "dev": true, - "dependencies": { - "@types/unist": "^3.0.0", - "vfile": "^6.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/vfile-message": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-4.0.2.tgz", - "integrity": "sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==", - "dev": true, - "dependencies": { - "@types/unist": "^3.0.0", - "unist-util-stringify-position": "^4.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, "node_modules/vite": { "version": "5.0.10", "resolved": "https://registry.npmjs.org/vite/-/vite-5.0.10.tgz", @@ -25120,26 +24368,27 @@ } }, "node_modules/vitepress": { - "version": "1.0.0-rc.32", - "resolved": "https://registry.npmjs.org/vitepress/-/vitepress-1.0.0-rc.32.tgz", - "integrity": "sha512-yf00Skn5BGP+YOQvTbSrB5s9qEb/cV+i+wM5rw+mlaxcIYtK+ORvyBEYZLvKogs7OO70TppJtixb4ofeo5K7HA==", + "version": "1.0.0-rc.34", + "resolved": "https://registry.npmjs.org/vitepress/-/vitepress-1.0.0-rc.34.tgz", + "integrity": "sha512-TUbTiSdAZFni2XlHlpx61KikgkQ5uG4Wtmw2R0SXhIOG6qGqzDJczAFjkMc4i45I9c3KyatwOYe8oEfCnzVYwQ==", "dev": true, "dependencies": { "@docsearch/css": "^3.5.2", "@docsearch/js": "^3.5.2", "@types/markdown-it": "^13.0.7", - "@vitejs/plugin-vue": "^4.5.2", + "@vitejs/plugin-vue": "^5.0.2", "@vue/devtools-api": "^6.5.1", - "@vueuse/core": "^10.7.0", - "@vueuse/integrations": "^10.7.0", + "@vueuse/core": "^10.7.1", + "@vueuse/integrations": "^10.7.1", "focus-trap": "^7.5.4", "mark.js": "8.11.1", "minisearch": "^6.3.0", - "mrmime": "^1.0.1", - "shikiji": "0.9.2", - "shikiji-transformers": "0.9.2", + "mrmime": "^2.0.0", + "shikiji": "^0.9.15", + "shikiji-core": "^0.9.15", + "shikiji-transformers": "^0.9.15", "vite": "^5.0.10", - "vue": "^3.3.11" + "vue": "^3.4.3" }, "bin": { "vitepress": "bin/vitepress.js" @@ -25200,14 +24449,14 @@ "dev": true }, "node_modules/vitepress/node_modules/@vueuse/core": { - "version": "10.7.0", - "resolved": "https://registry.npmjs.org/@vueuse/core/-/core-10.7.0.tgz", - "integrity": "sha512-4EUDESCHtwu44ZWK3Gc/hZUVhVo/ysvdtwocB5vcauSV4B7NiGY5972WnsojB3vRNdxvAt7kzJWE2h9h7C9d5w==", + "version": "10.7.1", + "resolved": "https://registry.npmjs.org/@vueuse/core/-/core-10.7.1.tgz", + "integrity": "sha512-74mWHlaesJSWGp1ihg76vAnfVq9NTv1YT0SYhAQ6zwFNdBkkP+CKKJmVOEHcdSnLXCXYiL5e7MaewblfiYLP7g==", "dev": true, "dependencies": { "@types/web-bluetooth": "^0.0.20", - "@vueuse/metadata": "10.7.0", - "@vueuse/shared": "10.7.0", + "@vueuse/metadata": "10.7.1", + "@vueuse/shared": "10.7.1", "vue-demi": ">=0.14.6" }, "funding": { @@ -25241,18 +24490,18 @@ } }, "node_modules/vitepress/node_modules/@vueuse/metadata": { - "version": "10.7.0", - "resolved": "https://registry.npmjs.org/@vueuse/metadata/-/metadata-10.7.0.tgz", - "integrity": "sha512-GlaH7tKP2iBCZ3bHNZ6b0cl9g0CJK8lttkBNUX156gWvNYhTKEtbweWLm9rxCPIiwzYcr/5xML6T8ZUEt+DkvA==", + "version": "10.7.1", + "resolved": "https://registry.npmjs.org/@vueuse/metadata/-/metadata-10.7.1.tgz", + "integrity": "sha512-jX8MbX5UX067DYVsbtrmKn6eG6KMcXxLRLlurGkZku5ZYT3vxgBjui2zajvUZ18QLIjrgBkFRsu7CqTAg18QFw==", "dev": true, "funding": { "url": "https://github.com/sponsors/antfu" } }, "node_modules/vitepress/node_modules/@vueuse/shared": { - "version": "10.7.0", - "resolved": "https://registry.npmjs.org/@vueuse/shared/-/shared-10.7.0.tgz", - "integrity": "sha512-kc00uV6CiaTdc3i1CDC4a3lBxzaBE9AgYNtFN87B5OOscqeWElj/uza8qVDmk7/U8JbqoONLbtqiLJ5LGRuqlw==", + "version": "10.7.1", + "resolved": "https://registry.npmjs.org/@vueuse/shared/-/shared-10.7.1.tgz", + "integrity": "sha512-v0jbRR31LSgRY/C5i5X279A/WQjD6/JsMzGa+eqt658oJ75IvQXAeONmwvEMrvJQKnRElq/frzBR7fhmWY5uLw==", "dev": true, "dependencies": { "vue-demi": ">=0.14.6" @@ -25298,15 +24547,15 @@ "integrity": "sha512-AFbieoL7a5LMqcnOF04ji+rpXadgOXnZsxQr//r83kLPr7biP7am3g9zbaZIaBGwBRWeSvoMD4mgPdX3e4NWBg==" }, "node_modules/vue": { - "version": "3.3.13", - "resolved": "https://registry.npmjs.org/vue/-/vue-3.3.13.tgz", - "integrity": "sha512-LDnUpQvDgsfc0u/YgtAgTMXJlJQqjkxW1PVcOnJA5cshPleULDjHi7U45pl2VJYazSSvLH8UKcid/kzH8I0a0Q==", + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/vue/-/vue-3.4.3.tgz", + "integrity": "sha512-GjN+culMAGv/mUbkIv8zMKItno8npcj5gWlXkSxf1SPTQf8eJ4A+YfHIvQFyL1IfuJcMl3soA7SmN1fRxbf/wA==", "dependencies": { - "@vue/compiler-dom": "3.3.13", - "@vue/compiler-sfc": "3.3.13", - "@vue/runtime-dom": "3.3.13", - "@vue/server-renderer": "3.3.13", - "@vue/shared": "3.3.13" + "@vue/compiler-dom": "3.4.3", + "@vue/compiler-sfc": "3.4.3", + "@vue/runtime-dom": "3.4.3", + "@vue/server-renderer": "3.4.3", + "@vue/shared": "3.4.3" }, "peerDependencies": { "typescript": "*" @@ -25347,16 +24596,6 @@ "defaults": "^1.0.3" } }, - "node_modules/web-namespaces": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/web-namespaces/-/web-namespaces-2.0.1.tgz", - "integrity": "sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==", - "dev": true, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, "node_modules/webidl-conversions": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", @@ -26451,29 +25690,19 @@ "url": "https://github.com/sponsors/colinhacks" } }, - "node_modules/zwitch": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz", - "integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==", - "dev": true, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, "packages/adapter-commons": { "name": "@feathersjs/adapter-commons", - "version": "5.0.13", + "version": "5.0.14", "license": "MIT", "dependencies": { - "@feathersjs/commons": "^5.0.13", - "@feathersjs/errors": "^5.0.13", - "@feathersjs/feathers": "^5.0.13" + "@feathersjs/commons": "^5.0.14", + "@feathersjs/errors": "^5.0.14", + "@feathersjs/feathers": "^5.0.14" }, "devDependencies": { "@types/mocha": "^10.0.6", "@types/mongodb": "^4.0.6", - "@types/node": "^20.10.5", + "@types/node": "^20.10.6", "mocha": "^10.2.0", "mongodb": "^6.3.0", "shx": "^0.3.4", @@ -26490,11 +25719,11 @@ }, "packages/adapter-tests": { "name": "@feathersjs/adapter-tests", - "version": "5.0.13", + "version": "5.0.14", "license": "MIT", "devDependencies": { "@types/mocha": "^10.0.6", - "@types/node": "^20.10.5", + "@types/node": "^20.10.6", "mocha": "^10.2.0", "shx": "^0.3.4", "ts-node": "^10.9.2", @@ -26510,15 +25739,15 @@ }, "packages/authentication": { "name": "@feathersjs/authentication", - "version": "5.0.13", + "version": "5.0.14", "license": "MIT", "dependencies": { - "@feathersjs/commons": "^5.0.13", - "@feathersjs/errors": "^5.0.13", - "@feathersjs/feathers": "^5.0.13", + "@feathersjs/commons": "^5.0.14", + "@feathersjs/errors": "^5.0.14", + "@feathersjs/feathers": "^5.0.14", "@feathersjs/hooks": "^0.8.1", - "@feathersjs/schema": "^5.0.13", - "@feathersjs/transport-commons": "^5.0.13", + "@feathersjs/schema": "^5.0.14", + "@feathersjs/transport-commons": "^5.0.14", "@types/jsonwebtoken": "^9.0.5", "jsonwebtoken": "^9.0.2", "lodash": "^4.17.21", @@ -26526,10 +25755,10 @@ "uuid": "^9.0.1" }, "devDependencies": { - "@feathersjs/memory": "^5.0.13", + "@feathersjs/memory": "^5.0.14", "@types/lodash": "^4.14.202", "@types/mocha": "^10.0.6", - "@types/node": "^20.10.5", + "@types/node": "^20.10.6", "@types/uuid": "^9.0.7", "mocha": "^10.2.0", "shx": "^0.3.4", @@ -26546,24 +25775,24 @@ }, "packages/authentication-client": { "name": "@feathersjs/authentication-client", - "version": "5.0.13", + "version": "5.0.14", "license": "MIT", "dependencies": { - "@feathersjs/authentication": "^5.0.13", - "@feathersjs/commons": "^5.0.13", - "@feathersjs/errors": "^5.0.13", - "@feathersjs/feathers": "^5.0.13" + "@feathersjs/authentication": "^5.0.14", + "@feathersjs/commons": "^5.0.14", + "@feathersjs/errors": "^5.0.14", + "@feathersjs/feathers": "^5.0.14" }, "devDependencies": { - "@feathersjs/authentication-local": "^5.0.13", - "@feathersjs/express": "^5.0.13", - "@feathersjs/memory": "^5.0.13", - "@feathersjs/rest-client": "^5.0.13", - "@feathersjs/socketio": "^5.0.13", - "@feathersjs/socketio-client": "^5.0.13", + "@feathersjs/authentication-local": "^5.0.14", + "@feathersjs/express": "^5.0.14", + "@feathersjs/memory": "^5.0.14", + "@feathersjs/rest-client": "^5.0.14", + "@feathersjs/socketio": "^5.0.14", + "@feathersjs/socketio-client": "^5.0.14", "@types/mocha": "^10.0.6", - "@types/node": "^20.10.5", - "axios": "^1.6.2", + "@types/node": "^20.10.6", + "axios": "^1.6.3", "mocha": "^10.2.0", "shx": "^0.3.4", "ts-node": "^10.9.2", @@ -26579,23 +25808,23 @@ }, "packages/authentication-local": { "name": "@feathersjs/authentication-local", - "version": "5.0.13", + "version": "5.0.14", "license": "MIT", "dependencies": { - "@feathersjs/authentication": "^5.0.13", - "@feathersjs/commons": "^5.0.13", - "@feathersjs/errors": "^5.0.13", - "@feathersjs/feathers": "^5.0.13", + "@feathersjs/authentication": "^5.0.14", + "@feathersjs/commons": "^5.0.14", + "@feathersjs/errors": "^5.0.14", + "@feathersjs/feathers": "^5.0.14", "bcryptjs": "^2.4.3", "lodash": "^4.17.21" }, "devDependencies": { - "@feathersjs/memory": "^5.0.13", - "@feathersjs/schema": "^5.0.13", + "@feathersjs/memory": "^5.0.14", + "@feathersjs/schema": "^5.0.14", "@types/bcryptjs": "^2.4.6", "@types/lodash": "^4.14.202", "@types/mocha": "^10.0.6", - "@types/node": "^20.10.5", + "@types/node": "^20.10.6", "mocha": "^10.2.0", "shx": "^0.3.4", "ts-node": "^10.9.2", @@ -26611,16 +25840,16 @@ }, "packages/authentication-oauth": { "name": "@feathersjs/authentication-oauth", - "version": "5.0.13", + "version": "5.0.14", "license": "MIT", "dependencies": { - "@feathersjs/authentication": "^5.0.13", - "@feathersjs/commons": "^5.0.13", - "@feathersjs/errors": "^5.0.13", - "@feathersjs/express": "^5.0.13", - "@feathersjs/feathers": "^5.0.13", - "@feathersjs/koa": "^5.0.13", - "@feathersjs/schema": "^5.0.13", + "@feathersjs/authentication": "^5.0.14", + "@feathersjs/commons": "^5.0.14", + "@feathersjs/errors": "^5.0.14", + "@feathersjs/express": "^5.0.14", + "@feathersjs/feathers": "^5.0.14", + "@feathersjs/koa": "^5.0.14", + "@feathersjs/schema": "^5.0.14", "cookie-session": "^2.0.0", "grant": "^5.4.22", "koa-session": "^6.4.0", @@ -26628,15 +25857,15 @@ "qs": "^6.11.2" }, "devDependencies": { - "@feathersjs/memory": "^5.0.13", + "@feathersjs/memory": "^5.0.14", "@types/cookie-session": "^2.0.48", "@types/express": "^4.17.21", "@types/koa-session": "^6.4.5", "@types/lodash": "^4.14.202", "@types/mocha": "^10.0.6", - "@types/node": "^20.10.5", + "@types/node": "^20.10.6", "@types/tough-cookie": "^4.0.5", - "axios": "^1.6.2", + "axios": "^1.6.3", "mocha": "^10.2.0", "shx": "^0.3.4", "tough-cookie": "^4.1.3", @@ -26678,10 +25907,10 @@ }, "packages/cli": { "name": "@feathersjs/cli", - "version": "5.0.13", + "version": "5.0.14", "license": "MIT", "dependencies": { - "@feathersjs/generators": "^5.0.13", + "@feathersjs/generators": "^5.0.14", "chalk": "^4.0.1", "commander": "^11.1.0" }, @@ -26689,31 +25918,31 @@ "feathers": "bin/feathers" }, "devDependencies": { - "@feathersjs/adapter-commons": "^5.0.13", - "@feathersjs/authentication": "^5.0.13", - "@feathersjs/authentication-client": "^5.0.13", - "@feathersjs/authentication-local": "^5.0.13", - "@feathersjs/authentication-oauth": "^5.0.13", - "@feathersjs/configuration": "^5.0.13", - "@feathersjs/errors": "^5.0.13", - "@feathersjs/express": "^5.0.13", - "@feathersjs/feathers": "^5.0.13", - "@feathersjs/knex": "^5.0.13", - "@feathersjs/koa": "^5.0.13", - "@feathersjs/mongodb": "^5.0.13", - "@feathersjs/rest-client": "^5.0.13", - "@feathersjs/schema": "^5.0.13", - "@feathersjs/socketio": "^5.0.13", - "@feathersjs/transport-commons": "^5.0.13", - "@feathersjs/typebox": "^5.0.13", + "@feathersjs/adapter-commons": "^5.0.14", + "@feathersjs/authentication": "^5.0.14", + "@feathersjs/authentication-client": "^5.0.14", + "@feathersjs/authentication-local": "^5.0.14", + "@feathersjs/authentication-oauth": "^5.0.14", + "@feathersjs/configuration": "^5.0.14", + "@feathersjs/errors": "^5.0.14", + "@feathersjs/express": "^5.0.14", + "@feathersjs/feathers": "^5.0.14", + "@feathersjs/knex": "^5.0.14", + "@feathersjs/koa": "^5.0.14", + "@feathersjs/mongodb": "^5.0.14", + "@feathersjs/rest-client": "^5.0.14", + "@feathersjs/schema": "^5.0.14", + "@feathersjs/socketio": "^5.0.14", + "@feathersjs/transport-commons": "^5.0.14", + "@feathersjs/typebox": "^5.0.14", "@types/mocha": "^10.0.6", - "@types/node": "^20.10.5", + "@types/node": "^20.10.6", "@types/prettier": "^2.7.3", - "axios": "^1.6.2", + "axios": "^1.6.3", "mocha": "^10.2.0", "shx": "^0.3.4", "ts-node": "^10.9.2", - "type-fest": "^4.8.3", + "type-fest": "^4.9.0", "typescript": "^5.3.3" }, "engines": { @@ -26725,9 +25954,9 @@ } }, "packages/cli/node_modules/type-fest": { - "version": "4.8.3", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.8.3.tgz", - "integrity": "sha512-//BaTm14Q/gHBn09xlnKNqfI8t6bmdzx2DXYfPBNofN0WUybCEUDcbCWcTa0oF09lzLjZgPphXAsvRiMK0V6Bw==", + "version": "4.9.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.9.0.tgz", + "integrity": "sha512-KS/6lh/ynPGiHD/LnAobrEFq3Ad4pBzOlJ1wAnJx9N4EYoqFhMfLIBjUT2UEx4wg5ZE+cC1ob6DCSpppVo+rtg==", "dev": true, "engines": { "node": ">=16" @@ -26738,22 +25967,22 @@ }, "packages/client": { "name": "@feathersjs/client", - "version": "5.0.13", + "version": "5.0.14", "license": "MIT", "dependencies": { - "@feathersjs/authentication-client": "^5.0.13", - "@feathersjs/errors": "^5.0.13", - "@feathersjs/feathers": "^5.0.13", - "@feathersjs/rest-client": "^5.0.13", - "@feathersjs/socketio-client": "^5.0.13" + "@feathersjs/authentication-client": "^5.0.14", + "@feathersjs/errors": "^5.0.14", + "@feathersjs/feathers": "^5.0.14", + "@feathersjs/rest-client": "^5.0.14", + "@feathersjs/socketio-client": "^5.0.14" }, "devDependencies": { - "@babel/core": "^7.23.6", - "@babel/preset-env": "^7.23.6", - "@feathersjs/express": "^5.0.13", - "@feathersjs/memory": "^5.0.13", - "@feathersjs/socketio": "^5.0.13", - "@feathersjs/tests": "^5.0.13", + "@babel/core": "^7.23.7", + "@babel/preset-env": "^7.23.7", + "@feathersjs/express": "^5.0.14", + "@feathersjs/memory": "^5.0.14", + "@feathersjs/socketio": "^5.0.14", + "@feathersjs/tests": "^5.0.14", "babel-loader": "^9.1.3", "mocha": "^10.2.0", "node-fetch": "^2.6.1", @@ -26776,11 +26005,11 @@ }, "packages/commons": { "name": "@feathersjs/commons", - "version": "5.0.13", + "version": "5.0.14", "license": "MIT", "devDependencies": { "@types/mocha": "^10.0.6", - "@types/node": "^20.10.5", + "@types/node": "^20.10.6", "mocha": "^10.2.0", "shx": "^0.3.4", "ts-node": "^10.9.2", @@ -26796,18 +26025,18 @@ }, "packages/configuration": { "name": "@feathersjs/configuration", - "version": "5.0.13", + "version": "5.0.14", "license": "MIT", "dependencies": { - "@feathersjs/commons": "^5.0.13", - "@feathersjs/feathers": "^5.0.13", - "@feathersjs/schema": "^5.0.13", + "@feathersjs/commons": "^5.0.14", + "@feathersjs/feathers": "^5.0.14", + "@feathersjs/schema": "^5.0.14", "@types/config": "^3.3.3", "config": "^3.3.9" }, "devDependencies": { "@types/mocha": "^10.0.6", - "@types/node": "^20.10.5", + "@types/node": "^20.10.6", "mocha": "^10.2.0", "shx": "^0.3.4", "ts-node": "^10.9.2", @@ -26822,10 +26051,10 @@ } }, "packages/create-feathers": { - "version": "5.0.13", + "version": "5.0.14", "license": "MIT", "dependencies": { - "@feathersjs/cli": "^5.0.13" + "@feathersjs/cli": "^5.0.14" }, "bin": { "create-feathers": "bin/create-feathers" @@ -26840,12 +26069,12 @@ }, "packages/errors": { "name": "@feathersjs/errors", - "version": "5.0.13", + "version": "5.0.14", "license": "MIT", "devDependencies": { - "@feathersjs/feathers": "^5.0.13", + "@feathersjs/feathers": "^5.0.14", "@types/mocha": "^10.0.6", - "@types/node": "^20.10.5", + "@types/node": "^20.10.6", "mocha": "^10.2.0", "shx": "^0.3.4", "ts-node": "^10.9.2", @@ -26857,14 +26086,14 @@ }, "packages/express": { "name": "@feathersjs/express", - "version": "5.0.13", + "version": "5.0.14", "license": "MIT", "dependencies": { - "@feathersjs/authentication": "^5.0.13", - "@feathersjs/commons": "^5.0.13", - "@feathersjs/errors": "^5.0.13", - "@feathersjs/feathers": "^5.0.13", - "@feathersjs/transport-commons": "^5.0.13", + "@feathersjs/authentication": "^5.0.14", + "@feathersjs/commons": "^5.0.14", + "@feathersjs/errors": "^5.0.14", + "@feathersjs/feathers": "^5.0.14", + "@feathersjs/transport-commons": "^5.0.14", "@types/compression": "^1.7.5", "@types/cors": "^2.8.17", "@types/express": "^4.17.21", @@ -26874,12 +26103,12 @@ "express": "^4.18.2" }, "devDependencies": { - "@feathersjs/authentication-local": "^5.0.13", - "@feathersjs/tests": "^5.0.13", + "@feathersjs/authentication-local": "^5.0.14", + "@feathersjs/tests": "^5.0.14", "@types/lodash": "^4.14.202", "@types/mocha": "^10.0.6", - "@types/node": "^20.10.5", - "axios": "^1.6.2", + "@types/node": "^20.10.6", + "axios": "^1.6.3", "lodash": "^4.17.21", "mocha": "^10.2.0", "shx": "^0.3.4", @@ -26896,16 +26125,16 @@ }, "packages/feathers": { "name": "@feathersjs/feathers", - "version": "5.0.13", + "version": "5.0.14", "license": "MIT", "dependencies": { - "@feathersjs/commons": "^5.0.13", + "@feathersjs/commons": "^5.0.14", "@feathersjs/hooks": "^0.8.1", "events": "^3.3.0" }, "devDependencies": { "@types/mocha": "^10.0.6", - "@types/node": "^20.10.5", + "@types/node": "^20.10.6", "mocha": "^10.2.0", "shx": "^0.3.4", "ts-node": "^10.9.2", @@ -26921,7 +26150,7 @@ }, "packages/generators": { "name": "@feathersjs/generators", - "version": "5.0.13", + "version": "5.0.14", "license": "MIT", "dependencies": { "@feathershq/pinion": "^0.3.5", @@ -26931,27 +26160,27 @@ "typescript": "^5.3.3" }, "devDependencies": { - "@feathersjs/adapter-commons": "^5.0.13", - "@feathersjs/authentication": "^5.0.13", - "@feathersjs/authentication-client": "^5.0.13", - "@feathersjs/authentication-local": "^5.0.13", - "@feathersjs/authentication-oauth": "^5.0.13", - "@feathersjs/configuration": "^5.0.13", - "@feathersjs/errors": "^5.0.13", - "@feathersjs/express": "^5.0.13", - "@feathersjs/feathers": "^5.0.13", - "@feathersjs/knex": "^5.0.13", - "@feathersjs/koa": "^5.0.13", - "@feathersjs/mongodb": "^5.0.13", - "@feathersjs/rest-client": "^5.0.13", - "@feathersjs/schema": "^5.0.13", - "@feathersjs/socketio": "^5.0.13", - "@feathersjs/transport-commons": "^5.0.13", - "@feathersjs/typebox": "^5.0.13", + "@feathersjs/adapter-commons": "^5.0.14", + "@feathersjs/authentication": "^5.0.14", + "@feathersjs/authentication-client": "^5.0.14", + "@feathersjs/authentication-local": "^5.0.14", + "@feathersjs/authentication-oauth": "^5.0.14", + "@feathersjs/configuration": "^5.0.14", + "@feathersjs/errors": "^5.0.14", + "@feathersjs/express": "^5.0.14", + "@feathersjs/feathers": "^5.0.14", + "@feathersjs/knex": "^5.0.14", + "@feathersjs/koa": "^5.0.14", + "@feathersjs/mongodb": "^5.0.14", + "@feathersjs/rest-client": "^5.0.14", + "@feathersjs/schema": "^5.0.14", + "@feathersjs/socketio": "^5.0.14", + "@feathersjs/transport-commons": "^5.0.14", + "@feathersjs/typebox": "^5.0.14", "@types/mocha": "^10.0.6", - "@types/node": "^20.10.5", + "@types/node": "^20.10.6", "@types/prettier": "^2.7.3", - "axios": "^1.6.2", + "axios": "^1.6.3", "knex": "^3.1.0", "mocha": "^10.2.0", "mongodb": "^6.3.0", @@ -26961,7 +26190,7 @@ "shx": "^0.3.4", "sqlite3": "^5.1.6", "ts-node": "^10.9.2", - "type-fest": "^4.8.3", + "type-fest": "^4.9.0", "typescript": "^5.3.3" }, "engines": { @@ -27018,9 +26247,9 @@ } }, "packages/generators/node_modules/type-fest": { - "version": "4.8.3", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.8.3.tgz", - "integrity": "sha512-//BaTm14Q/gHBn09xlnKNqfI8t6bmdzx2DXYfPBNofN0WUybCEUDcbCWcTa0oF09lzLjZgPphXAsvRiMK0V6Bw==", + "version": "4.9.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.9.0.tgz", + "integrity": "sha512-KS/6lh/ynPGiHD/LnAobrEFq3Ad4pBzOlJ1wAnJx9N4EYoqFhMfLIBjUT2UEx4wg5ZE+cC1ob6DCSpppVo+rtg==", "dev": true, "engines": { "node": ">=16" @@ -27056,20 +26285,20 @@ }, "packages/knex": { "name": "@feathersjs/knex", - "version": "5.0.13", + "version": "5.0.14", "license": "MIT", "dependencies": { - "@feathersjs/adapter-commons": "^5.0.13", - "@feathersjs/commons": "^5.0.13", - "@feathersjs/errors": "^5.0.13", - "@feathersjs/feathers": "^5.0.13" + "@feathersjs/adapter-commons": "^5.0.14", + "@feathersjs/commons": "^5.0.14", + "@feathersjs/errors": "^5.0.14", + "@feathersjs/feathers": "^5.0.14" }, "devDependencies": { - "@feathersjs/adapter-tests": "^5.0.13", - "@feathersjs/schema": "^5.0.13", + "@feathersjs/adapter-tests": "^5.0.14", + "@feathersjs/schema": "^5.0.14", "@types/mocha": "^10.0.6", - "@types/node": "^20.10.5", - "knex": "^3.0.1", + "@types/node": "^20.10.6", + "knex": "^3.1.0", "mocha": "^10.2.0", "pg": "^8.11.3", "shx": "^0.3.4", @@ -27089,33 +26318,33 @@ }, "packages/koa": { "name": "@feathersjs/koa", - "version": "5.0.13", + "version": "5.0.14", "license": "MIT", "dependencies": { - "@feathersjs/authentication": "^5.0.13", - "@feathersjs/commons": "^5.0.13", - "@feathersjs/errors": "^5.0.13", - "@feathersjs/feathers": "^5.0.13", - "@feathersjs/transport-commons": "^5.0.13", + "@feathersjs/authentication": "^5.0.14", + "@feathersjs/commons": "^5.0.14", + "@feathersjs/errors": "^5.0.14", + "@feathersjs/feathers": "^5.0.14", + "@feathersjs/transport-commons": "^5.0.14", "@koa/cors": "^5.0.0", "@types/koa": "^2.13.12", - "@types/koa__cors": "^4.0.3", + "@types/koa__cors": "^5.0.0", "@types/koa-qs": "^2.0.3", "@types/koa-static": "^4.0.4", - "koa": "^2.14.2", + "koa": "^2.15.0", "koa-body": "^6.0.1", "koa-compose": "^4.1.0", "koa-qs": "^3.0.0", "koa-static": "^5.0.0" }, "devDependencies": { - "@feathersjs/authentication-local": "^5.0.13", - "@feathersjs/memory": "^5.0.13", - "@feathersjs/tests": "^5.0.13", + "@feathersjs/authentication-local": "^5.0.14", + "@feathersjs/memory": "^5.0.14", + "@feathersjs/tests": "^5.0.14", "@types/koa-compose": "^3.2.8", "@types/mocha": "^10.0.6", - "@types/node": "^20.10.5", - "axios": "^1.6.2", + "@types/node": "^20.10.6", + "axios": "^1.6.3", "mocha": "^10.2.0", "shx": "^0.3.4", "ts-node": "^10.9.2", @@ -27127,19 +26356,19 @@ }, "packages/memory": { "name": "@feathersjs/memory", - "version": "5.0.13", + "version": "5.0.14", "license": "MIT", "dependencies": { - "@feathersjs/adapter-commons": "^5.0.13", - "@feathersjs/commons": "^5.0.13", - "@feathersjs/errors": "^5.0.13", + "@feathersjs/adapter-commons": "^5.0.14", + "@feathersjs/commons": "^5.0.14", + "@feathersjs/errors": "^5.0.14", "sift": "^17.0.1" }, "devDependencies": { - "@feathersjs/adapter-tests": "^5.0.13", - "@feathersjs/feathers": "^5.0.13", + "@feathersjs/adapter-tests": "^5.0.14", + "@feathersjs/feathers": "^5.0.14", "@types/mocha": "^10.0.6", - "@types/node": "^20.10.5", + "@types/node": "^20.10.6", "mocha": "^10.2.0", "shx": "^0.3.4", "ts-node": "^10.9.2", @@ -27151,19 +26380,19 @@ }, "packages/mongodb": { "name": "@feathersjs/mongodb", - "version": "5.0.13", + "version": "5.0.14", "license": "MIT", "dependencies": { - "@feathersjs/adapter-commons": "^5.0.13", - "@feathersjs/commons": "^5.0.13", - "@feathersjs/errors": "^5.0.13", - "@feathersjs/feathers": "^5.0.13" + "@feathersjs/adapter-commons": "^5.0.14", + "@feathersjs/commons": "^5.0.14", + "@feathersjs/errors": "^5.0.14", + "@feathersjs/feathers": "^5.0.14" }, "devDependencies": { - "@feathersjs/adapter-tests": "^5.0.13", - "@feathersjs/schema": "^5.0.13", + "@feathersjs/adapter-tests": "^5.0.14", + "@feathersjs/schema": "^5.0.14", "@types/mocha": "^10.0.6", - "@types/node": "^20.10.5", + "@types/node": "^20.10.6", "mocha": "^10.2.0", "mongodb-memory-server": "^9.1.3", "shx": "^0.3.4", @@ -27182,24 +26411,24 @@ }, "packages/rest-client": { "name": "@feathersjs/rest-client", - "version": "5.0.13", + "version": "5.0.14", "license": "MIT", "dependencies": { - "@feathersjs/commons": "^5.0.13", - "@feathersjs/errors": "^5.0.13", - "@feathersjs/feathers": "^5.0.13", - "@types/superagent": "^8.1.0", + "@feathersjs/commons": "^5.0.14", + "@feathersjs/errors": "^5.0.14", + "@feathersjs/feathers": "^5.0.14", + "@types/superagent": "^8.1.1", "qs": "^6.11.2" }, "devDependencies": { - "@feathersjs/express": "^5.0.13", - "@feathersjs/memory": "^5.0.13", - "@feathersjs/tests": "^5.0.13", + "@feathersjs/express": "^5.0.14", + "@feathersjs/memory": "^5.0.14", + "@feathersjs/tests": "^5.0.14", "@types/mocha": "^10.0.6", - "@types/node": "^20.10.5", - "@types/node-fetch": "^2.6.9", + "@types/node": "^20.10.6", + "@types/node-fetch": "^2.6.10", "@types/qs": "^6.9.11", - "axios": "^1.6.2", + "axios": "^1.6.3", "mocha": "^10.2.0", "node-fetch": "^2.6.1", "rxjs": "^7.8.1", @@ -27218,13 +26447,13 @@ }, "packages/schema": { "name": "@feathersjs/schema", - "version": "5.0.13", + "version": "5.0.14", "license": "MIT", "dependencies": { - "@feathersjs/adapter-commons": "^5.0.13", - "@feathersjs/commons": "^5.0.13", - "@feathersjs/errors": "^5.0.13", - "@feathersjs/feathers": "^5.0.13", + "@feathersjs/adapter-commons": "^5.0.14", + "@feathersjs/commons": "^5.0.14", + "@feathersjs/errors": "^5.0.14", + "@feathersjs/feathers": "^5.0.14", "@feathersjs/hooks": "^0.8.1", "@types/json-schema": "^7.0.15", "ajv": "^8.12.0", @@ -27232,9 +26461,9 @@ "json-schema-to-ts": "^3.0.0" }, "devDependencies": { - "@feathersjs/memory": "^5.0.13", + "@feathersjs/memory": "^5.0.14", "@types/mocha": "^10.0.6", - "@types/node": "^20.10.5", + "@types/node": "^20.10.6", "ajv-formats": "^2.1.1", "mocha": "^10.2.0", "shx": "^0.3.4", @@ -27273,20 +26502,20 @@ }, "packages/socketio": { "name": "@feathersjs/socketio", - "version": "5.0.13", + "version": "5.0.14", "license": "MIT", "dependencies": { - "@feathersjs/commons": "^5.0.13", - "@feathersjs/feathers": "^5.0.13", - "@feathersjs/transport-commons": "^5.0.13", + "@feathersjs/commons": "^5.0.14", + "@feathersjs/feathers": "^5.0.14", + "@feathersjs/transport-commons": "^5.0.14", "socket.io": "^4.7.2" }, "devDependencies": { - "@feathersjs/express": "^5.0.13", - "@feathersjs/memory": "^5.0.13", - "@feathersjs/tests": "^5.0.13", + "@feathersjs/express": "^5.0.14", + "@feathersjs/memory": "^5.0.14", + "@feathersjs/tests": "^5.0.14", "@types/mocha": "^10.0.6", - "@types/node": "^20.10.5", + "@types/node": "^20.10.6", "lodash": "^4.17.21", "mocha": "^10.2.0", "shx": "^0.3.4", @@ -27303,19 +26532,19 @@ }, "packages/socketio-client": { "name": "@feathersjs/socketio-client", - "version": "5.0.13", + "version": "5.0.14", "license": "MIT", "dependencies": { - "@feathersjs/feathers": "^5.0.13", - "@feathersjs/transport-commons": "^5.0.13" + "@feathersjs/feathers": "^5.0.14", + "@feathersjs/transport-commons": "^5.0.14" }, "devDependencies": { - "@feathersjs/commons": "^5.0.13", - "@feathersjs/memory": "^5.0.13", - "@feathersjs/socketio": "^5.0.13", - "@feathersjs/tests": "^5.0.13", + "@feathersjs/commons": "^5.0.14", + "@feathersjs/memory": "^5.0.14", + "@feathersjs/socketio": "^5.0.14", + "@feathersjs/tests": "^5.0.14", "@types/mocha": "^10.0.6", - "@types/node": "^20.10.5", + "@types/node": "^20.10.6", "mocha": "^10.2.0", "shx": "^0.3.4", "socket.io-client": "^4.7.2", @@ -27332,17 +26561,17 @@ }, "packages/tests": { "name": "@feathersjs/tests", - "version": "5.0.13", + "version": "5.0.14", "license": "MIT", "dependencies": { "@types/lodash": "^4.14.202", - "axios": "^1.6.2", + "axios": "^1.6.3", "lodash": "^4.17.21" }, "devDependencies": { - "@feathersjs/feathers": "^5.0.13", + "@feathersjs/feathers": "^5.0.14", "@types/mocha": "^10.0.6", - "@types/node": "^20.10.5", + "@types/node": "^20.10.6", "mocha": "^10.2.0", "shx": "^0.3.4", "ts-node": "^10.9.2", @@ -27358,12 +26587,12 @@ }, "packages/transport-commons": { "name": "@feathersjs/transport-commons", - "version": "5.0.13", + "version": "5.0.14", "license": "MIT", "dependencies": { - "@feathersjs/commons": "^5.0.13", - "@feathersjs/errors": "^5.0.13", - "@feathersjs/feathers": "^5.0.13", + "@feathersjs/commons": "^5.0.14", + "@feathersjs/errors": "^5.0.14", + "@feathersjs/feathers": "^5.0.14", "encodeurl": "^1.0.2", "lodash": "^4.17.21" }, @@ -27371,7 +26600,7 @@ "@types/encodeurl": "^1.0.2", "@types/lodash": "^4.14.202", "@types/mocha": "^10.0.6", - "@types/node": "^20.10.5", + "@types/node": "^20.10.6", "mocha": "^10.2.0", "shx": "^0.3.4", "ts-node": "^10.9.2", @@ -27387,15 +26616,15 @@ }, "packages/typebox": { "name": "@feathersjs/typebox", - "version": "5.0.13", + "version": "5.0.14", "license": "MIT", "dependencies": { - "@feathersjs/schema": "^5.0.13", + "@feathersjs/schema": "^5.0.14", "@sinclair/typebox": "^0.25.0" }, "devDependencies": { "@types/mocha": "^10.0.6", - "@types/node": "^20.10.5", + "@types/node": "^20.10.6", "mocha": "^10.2.0", "shx": "^0.3.4", "typescript": "^5.3.3" diff --git a/package.json b/package.json index 16d205aff5..38f2bc88d6 100644 --- a/package.json +++ b/package.json @@ -46,12 +46,12 @@ }, "devDependencies": { "@feathershq/pinion": "^0.4.0-pre.3", - "@typescript-eslint/eslint-plugin": "^6.15.0", - "@typescript-eslint/parser": "^6.15.0", + "@typescript-eslint/eslint-plugin": "^6.16.0", + "@typescript-eslint/parser": "^6.16.0", "c8": "^8.0.1", "eslint": "^8.56.0", "eslint-config-prettier": "^9.1.0", - "eslint-plugin-prettier": "^5.1.1", + "eslint-plugin-prettier": "^5.1.2", "lerna": "^8.0.1", "npm-check-updates": "^16.14.12", "prettier": "^3.1.1", diff --git a/packages/adapter-commons/CHANGELOG.md b/packages/adapter-commons/CHANGELOG.md index 148ca7b03d..b0728688b7 100644 --- a/packages/adapter-commons/CHANGELOG.md +++ b/packages/adapter-commons/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.14](https://github.com/feathersjs/feathers/compare/v5.0.13...v5.0.14) (2024-01-05) + +**Note:** Version bump only for package @feathersjs/adapter-commons + ## [5.0.13](https://github.com/feathersjs/feathers/compare/v5.0.12...v5.0.13) (2023-12-29) **Note:** Version bump only for package @feathersjs/adapter-commons diff --git a/packages/adapter-commons/package.json b/packages/adapter-commons/package.json index 939ed99554..afd1e62430 100644 --- a/packages/adapter-commons/package.json +++ b/packages/adapter-commons/package.json @@ -1,6 +1,6 @@ { "name": "@feathersjs/adapter-commons", - "version": "5.0.13", + "version": "5.0.14", "description": "Shared database adapter utility functions", "homepage": "https://feathersjs.com", "keywords": [ @@ -50,14 +50,14 @@ "access": "public" }, "dependencies": { - "@feathersjs/commons": "^5.0.13", - "@feathersjs/errors": "^5.0.13", - "@feathersjs/feathers": "^5.0.13" + "@feathersjs/commons": "^5.0.14", + "@feathersjs/errors": "^5.0.14", + "@feathersjs/feathers": "^5.0.14" }, "devDependencies": { "@types/mocha": "^10.0.6", "@types/mongodb": "^4.0.6", - "@types/node": "^20.10.5", + "@types/node": "^20.10.6", "mocha": "^10.2.0", "mongodb": "^6.3.0", "shx": "^0.3.4", diff --git a/packages/adapter-tests/CHANGELOG.md b/packages/adapter-tests/CHANGELOG.md index c9024f50e3..611c589594 100644 --- a/packages/adapter-tests/CHANGELOG.md +++ b/packages/adapter-tests/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.14](https://github.com/feathersjs/feathers/compare/v5.0.13...v5.0.14) (2024-01-05) + +**Note:** Version bump only for package @feathersjs/adapter-tests + ## [5.0.13](https://github.com/feathersjs/feathers/compare/v5.0.12...v5.0.13) (2023-12-29) **Note:** Version bump only for package @feathersjs/adapter-tests diff --git a/packages/adapter-tests/package.json b/packages/adapter-tests/package.json index af5186d1cb..72c089c6fe 100644 --- a/packages/adapter-tests/package.json +++ b/packages/adapter-tests/package.json @@ -1,6 +1,6 @@ { "name": "@feathersjs/adapter-tests", - "version": "5.0.13", + "version": "5.0.14", "description": "Feathers shared database adapter test suite", "homepage": "https://feathersjs.com", "keywords": [ @@ -51,7 +51,7 @@ }, "devDependencies": { "@types/mocha": "^10.0.6", - "@types/node": "^20.10.5", + "@types/node": "^20.10.6", "mocha": "^10.2.0", "shx": "^0.3.4", "ts-node": "^10.9.2", diff --git a/packages/authentication-client/CHANGELOG.md b/packages/authentication-client/CHANGELOG.md index af624f819d..8476edc960 100644 --- a/packages/authentication-client/CHANGELOG.md +++ b/packages/authentication-client/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.14](https://github.com/feathersjs/feathers/compare/v5.0.13...v5.0.14) (2024-01-05) + +**Note:** Version bump only for package @feathersjs/authentication-client + ## [5.0.13](https://github.com/feathersjs/feathers/compare/v5.0.12...v5.0.13) (2023-12-29) **Note:** Version bump only for package @feathersjs/authentication-client diff --git a/packages/authentication-client/package.json b/packages/authentication-client/package.json index 84a61a0e3f..1434038b4e 100644 --- a/packages/authentication-client/package.json +++ b/packages/authentication-client/package.json @@ -1,7 +1,7 @@ { "name": "@feathersjs/authentication-client", "description": "The authentication plugin for feathers-client", - "version": "5.0.13", + "version": "5.0.14", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -53,21 +53,21 @@ "access": "public" }, "dependencies": { - "@feathersjs/authentication": "^5.0.13", - "@feathersjs/commons": "^5.0.13", - "@feathersjs/errors": "^5.0.13", - "@feathersjs/feathers": "^5.0.13" + "@feathersjs/authentication": "^5.0.14", + "@feathersjs/commons": "^5.0.14", + "@feathersjs/errors": "^5.0.14", + "@feathersjs/feathers": "^5.0.14" }, "devDependencies": { - "@feathersjs/authentication-local": "^5.0.13", - "@feathersjs/express": "^5.0.13", - "@feathersjs/memory": "^5.0.13", - "@feathersjs/rest-client": "^5.0.13", - "@feathersjs/socketio": "^5.0.13", - "@feathersjs/socketio-client": "^5.0.13", + "@feathersjs/authentication-local": "^5.0.14", + "@feathersjs/express": "^5.0.14", + "@feathersjs/memory": "^5.0.14", + "@feathersjs/rest-client": "^5.0.14", + "@feathersjs/socketio": "^5.0.14", + "@feathersjs/socketio-client": "^5.0.14", "@types/mocha": "^10.0.6", - "@types/node": "^20.10.5", - "axios": "^1.6.2", + "@types/node": "^20.10.6", + "axios": "^1.6.3", "mocha": "^10.2.0", "shx": "^0.3.4", "ts-node": "^10.9.2", diff --git a/packages/authentication-local/CHANGELOG.md b/packages/authentication-local/CHANGELOG.md index c897b75a82..61edae56f3 100644 --- a/packages/authentication-local/CHANGELOG.md +++ b/packages/authentication-local/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.14](https://github.com/feathersjs/feathers/compare/v5.0.13...v5.0.14) (2024-01-05) + +**Note:** Version bump only for package @feathersjs/authentication-local + ## [5.0.13](https://github.com/feathersjs/feathers/compare/v5.0.12...v5.0.13) (2023-12-29) **Note:** Version bump only for package @feathersjs/authentication-local diff --git a/packages/authentication-local/package.json b/packages/authentication-local/package.json index 65d1fbb778..b1dd3068ea 100644 --- a/packages/authentication-local/package.json +++ b/packages/authentication-local/package.json @@ -1,7 +1,7 @@ { "name": "@feathersjs/authentication-local", "description": "Local authentication strategy for @feathers/authentication", - "version": "5.0.13", + "version": "5.0.14", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -53,20 +53,20 @@ "access": "public" }, "dependencies": { - "@feathersjs/authentication": "^5.0.13", - "@feathersjs/commons": "^5.0.13", - "@feathersjs/errors": "^5.0.13", - "@feathersjs/feathers": "^5.0.13", + "@feathersjs/authentication": "^5.0.14", + "@feathersjs/commons": "^5.0.14", + "@feathersjs/errors": "^5.0.14", + "@feathersjs/feathers": "^5.0.14", "bcryptjs": "^2.4.3", "lodash": "^4.17.21" }, "devDependencies": { - "@feathersjs/memory": "^5.0.13", - "@feathersjs/schema": "^5.0.13", + "@feathersjs/memory": "^5.0.14", + "@feathersjs/schema": "^5.0.14", "@types/bcryptjs": "^2.4.6", "@types/lodash": "^4.14.202", "@types/mocha": "^10.0.6", - "@types/node": "^20.10.5", + "@types/node": "^20.10.6", "mocha": "^10.2.0", "shx": "^0.3.4", "ts-node": "^10.9.2", diff --git a/packages/authentication-oauth/CHANGELOG.md b/packages/authentication-oauth/CHANGELOG.md index 89c24d3777..d6551ac7f1 100644 --- a/packages/authentication-oauth/CHANGELOG.md +++ b/packages/authentication-oauth/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.14](https://github.com/feathersjs/feathers/compare/v5.0.13...v5.0.14) (2024-01-05) + +**Note:** Version bump only for package @feathersjs/authentication-oauth + ## [5.0.13](https://github.com/feathersjs/feathers/compare/v5.0.12...v5.0.13) (2023-12-29) **Note:** Version bump only for package @feathersjs/authentication-oauth diff --git a/packages/authentication-oauth/package.json b/packages/authentication-oauth/package.json index d21511b1a7..f771551e5a 100644 --- a/packages/authentication-oauth/package.json +++ b/packages/authentication-oauth/package.json @@ -1,7 +1,7 @@ { "name": "@feathersjs/authentication-oauth", "description": "oAuth 1 and 2 authentication for Feathers. Powered by Grant.", - "version": "5.0.13", + "version": "5.0.14", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -54,13 +54,13 @@ "access": "public" }, "dependencies": { - "@feathersjs/authentication": "^5.0.13", - "@feathersjs/commons": "^5.0.13", - "@feathersjs/errors": "^5.0.13", - "@feathersjs/express": "^5.0.13", - "@feathersjs/feathers": "^5.0.13", - "@feathersjs/koa": "^5.0.13", - "@feathersjs/schema": "^5.0.13", + "@feathersjs/authentication": "^5.0.14", + "@feathersjs/commons": "^5.0.14", + "@feathersjs/errors": "^5.0.14", + "@feathersjs/express": "^5.0.14", + "@feathersjs/feathers": "^5.0.14", + "@feathersjs/koa": "^5.0.14", + "@feathersjs/schema": "^5.0.14", "cookie-session": "^2.0.0", "grant": "^5.4.22", "koa-session": "^6.4.0", @@ -68,15 +68,15 @@ "qs": "^6.11.2" }, "devDependencies": { - "@feathersjs/memory": "^5.0.13", + "@feathersjs/memory": "^5.0.14", "@types/cookie-session": "^2.0.48", "@types/express": "^4.17.21", "@types/koa-session": "^6.4.5", "@types/lodash": "^4.14.202", "@types/mocha": "^10.0.6", - "@types/node": "^20.10.5", + "@types/node": "^20.10.6", "@types/tough-cookie": "^4.0.5", - "axios": "^1.6.2", + "axios": "^1.6.3", "mocha": "^10.2.0", "shx": "^0.3.4", "tough-cookie": "^4.1.3", diff --git a/packages/authentication/CHANGELOG.md b/packages/authentication/CHANGELOG.md index cb55fb7dfb..80eb47446d 100644 --- a/packages/authentication/CHANGELOG.md +++ b/packages/authentication/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.14](https://github.com/feathersjs/feathers/compare/v5.0.13...v5.0.14) (2024-01-05) + +**Note:** Version bump only for package @feathersjs/authentication + ## [5.0.13](https://github.com/feathersjs/feathers/compare/v5.0.12...v5.0.13) (2023-12-29) **Note:** Version bump only for package @feathersjs/authentication diff --git a/packages/authentication/package.json b/packages/authentication/package.json index 683fa6ddbc..36bce5b2b9 100644 --- a/packages/authentication/package.json +++ b/packages/authentication/package.json @@ -1,7 +1,7 @@ { "name": "@feathersjs/authentication", "description": "Add Authentication to your FeathersJS app.", - "version": "5.0.13", + "version": "5.0.14", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -53,12 +53,12 @@ "access": "public" }, "dependencies": { - "@feathersjs/commons": "^5.0.13", - "@feathersjs/errors": "^5.0.13", - "@feathersjs/feathers": "^5.0.13", + "@feathersjs/commons": "^5.0.14", + "@feathersjs/errors": "^5.0.14", + "@feathersjs/feathers": "^5.0.14", "@feathersjs/hooks": "^0.8.1", - "@feathersjs/schema": "^5.0.13", - "@feathersjs/transport-commons": "^5.0.13", + "@feathersjs/schema": "^5.0.14", + "@feathersjs/transport-commons": "^5.0.14", "@types/jsonwebtoken": "^9.0.5", "jsonwebtoken": "^9.0.2", "lodash": "^4.17.21", @@ -66,10 +66,10 @@ "uuid": "^9.0.1" }, "devDependencies": { - "@feathersjs/memory": "^5.0.13", + "@feathersjs/memory": "^5.0.14", "@types/lodash": "^4.14.202", "@types/mocha": "^10.0.6", - "@types/node": "^20.10.5", + "@types/node": "^20.10.6", "@types/uuid": "^9.0.7", "mocha": "^10.2.0", "shx": "^0.3.4", diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index dc56876a3f..a633d4f48e 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.14](https://github.com/feathersjs/feathers/compare/v5.0.13...v5.0.14) (2024-01-05) + +**Note:** Version bump only for package @feathersjs/cli + ## [5.0.13](https://github.com/feathersjs/feathers/compare/v5.0.12...v5.0.13) (2023-12-29) **Note:** Version bump only for package @feathersjs/cli diff --git a/packages/cli/package.json b/packages/cli/package.json index 1fd07253d3..22e9f10d7e 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,7 +1,7 @@ { "name": "@feathersjs/cli", "description": "The command line interface for creating Feathers applications", - "version": "5.0.13", + "version": "5.0.14", "homepage": "https://feathersjs.com", "main": "lib/", "bin": { @@ -52,36 +52,36 @@ "access": "public" }, "dependencies": { - "@feathersjs/generators": "^5.0.13", + "@feathersjs/generators": "^5.0.14", "chalk": "^4.0.1", "commander": "^11.1.0" }, "devDependencies": { - "@feathersjs/adapter-commons": "^5.0.13", - "@feathersjs/authentication": "^5.0.13", - "@feathersjs/authentication-client": "^5.0.13", - "@feathersjs/authentication-local": "^5.0.13", - "@feathersjs/authentication-oauth": "^5.0.13", - "@feathersjs/configuration": "^5.0.13", - "@feathersjs/errors": "^5.0.13", - "@feathersjs/express": "^5.0.13", - "@feathersjs/feathers": "^5.0.13", - "@feathersjs/knex": "^5.0.13", - "@feathersjs/koa": "^5.0.13", - "@feathersjs/mongodb": "^5.0.13", - "@feathersjs/rest-client": "^5.0.13", - "@feathersjs/schema": "^5.0.13", - "@feathersjs/socketio": "^5.0.13", - "@feathersjs/transport-commons": "^5.0.13", - "@feathersjs/typebox": "^5.0.13", + "@feathersjs/adapter-commons": "^5.0.14", + "@feathersjs/authentication": "^5.0.14", + "@feathersjs/authentication-client": "^5.0.14", + "@feathersjs/authentication-local": "^5.0.14", + "@feathersjs/authentication-oauth": "^5.0.14", + "@feathersjs/configuration": "^5.0.14", + "@feathersjs/errors": "^5.0.14", + "@feathersjs/express": "^5.0.14", + "@feathersjs/feathers": "^5.0.14", + "@feathersjs/knex": "^5.0.14", + "@feathersjs/koa": "^5.0.14", + "@feathersjs/mongodb": "^5.0.14", + "@feathersjs/rest-client": "^5.0.14", + "@feathersjs/schema": "^5.0.14", + "@feathersjs/socketio": "^5.0.14", + "@feathersjs/transport-commons": "^5.0.14", + "@feathersjs/typebox": "^5.0.14", "@types/mocha": "^10.0.6", - "@types/node": "^20.10.5", + "@types/node": "^20.10.6", "@types/prettier": "^2.7.3", - "axios": "^1.6.2", + "axios": "^1.6.3", "mocha": "^10.2.0", "shx": "^0.3.4", "ts-node": "^10.9.2", - "type-fest": "^4.8.3", + "type-fest": "^4.9.0", "typescript": "^5.3.3" }, "gitHead": "90caf635aec850550b9d37bea2762af959d9e8d5" diff --git a/packages/client/CHANGELOG.md b/packages/client/CHANGELOG.md index b9cfa0f6be..b91e4c6e4f 100644 --- a/packages/client/CHANGELOG.md +++ b/packages/client/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.14](https://github.com/feathersjs/feathers/compare/v5.0.13...v5.0.14) (2024-01-05) + +**Note:** Version bump only for package @feathersjs/client + ## [5.0.13](https://github.com/feathersjs/feathers/compare/v5.0.12...v5.0.13) (2023-12-29) **Note:** Version bump only for package @feathersjs/client diff --git a/packages/client/package.json b/packages/client/package.json index eb68d6e1d3..50e916eec8 100644 --- a/packages/client/package.json +++ b/packages/client/package.json @@ -1,7 +1,7 @@ { "name": "@feathersjs/client", "description": "A module that consolidates Feathers client modules for REST (jQuery, Request, Superagent) and Websocket (Socket.io, Primus) connections", - "version": "5.0.13", + "version": "5.0.14", "repository": { "type": "git", "url": "https://github.com/feathersjs/feathers.git", @@ -49,19 +49,19 @@ "IE 11" ], "dependencies": { - "@feathersjs/authentication-client": "^5.0.13", - "@feathersjs/errors": "^5.0.13", - "@feathersjs/feathers": "^5.0.13", - "@feathersjs/rest-client": "^5.0.13", - "@feathersjs/socketio-client": "^5.0.13" + "@feathersjs/authentication-client": "^5.0.14", + "@feathersjs/errors": "^5.0.14", + "@feathersjs/feathers": "^5.0.14", + "@feathersjs/rest-client": "^5.0.14", + "@feathersjs/socketio-client": "^5.0.14" }, "devDependencies": { - "@babel/core": "^7.23.6", - "@babel/preset-env": "^7.23.6", - "@feathersjs/express": "^5.0.13", - "@feathersjs/memory": "^5.0.13", - "@feathersjs/socketio": "^5.0.13", - "@feathersjs/tests": "^5.0.13", + "@babel/core": "^7.23.7", + "@babel/preset-env": "^7.23.7", + "@feathersjs/express": "^5.0.14", + "@feathersjs/memory": "^5.0.14", + "@feathersjs/socketio": "^5.0.14", + "@feathersjs/tests": "^5.0.14", "babel-loader": "^9.1.3", "mocha": "^10.2.0", "node-fetch": "^2.6.1", diff --git a/packages/commons/CHANGELOG.md b/packages/commons/CHANGELOG.md index 6f12d6309d..f2fa1bb20f 100644 --- a/packages/commons/CHANGELOG.md +++ b/packages/commons/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.14](https://github.com/feathersjs/feathers/compare/v5.0.13...v5.0.14) (2024-01-05) + +**Note:** Version bump only for package @feathersjs/commons + ## [5.0.13](https://github.com/feathersjs/feathers/compare/v5.0.12...v5.0.13) (2023-12-29) **Note:** Version bump only for package @feathersjs/commons diff --git a/packages/commons/package.json b/packages/commons/package.json index bfe3be3f4e..ed48c55d78 100644 --- a/packages/commons/package.json +++ b/packages/commons/package.json @@ -1,6 +1,6 @@ { "name": "@feathersjs/commons", - "version": "5.0.13", + "version": "5.0.14", "description": "Shared Feathers utility functions", "homepage": "https://feathersjs.com", "keywords": [ @@ -53,7 +53,7 @@ }, "devDependencies": { "@types/mocha": "^10.0.6", - "@types/node": "^20.10.5", + "@types/node": "^20.10.6", "mocha": "^10.2.0", "shx": "^0.3.4", "ts-node": "^10.9.2", diff --git a/packages/configuration/CHANGELOG.md b/packages/configuration/CHANGELOG.md index fb6a81ac86..d45e02f936 100644 --- a/packages/configuration/CHANGELOG.md +++ b/packages/configuration/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.14](https://github.com/feathersjs/feathers/compare/v5.0.13...v5.0.14) (2024-01-05) + +**Note:** Version bump only for package @feathersjs/configuration + ## [5.0.13](https://github.com/feathersjs/feathers/compare/v5.0.12...v5.0.13) (2023-12-29) **Note:** Version bump only for package @feathersjs/configuration diff --git a/packages/configuration/package.json b/packages/configuration/package.json index 81d0392b9f..2babc5def6 100644 --- a/packages/configuration/package.json +++ b/packages/configuration/package.json @@ -1,7 +1,7 @@ { "name": "@feathersjs/configuration", "description": "A small configuration module for your Feathers application.", - "version": "5.0.13", + "version": "5.0.14", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -58,15 +58,15 @@ "access": "public" }, "dependencies": { - "@feathersjs/commons": "^5.0.13", - "@feathersjs/feathers": "^5.0.13", - "@feathersjs/schema": "^5.0.13", + "@feathersjs/commons": "^5.0.14", + "@feathersjs/feathers": "^5.0.14", + "@feathersjs/schema": "^5.0.14", "@types/config": "^3.3.3", "config": "^3.3.9" }, "devDependencies": { "@types/mocha": "^10.0.6", - "@types/node": "^20.10.5", + "@types/node": "^20.10.6", "mocha": "^10.2.0", "shx": "^0.3.4", "ts-node": "^10.9.2", diff --git a/packages/create-feathers/CHANGELOG.md b/packages/create-feathers/CHANGELOG.md index aa82725513..8fefebf26b 100644 --- a/packages/create-feathers/CHANGELOG.md +++ b/packages/create-feathers/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.14](https://github.com/feathersjs/feathers/compare/v5.0.13...v5.0.14) (2024-01-05) + +**Note:** Version bump only for package create-feathers + ## [5.0.13](https://github.com/feathersjs/feathers/compare/v5.0.12...v5.0.13) (2023-12-29) **Note:** Version bump only for package create-feathers diff --git a/packages/create-feathers/package.json b/packages/create-feathers/package.json index 16a567f857..d4907f9b14 100644 --- a/packages/create-feathers/package.json +++ b/packages/create-feathers/package.json @@ -1,7 +1,7 @@ { "name": "create-feathers", "description": "Create a new Feathers application", - "version": "5.0.13", + "version": "5.0.14", "homepage": "https://feathersjs.com", "bin": { "create-feathers": "./bin/create-feathers" @@ -47,7 +47,7 @@ "access": "public" }, "dependencies": { - "@feathersjs/cli": "^5.0.13" + "@feathersjs/cli": "^5.0.14" }, "gitHead": "90caf635aec850550b9d37bea2762af959d9e8d5" } diff --git a/packages/errors/CHANGELOG.md b/packages/errors/CHANGELOG.md index 53cba73306..899e384cb2 100644 --- a/packages/errors/CHANGELOG.md +++ b/packages/errors/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.14](https://github.com/feathersjs/feathers/compare/v5.0.13...v5.0.14) (2024-01-05) + +**Note:** Version bump only for package @feathersjs/errors + ## [5.0.13](https://github.com/feathersjs/feathers/compare/v5.0.12...v5.0.13) (2023-12-29) **Note:** Version bump only for package @feathersjs/errors diff --git a/packages/errors/package.json b/packages/errors/package.json index 37d3cd6901..0e31580cc6 100644 --- a/packages/errors/package.json +++ b/packages/errors/package.json @@ -1,7 +1,7 @@ { "name": "@feathersjs/errors", "description": "Common error types for Feathers apps", - "version": "5.0.13", + "version": "5.0.14", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -49,9 +49,9 @@ "*.js" ], "devDependencies": { - "@feathersjs/feathers": "^5.0.13", + "@feathersjs/feathers": "^5.0.14", "@types/mocha": "^10.0.6", - "@types/node": "^20.10.5", + "@types/node": "^20.10.6", "mocha": "^10.2.0", "shx": "^0.3.4", "ts-node": "^10.9.2", diff --git a/packages/express/CHANGELOG.md b/packages/express/CHANGELOG.md index f9d2b11a38..b2c46d6bf1 100644 --- a/packages/express/CHANGELOG.md +++ b/packages/express/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.14](https://github.com/feathersjs/feathers/compare/v5.0.13...v5.0.14) (2024-01-05) + +**Note:** Version bump only for package @feathersjs/express + ## [5.0.13](https://github.com/feathersjs/feathers/compare/v5.0.12...v5.0.13) (2023-12-29) **Note:** Version bump only for package @feathersjs/express diff --git a/packages/express/package.json b/packages/express/package.json index c5572c1040..c13b8b1399 100644 --- a/packages/express/package.json +++ b/packages/express/package.json @@ -1,7 +1,7 @@ { "name": "@feathersjs/express", "description": "Feathers Express framework bindings and REST provider", - "version": "5.0.13", + "version": "5.0.14", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -52,11 +52,11 @@ "access": "public" }, "dependencies": { - "@feathersjs/authentication": "^5.0.13", - "@feathersjs/commons": "^5.0.13", - "@feathersjs/errors": "^5.0.13", - "@feathersjs/feathers": "^5.0.13", - "@feathersjs/transport-commons": "^5.0.13", + "@feathersjs/authentication": "^5.0.14", + "@feathersjs/commons": "^5.0.14", + "@feathersjs/errors": "^5.0.14", + "@feathersjs/feathers": "^5.0.14", + "@feathersjs/transport-commons": "^5.0.14", "@types/compression": "^1.7.5", "@types/cors": "^2.8.17", "@types/express": "^4.17.21", @@ -66,12 +66,12 @@ "express": "^4.18.2" }, "devDependencies": { - "@feathersjs/authentication-local": "^5.0.13", - "@feathersjs/tests": "^5.0.13", + "@feathersjs/authentication-local": "^5.0.14", + "@feathersjs/tests": "^5.0.14", "@types/lodash": "^4.14.202", "@types/mocha": "^10.0.6", - "@types/node": "^20.10.5", - "axios": "^1.6.2", + "@types/node": "^20.10.6", + "axios": "^1.6.3", "lodash": "^4.17.21", "mocha": "^10.2.0", "shx": "^0.3.4", diff --git a/packages/feathers/CHANGELOG.md b/packages/feathers/CHANGELOG.md index 1c337c24c8..deaf10457f 100644 --- a/packages/feathers/CHANGELOG.md +++ b/packages/feathers/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.14](https://github.com/feathersjs/feathers/compare/v5.0.13...v5.0.14) (2024-01-05) + +**Note:** Version bump only for package @feathersjs/feathers + ## [5.0.13](https://github.com/feathersjs/feathers/compare/v5.0.12...v5.0.13) (2023-12-29) **Note:** Version bump only for package @feathersjs/feathers diff --git a/packages/feathers/package.json b/packages/feathers/package.json index 9cc304fd06..c5e653d7c6 100644 --- a/packages/feathers/package.json +++ b/packages/feathers/package.json @@ -1,7 +1,7 @@ { "name": "@feathersjs/feathers", "description": "A framework for real-time applications and REST API with JavaScript and TypeScript", - "version": "5.0.13", + "version": "5.0.14", "homepage": "http://feathersjs.com", "repository": { "type": "git", @@ -58,13 +58,13 @@ "access": "public" }, "dependencies": { - "@feathersjs/commons": "^5.0.13", + "@feathersjs/commons": "^5.0.14", "@feathersjs/hooks": "^0.8.1", "events": "^3.3.0" }, "devDependencies": { "@types/mocha": "^10.0.6", - "@types/node": "^20.10.5", + "@types/node": "^20.10.6", "mocha": "^10.2.0", "shx": "^0.3.4", "ts-node": "^10.9.2", diff --git a/packages/generators/CHANGELOG.md b/packages/generators/CHANGELOG.md index 73fb3f29b5..532f10ba63 100644 --- a/packages/generators/CHANGELOG.md +++ b/packages/generators/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.14](https://github.com/feathersjs/feathers/compare/v5.0.13...v5.0.14) (2024-01-05) + +### Bug Fixes + +- **generators:** Harden mongodb.js to reliably extract database from any connection string ([#3264](https://github.com/feathersjs/feathers/issues/3264)) ([7b0f82c](https://github.com/feathersjs/feathers/commit/7b0f82c631ff5549cdc9a8e0ffcc705d067c2157)) + ## [5.0.13](https://github.com/feathersjs/feathers/compare/v5.0.12...v5.0.13) (2023-12-29) **Note:** Version bump only for package @feathersjs/generators diff --git a/packages/generators/package.json b/packages/generators/package.json index e7c8b39af9..8d7f037c19 100644 --- a/packages/generators/package.json +++ b/packages/generators/package.json @@ -1,6 +1,6 @@ { "name": "@feathersjs/generators", - "version": "5.0.13", + "version": "5.0.14", "description": "Feathers CLI core generators, powered by Pinion", "homepage": "https://feathersjs.com", "keywords": [ @@ -59,27 +59,27 @@ "typescript": "^5.3.3" }, "devDependencies": { - "@feathersjs/adapter-commons": "^5.0.13", - "@feathersjs/authentication": "^5.0.13", - "@feathersjs/authentication-client": "^5.0.13", - "@feathersjs/authentication-local": "^5.0.13", - "@feathersjs/authentication-oauth": "^5.0.13", - "@feathersjs/configuration": "^5.0.13", - "@feathersjs/errors": "^5.0.13", - "@feathersjs/express": "^5.0.13", - "@feathersjs/feathers": "^5.0.13", - "@feathersjs/knex": "^5.0.13", - "@feathersjs/koa": "^5.0.13", - "@feathersjs/mongodb": "^5.0.13", - "@feathersjs/rest-client": "^5.0.13", - "@feathersjs/schema": "^5.0.13", - "@feathersjs/socketio": "^5.0.13", - "@feathersjs/transport-commons": "^5.0.13", - "@feathersjs/typebox": "^5.0.13", + "@feathersjs/adapter-commons": "^5.0.14", + "@feathersjs/authentication": "^5.0.14", + "@feathersjs/authentication-client": "^5.0.14", + "@feathersjs/authentication-local": "^5.0.14", + "@feathersjs/authentication-oauth": "^5.0.14", + "@feathersjs/configuration": "^5.0.14", + "@feathersjs/errors": "^5.0.14", + "@feathersjs/express": "^5.0.14", + "@feathersjs/feathers": "^5.0.14", + "@feathersjs/knex": "^5.0.14", + "@feathersjs/koa": "^5.0.14", + "@feathersjs/mongodb": "^5.0.14", + "@feathersjs/rest-client": "^5.0.14", + "@feathersjs/schema": "^5.0.14", + "@feathersjs/socketio": "^5.0.14", + "@feathersjs/transport-commons": "^5.0.14", + "@feathersjs/typebox": "^5.0.14", "@types/mocha": "^10.0.6", - "@types/node": "^20.10.5", + "@types/node": "^20.10.6", "@types/prettier": "^2.7.3", - "axios": "^1.6.2", + "axios": "^1.6.3", "knex": "^3.1.0", "mocha": "^10.2.0", "mongodb": "^6.3.0", @@ -89,7 +89,7 @@ "shx": "^0.3.4", "sqlite3": "^5.1.6", "ts-node": "^10.9.2", - "type-fest": "^4.8.3", + "type-fest": "^4.9.0", "typescript": "^5.3.3" }, "gitHead": "90caf635aec850550b9d37bea2762af959d9e8d5" diff --git a/packages/knex/CHANGELOG.md b/packages/knex/CHANGELOG.md index ef65cc1a9a..b7a1abdf29 100644 --- a/packages/knex/CHANGELOG.md +++ b/packages/knex/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.14](https://github.com/feathersjs/feathers/compare/v5.0.13...v5.0.14) (2024-01-05) + +### Bug Fixes + +- **knex:** Add Error Handler to knex \_update function ([#3371](https://github.com/feathersjs/feathers/issues/3371)) ([210f103](https://github.com/feathersjs/feathers/commit/210f1037bf69c641d4fd335cd4f084cbbac0a922)) + ## [5.0.13](https://github.com/feathersjs/feathers/compare/v5.0.12...v5.0.13) (2023-12-29) **Note:** Version bump only for package @feathersjs/knex diff --git a/packages/knex/package.json b/packages/knex/package.json index 8432232d18..1ae9f1f866 100644 --- a/packages/knex/package.json +++ b/packages/knex/package.json @@ -1,7 +1,7 @@ { "name": "@feathersjs/knex", "description": "Feathers SQL service adapter using KnexJS", - "version": "5.0.13", + "version": "5.0.14", "homepage": "https://feathersjs.com", "main": "lib/", "keywords": [ @@ -51,20 +51,20 @@ "access": "public" }, "dependencies": { - "@feathersjs/adapter-commons": "^5.0.13", - "@feathersjs/commons": "^5.0.13", - "@feathersjs/errors": "^5.0.13", - "@feathersjs/feathers": "^5.0.13" + "@feathersjs/adapter-commons": "^5.0.14", + "@feathersjs/commons": "^5.0.14", + "@feathersjs/errors": "^5.0.14", + "@feathersjs/feathers": "^5.0.14" }, "peerDependencies": { "knex": ">=3.1.0" }, "devDependencies": { - "@feathersjs/adapter-tests": "^5.0.13", - "@feathersjs/schema": "^5.0.13", + "@feathersjs/adapter-tests": "^5.0.14", + "@feathersjs/schema": "^5.0.14", "@types/mocha": "^10.0.6", - "@types/node": "^20.10.5", - "knex": "^3.0.1", + "@types/node": "^20.10.6", + "knex": "^3.1.0", "mocha": "^10.2.0", "pg": "^8.11.3", "shx": "^0.3.4", diff --git a/packages/knex/src/adapter.ts b/packages/knex/src/adapter.ts index 7a16c00bd5..6f3ed7d239 100644 --- a/packages/knex/src/adapter.ts +++ b/packages/knex/src/adapter.ts @@ -322,7 +322,7 @@ export class KnexAdapter< return result }, {}) - await this.db(params).update(newObject, '*', { includeTriggerModifications: true }).where(this.id, id) + await this.db(params).update(newObject, '*', { includeTriggerModifications: true }).where(this.id, id).catch(errorHandler) return this._get(id, params) } diff --git a/packages/koa/CHANGELOG.md b/packages/koa/CHANGELOG.md index 471662aa1c..5df169b6cf 100644 --- a/packages/koa/CHANGELOG.md +++ b/packages/koa/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.14](https://github.com/feathersjs/feathers/compare/v5.0.13...v5.0.14) (2024-01-05) + +**Note:** Version bump only for package @feathersjs/koa + ## [5.0.13](https://github.com/feathersjs/feathers/compare/v5.0.12...v5.0.13) (2023-12-29) **Note:** Version bump only for package @feathersjs/koa diff --git a/packages/koa/package.json b/packages/koa/package.json index cdb9c44010..855016f868 100644 --- a/packages/koa/package.json +++ b/packages/koa/package.json @@ -1,7 +1,7 @@ { "name": "@feathersjs/koa", "description": "Feathers KoaJS framework bindings and REST provider", - "version": "5.0.13", + "version": "5.0.14", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -49,30 +49,30 @@ "access": "public" }, "dependencies": { - "@feathersjs/authentication": "^5.0.13", - "@feathersjs/commons": "^5.0.13", - "@feathersjs/errors": "^5.0.13", - "@feathersjs/feathers": "^5.0.13", - "@feathersjs/transport-commons": "^5.0.13", + "@feathersjs/authentication": "^5.0.14", + "@feathersjs/commons": "^5.0.14", + "@feathersjs/errors": "^5.0.14", + "@feathersjs/feathers": "^5.0.14", + "@feathersjs/transport-commons": "^5.0.14", "@koa/cors": "^5.0.0", "@types/koa": "^2.13.12", "@types/koa-qs": "^2.0.3", "@types/koa-static": "^4.0.4", - "@types/koa__cors": "^4.0.3", - "koa": "^2.14.2", + "@types/koa__cors": "^5.0.0", + "koa": "^2.15.0", "koa-body": "^6.0.1", "koa-compose": "^4.1.0", "koa-qs": "^3.0.0", "koa-static": "^5.0.0" }, "devDependencies": { - "@feathersjs/authentication-local": "^5.0.13", - "@feathersjs/memory": "^5.0.13", - "@feathersjs/tests": "^5.0.13", + "@feathersjs/authentication-local": "^5.0.14", + "@feathersjs/memory": "^5.0.14", + "@feathersjs/tests": "^5.0.14", "@types/koa-compose": "^3.2.8", "@types/mocha": "^10.0.6", - "@types/node": "^20.10.5", - "axios": "^1.6.2", + "@types/node": "^20.10.6", + "axios": "^1.6.3", "mocha": "^10.2.0", "shx": "^0.3.4", "ts-node": "^10.9.2", diff --git a/packages/memory/CHANGELOG.md b/packages/memory/CHANGELOG.md index bf8b4b5589..46acb6e8a3 100644 --- a/packages/memory/CHANGELOG.md +++ b/packages/memory/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.14](https://github.com/feathersjs/feathers/compare/v5.0.13...v5.0.14) (2024-01-05) + +**Note:** Version bump only for package @feathersjs/memory + ## [5.0.13](https://github.com/feathersjs/feathers/compare/v5.0.12...v5.0.13) (2023-12-29) **Note:** Version bump only for package @feathersjs/memory diff --git a/packages/memory/package.json b/packages/memory/package.json index b0c44638c8..ffe87ada7b 100644 --- a/packages/memory/package.json +++ b/packages/memory/package.json @@ -1,7 +1,7 @@ { "name": "@feathersjs/memory", "description": "An in memory service store", - "version": "5.0.13", + "version": "5.0.14", "homepage": "https://github.com/feathersjs/feathers", "main": "lib/", "types": "lib/", @@ -49,16 +49,16 @@ "lib": "lib" }, "dependencies": { - "@feathersjs/adapter-commons": "^5.0.13", - "@feathersjs/commons": "^5.0.13", - "@feathersjs/errors": "^5.0.13", + "@feathersjs/adapter-commons": "^5.0.14", + "@feathersjs/commons": "^5.0.14", + "@feathersjs/errors": "^5.0.14", "sift": "^17.0.1" }, "devDependencies": { - "@feathersjs/adapter-tests": "^5.0.13", - "@feathersjs/feathers": "^5.0.13", + "@feathersjs/adapter-tests": "^5.0.14", + "@feathersjs/feathers": "^5.0.14", "@types/mocha": "^10.0.6", - "@types/node": "^20.10.5", + "@types/node": "^20.10.6", "mocha": "^10.2.0", "shx": "^0.3.4", "ts-node": "^10.9.2", diff --git a/packages/mongodb/CHANGELOG.md b/packages/mongodb/CHANGELOG.md index 7208ceab5e..06ee4375a7 100644 --- a/packages/mongodb/CHANGELOG.md +++ b/packages/mongodb/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.14](https://github.com/feathersjs/feathers/compare/v5.0.13...v5.0.14) (2024-01-05) + +**Note:** Version bump only for package @feathersjs/mongodb + ## [5.0.13](https://github.com/feathersjs/feathers/compare/v5.0.12...v5.0.13) (2023-12-29) **Note:** Version bump only for package @feathersjs/mongodb diff --git a/packages/mongodb/package.json b/packages/mongodb/package.json index 1566b39dec..56d2082ae6 100644 --- a/packages/mongodb/package.json +++ b/packages/mongodb/package.json @@ -1,7 +1,7 @@ { "name": "@feathersjs/mongodb", "description": "Feathers MongoDB service adapter", - "version": "5.0.13", + "version": "5.0.14", "homepage": "https://feathersjs.com", "main": "lib/", "keywords": [ @@ -51,19 +51,19 @@ "access": "public" }, "dependencies": { - "@feathersjs/adapter-commons": "^5.0.13", - "@feathersjs/commons": "^5.0.13", - "@feathersjs/errors": "^5.0.13", - "@feathersjs/feathers": "^5.0.13" + "@feathersjs/adapter-commons": "^5.0.14", + "@feathersjs/commons": "^5.0.14", + "@feathersjs/errors": "^5.0.14", + "@feathersjs/feathers": "^5.0.14" }, "peerDependencies": { "mongodb": "^6.3.0" }, "devDependencies": { - "@feathersjs/adapter-tests": "^5.0.13", - "@feathersjs/schema": "^5.0.13", + "@feathersjs/adapter-tests": "^5.0.14", + "@feathersjs/schema": "^5.0.14", "@types/mocha": "^10.0.6", - "@types/node": "^20.10.5", + "@types/node": "^20.10.6", "mocha": "^10.2.0", "mongodb-memory-server": "^9.1.3", "shx": "^0.3.4", diff --git a/packages/rest-client/CHANGELOG.md b/packages/rest-client/CHANGELOG.md index 4fedc46c14..abe3f02b4f 100644 --- a/packages/rest-client/CHANGELOG.md +++ b/packages/rest-client/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.14](https://github.com/feathersjs/feathers/compare/v5.0.13...v5.0.14) (2024-01-05) + +**Note:** Version bump only for package @feathersjs/rest-client + ## [5.0.13](https://github.com/feathersjs/feathers/compare/v5.0.12...v5.0.13) (2023-12-29) **Note:** Version bump only for package @feathersjs/rest-client diff --git a/packages/rest-client/package.json b/packages/rest-client/package.json index d173d976a6..c29f7071fb 100644 --- a/packages/rest-client/package.json +++ b/packages/rest-client/package.json @@ -1,7 +1,7 @@ { "name": "@feathersjs/rest-client", "description": "REST client services for different Ajax libraries", - "version": "5.0.13", + "version": "5.0.14", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -53,21 +53,21 @@ "access": "public" }, "dependencies": { - "@feathersjs/commons": "^5.0.13", - "@feathersjs/errors": "^5.0.13", - "@feathersjs/feathers": "^5.0.13", - "@types/superagent": "^8.1.0", + "@feathersjs/commons": "^5.0.14", + "@feathersjs/errors": "^5.0.14", + "@feathersjs/feathers": "^5.0.14", + "@types/superagent": "^8.1.1", "qs": "^6.11.2" }, "devDependencies": { - "@feathersjs/express": "^5.0.13", - "@feathersjs/memory": "^5.0.13", - "@feathersjs/tests": "^5.0.13", + "@feathersjs/express": "^5.0.14", + "@feathersjs/memory": "^5.0.14", + "@feathersjs/tests": "^5.0.14", "@types/mocha": "^10.0.6", - "@types/node": "^20.10.5", - "@types/node-fetch": "^2.6.9", + "@types/node": "^20.10.6", + "@types/node-fetch": "^2.6.10", "@types/qs": "^6.9.11", - "axios": "^1.6.2", + "axios": "^1.6.3", "mocha": "^10.2.0", "node-fetch": "^2.6.1", "rxjs": "^7.8.1", diff --git a/packages/schema/CHANGELOG.md b/packages/schema/CHANGELOG.md index a528821f54..fa08246735 100644 --- a/packages/schema/CHANGELOG.md +++ b/packages/schema/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.14](https://github.com/feathersjs/feathers/compare/v5.0.13...v5.0.14) (2024-01-05) + +### Bug Fixes + +- **schema:** Fix setting dispatch on existing nested objects ([#3380](https://github.com/feathersjs/feathers/issues/3380)) ([04efd5a](https://github.com/feathersjs/feathers/commit/04efd5ab3339beafa0e1a9ef851483a387c6ec96)) + ## [5.0.13](https://github.com/feathersjs/feathers/compare/v5.0.12...v5.0.13) (2023-12-29) **Note:** Version bump only for package @feathersjs/schema diff --git a/packages/schema/package.json b/packages/schema/package.json index e9bc9dd679..f1fe9e4661 100644 --- a/packages/schema/package.json +++ b/packages/schema/package.json @@ -1,7 +1,7 @@ { "name": "@feathersjs/schema", "description": "A common data schema definition format", - "version": "5.0.13", + "version": "5.0.14", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -54,10 +54,10 @@ "access": "public" }, "dependencies": { - "@feathersjs/adapter-commons": "^5.0.13", - "@feathersjs/commons": "^5.0.13", - "@feathersjs/errors": "^5.0.13", - "@feathersjs/feathers": "^5.0.13", + "@feathersjs/adapter-commons": "^5.0.14", + "@feathersjs/commons": "^5.0.14", + "@feathersjs/errors": "^5.0.14", + "@feathersjs/feathers": "^5.0.14", "@feathersjs/hooks": "^0.8.1", "@types/json-schema": "^7.0.15", "ajv": "^8.12.0", @@ -65,9 +65,9 @@ "json-schema-to-ts": "^3.0.0" }, "devDependencies": { - "@feathersjs/memory": "^5.0.13", + "@feathersjs/memory": "^5.0.14", "@types/mocha": "^10.0.6", - "@types/node": "^20.10.5", + "@types/node": "^20.10.6", "ajv-formats": "^2.1.1", "mocha": "^10.2.0", "shx": "^0.3.4", diff --git a/packages/schema/src/hooks/resolve.ts b/packages/schema/src/hooks/resolve.ts index e50b43200e..b61bbcb110 100644 --- a/packages/schema/src/hooks/resolve.ts +++ b/packages/schema/src/hooks/resolve.ts @@ -157,6 +157,12 @@ export const resolveExternal = const status = context.params.resolve const { isPaginated, data } = getResult(context) const resolveAndGetDispatch = async (current: any) => { + const currentExistingDispatch = getDispatch(current) + + if (currentExistingDispatch !== null) { + return currentExistingDispatch + } + const resolved = await runResolvers(resolvers, current, context, status) const currentDispatch = Object.keys(resolved).reduce( (res, key) => { diff --git a/packages/schema/test/fixture.ts b/packages/schema/test/fixture.ts index 38f3387843..4456d6aad5 100644 --- a/packages/schema/test/fixture.ts +++ b/packages/schema/test/fixture.ts @@ -17,7 +17,8 @@ import { FromSchema, getValidator, getDataValidator, - virtual + virtual, + resolveExternal } from '../src' const fixtureAjv = new Ajv({ @@ -198,6 +199,13 @@ class MessageService extends MemoryService } } +const findResult = { message: 'Hello' } +class CustomService { + async find() { + return [findResult] + } +} + const customMethodDataResolver = resolve>({ properties: { userId: async () => 0, @@ -209,6 +217,7 @@ type ServiceTypes = { users: MemoryService messages: MessageService paginatedMessages: MemoryService + custom: CustomService } type Application = FeathersApplication @@ -223,6 +232,14 @@ app.use( app.use('messages', new MessageService(), { methods: ['find', 'get', 'create', 'update', 'patch', 'remove', 'customMethod'] }) +app.use('custom', new CustomService()) + +app.service('custom').hooks({ + around: { + all: [resolveExternal(resolve>({}))] + } +}) + app.use('paginatedMessages', memory({ paginate: { default: 10 } })) app.service('messages').hooks({ diff --git a/packages/schema/test/hooks.test.ts b/packages/schema/test/hooks.test.ts index afe1a68eb1..b7a5b1c8a0 100644 --- a/packages/schema/test/hooks.test.ts +++ b/packages/schema/test/hooks.test.ts @@ -187,6 +187,13 @@ describe('@feathersjs/schema/hooks', () => { }) }) + it('resolves safe dispatch with static data', async () => { + const service = app.service('custom') + + await service.find() + assert.deepStrictEqual(await service.find(), [{ message: 'Hello' }]) + }) + it('resolves data for custom methods', async () => { const result = await app.service('messages').customMethod({ message: 'Hello' }) const user = { diff --git a/packages/socketio-client/CHANGELOG.md b/packages/socketio-client/CHANGELOG.md index ec4cfaf03d..f7ebfe86e7 100644 --- a/packages/socketio-client/CHANGELOG.md +++ b/packages/socketio-client/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.14](https://github.com/feathersjs/feathers/compare/v5.0.13...v5.0.14) (2024-01-05) + +**Note:** Version bump only for package @feathersjs/socketio-client + ## [5.0.13](https://github.com/feathersjs/feathers/compare/v5.0.12...v5.0.13) (2023-12-29) **Note:** Version bump only for package @feathersjs/socketio-client diff --git a/packages/socketio-client/package.json b/packages/socketio-client/package.json index 8a49acfce0..0acbc0fdd9 100644 --- a/packages/socketio-client/package.json +++ b/packages/socketio-client/package.json @@ -1,7 +1,7 @@ { "name": "@feathersjs/socketio-client", "description": "The client for Socket.io through feathers-socketio", - "version": "5.0.13", + "version": "5.0.14", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -54,16 +54,16 @@ "access": "public" }, "dependencies": { - "@feathersjs/feathers": "^5.0.13", - "@feathersjs/transport-commons": "^5.0.13" + "@feathersjs/feathers": "^5.0.14", + "@feathersjs/transport-commons": "^5.0.14" }, "devDependencies": { - "@feathersjs/commons": "^5.0.13", - "@feathersjs/memory": "^5.0.13", - "@feathersjs/socketio": "^5.0.13", - "@feathersjs/tests": "^5.0.13", + "@feathersjs/commons": "^5.0.14", + "@feathersjs/memory": "^5.0.14", + "@feathersjs/socketio": "^5.0.14", + "@feathersjs/tests": "^5.0.14", "@types/mocha": "^10.0.6", - "@types/node": "^20.10.5", + "@types/node": "^20.10.6", "mocha": "^10.2.0", "shx": "^0.3.4", "socket.io-client": "^4.7.2", diff --git a/packages/socketio/CHANGELOG.md b/packages/socketio/CHANGELOG.md index d232cb43e7..d7615c3194 100644 --- a/packages/socketio/CHANGELOG.md +++ b/packages/socketio/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.14](https://github.com/feathersjs/feathers/compare/v5.0.13...v5.0.14) (2024-01-05) + +**Note:** Version bump only for package @feathersjs/socketio + ## [5.0.13](https://github.com/feathersjs/feathers/compare/v5.0.12...v5.0.13) (2023-12-29) **Note:** Version bump only for package @feathersjs/socketio diff --git a/packages/socketio/package.json b/packages/socketio/package.json index 75a87b0dc5..e6f1cdbf00 100644 --- a/packages/socketio/package.json +++ b/packages/socketio/package.json @@ -1,7 +1,7 @@ { "name": "@feathersjs/socketio", "description": "The Feathers Socket.io real-time API provider", - "version": "5.0.13", + "version": "5.0.14", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -53,17 +53,17 @@ "access": "public" }, "dependencies": { - "@feathersjs/commons": "^5.0.13", - "@feathersjs/feathers": "^5.0.13", - "@feathersjs/transport-commons": "^5.0.13", + "@feathersjs/commons": "^5.0.14", + "@feathersjs/feathers": "^5.0.14", + "@feathersjs/transport-commons": "^5.0.14", "socket.io": "^4.7.2" }, "devDependencies": { - "@feathersjs/express": "^5.0.13", - "@feathersjs/memory": "^5.0.13", - "@feathersjs/tests": "^5.0.13", + "@feathersjs/express": "^5.0.14", + "@feathersjs/memory": "^5.0.14", + "@feathersjs/tests": "^5.0.14", "@types/mocha": "^10.0.6", - "@types/node": "^20.10.5", + "@types/node": "^20.10.6", "lodash": "^4.17.21", "mocha": "^10.2.0", "shx": "^0.3.4", diff --git a/packages/tests/CHANGELOG.md b/packages/tests/CHANGELOG.md index 7dc874164b..93744f1ffd 100644 --- a/packages/tests/CHANGELOG.md +++ b/packages/tests/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.14](https://github.com/feathersjs/feathers/compare/v5.0.13...v5.0.14) (2024-01-05) + +**Note:** Version bump only for package @feathersjs/tests + ## [5.0.13](https://github.com/feathersjs/feathers/compare/v5.0.12...v5.0.13) (2023-12-29) **Note:** Version bump only for package @feathersjs/tests diff --git a/packages/tests/package.json b/packages/tests/package.json index 124bf33ec2..009fb8dcf2 100644 --- a/packages/tests/package.json +++ b/packages/tests/package.json @@ -2,7 +2,7 @@ "name": "@feathersjs/tests", "private": true, "description": "Feathers core module common tests", - "version": "5.0.13", + "version": "5.0.14", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -45,13 +45,13 @@ }, "dependencies": { "@types/lodash": "^4.14.202", - "axios": "^1.6.2", + "axios": "^1.6.3", "lodash": "^4.17.21" }, "devDependencies": { - "@feathersjs/feathers": "^5.0.13", + "@feathersjs/feathers": "^5.0.14", "@types/mocha": "^10.0.6", - "@types/node": "^20.10.5", + "@types/node": "^20.10.6", "mocha": "^10.2.0", "shx": "^0.3.4", "ts-node": "^10.9.2", diff --git a/packages/transport-commons/CHANGELOG.md b/packages/transport-commons/CHANGELOG.md index d87e7d40cc..300adb919e 100644 --- a/packages/transport-commons/CHANGELOG.md +++ b/packages/transport-commons/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.14](https://github.com/feathersjs/feathers/compare/v5.0.13...v5.0.14) (2024-01-05) + +**Note:** Version bump only for package @feathersjs/transport-commons + ## [5.0.13](https://github.com/feathersjs/feathers/compare/v5.0.12...v5.0.13) (2023-12-29) **Note:** Version bump only for package @feathersjs/transport-commons diff --git a/packages/transport-commons/package.json b/packages/transport-commons/package.json index 0514396aa4..76a0830c63 100644 --- a/packages/transport-commons/package.json +++ b/packages/transport-commons/package.json @@ -1,7 +1,7 @@ { "name": "@feathersjs/transport-commons", "description": "Shared functionality for websocket providers", - "version": "5.0.13", + "version": "5.0.14", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -54,9 +54,9 @@ "*.js" ], "dependencies": { - "@feathersjs/commons": "^5.0.13", - "@feathersjs/errors": "^5.0.13", - "@feathersjs/feathers": "^5.0.13", + "@feathersjs/commons": "^5.0.14", + "@feathersjs/errors": "^5.0.14", + "@feathersjs/feathers": "^5.0.14", "encodeurl": "^1.0.2", "lodash": "^4.17.21" }, @@ -64,7 +64,7 @@ "@types/encodeurl": "^1.0.2", "@types/lodash": "^4.14.202", "@types/mocha": "^10.0.6", - "@types/node": "^20.10.5", + "@types/node": "^20.10.6", "mocha": "^10.2.0", "shx": "^0.3.4", "ts-node": "^10.9.2", diff --git a/packages/typebox/CHANGELOG.md b/packages/typebox/CHANGELOG.md index 650ad495d9..c34072a699 100644 --- a/packages/typebox/CHANGELOG.md +++ b/packages/typebox/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.14](https://github.com/feathersjs/feathers/compare/v5.0.13...v5.0.14) (2024-01-05) + +**Note:** Version bump only for package @feathersjs/typebox + ## [5.0.13](https://github.com/feathersjs/feathers/compare/v5.0.12...v5.0.13) (2023-12-29) **Note:** Version bump only for package @feathersjs/typebox diff --git a/packages/typebox/package.json b/packages/typebox/package.json index abfa27ec75..e0c7e8b6ef 100644 --- a/packages/typebox/package.json +++ b/packages/typebox/package.json @@ -1,7 +1,7 @@ { "name": "@feathersjs/typebox", "description": "TypeBox integration for @feathersjs/schema", - "version": "5.0.13", + "version": "5.0.14", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -54,12 +54,12 @@ "access": "public" }, "dependencies": { - "@feathersjs/schema": "^5.0.13", + "@feathersjs/schema": "^5.0.14", "@sinclair/typebox": "^0.25.0" }, "devDependencies": { "@types/mocha": "^10.0.6", - "@types/node": "^20.10.5", + "@types/node": "^20.10.6", "mocha": "^10.2.0", "shx": "^0.3.4", "typescript": "^5.3.3"