From e8f0b5665161e77bcc961ec0dc57c5b127b93a1f Mon Sep 17 00:00:00 2001 From: Dominik Pschenitschni Date: Sat, 24 Sep 2022 18:34:24 +0200 Subject: [PATCH 01/16] feat: possible fix for pnpm ci errors --- .drone.yml | 16 ++++++++-------- Dockerfile | 6 +++--- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.drone.yml b/.drone.yml index 387d9d02..77ac41bb 100644 --- a/.drone.yml +++ b/.drone.yml @@ -46,7 +46,7 @@ steps: PNPM_CACHE_FOLDER: .cache/pnpm CYPRESS_CACHE_FOLDER: .cache/cypress commands: - - corepack enable && corepack prepare pnpm@7.9.3 --activate && pnpm config set store-dir .cache/pnpm + - corepack enable && corepack prepare pnpm@7.12.2 --activate && pnpm config set store-dir .cache/pnpm - pnpm install --fetch-timeout 100000 # depends_on: # - restore-cache @@ -57,7 +57,7 @@ steps: environment: PNPM_CACHE_FOLDER: .cache/pnpm commands: - - corepack enable && corepack prepare pnpm@7.9.3 --activate && pnpm config set store-dir .cache/pnpm + - corepack enable && corepack prepare pnpm@7.12.2 --activate && pnpm config set store-dir .cache/pnpm - pnpm run lint depends_on: - dependencies @@ -68,7 +68,7 @@ steps: environment: PNPM_CACHE_FOLDER: .cache/pnpm commands: - - corepack enable && corepack prepare pnpm@7.9.3 --activate && pnpm config set store-dir .cache/pnpm + - corepack enable && corepack prepare pnpm@7.12.2 --activate && pnpm config set store-dir .cache/pnpm - pnpm run build depends_on: - dependencies @@ -77,7 +77,7 @@ steps: image: node:18-alpine pull: true commands: - - corepack enable && corepack prepare pnpm@7.9.3 --activate && pnpm config set store-dir .cache/pnpm + - corepack enable && corepack prepare pnpm@7.12.2 --activate && pnpm config set store-dir .cache/pnpm - pnpm run test:unit depends_on: - dependencies @@ -89,7 +89,7 @@ steps: environment: PNPM_CACHE_FOLDER: .cache/pnpm commands: - - corepack enable && corepack prepare pnpm@7.9.3 --activate && pnpm config set store-dir .cache/pnpm + - corepack enable && corepack prepare pnpm@7.12.2 --activate && pnpm config set store-dir .cache/pnpm - pnpm run typecheck depends_on: - dependencies @@ -107,7 +107,7 @@ steps: from_secret: cypress_project_key commands: - sed -i 's/localhost/api/g' dist/index.html - - corepack enable && corepack prepare pnpm@7.9.3 --activate && pnpm config set store-dir .cache/pnpm + - corepack enable && corepack prepare pnpm@7.12.2 --activate && pnpm config set store-dir .cache/pnpm - pnpm cypress install - pnpm run serve:dist & npx wait-on http://localhost:4173 - pnpm run test:frontend --browser chrome --record @@ -202,7 +202,7 @@ steps: environment: PNPM_CACHE_FOLDER: .cache/pnpm commands: - - corepack enable && corepack prepare pnpm@7.9.3 --activate && pnpm config set store-dir .cache/.pnp + - corepack enable && corepack prepare pnpm@7.12.2 --activate && pnpm config set store-dir .cache/.pnp - pnpm install --fetch-timeout 100000 - pnpm run lint - "echo '{\"VERSION\": \"'$(git describe --tags --always --abbrev=10 | sed 's/-/+/' | sed 's/^v//' | sed 's/-g/-/')'\"}' > src/version.json" @@ -278,7 +278,7 @@ steps: environment: PNPM_CACHE_FOLDER: .cache/pnpm commands: - - corepack enable && corepack prepare pnpm@7.9.3 --activate && pnpm config set store-dir .cache/pnpm + - corepack enable && corepack prepare pnpm@7.12.2 --activate && pnpm config set store-dir .cache/pnpm - pnpm install --fetch-timeout 100000 - pnpm run lint - "echo '{\"VERSION\": \"'$(git describe --tags --always --abbrev=10 | sed 's/-/+/' | sed 's/^v//' | sed 's/-g/-/')'\"}' > src/version.json" diff --git a/Dockerfile b/Dockerfile index 07a36281..07a41593 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,16 +21,16 @@ COPY pnpm-lock.yaml ./ RUN \ # https://pnpm.io/installation#using-corepack corepack enable && \ - corepack prepare pnpm@7.9.3 --activate && \ + corepack prepare pnpm@7.12.2 --activate && \ # Build the frontend - pnpm fetch + pnpm fetch --prod ADD . ./ RUN apk add --no-cache git RUN \ - pnpm install --offline && \ + pnpm install -r --offline --prod && \ echo '{"VERSION": "'$(git describe --tags --always --abbrev=10 | sed 's/-/+/' | sed 's/^v//' | sed 's/-g/-/')'"}' > src/version.json && \ pnpm run build From a199fc7a8e7f621ee96b2079e9558987f1350493 Mon Sep 17 00:00:00 2001 From: Dominik Pschenitschni Date: Mon, 26 Sep 2022 14:49:48 +0200 Subject: [PATCH 02/16] fix: don't use corepack prepare at all --- .drone.yml | 16 ++++++++-------- Dockerfile | 3 ++- 2 files changed, 10 insertions(+), 9 deletions(-) diff --git a/.drone.yml b/.drone.yml index 77ac41bb..9c1a6f57 100644 --- a/.drone.yml +++ b/.drone.yml @@ -46,7 +46,7 @@ steps: PNPM_CACHE_FOLDER: .cache/pnpm CYPRESS_CACHE_FOLDER: .cache/cypress commands: - - corepack enable && corepack prepare pnpm@7.12.2 --activate && pnpm config set store-dir .cache/pnpm + - corepack enable && pnpm config set store-dir .cache/pnpm - pnpm install --fetch-timeout 100000 # depends_on: # - restore-cache @@ -57,7 +57,7 @@ steps: environment: PNPM_CACHE_FOLDER: .cache/pnpm commands: - - corepack enable && corepack prepare pnpm@7.12.2 --activate && pnpm config set store-dir .cache/pnpm + - corepack enable && pnpm config set store-dir .cache/pnpm - pnpm run lint depends_on: - dependencies @@ -68,7 +68,7 @@ steps: environment: PNPM_CACHE_FOLDER: .cache/pnpm commands: - - corepack enable && corepack prepare pnpm@7.12.2 --activate && pnpm config set store-dir .cache/pnpm + - corepack enable && pnpm config set store-dir .cache/pnpm - pnpm run build depends_on: - dependencies @@ -77,7 +77,7 @@ steps: image: node:18-alpine pull: true commands: - - corepack enable && corepack prepare pnpm@7.12.2 --activate && pnpm config set store-dir .cache/pnpm + - corepack enable && pnpm config set store-dir .cache/pnpm - pnpm run test:unit depends_on: - dependencies @@ -89,7 +89,7 @@ steps: environment: PNPM_CACHE_FOLDER: .cache/pnpm commands: - - corepack enable && corepack prepare pnpm@7.12.2 --activate && pnpm config set store-dir .cache/pnpm + - corepack enable && pnpm config set store-dir .cache/pnpm - pnpm run typecheck depends_on: - dependencies @@ -107,7 +107,7 @@ steps: from_secret: cypress_project_key commands: - sed -i 's/localhost/api/g' dist/index.html - - corepack enable && corepack prepare pnpm@7.12.2 --activate && pnpm config set store-dir .cache/pnpm + - corepack enable && pnpm config set store-dir .cache/pnpm - pnpm cypress install - pnpm run serve:dist & npx wait-on http://localhost:4173 - pnpm run test:frontend --browser chrome --record @@ -202,7 +202,7 @@ steps: environment: PNPM_CACHE_FOLDER: .cache/pnpm commands: - - corepack enable && corepack prepare pnpm@7.12.2 --activate && pnpm config set store-dir .cache/.pnp + - corepack enable && pnpm config set store-dir .cache/.pnp - pnpm install --fetch-timeout 100000 - pnpm run lint - "echo '{\"VERSION\": \"'$(git describe --tags --always --abbrev=10 | sed 's/-/+/' | sed 's/^v//' | sed 's/-g/-/')'\"}' > src/version.json" @@ -278,7 +278,7 @@ steps: environment: PNPM_CACHE_FOLDER: .cache/pnpm commands: - - corepack enable && corepack prepare pnpm@7.12.2 --activate && pnpm config set store-dir .cache/pnpm + - corepack enable && pnpm config set store-dir .cache/pnpm - pnpm install --fetch-timeout 100000 - pnpm run lint - "echo '{\"VERSION\": \"'$(git describe --tags --always --abbrev=10 | sed 's/-/+/' | sed 's/^v//' | sed 's/-g/-/')'\"}' > src/version.json" diff --git a/Dockerfile b/Dockerfile index 07a41593..bc702b12 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,7 +21,8 @@ COPY pnpm-lock.yaml ./ RUN \ # https://pnpm.io/installation#using-corepack corepack enable && \ - corepack prepare pnpm@7.12.2 --activate && \ + # we don't use corepack prepare here by intend since + # we have renovate to keep our dependencies up to date # Build the frontend pnpm fetch --prod From 7f581cbe2780633fdfa03609824182fe93fe77e3 Mon Sep 17 00:00:00 2001 From: Dominik Pschenitschni Date: Tue, 27 Sep 2022 15:12:21 +0000 Subject: [PATCH 03/16] feat: NewLabel script setup (#2414) Co-authored-by: Dominik Pschenitschni Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/2414 Reviewed-by: konrad Co-authored-by: Dominik Pschenitschni Co-committed-by: Dominik Pschenitschni --- src/views/labels/NewLabel.vue | 79 ++++++++++++++++------------------- 1 file changed, 35 insertions(+), 44 deletions(-) diff --git a/src/views/labels/NewLabel.vue b/src/views/labels/NewLabel.vue index 1e23c154..b6701eaf 100644 --- a/src/views/labels/NewLabel.vue +++ b/src/views/labels/NewLabel.vue @@ -34,52 +34,43 @@ - From f4a5f5940068fd5783d6876928589976d8ba8bb4 Mon Sep 17 00:00:00 2001 From: kolaente Date: Tue, 27 Sep 2022 17:18:38 +0200 Subject: [PATCH 04/16] chore(ci): sign drone config --- .drone.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index 9c1a6f57..e18f871f 100644 --- a/.drone.yml +++ b/.drone.yml @@ -659,6 +659,6 @@ steps: from_secret: crowdin_key --- kind: signature -hmac: 9eccb4a9999236be0f772c4cbe7ccce2875faa57f32de179bd75cf0df4124d00 +hmac: c885a0e50db729842402494aa645dd3ac662828b691108550f6bf302158295ba ... From 6a828078a398ab920f0e29d0801b918ae092ef30 Mon Sep 17 00:00:00 2001 From: Dominik Pschenitschni Date: Mon, 26 Sep 2022 13:37:20 +0200 Subject: [PATCH 05/16] fix: add types for node --- package.json | 1 + pnpm-lock.yaml | 117 ++++++++++++++++++++++++++----------------------- 2 files changed, 64 insertions(+), 54 deletions(-) diff --git a/package.json b/package.json index 178b0786..54c04a3e 100644 --- a/package.json +++ b/package.json @@ -70,6 +70,7 @@ "@faker-js/faker": "7.5.0", "@types/dompurify": "2.3.4", "@types/flexsearch": "0.7.3", + "@types/node": "16.11.60", "@typescript-eslint/eslint-plugin": "5.38.1", "@typescript-eslint/parser": "5.38.1", "@vitejs/plugin-legacy": "2.2.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 9ee353fb..de4a863a 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,4 +1,4 @@ -lockfileVersion: 5.3 +lockfileVersion: 5.4 specifiers: '@4tw/cypress-drag-drop': 2.2.1 @@ -17,6 +17,7 @@ specifiers: '@types/flexsearch': 0.7.3 '@types/is-touch-device': 1.0.0 '@types/lodash.clonedeep': 4.5.7 + '@types/node': 16.11.60 '@types/sortablejs': 1.15.0 '@typescript-eslint/eslint-plugin': 5.38.1 '@typescript-eslint/parser': 5.38.1 @@ -86,7 +87,7 @@ dependencies: '@fortawesome/fontawesome-svg-core': 6.2.0 '@fortawesome/free-regular-svg-icons': 6.2.0 '@fortawesome/free-solid-svg-icons': 6.2.0 - '@fortawesome/vue-fontawesome': 3.0.1_e1fd52f1eac82276a69e2e58efb0a751 + '@fortawesome/vue-fontawesome': 3.0.1_4h6vf4pkzarhnju6fzmo7mfhke '@github/hotkey': 2.0.1 '@kyvg/vue3-notification': 2.4.1_vue@3.2.39 '@sentry/tracing': 7.13.0 @@ -95,7 +96,7 @@ dependencies: '@types/lodash.clonedeep': 4.5.7 '@types/sortablejs': 1.15.0 '@vueuse/core': 9.3.0_vue@3.2.39 - '@vueuse/router': 9.3.0_vue-router@4.1.5+vue@3.2.39 + '@vueuse/router': 9.3.0_u55wpvgoaskkfdnhr4v2vlugdi axios: 0.27.2 blurhash: 2.0.1 bulma-css-variables: 0.9.33 @@ -112,7 +113,7 @@ dependencies: lodash.debounce: 4.0.8 marked: 4.1.0 minimist: 1.2.6 - pinia: 2.0.22_typescript@4.8.3+vue@3.2.39 + pinia: 2.0.22_arz4dztosvwy2ghjrlh2wdhejm register-service-worker: 1.7.2 snake-case: 3.0.4 sortablejs: 1.15.0 @@ -135,13 +136,14 @@ devDependencies: '@faker-js/faker': 7.5.0 '@types/dompurify': 2.3.4 '@types/flexsearch': 0.7.3 - '@typescript-eslint/eslint-plugin': 5.38.1_80279ca3558653036a70efdb2cc6a22a - '@typescript-eslint/parser': 5.38.1_eslint@8.24.0+typescript@4.8.3 + '@types/node': 16.11.60 + '@typescript-eslint/eslint-plugin': 5.38.1_qatzzi2vqzjqg2tq57nszrvcfi + '@typescript-eslint/parser': 5.38.1_7ilbxdl5iguzcjriqqcg2m5cku '@vitejs/plugin-legacy': 2.2.0_terser@5.10.0+vite@3.1.3 '@vitejs/plugin-vue': 3.1.0_vite@3.1.3+vue@3.2.39 - '@vue/eslint-config-typescript': 11.0.2_6e223a7e95cc78e4e686f47e5f89e21c + '@vue/eslint-config-typescript': 11.0.2_nyrdu7uvzr4ojzug6r7f7cpcdq '@vue/test-utils': 2.0.2_vue@3.2.39 - '@vue/tsconfig': 0.1.3_@types+node@17.0.17 + '@vue/tsconfig': 0.1.3_@types+node@16.11.60 autoprefixer: 10.4.12_postcss@8.4.16 browserslist: 4.21.4 caniuse-lite: 1.0.30001412 @@ -159,12 +161,12 @@ devDependencies: sass: 1.55.0 typescript: 4.8.3 vite: 3.1.3_sass@1.55.0+terser@5.10.0 - vite-plugin-pwa: 0.13.1_vite@3.1.3 + vite-plugin-pwa: 0.13.1_6b7mpudv5jppcry7og3bu4wyku vite-svg-loader: 3.6.0 - vitest: 0.23.4_ddc85b0b7a78b2cfae025c8e16b7f605 + vitest: 0.23.4_3xefwc32pczm7lqclshbnn7wau vue-tsc: 0.40.13_typescript@4.8.3 wait-on: 6.0.1 - workbox-cli: 6.5.4 + workbox-cli: 6.5.4_acorn@8.8.0 packages: @@ -1392,7 +1394,7 @@ packages: peerDependencies: postcss: ^8.2 dependencies: - '@csstools/selector-specificity': 2.0.2_7b6fee2724f05f3c8883c74281a3791a + '@csstools/selector-specificity': 2.0.2_pnx64jze6bptzcedy5bidi3zdi postcss: 8.4.16 postcss-selector-parser: 6.0.10 dev: true @@ -1445,7 +1447,7 @@ packages: peerDependencies: postcss: ^8.2 dependencies: - '@csstools/selector-specificity': 2.0.2_7b6fee2724f05f3c8883c74281a3791a + '@csstools/selector-specificity': 2.0.2_pnx64jze6bptzcedy5bidi3zdi postcss: 8.4.16 postcss-selector-parser: 6.0.10 dev: true @@ -1530,7 +1532,7 @@ packages: postcss: 8.4.16 dev: true - /@csstools/selector-specificity/2.0.2_7b6fee2724f05f3c8883c74281a3791a: + /@csstools/selector-specificity/2.0.2_pnx64jze6bptzcedy5bidi3zdi: resolution: {integrity: sha512-IkpVW/ehM1hWKln4fCA3NzJU8KwD+kIOvPZA4cqxoJHtE21CCzjyp+Kxbu0i5I4tBNOlXPL9mjwnWlL0VEG4Fg==} engines: {node: ^12 || ^14 || >=16} peerDependencies: @@ -1679,7 +1681,7 @@ packages: '@fortawesome/fontawesome-common-types': 6.2.0 dev: false - /@fortawesome/vue-fontawesome/3.0.1_e1fd52f1eac82276a69e2e58efb0a751: + /@fortawesome/vue-fontawesome/3.0.1_4h6vf4pkzarhnju6fzmo7mfhke: resolution: {integrity: sha512-CdXZJoCS+aEPec26ZP7hWWU3SaJlQPZSCGdgpQ2qGl2HUmtUUNrI3zC4XWdn1JUmh3t5OuDeRG1qB4eGRNSD4A==} peerDependencies: '@fortawesome/fontawesome-svg-core': ~1 || ~6 @@ -1877,7 +1879,7 @@ packages: '@netlify/run-utils': 4.0.1 '@netlify/zip-it-and-ship-it': 7.1.2_supports-color@9.2.1 '@sindresorhus/slugify': 2.1.0 - '@types/node': 16.11.24 + '@types/node': 16.11.60 ajv: 8.11.0 ajv-errors: 3.0.0_ajv@8.11.0 ansi-escapes: 5.0.0 @@ -1917,7 +1919,7 @@ packages: strip-ansi: 7.0.1 supports-color: 9.2.1 tmp-promise: 3.0.3 - ts-node: 10.8.1_6e0f24de304929fa6e28010284240e12 + ts-node: 10.8.1_y2ippukchihtaxubiro7c5yd6u typescript: 4.8.3 update-notifier: 5.1.0 uuid: 8.3.2 @@ -2605,7 +2607,7 @@ packages: resolution: {integrity: sha512-92FRmppjjqz29VMJ2dn+xdyXZBrMlE42AV6Kq6BwjWV7CNUW1hs2FtxSNLQE+gJhaZ6AAmYuO9y8dshhcBl7vA==} dev: false - /@rollup/plugin-babel/5.3.0_@babel+core@7.17.2+rollup@2.79.1: + /@rollup/plugin-babel/5.3.0_pf2mys4p2khuj2gysypj3zzjia: resolution: {integrity: sha512-9uIC8HZOnVLrLHxayq/PTzw+uS25E14KPUBh5ktF+18Mjo5yK0ToMMx6epY0uEgkjwJw0aBW4x2horYXh8juWw==} engines: {node: '>= 10.0.0'} peerDependencies: @@ -3014,8 +3016,8 @@ packages: resolution: {integrity: sha512-zCoCEMA+IPpsRkyCFBqew5vGb7r8RSiB3uwdu/map7uwLAfu1MTazW26/pUDWoNnF88vJz4W3U56i5gtXNqxGg==} dev: true - /@types/node/16.11.24: - resolution: {integrity: sha512-Ezv33Rl4mIi6YdSHfIRNBd4Q9kUe5okiaw/ikvJiJDmuQZNW5kfdg7+oQPF8NO6sTcr3woIpj3jANzTXdvEZXA==} + /@types/node/16.11.60: + resolution: {integrity: sha512-kYIYa1D1L+HDv5M5RXQeEu1o0FKA6yedZIoyugm/MBPROkLpX4L7HRxMrPVyo8bnvjpW/wDlqFNGzXNMb7AdRw==} dev: true /@types/node/17.0.17: @@ -3104,7 +3106,7 @@ packages: dev: true optional: true - /@typescript-eslint/eslint-plugin/5.38.1_80279ca3558653036a70efdb2cc6a22a: + /@typescript-eslint/eslint-plugin/5.38.1_qatzzi2vqzjqg2tq57nszrvcfi: resolution: {integrity: sha512-ky7EFzPhqz3XlhS7vPOoMDaQnQMn+9o5ICR9CPr/6bw8HrFkzhMSxuA3gRfiJVvs7geYrSeawGJjZoZQKCOglQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -3115,10 +3117,10 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/parser': 5.38.1_eslint@8.24.0+typescript@4.8.3 + '@typescript-eslint/parser': 5.38.1_7ilbxdl5iguzcjriqqcg2m5cku '@typescript-eslint/scope-manager': 5.38.1 - '@typescript-eslint/type-utils': 5.38.1_eslint@8.24.0+typescript@4.8.3 - '@typescript-eslint/utils': 5.38.1_eslint@8.24.0+typescript@4.8.3 + '@typescript-eslint/type-utils': 5.38.1_7ilbxdl5iguzcjriqqcg2m5cku + '@typescript-eslint/utils': 5.38.1_7ilbxdl5iguzcjriqqcg2m5cku debug: 4.3.4 eslint: 8.24.0 ignore: 5.2.0 @@ -3130,7 +3132,7 @@ packages: - supports-color dev: true - /@typescript-eslint/parser/5.38.1_eslint@8.24.0+typescript@4.8.3: + /@typescript-eslint/parser/5.38.1_7ilbxdl5iguzcjriqqcg2m5cku: resolution: {integrity: sha512-LDqxZBVFFQnQRz9rUZJhLmox+Ep5kdUmLatLQnCRR6523YV+XhRjfYzStQ4MheFA8kMAfUlclHSbu+RKdRwQKw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -3158,7 +3160,7 @@ packages: '@typescript-eslint/visitor-keys': 5.38.1 dev: true - /@typescript-eslint/type-utils/5.38.1_eslint@8.24.0+typescript@4.8.3: + /@typescript-eslint/type-utils/5.38.1_7ilbxdl5iguzcjriqqcg2m5cku: resolution: {integrity: sha512-UU3j43TM66gYtzo15ivK2ZFoDFKKP0k03MItzLdq0zV92CeGCXRfXlfQX5ILdd4/DSpHkSjIgLLLh1NtkOJOAw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -3169,7 +3171,7 @@ packages: optional: true dependencies: '@typescript-eslint/typescript-estree': 5.38.1_typescript@4.8.3 - '@typescript-eslint/utils': 5.38.1_eslint@8.24.0+typescript@4.8.3 + '@typescript-eslint/utils': 5.38.1_7ilbxdl5iguzcjriqqcg2m5cku debug: 4.3.4 eslint: 8.24.0 tsutils: 3.21.0_typescript@4.8.3 @@ -3183,7 +3185,7 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /@typescript-eslint/typescript-estree/5.38.1_dea96fc3eb2060f02b842cabef70e41e: + /@typescript-eslint/typescript-estree/5.38.1_32uw7q7lebqpak4efsv664hedy: resolution: {integrity: sha512-99b5e/Enoe8fKMLdSuwrfH/C0EIbpUWmeEKHmQlGZb8msY33qn1KlkFww0z26o5Omx7EVjzVDCWEfrfCDHfE7g==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -3225,7 +3227,7 @@ packages: - supports-color dev: true - /@typescript-eslint/utils/5.38.1_eslint@8.24.0+typescript@4.8.3: + /@typescript-eslint/utils/5.38.1_7ilbxdl5iguzcjriqqcg2m5cku: resolution: {integrity: sha512-oIuUiVxPBsndrN81oP8tXnFa/+EcZ03qLqPDfSZ5xIJVm7A9V0rlkQwwBOAGtrdN70ZKDlKv+l1BeT4eSFxwXA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -3303,7 +3305,7 @@ packages: magic-string: 0.26.3 regenerator-runtime: 0.13.9 systemjs: 6.12.6 - terser: 5.10.0 + terser: 5.10.0_acorn@8.8.0 vite: 3.1.3_sass@1.55.0+terser@5.10.0 dev: true @@ -3436,7 +3438,7 @@ packages: resolution: {integrity: sha512-OEgAMeQXvCoJ+1x8WyQuVZzFo0wcyCmUR3baRVLmKBo1LmYZWMlRiXlux5jd0fqVJu6PfDbOrZItVqUEzLobeQ==} dev: false - /@vue/eslint-config-typescript/11.0.2_6e223a7e95cc78e4e686f47e5f89e21c: + /@vue/eslint-config-typescript/11.0.2_nyrdu7uvzr4ojzug6r7f7cpcdq: resolution: {integrity: sha512-EiKud1NqlWmSapBFkeSrE994qpKx7/27uCGnhdqzllYDpQZroyX/O6bwjEpeuyKamvLbsGdO6PMR2faIf+zFnw==} engines: {node: ^14.17.0 || >=16.0.0} peerDependencies: @@ -3447,8 +3449,8 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/eslint-plugin': 5.38.1_80279ca3558653036a70efdb2cc6a22a - '@typescript-eslint/parser': 5.38.1_eslint@8.24.0+typescript@4.8.3 + '@typescript-eslint/eslint-plugin': 5.38.1_qatzzi2vqzjqg2tq57nszrvcfi + '@typescript-eslint/parser': 5.38.1_7ilbxdl5iguzcjriqqcg2m5cku eslint: 8.24.0 eslint-plugin-vue: 9.5.1_eslint@8.24.0 typescript: 4.8.3 @@ -3528,7 +3530,7 @@ packages: vue: 3.2.39 dev: true - /@vue/tsconfig/0.1.3_@types+node@17.0.17: + /@vue/tsconfig/0.1.3_@types+node@16.11.60: resolution: {integrity: sha512-kQVsh8yyWPvHpb8gIc9l/HIDiiVUy1amynLNpCy8p+FoCiZXCo6fQos5/097MmnNZc9AtseDsCrfkhqCrJ8Olg==} peerDependencies: '@types/node': '*' @@ -3536,7 +3538,7 @@ packages: '@types/node': optional: true dependencies: - '@types/node': 17.0.17 + '@types/node': 16.11.60 dev: true /@vueuse/core/9.3.0_vue@3.2.39: @@ -3555,7 +3557,7 @@ packages: resolution: {integrity: sha512-GnnfjbzIPJIh9ngL9s9oGU1+Hx/h5/KFqTfJykzh/1xjaHkedV9g0MASpdmPZIP+ynNhKAcEfA6g5i8KXwtoMA==} dev: false - /@vueuse/router/9.3.0_vue-router@4.1.5+vue@3.2.39: + /@vueuse/router/9.3.0_u55wpvgoaskkfdnhr4v2vlugdi: resolution: {integrity: sha512-UFN2MFciprH21oYsAgNHeDJ4Bd86HpRm9gximSN8j6h4fc2aa62fvfhprfHqdTxYAcgcGkMwcc9TO75jOvr8gg==} peerDependencies: vue-router: '>=4.0.0-rc.1' @@ -5576,7 +5578,7 @@ packages: resolution: {integrity: sha512-lR78AugfUSBojwlSRZBeEqQ1l8LI7rbxOl1qTUnGLcjZQDjZmrZCb7R46rK8U8B5WzFvJrxa7fEBA8FoD/n5fA==} engines: {node: ^12.20.0 || ^14.14.0 || >=16.0.0} dependencies: - '@typescript-eslint/typescript-estree': 5.38.1_dea96fc3eb2060f02b842cabef70e41e + '@typescript-eslint/typescript-estree': 5.38.1_32uw7q7lebqpak4efsv664hedy ast-module-types: 3.0.0 node-source-walk: 5.0.0 typescript: 4.8.3 @@ -10094,7 +10096,7 @@ packages: engines: {node: '>=6'} dev: true - /pinia/2.0.22_typescript@4.8.3+vue@3.2.39: + /pinia/2.0.22_arz4dztosvwy2ghjrlh2wdhejm: resolution: {integrity: sha512-u+b8/BC+tmvo3ACbYO2w5NfxHWFOjvvw9DQnyT0dW8aUMCPRQT5QnfZ5R5W2MzZBMTeZRMQI7V/QFbafmM9QHw==} peerDependencies: '@vue/composition-api': ^1.4.0 @@ -10337,7 +10339,7 @@ packages: peerDependencies: postcss: ^8.2 dependencies: - '@csstools/selector-specificity': 2.0.2_7b6fee2724f05f3c8883c74281a3791a + '@csstools/selector-specificity': 2.0.2_pnx64jze6bptzcedy5bidi3zdi postcss: 8.4.16 postcss-selector-parser: 6.0.10 dev: true @@ -11053,7 +11055,7 @@ packages: glob: 7.2.0 dev: true - /rollup-plugin-terser/7.0.2_rollup@2.79.1: + /rollup-plugin-terser/7.0.2_acorn@8.8.0+rollup@2.79.1: resolution: {integrity: sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==} peerDependencies: rollup: ^2.0.0 @@ -11062,7 +11064,9 @@ packages: jest-worker: 26.6.2 rollup: 2.79.1 serialize-javascript: 4.0.0 - terser: 5.10.0 + terser: 5.10.0_acorn@8.8.0 + transitivePeerDependencies: + - acorn dev: true /rollup-plugin-visualizer/5.8.2_rollup@2.79.1: @@ -11944,10 +11948,12 @@ packages: supports-hyperlinks: 2.2.0 dev: true - /terser/5.10.0: + /terser/5.10.0_acorn@8.8.0: resolution: {integrity: sha512-AMmF99DMfEDiRJfxfY5jj5wNH/bYO09cniSqhfoyxc8sFoYIgkJy86G04UoZU5VjlpnplVu0K6Tx6E9b5+DlHA==} engines: {node: '>=10'} hasBin: true + peerDependencies: + acorn: ^8.5.0 peerDependenciesMeta: acorn: optional: true @@ -12153,7 +12159,7 @@ packages: resolution: {integrity: sha512-XrHUvV5HpdLmIj4uVMxHggLbFSZYIn7HEWsqePZcI50pco+MPqJ50wMGY794X7AOOhxOBAjbkqfAbEe/QMp2Lw==} dev: true - /ts-node/10.8.1_6e0f24de304929fa6e28010284240e12: + /ts-node/10.8.1_y2ippukchihtaxubiro7c5yd6u: resolution: {integrity: sha512-Wwsnao4DQoJsN034wePSg5nZiw4YKXf56mPIAeD6wVmiv+RytNSWqc2f3fKvcUoV+Yn2+yocD71VOfQHbmVX4g==} hasBin: true peerDependencies: @@ -12172,7 +12178,7 @@ packages: '@tsconfig/node12': 1.0.9 '@tsconfig/node14': 1.0.1 '@tsconfig/node16': 1.0.2 - '@types/node': 16.11.24 + '@types/node': 16.11.60 acorn: 8.8.0 acorn-walk: 8.2.0 arg: 4.1.3 @@ -12551,20 +12557,21 @@ packages: extsprintf: 1.3.0 dev: true - /vite-plugin-pwa/0.13.1_vite@3.1.3: + /vite-plugin-pwa/0.13.1_6b7mpudv5jppcry7og3bu4wyku: resolution: {integrity: sha512-NR3dIa+o2hzlzo4lF4Gu0cYvoMjSw2DdRc6Epw1yjmCqWaGuN86WK9JqZie4arNlE1ZuWT3CLiMdiX5wcmmUmg==} peerDependencies: vite: ^3.1.0 + workbox-build: ^6.5.4 + workbox-window: ^6.5.4 dependencies: debug: 4.3.4 fast-glob: 3.2.11 pretty-bytes: 6.0.0 rollup: 2.79.1 vite: 3.1.3_sass@1.55.0+terser@5.10.0 - workbox-build: 6.5.4 + workbox-build: 6.5.4_acorn@8.8.0 workbox-window: 6.5.4 transitivePeerDependencies: - - '@types/babel__core' - supports-color dev: true @@ -12599,12 +12606,12 @@ packages: resolve: 1.22.1 rollup: 2.78.0 sass: 1.55.0 - terser: 5.10.0 + terser: 5.10.0_acorn@8.8.0 optionalDependencies: fsevents: 2.3.2 dev: true - /vitest/0.23.4_ddc85b0b7a78b2cfae025c8e16b7f605: + /vitest/0.23.4_3xefwc32pczm7lqclshbnn7wau: resolution: {integrity: sha512-iukBNWqQAv8EKDBUNntspLp9SfpaVFbmzmM0sNcnTxASQZMzRw3PsM6DMlsHiI+I6GeO5/sYDg3ecpC+SNFLrQ==} engines: {node: '>=v14.16.0'} hasBin: true @@ -12927,7 +12934,7 @@ packages: workbox-core: 6.5.4 dev: true - /workbox-build/6.5.4: + /workbox-build/6.5.4_acorn@8.8.0: resolution: {integrity: sha512-kgRevLXEYvUW9WS4XoziYqZ8Q9j/2ziJYEtTrjdz5/L/cTUa2XfyMP2i7c3p34lgqJ03+mTiz13SdFef2POwbA==} engines: {node: '>=10.0.0'} dependencies: @@ -12935,7 +12942,7 @@ packages: '@babel/core': 7.17.2 '@babel/preset-env': 7.16.11_@babel+core@7.17.2 '@babel/runtime': 7.17.2 - '@rollup/plugin-babel': 5.3.0_@babel+core@7.17.2+rollup@2.79.1 + '@rollup/plugin-babel': 5.3.0_pf2mys4p2khuj2gysypj3zzjia '@rollup/plugin-node-resolve': 11.2.1_rollup@2.79.1 '@rollup/plugin-replace': 2.4.2_rollup@2.79.1 '@surma/rollup-plugin-off-main-thread': 2.2.3 @@ -12947,7 +12954,7 @@ packages: lodash: 4.17.21 pretty-bytes: 5.6.0 rollup: 2.79.1 - rollup-plugin-terser: 7.0.2_rollup@2.79.1 + rollup-plugin-terser: 7.0.2_acorn@8.8.0+rollup@2.79.1 source-map: 0.8.0-beta.0 stringify-object: 3.3.0 strip-comments: 2.0.1 @@ -12970,6 +12977,7 @@ packages: workbox-window: 6.5.4 transitivePeerDependencies: - '@types/babel__core' + - acorn - supports-color dev: true @@ -12979,7 +12987,7 @@ packages: workbox-core: 6.5.4 dev: true - /workbox-cli/6.5.4: + /workbox-cli/6.5.4_acorn@8.8.0: resolution: {integrity: sha512-+Cc0jYh25MofhCROZqfQkpYSAGvykyrUVekuuPaLFbJ8qxX/zzX8hRRpglfwxDwokAjz8S20oEph4s+MyQc+Yw==} engines: {node: '>=10.0.0'} hasBin: true @@ -12996,9 +13004,10 @@ packages: stringify-object: 3.3.0 upath: 1.2.0 update-notifier: 4.1.3 - workbox-build: 6.5.4 + workbox-build: 6.5.4_acorn@8.8.0 transitivePeerDependencies: - '@types/babel__core' + - acorn - supports-color dev: true From c9546d52c0d22ad70e5fbe242a00aa19dcb8a34d Mon Sep 17 00:00:00 2001 From: renovate Date: Tue, 27 Sep 2022 17:17:19 +0000 Subject: [PATCH 06/16] chore(deps): update dependency cypress to v10.9.0 (#2429) Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/2429 Co-authored-by: renovate Co-committed-by: renovate --- package.json | 2 +- pnpm-lock.yaml | 24 ++++++++++++------------ 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/package.json b/package.json index 54c04a3e..f8a95230 100644 --- a/package.json +++ b/package.json @@ -81,7 +81,7 @@ "autoprefixer": "10.4.12", "browserslist": "4.21.4", "caniuse-lite": "1.0.30001412", - "cypress": "10.8.0", + "cypress": "10.9.0", "esbuild": "0.15.9", "eslint": "8.24.0", "eslint-plugin-vue": "9.5.1", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index de4a863a..02444f78 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -36,7 +36,7 @@ specifiers: camel-case: 4.1.2 caniuse-lite: 1.0.30001412 codemirror: 5.65.9 - cypress: 10.8.0 + cypress: 10.9.0 date-fns: 2.29.3 dompurify: 2.4.0 easymde: 2.18.0 @@ -130,9 +130,9 @@ dependencies: zhyswan-vuedraggable: 4.1.3_vue@3.2.39 devDependencies: - '@4tw/cypress-drag-drop': 2.2.1_cypress@10.8.0 + '@4tw/cypress-drag-drop': 2.2.1_cypress@10.9.0 '@cypress/vite-dev-server': 3.1.1 - '@cypress/vue': 4.2.0_cypress@10.8.0+vue@3.2.39 + '@cypress/vue': 4.2.0_cypress@10.9.0+vue@3.2.39 '@faker-js/faker': 7.5.0 '@types/dompurify': 2.3.4 '@types/flexsearch': 0.7.3 @@ -147,7 +147,7 @@ devDependencies: autoprefixer: 10.4.12_postcss@8.4.16 browserslist: 4.21.4 caniuse-lite: 1.0.30001412 - cypress: 10.8.0 + cypress: 10.9.0 esbuild: 0.15.9 eslint: 8.24.0 eslint-plugin-vue: 9.5.1_eslint@8.24.0 @@ -170,12 +170,12 @@ devDependencies: packages: - /@4tw/cypress-drag-drop/2.2.1_cypress@10.8.0: + /@4tw/cypress-drag-drop/2.2.1_cypress@10.9.0: resolution: {integrity: sha512-+ioJSnEwx70IiMyb4pLEjOS5u6AMWRIVCV20toCY7lb0YcvA0ipbjQBa9DdxEI7Zg2E2jtcIj7Rx0e3WNUbk/w==} peerDependencies: cypress: ^2.1.0 || ^3.1.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0 dependencies: - cypress: 10.8.0 + cypress: 10.9.0 dev: true /@ampproject/remapping/2.1.1: @@ -1579,7 +1579,7 @@ packages: - supports-color dev: true - /@cypress/vue/4.2.0_cypress@10.8.0+vue@3.2.39: + /@cypress/vue/4.2.0_cypress@10.9.0+vue@3.2.39: resolution: {integrity: sha512-a+5TCBMwng+UUcFSWxzdJ+Wsvtu+XltUKBQCvidysVvPkPF/c/Z+Geyl+sX7tasKT8KIOW9pI90PIwxzQvQh7A==} engines: {node: '>=8'} peerDependencies: @@ -1590,7 +1590,7 @@ packages: '@cypress/webpack-dev-server': optional: true dependencies: - cypress: 10.8.0 + cypress: 10.9.0 vue: 3.2.39 dev: true @@ -5105,8 +5105,8 @@ packages: resolution: {integrity: sha512-NJGVKPS81XejHcLhaLJS7plab0fK3slPh11mESeeDq2W4ZI5kUKK/LRRdVDvjJseojbPB7ZwjnyOybg3Igea/A==} dev: true - /cypress/10.8.0: - resolution: {integrity: sha512-QVse0dnLm018hgti2enKMVZR9qbIO488YGX06nH5j3Dg1isL38DwrBtyrax02CANU6y8F4EJUuyW6HJKw1jsFA==} + /cypress/10.9.0: + resolution: {integrity: sha512-MjIWrRpc+bQM9U4kSSdATZWZ2hUqHGFEQTF7dfeZRa4MnalMtc88FIE49USWP2ZVtfy5WPBcgfBX+YorFqGElA==} engines: {node: '>=12.0.0'} hasBin: true requiresBuild: true @@ -10626,7 +10626,7 @@ packages: dev: true /proxy-from-env/1.0.0: - resolution: {integrity: sha1-M8UDmPcOp+uW0h97gXYwpVeRx+4=} + resolution: {integrity: sha512-F2JHgJQ1iqwnHDcQjVBsq3n/uoaFL+iPW/eAeL7kVxy/2RrWaN4WroKjjvbsoRtv0ftelNyC01bjRhn/bhcf4A==} dev: true /ps-list/8.1.0: @@ -12549,7 +12549,7 @@ packages: dev: true /verror/1.10.0: - resolution: {integrity: sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=} + resolution: {integrity: sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==} engines: {'0': node >=0.6.0} dependencies: assert-plus: 1.0.0 From cf745726bcd48692f9c2e89e0b68117b921c9cab Mon Sep 17 00:00:00 2001 From: renovate Date: Tue, 27 Sep 2022 18:36:44 +0000 Subject: [PATCH 07/16] chore(deps): update dependency @types/node to v16.11.62 (#2430) Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/2430 Co-authored-by: renovate Co-committed-by: renovate --- package.json | 2 +- pnpm-lock.yaml | 119 +++++++++++++++++++++++-------------------------- 2 files changed, 57 insertions(+), 64 deletions(-) diff --git a/package.json b/package.json index f8a95230..c84deb15 100644 --- a/package.json +++ b/package.json @@ -70,7 +70,7 @@ "@faker-js/faker": "7.5.0", "@types/dompurify": "2.3.4", "@types/flexsearch": "0.7.3", - "@types/node": "16.11.60", + "@types/node": "16.11.62", "@typescript-eslint/eslint-plugin": "5.38.1", "@typescript-eslint/parser": "5.38.1", "@vitejs/plugin-legacy": "2.2.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 02444f78..97951ee9 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,4 +1,4 @@ -lockfileVersion: 5.4 +lockfileVersion: 5.3 specifiers: '@4tw/cypress-drag-drop': 2.2.1 @@ -17,7 +17,7 @@ specifiers: '@types/flexsearch': 0.7.3 '@types/is-touch-device': 1.0.0 '@types/lodash.clonedeep': 4.5.7 - '@types/node': 16.11.60 + '@types/node': 16.11.62 '@types/sortablejs': 1.15.0 '@typescript-eslint/eslint-plugin': 5.38.1 '@typescript-eslint/parser': 5.38.1 @@ -87,7 +87,7 @@ dependencies: '@fortawesome/fontawesome-svg-core': 6.2.0 '@fortawesome/free-regular-svg-icons': 6.2.0 '@fortawesome/free-solid-svg-icons': 6.2.0 - '@fortawesome/vue-fontawesome': 3.0.1_4h6vf4pkzarhnju6fzmo7mfhke + '@fortawesome/vue-fontawesome': 3.0.1_e1fd52f1eac82276a69e2e58efb0a751 '@github/hotkey': 2.0.1 '@kyvg/vue3-notification': 2.4.1_vue@3.2.39 '@sentry/tracing': 7.13.0 @@ -96,7 +96,7 @@ dependencies: '@types/lodash.clonedeep': 4.5.7 '@types/sortablejs': 1.15.0 '@vueuse/core': 9.3.0_vue@3.2.39 - '@vueuse/router': 9.3.0_u55wpvgoaskkfdnhr4v2vlugdi + '@vueuse/router': 9.3.0_vue-router@4.1.5+vue@3.2.39 axios: 0.27.2 blurhash: 2.0.1 bulma-css-variables: 0.9.33 @@ -113,7 +113,7 @@ dependencies: lodash.debounce: 4.0.8 marked: 4.1.0 minimist: 1.2.6 - pinia: 2.0.22_arz4dztosvwy2ghjrlh2wdhejm + pinia: 2.0.22_typescript@4.8.3+vue@3.2.39 register-service-worker: 1.7.2 snake-case: 3.0.4 sortablejs: 1.15.0 @@ -136,14 +136,14 @@ devDependencies: '@faker-js/faker': 7.5.0 '@types/dompurify': 2.3.4 '@types/flexsearch': 0.7.3 - '@types/node': 16.11.60 - '@typescript-eslint/eslint-plugin': 5.38.1_qatzzi2vqzjqg2tq57nszrvcfi - '@typescript-eslint/parser': 5.38.1_7ilbxdl5iguzcjriqqcg2m5cku + '@types/node': 16.11.62 + '@typescript-eslint/eslint-plugin': 5.38.1_80279ca3558653036a70efdb2cc6a22a + '@typescript-eslint/parser': 5.38.1_eslint@8.24.0+typescript@4.8.3 '@vitejs/plugin-legacy': 2.2.0_terser@5.10.0+vite@3.1.3 '@vitejs/plugin-vue': 3.1.0_vite@3.1.3+vue@3.2.39 - '@vue/eslint-config-typescript': 11.0.2_nyrdu7uvzr4ojzug6r7f7cpcdq + '@vue/eslint-config-typescript': 11.0.2_6e223a7e95cc78e4e686f47e5f89e21c '@vue/test-utils': 2.0.2_vue@3.2.39 - '@vue/tsconfig': 0.1.3_@types+node@16.11.60 + '@vue/tsconfig': 0.1.3_@types+node@16.11.62 autoprefixer: 10.4.12_postcss@8.4.16 browserslist: 4.21.4 caniuse-lite: 1.0.30001412 @@ -161,12 +161,12 @@ devDependencies: sass: 1.55.0 typescript: 4.8.3 vite: 3.1.3_sass@1.55.0+terser@5.10.0 - vite-plugin-pwa: 0.13.1_6b7mpudv5jppcry7og3bu4wyku + vite-plugin-pwa: 0.13.1_vite@3.1.3 vite-svg-loader: 3.6.0 - vitest: 0.23.4_3xefwc32pczm7lqclshbnn7wau + vitest: 0.23.4_ddc85b0b7a78b2cfae025c8e16b7f605 vue-tsc: 0.40.13_typescript@4.8.3 wait-on: 6.0.1 - workbox-cli: 6.5.4_acorn@8.8.0 + workbox-cli: 6.5.4 packages: @@ -1394,7 +1394,7 @@ packages: peerDependencies: postcss: ^8.2 dependencies: - '@csstools/selector-specificity': 2.0.2_pnx64jze6bptzcedy5bidi3zdi + '@csstools/selector-specificity': 2.0.2_7b6fee2724f05f3c8883c74281a3791a postcss: 8.4.16 postcss-selector-parser: 6.0.10 dev: true @@ -1447,7 +1447,7 @@ packages: peerDependencies: postcss: ^8.2 dependencies: - '@csstools/selector-specificity': 2.0.2_pnx64jze6bptzcedy5bidi3zdi + '@csstools/selector-specificity': 2.0.2_7b6fee2724f05f3c8883c74281a3791a postcss: 8.4.16 postcss-selector-parser: 6.0.10 dev: true @@ -1532,7 +1532,7 @@ packages: postcss: 8.4.16 dev: true - /@csstools/selector-specificity/2.0.2_pnx64jze6bptzcedy5bidi3zdi: + /@csstools/selector-specificity/2.0.2_7b6fee2724f05f3c8883c74281a3791a: resolution: {integrity: sha512-IkpVW/ehM1hWKln4fCA3NzJU8KwD+kIOvPZA4cqxoJHtE21CCzjyp+Kxbu0i5I4tBNOlXPL9mjwnWlL0VEG4Fg==} engines: {node: ^12 || ^14 || >=16} peerDependencies: @@ -1681,7 +1681,7 @@ packages: '@fortawesome/fontawesome-common-types': 6.2.0 dev: false - /@fortawesome/vue-fontawesome/3.0.1_4h6vf4pkzarhnju6fzmo7mfhke: + /@fortawesome/vue-fontawesome/3.0.1_e1fd52f1eac82276a69e2e58efb0a751: resolution: {integrity: sha512-CdXZJoCS+aEPec26ZP7hWWU3SaJlQPZSCGdgpQ2qGl2HUmtUUNrI3zC4XWdn1JUmh3t5OuDeRG1qB4eGRNSD4A==} peerDependencies: '@fortawesome/fontawesome-svg-core': ~1 || ~6 @@ -1879,7 +1879,7 @@ packages: '@netlify/run-utils': 4.0.1 '@netlify/zip-it-and-ship-it': 7.1.2_supports-color@9.2.1 '@sindresorhus/slugify': 2.1.0 - '@types/node': 16.11.60 + '@types/node': 16.11.62 ajv: 8.11.0 ajv-errors: 3.0.0_ajv@8.11.0 ansi-escapes: 5.0.0 @@ -1919,7 +1919,7 @@ packages: strip-ansi: 7.0.1 supports-color: 9.2.1 tmp-promise: 3.0.3 - ts-node: 10.8.1_y2ippukchihtaxubiro7c5yd6u + ts-node: 10.8.1_56d8fb94ac0576e9b6a19ff5f6eac402 typescript: 4.8.3 update-notifier: 5.1.0 uuid: 8.3.2 @@ -2607,7 +2607,7 @@ packages: resolution: {integrity: sha512-92FRmppjjqz29VMJ2dn+xdyXZBrMlE42AV6Kq6BwjWV7CNUW1hs2FtxSNLQE+gJhaZ6AAmYuO9y8dshhcBl7vA==} dev: false - /@rollup/plugin-babel/5.3.0_pf2mys4p2khuj2gysypj3zzjia: + /@rollup/plugin-babel/5.3.0_@babel+core@7.17.2+rollup@2.79.1: resolution: {integrity: sha512-9uIC8HZOnVLrLHxayq/PTzw+uS25E14KPUBh5ktF+18Mjo5yK0ToMMx6epY0uEgkjwJw0aBW4x2horYXh8juWw==} engines: {node: '>= 10.0.0'} peerDependencies: @@ -3016,8 +3016,8 @@ packages: resolution: {integrity: sha512-zCoCEMA+IPpsRkyCFBqew5vGb7r8RSiB3uwdu/map7uwLAfu1MTazW26/pUDWoNnF88vJz4W3U56i5gtXNqxGg==} dev: true - /@types/node/16.11.60: - resolution: {integrity: sha512-kYIYa1D1L+HDv5M5RXQeEu1o0FKA6yedZIoyugm/MBPROkLpX4L7HRxMrPVyo8bnvjpW/wDlqFNGzXNMb7AdRw==} + /@types/node/16.11.62: + resolution: {integrity: sha512-K/ggecSdwAAy2NUW4WKmF4Rc03GKbsfP+k326UWgckoS+Rzd2PaWbjk76dSmqdLQvLTJAO9axiTUJ6488mFsYQ==} dev: true /@types/node/17.0.17: @@ -3106,7 +3106,7 @@ packages: dev: true optional: true - /@typescript-eslint/eslint-plugin/5.38.1_qatzzi2vqzjqg2tq57nszrvcfi: + /@typescript-eslint/eslint-plugin/5.38.1_80279ca3558653036a70efdb2cc6a22a: resolution: {integrity: sha512-ky7EFzPhqz3XlhS7vPOoMDaQnQMn+9o5ICR9CPr/6bw8HrFkzhMSxuA3gRfiJVvs7geYrSeawGJjZoZQKCOglQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -3117,10 +3117,10 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/parser': 5.38.1_7ilbxdl5iguzcjriqqcg2m5cku + '@typescript-eslint/parser': 5.38.1_eslint@8.24.0+typescript@4.8.3 '@typescript-eslint/scope-manager': 5.38.1 - '@typescript-eslint/type-utils': 5.38.1_7ilbxdl5iguzcjriqqcg2m5cku - '@typescript-eslint/utils': 5.38.1_7ilbxdl5iguzcjriqqcg2m5cku + '@typescript-eslint/type-utils': 5.38.1_eslint@8.24.0+typescript@4.8.3 + '@typescript-eslint/utils': 5.38.1_eslint@8.24.0+typescript@4.8.3 debug: 4.3.4 eslint: 8.24.0 ignore: 5.2.0 @@ -3132,7 +3132,7 @@ packages: - supports-color dev: true - /@typescript-eslint/parser/5.38.1_7ilbxdl5iguzcjriqqcg2m5cku: + /@typescript-eslint/parser/5.38.1_eslint@8.24.0+typescript@4.8.3: resolution: {integrity: sha512-LDqxZBVFFQnQRz9rUZJhLmox+Ep5kdUmLatLQnCRR6523YV+XhRjfYzStQ4MheFA8kMAfUlclHSbu+RKdRwQKw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -3160,7 +3160,7 @@ packages: '@typescript-eslint/visitor-keys': 5.38.1 dev: true - /@typescript-eslint/type-utils/5.38.1_7ilbxdl5iguzcjriqqcg2m5cku: + /@typescript-eslint/type-utils/5.38.1_eslint@8.24.0+typescript@4.8.3: resolution: {integrity: sha512-UU3j43TM66gYtzo15ivK2ZFoDFKKP0k03MItzLdq0zV92CeGCXRfXlfQX5ILdd4/DSpHkSjIgLLLh1NtkOJOAw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -3171,7 +3171,7 @@ packages: optional: true dependencies: '@typescript-eslint/typescript-estree': 5.38.1_typescript@4.8.3 - '@typescript-eslint/utils': 5.38.1_7ilbxdl5iguzcjriqqcg2m5cku + '@typescript-eslint/utils': 5.38.1_eslint@8.24.0+typescript@4.8.3 debug: 4.3.4 eslint: 8.24.0 tsutils: 3.21.0_typescript@4.8.3 @@ -3185,7 +3185,7 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /@typescript-eslint/typescript-estree/5.38.1_32uw7q7lebqpak4efsv664hedy: + /@typescript-eslint/typescript-estree/5.38.1_dea96fc3eb2060f02b842cabef70e41e: resolution: {integrity: sha512-99b5e/Enoe8fKMLdSuwrfH/C0EIbpUWmeEKHmQlGZb8msY33qn1KlkFww0z26o5Omx7EVjzVDCWEfrfCDHfE7g==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -3227,7 +3227,7 @@ packages: - supports-color dev: true - /@typescript-eslint/utils/5.38.1_7ilbxdl5iguzcjriqqcg2m5cku: + /@typescript-eslint/utils/5.38.1_eslint@8.24.0+typescript@4.8.3: resolution: {integrity: sha512-oIuUiVxPBsndrN81oP8tXnFa/+EcZ03qLqPDfSZ5xIJVm7A9V0rlkQwwBOAGtrdN70ZKDlKv+l1BeT4eSFxwXA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -3305,7 +3305,7 @@ packages: magic-string: 0.26.3 regenerator-runtime: 0.13.9 systemjs: 6.12.6 - terser: 5.10.0_acorn@8.8.0 + terser: 5.10.0 vite: 3.1.3_sass@1.55.0+terser@5.10.0 dev: true @@ -3438,7 +3438,7 @@ packages: resolution: {integrity: sha512-OEgAMeQXvCoJ+1x8WyQuVZzFo0wcyCmUR3baRVLmKBo1LmYZWMlRiXlux5jd0fqVJu6PfDbOrZItVqUEzLobeQ==} dev: false - /@vue/eslint-config-typescript/11.0.2_nyrdu7uvzr4ojzug6r7f7cpcdq: + /@vue/eslint-config-typescript/11.0.2_6e223a7e95cc78e4e686f47e5f89e21c: resolution: {integrity: sha512-EiKud1NqlWmSapBFkeSrE994qpKx7/27uCGnhdqzllYDpQZroyX/O6bwjEpeuyKamvLbsGdO6PMR2faIf+zFnw==} engines: {node: ^14.17.0 || >=16.0.0} peerDependencies: @@ -3449,8 +3449,8 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/eslint-plugin': 5.38.1_qatzzi2vqzjqg2tq57nszrvcfi - '@typescript-eslint/parser': 5.38.1_7ilbxdl5iguzcjriqqcg2m5cku + '@typescript-eslint/eslint-plugin': 5.38.1_80279ca3558653036a70efdb2cc6a22a + '@typescript-eslint/parser': 5.38.1_eslint@8.24.0+typescript@4.8.3 eslint: 8.24.0 eslint-plugin-vue: 9.5.1_eslint@8.24.0 typescript: 4.8.3 @@ -3530,7 +3530,7 @@ packages: vue: 3.2.39 dev: true - /@vue/tsconfig/0.1.3_@types+node@16.11.60: + /@vue/tsconfig/0.1.3_@types+node@16.11.62: resolution: {integrity: sha512-kQVsh8yyWPvHpb8gIc9l/HIDiiVUy1amynLNpCy8p+FoCiZXCo6fQos5/097MmnNZc9AtseDsCrfkhqCrJ8Olg==} peerDependencies: '@types/node': '*' @@ -3538,7 +3538,7 @@ packages: '@types/node': optional: true dependencies: - '@types/node': 16.11.60 + '@types/node': 16.11.62 dev: true /@vueuse/core/9.3.0_vue@3.2.39: @@ -3557,7 +3557,7 @@ packages: resolution: {integrity: sha512-GnnfjbzIPJIh9ngL9s9oGU1+Hx/h5/KFqTfJykzh/1xjaHkedV9g0MASpdmPZIP+ynNhKAcEfA6g5i8KXwtoMA==} dev: false - /@vueuse/router/9.3.0_u55wpvgoaskkfdnhr4v2vlugdi: + /@vueuse/router/9.3.0_vue-router@4.1.5+vue@3.2.39: resolution: {integrity: sha512-UFN2MFciprH21oYsAgNHeDJ4Bd86HpRm9gximSN8j6h4fc2aa62fvfhprfHqdTxYAcgcGkMwcc9TO75jOvr8gg==} peerDependencies: vue-router: '>=4.0.0-rc.1' @@ -5578,7 +5578,7 @@ packages: resolution: {integrity: sha512-lR78AugfUSBojwlSRZBeEqQ1l8LI7rbxOl1qTUnGLcjZQDjZmrZCb7R46rK8U8B5WzFvJrxa7fEBA8FoD/n5fA==} engines: {node: ^12.20.0 || ^14.14.0 || >=16.0.0} dependencies: - '@typescript-eslint/typescript-estree': 5.38.1_32uw7q7lebqpak4efsv664hedy + '@typescript-eslint/typescript-estree': 5.38.1_dea96fc3eb2060f02b842cabef70e41e ast-module-types: 3.0.0 node-source-walk: 5.0.0 typescript: 4.8.3 @@ -10096,7 +10096,7 @@ packages: engines: {node: '>=6'} dev: true - /pinia/2.0.22_arz4dztosvwy2ghjrlh2wdhejm: + /pinia/2.0.22_typescript@4.8.3+vue@3.2.39: resolution: {integrity: sha512-u+b8/BC+tmvo3ACbYO2w5NfxHWFOjvvw9DQnyT0dW8aUMCPRQT5QnfZ5R5W2MzZBMTeZRMQI7V/QFbafmM9QHw==} peerDependencies: '@vue/composition-api': ^1.4.0 @@ -10339,7 +10339,7 @@ packages: peerDependencies: postcss: ^8.2 dependencies: - '@csstools/selector-specificity': 2.0.2_pnx64jze6bptzcedy5bidi3zdi + '@csstools/selector-specificity': 2.0.2_7b6fee2724f05f3c8883c74281a3791a postcss: 8.4.16 postcss-selector-parser: 6.0.10 dev: true @@ -11055,7 +11055,7 @@ packages: glob: 7.2.0 dev: true - /rollup-plugin-terser/7.0.2_acorn@8.8.0+rollup@2.79.1: + /rollup-plugin-terser/7.0.2_rollup@2.79.1: resolution: {integrity: sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==} peerDependencies: rollup: ^2.0.0 @@ -11064,9 +11064,7 @@ packages: jest-worker: 26.6.2 rollup: 2.79.1 serialize-javascript: 4.0.0 - terser: 5.10.0_acorn@8.8.0 - transitivePeerDependencies: - - acorn + terser: 5.10.0 dev: true /rollup-plugin-visualizer/5.8.2_rollup@2.79.1: @@ -11948,12 +11946,10 @@ packages: supports-hyperlinks: 2.2.0 dev: true - /terser/5.10.0_acorn@8.8.0: + /terser/5.10.0: resolution: {integrity: sha512-AMmF99DMfEDiRJfxfY5jj5wNH/bYO09cniSqhfoyxc8sFoYIgkJy86G04UoZU5VjlpnplVu0K6Tx6E9b5+DlHA==} engines: {node: '>=10'} hasBin: true - peerDependencies: - acorn: ^8.5.0 peerDependenciesMeta: acorn: optional: true @@ -12159,7 +12155,7 @@ packages: resolution: {integrity: sha512-XrHUvV5HpdLmIj4uVMxHggLbFSZYIn7HEWsqePZcI50pco+MPqJ50wMGY794X7AOOhxOBAjbkqfAbEe/QMp2Lw==} dev: true - /ts-node/10.8.1_y2ippukchihtaxubiro7c5yd6u: + /ts-node/10.8.1_56d8fb94ac0576e9b6a19ff5f6eac402: resolution: {integrity: sha512-Wwsnao4DQoJsN034wePSg5nZiw4YKXf56mPIAeD6wVmiv+RytNSWqc2f3fKvcUoV+Yn2+yocD71VOfQHbmVX4g==} hasBin: true peerDependencies: @@ -12178,7 +12174,7 @@ packages: '@tsconfig/node12': 1.0.9 '@tsconfig/node14': 1.0.1 '@tsconfig/node16': 1.0.2 - '@types/node': 16.11.60 + '@types/node': 16.11.62 acorn: 8.8.0 acorn-walk: 8.2.0 arg: 4.1.3 @@ -12557,21 +12553,20 @@ packages: extsprintf: 1.3.0 dev: true - /vite-plugin-pwa/0.13.1_6b7mpudv5jppcry7og3bu4wyku: + /vite-plugin-pwa/0.13.1_vite@3.1.3: resolution: {integrity: sha512-NR3dIa+o2hzlzo4lF4Gu0cYvoMjSw2DdRc6Epw1yjmCqWaGuN86WK9JqZie4arNlE1ZuWT3CLiMdiX5wcmmUmg==} peerDependencies: vite: ^3.1.0 - workbox-build: ^6.5.4 - workbox-window: ^6.5.4 dependencies: debug: 4.3.4 fast-glob: 3.2.11 pretty-bytes: 6.0.0 rollup: 2.79.1 vite: 3.1.3_sass@1.55.0+terser@5.10.0 - workbox-build: 6.5.4_acorn@8.8.0 + workbox-build: 6.5.4 workbox-window: 6.5.4 transitivePeerDependencies: + - '@types/babel__core' - supports-color dev: true @@ -12606,12 +12601,12 @@ packages: resolve: 1.22.1 rollup: 2.78.0 sass: 1.55.0 - terser: 5.10.0_acorn@8.8.0 + terser: 5.10.0 optionalDependencies: fsevents: 2.3.2 dev: true - /vitest/0.23.4_3xefwc32pczm7lqclshbnn7wau: + /vitest/0.23.4_ddc85b0b7a78b2cfae025c8e16b7f605: resolution: {integrity: sha512-iukBNWqQAv8EKDBUNntspLp9SfpaVFbmzmM0sNcnTxASQZMzRw3PsM6DMlsHiI+I6GeO5/sYDg3ecpC+SNFLrQ==} engines: {node: '>=v14.16.0'} hasBin: true @@ -12934,7 +12929,7 @@ packages: workbox-core: 6.5.4 dev: true - /workbox-build/6.5.4_acorn@8.8.0: + /workbox-build/6.5.4: resolution: {integrity: sha512-kgRevLXEYvUW9WS4XoziYqZ8Q9j/2ziJYEtTrjdz5/L/cTUa2XfyMP2i7c3p34lgqJ03+mTiz13SdFef2POwbA==} engines: {node: '>=10.0.0'} dependencies: @@ -12942,7 +12937,7 @@ packages: '@babel/core': 7.17.2 '@babel/preset-env': 7.16.11_@babel+core@7.17.2 '@babel/runtime': 7.17.2 - '@rollup/plugin-babel': 5.3.0_pf2mys4p2khuj2gysypj3zzjia + '@rollup/plugin-babel': 5.3.0_@babel+core@7.17.2+rollup@2.79.1 '@rollup/plugin-node-resolve': 11.2.1_rollup@2.79.1 '@rollup/plugin-replace': 2.4.2_rollup@2.79.1 '@surma/rollup-plugin-off-main-thread': 2.2.3 @@ -12954,7 +12949,7 @@ packages: lodash: 4.17.21 pretty-bytes: 5.6.0 rollup: 2.79.1 - rollup-plugin-terser: 7.0.2_acorn@8.8.0+rollup@2.79.1 + rollup-plugin-terser: 7.0.2_rollup@2.79.1 source-map: 0.8.0-beta.0 stringify-object: 3.3.0 strip-comments: 2.0.1 @@ -12977,7 +12972,6 @@ packages: workbox-window: 6.5.4 transitivePeerDependencies: - '@types/babel__core' - - acorn - supports-color dev: true @@ -12987,7 +12981,7 @@ packages: workbox-core: 6.5.4 dev: true - /workbox-cli/6.5.4_acorn@8.8.0: + /workbox-cli/6.5.4: resolution: {integrity: sha512-+Cc0jYh25MofhCROZqfQkpYSAGvykyrUVekuuPaLFbJ8qxX/zzX8hRRpglfwxDwokAjz8S20oEph4s+MyQc+Yw==} engines: {node: '>=10.0.0'} hasBin: true @@ -13004,10 +12998,9 @@ packages: stringify-object: 3.3.0 upath: 1.2.0 update-notifier: 4.1.3 - workbox-build: 6.5.4_acorn@8.8.0 + workbox-build: 6.5.4 transitivePeerDependencies: - '@types/babel__core' - - acorn - supports-color dev: true From c342756efdc3d67fec45e396f80a4263ab898a99 Mon Sep 17 00:00:00 2001 From: renovate Date: Tue, 27 Sep 2022 20:03:08 +0000 Subject: [PATCH 08/16] chore(deps): update dependency typescript to v4.8.4 --- package.json | 2 +- pnpm-lock.yaml | 98 +++++++++++++++++++++++++------------------------- 2 files changed, 50 insertions(+), 50 deletions(-) diff --git a/package.json b/package.json index c84deb15..e124538b 100644 --- a/package.json +++ b/package.json @@ -93,7 +93,7 @@ "rollup": "2.79.1", "rollup-plugin-visualizer": "5.8.2", "sass": "1.55.0", - "typescript": "4.8.3", + "typescript": "4.8.4", "vite": "3.1.3", "vite-plugin-pwa": "0.13.1", "vite-svg-loader": "3.6.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 97951ee9..657188e0 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -63,7 +63,7 @@ specifiers: sass: 1.55.0 snake-case: 3.0.4 sortablejs: 1.15.0 - typescript: 4.8.3 + typescript: 4.8.4 ufo: 0.8.5 v-tooltip: 4.0.0-beta.17 vite: 3.1.3 @@ -113,7 +113,7 @@ dependencies: lodash.debounce: 4.0.8 marked: 4.1.0 minimist: 1.2.6 - pinia: 2.0.22_typescript@4.8.3+vue@3.2.39 + pinia: 2.0.22_typescript@4.8.4+vue@3.2.39 register-service-worker: 1.7.2 snake-case: 3.0.4 sortablejs: 1.15.0 @@ -137,11 +137,11 @@ devDependencies: '@types/dompurify': 2.3.4 '@types/flexsearch': 0.7.3 '@types/node': 16.11.62 - '@typescript-eslint/eslint-plugin': 5.38.1_80279ca3558653036a70efdb2cc6a22a - '@typescript-eslint/parser': 5.38.1_eslint@8.24.0+typescript@4.8.3 + '@typescript-eslint/eslint-plugin': 5.38.1_17e047bdec5ec7c01e9d134b6813cb9c + '@typescript-eslint/parser': 5.38.1_eslint@8.24.0+typescript@4.8.4 '@vitejs/plugin-legacy': 2.2.0_terser@5.10.0+vite@3.1.3 '@vitejs/plugin-vue': 3.1.0_vite@3.1.3+vue@3.2.39 - '@vue/eslint-config-typescript': 11.0.2_6e223a7e95cc78e4e686f47e5f89e21c + '@vue/eslint-config-typescript': 11.0.2_b985cba226e1126d4cc23df4d3ba9cd4 '@vue/test-utils': 2.0.2_vue@3.2.39 '@vue/tsconfig': 0.1.3_@types+node@16.11.62 autoprefixer: 10.4.12_postcss@8.4.16 @@ -159,12 +159,12 @@ devDependencies: rollup: 2.79.1 rollup-plugin-visualizer: 5.8.2_rollup@2.79.1 sass: 1.55.0 - typescript: 4.8.3 + typescript: 4.8.4 vite: 3.1.3_sass@1.55.0+terser@5.10.0 vite-plugin-pwa: 0.13.1_vite@3.1.3 vite-svg-loader: 3.6.0 vitest: 0.23.4_ddc85b0b7a78b2cfae025c8e16b7f605 - vue-tsc: 0.40.13_typescript@4.8.3 + vue-tsc: 0.40.13_typescript@4.8.4 wait-on: 6.0.1 workbox-cli: 6.5.4 @@ -1919,8 +1919,8 @@ packages: strip-ansi: 7.0.1 supports-color: 9.2.1 tmp-promise: 3.0.3 - ts-node: 10.8.1_56d8fb94ac0576e9b6a19ff5f6eac402 - typescript: 4.8.3 + ts-node: 10.8.1_8274f11304fdf7eb271c33cd723ceaff + typescript: 4.8.4 update-notifier: 5.1.0 uuid: 8.3.2 yargs: 17.5.1 @@ -3106,7 +3106,7 @@ packages: dev: true optional: true - /@typescript-eslint/eslint-plugin/5.38.1_80279ca3558653036a70efdb2cc6a22a: + /@typescript-eslint/eslint-plugin/5.38.1_17e047bdec5ec7c01e9d134b6813cb9c: resolution: {integrity: sha512-ky7EFzPhqz3XlhS7vPOoMDaQnQMn+9o5ICR9CPr/6bw8HrFkzhMSxuA3gRfiJVvs7geYrSeawGJjZoZQKCOglQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -3117,22 +3117,22 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/parser': 5.38.1_eslint@8.24.0+typescript@4.8.3 + '@typescript-eslint/parser': 5.38.1_eslint@8.24.0+typescript@4.8.4 '@typescript-eslint/scope-manager': 5.38.1 - '@typescript-eslint/type-utils': 5.38.1_eslint@8.24.0+typescript@4.8.3 - '@typescript-eslint/utils': 5.38.1_eslint@8.24.0+typescript@4.8.3 + '@typescript-eslint/type-utils': 5.38.1_eslint@8.24.0+typescript@4.8.4 + '@typescript-eslint/utils': 5.38.1_eslint@8.24.0+typescript@4.8.4 debug: 4.3.4 eslint: 8.24.0 ignore: 5.2.0 regexpp: 3.2.0 semver: 7.3.7 - tsutils: 3.21.0_typescript@4.8.3 - typescript: 4.8.3 + tsutils: 3.21.0_typescript@4.8.4 + typescript: 4.8.4 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/parser/5.38.1_eslint@8.24.0+typescript@4.8.3: + /@typescript-eslint/parser/5.38.1_eslint@8.24.0+typescript@4.8.4: resolution: {integrity: sha512-LDqxZBVFFQnQRz9rUZJhLmox+Ep5kdUmLatLQnCRR6523YV+XhRjfYzStQ4MheFA8kMAfUlclHSbu+RKdRwQKw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -3144,10 +3144,10 @@ packages: dependencies: '@typescript-eslint/scope-manager': 5.38.1 '@typescript-eslint/types': 5.38.1 - '@typescript-eslint/typescript-estree': 5.38.1_typescript@4.8.3 + '@typescript-eslint/typescript-estree': 5.38.1_typescript@4.8.4 debug: 4.3.4 eslint: 8.24.0 - typescript: 4.8.3 + typescript: 4.8.4 transitivePeerDependencies: - supports-color dev: true @@ -3160,7 +3160,7 @@ packages: '@typescript-eslint/visitor-keys': 5.38.1 dev: true - /@typescript-eslint/type-utils/5.38.1_eslint@8.24.0+typescript@4.8.3: + /@typescript-eslint/type-utils/5.38.1_eslint@8.24.0+typescript@4.8.4: resolution: {integrity: sha512-UU3j43TM66gYtzo15ivK2ZFoDFKKP0k03MItzLdq0zV92CeGCXRfXlfQX5ILdd4/DSpHkSjIgLLLh1NtkOJOAw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -3170,12 +3170,12 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/typescript-estree': 5.38.1_typescript@4.8.3 - '@typescript-eslint/utils': 5.38.1_eslint@8.24.0+typescript@4.8.3 + '@typescript-eslint/typescript-estree': 5.38.1_typescript@4.8.4 + '@typescript-eslint/utils': 5.38.1_eslint@8.24.0+typescript@4.8.4 debug: 4.3.4 eslint: 8.24.0 - tsutils: 3.21.0_typescript@4.8.3 - typescript: 4.8.3 + tsutils: 3.21.0_typescript@4.8.4 + typescript: 4.8.4 transitivePeerDependencies: - supports-color dev: true @@ -3185,7 +3185,7 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /@typescript-eslint/typescript-estree/5.38.1_dea96fc3eb2060f02b842cabef70e41e: + /@typescript-eslint/typescript-estree/5.38.1_f1deb5be19df0fe0ff039530117daddf: resolution: {integrity: sha512-99b5e/Enoe8fKMLdSuwrfH/C0EIbpUWmeEKHmQlGZb8msY33qn1KlkFww0z26o5Omx7EVjzVDCWEfrfCDHfE7g==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -3200,13 +3200,13 @@ packages: globby: 11.1.0 is-glob: 4.0.3 semver: 7.3.7 - tsutils: 3.21.0_typescript@4.8.3 - typescript: 4.8.3 + tsutils: 3.21.0_typescript@4.8.4 + typescript: 4.8.4 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/typescript-estree/5.38.1_typescript@4.8.3: + /@typescript-eslint/typescript-estree/5.38.1_typescript@4.8.4: resolution: {integrity: sha512-99b5e/Enoe8fKMLdSuwrfH/C0EIbpUWmeEKHmQlGZb8msY33qn1KlkFww0z26o5Omx7EVjzVDCWEfrfCDHfE7g==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -3221,13 +3221,13 @@ packages: globby: 11.1.0 is-glob: 4.0.3 semver: 7.3.7 - tsutils: 3.21.0_typescript@4.8.3 - typescript: 4.8.3 + tsutils: 3.21.0_typescript@4.8.4 + typescript: 4.8.4 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/utils/5.38.1_eslint@8.24.0+typescript@4.8.3: + /@typescript-eslint/utils/5.38.1_eslint@8.24.0+typescript@4.8.4: resolution: {integrity: sha512-oIuUiVxPBsndrN81oP8tXnFa/+EcZ03qLqPDfSZ5xIJVm7A9V0rlkQwwBOAGtrdN70ZKDlKv+l1BeT4eSFxwXA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -3236,7 +3236,7 @@ packages: '@types/json-schema': 7.0.9 '@typescript-eslint/scope-manager': 5.38.1 '@typescript-eslint/types': 5.38.1 - '@typescript-eslint/typescript-estree': 5.38.1_typescript@4.8.3 + '@typescript-eslint/typescript-estree': 5.38.1_typescript@4.8.4 eslint: 8.24.0 eslint-scope: 5.1.1 eslint-utils: 3.0.0_eslint@8.24.0 @@ -3438,7 +3438,7 @@ packages: resolution: {integrity: sha512-OEgAMeQXvCoJ+1x8WyQuVZzFo0wcyCmUR3baRVLmKBo1LmYZWMlRiXlux5jd0fqVJu6PfDbOrZItVqUEzLobeQ==} dev: false - /@vue/eslint-config-typescript/11.0.2_6e223a7e95cc78e4e686f47e5f89e21c: + /@vue/eslint-config-typescript/11.0.2_b985cba226e1126d4cc23df4d3ba9cd4: resolution: {integrity: sha512-EiKud1NqlWmSapBFkeSrE994qpKx7/27uCGnhdqzllYDpQZroyX/O6bwjEpeuyKamvLbsGdO6PMR2faIf+zFnw==} engines: {node: ^14.17.0 || >=16.0.0} peerDependencies: @@ -3449,11 +3449,11 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/eslint-plugin': 5.38.1_80279ca3558653036a70efdb2cc6a22a - '@typescript-eslint/parser': 5.38.1_eslint@8.24.0+typescript@4.8.3 + '@typescript-eslint/eslint-plugin': 5.38.1_17e047bdec5ec7c01e9d134b6813cb9c + '@typescript-eslint/parser': 5.38.1_eslint@8.24.0+typescript@4.8.4 eslint: 8.24.0 eslint-plugin-vue: 9.5.1_eslint@8.24.0 - typescript: 4.8.3 + typescript: 4.8.4 vue-eslint-parser: 9.0.3_eslint@8.24.0 transitivePeerDependencies: - supports-color @@ -5566,10 +5566,10 @@ packages: resolution: {integrity: sha512-lR78AugfUSBojwlSRZBeEqQ1l8LI7rbxOl1qTUnGLcjZQDjZmrZCb7R46rK8U8B5WzFvJrxa7fEBA8FoD/n5fA==} engines: {node: ^12.20.0 || ^14.14.0 || >=16.0.0} dependencies: - '@typescript-eslint/typescript-estree': 5.38.1_typescript@4.8.3 + '@typescript-eslint/typescript-estree': 5.38.1_typescript@4.8.4 ast-module-types: 3.0.0 node-source-walk: 5.0.0 - typescript: 4.8.3 + typescript: 4.8.4 transitivePeerDependencies: - supports-color dev: true @@ -5578,10 +5578,10 @@ packages: resolution: {integrity: sha512-lR78AugfUSBojwlSRZBeEqQ1l8LI7rbxOl1qTUnGLcjZQDjZmrZCb7R46rK8U8B5WzFvJrxa7fEBA8FoD/n5fA==} engines: {node: ^12.20.0 || ^14.14.0 || >=16.0.0} dependencies: - '@typescript-eslint/typescript-estree': 5.38.1_dea96fc3eb2060f02b842cabef70e41e + '@typescript-eslint/typescript-estree': 5.38.1_f1deb5be19df0fe0ff039530117daddf ast-module-types: 3.0.0 node-source-walk: 5.0.0 - typescript: 4.8.3 + typescript: 4.8.4 transitivePeerDependencies: - supports-color dev: true @@ -10096,7 +10096,7 @@ packages: engines: {node: '>=6'} dev: true - /pinia/2.0.22_typescript@4.8.3+vue@3.2.39: + /pinia/2.0.22_typescript@4.8.4+vue@3.2.39: resolution: {integrity: sha512-u+b8/BC+tmvo3ACbYO2w5NfxHWFOjvvw9DQnyT0dW8aUMCPRQT5QnfZ5R5W2MzZBMTeZRMQI7V/QFbafmM9QHw==} peerDependencies: '@vue/composition-api': ^1.4.0 @@ -10109,7 +10109,7 @@ packages: optional: true dependencies: '@vue/devtools-api': 6.2.1 - typescript: 4.8.3 + typescript: 4.8.4 vue: 3.2.39 vue-demi: 0.12.1_vue@3.2.39 dev: false @@ -12155,7 +12155,7 @@ packages: resolution: {integrity: sha512-XrHUvV5HpdLmIj4uVMxHggLbFSZYIn7HEWsqePZcI50pco+MPqJ50wMGY794X7AOOhxOBAjbkqfAbEe/QMp2Lw==} dev: true - /ts-node/10.8.1_56d8fb94ac0576e9b6a19ff5f6eac402: + /ts-node/10.8.1_8274f11304fdf7eb271c33cd723ceaff: resolution: {integrity: sha512-Wwsnao4DQoJsN034wePSg5nZiw4YKXf56mPIAeD6wVmiv+RytNSWqc2f3fKvcUoV+Yn2+yocD71VOfQHbmVX4g==} hasBin: true peerDependencies: @@ -12181,7 +12181,7 @@ packages: create-require: 1.1.1 diff: 4.0.2 make-error: 1.3.6 - typescript: 4.8.3 + typescript: 4.8.4 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 dev: true @@ -12192,14 +12192,14 @@ packages: /tslib/2.3.1: resolution: {integrity: sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==} - /tsutils/3.21.0_typescript@4.8.3: + /tsutils/3.21.0_typescript@4.8.4: resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} engines: {node: '>= 6'} peerDependencies: typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' dependencies: tslib: 1.14.1 - typescript: 4.8.3 + typescript: 4.8.4 dev: true /tunnel-agent/0.6.0: @@ -12294,8 +12294,8 @@ packages: resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==} dev: true - /typescript/4.8.3: - resolution: {integrity: sha512-goMHfm00nWPa8UvR/CPSvykqf6dVV8x/dp0c5mFTMTIu0u0FlGWRioyy7Nn0PGAdHxpJZnuO/ut+PpQ8UiHAig==} + /typescript/4.8.4: + resolution: {integrity: sha512-QCh+85mCy+h0IGff8r5XWzOVSbBO+KfeYrMQh7NJ58QujwcE22u+NUSmUxqF+un70P9GXKxa2HCNiTTMJknyjQ==} engines: {node: '>=4.2.0'} hasBin: true @@ -12737,7 +12737,7 @@ packages: vue: 3.2.39 dev: false - /vue-tsc/0.40.13_typescript@4.8.3: + /vue-tsc/0.40.13_typescript@4.8.4: resolution: {integrity: sha512-xzuN3g5PnKfJcNrLv4+mAjteMd5wLm5fRhW0034OfNJZY4WhB07vhngea/XeGn7wNYt16r7syonzvW/54dcNiA==} hasBin: true peerDependencies: @@ -12745,7 +12745,7 @@ packages: dependencies: '@volar/vue-language-core': 0.40.13 '@volar/vue-typescript': 0.40.13 - typescript: 4.8.3 + typescript: 4.8.4 dev: true /vue/3.2.39: From 2cd442780d00909260c6b4f0ce0741b50a80a177 Mon Sep 17 00:00:00 2001 From: renovate Date: Wed, 28 Sep 2022 04:03:18 +0000 Subject: [PATCH 09/16] fix(deps): update dependency vue to v3.2.40 --- package.json | 2 +- pnpm-lock.yaml | 228 ++++++++++++++++++++++++------------------------- 2 files changed, 115 insertions(+), 115 deletions(-) diff --git a/package.json b/package.json index e124538b..a258931c 100644 --- a/package.json +++ b/package.json @@ -53,7 +53,7 @@ "sortablejs": "1.15.0", "ufo": "0.8.5", "v-tooltip": "4.0.0-beta.17", - "vue": "3.2.39", + "vue": "3.2.40", "vue-advanced-cropper": "2.8.3", "vue-drag-resize": "2.0.3", "vue-flatpickr-component": "9.0.6", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 657188e0..a8a0e878 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -70,7 +70,7 @@ specifiers: vite-plugin-pwa: 0.13.1 vite-svg-loader: 3.6.0 vitest: 0.23.4 - vue: 3.2.39 + vue: 3.2.40 vue-advanced-cropper: 2.8.3 vue-drag-resize: 2.0.3 vue-flatpickr-component: 9.0.6 @@ -87,16 +87,16 @@ dependencies: '@fortawesome/fontawesome-svg-core': 6.2.0 '@fortawesome/free-regular-svg-icons': 6.2.0 '@fortawesome/free-solid-svg-icons': 6.2.0 - '@fortawesome/vue-fontawesome': 3.0.1_e1fd52f1eac82276a69e2e58efb0a751 + '@fortawesome/vue-fontawesome': 3.0.1_21e6b971ab1cbc4f6c07645df616013e '@github/hotkey': 2.0.1 - '@kyvg/vue3-notification': 2.4.1_vue@3.2.39 + '@kyvg/vue3-notification': 2.4.1_vue@3.2.40 '@sentry/tracing': 7.13.0 - '@sentry/vue': 7.13.0_vue@3.2.39 + '@sentry/vue': 7.13.0_vue@3.2.40 '@types/is-touch-device': 1.0.0 '@types/lodash.clonedeep': 4.5.7 '@types/sortablejs': 1.15.0 - '@vueuse/core': 9.3.0_vue@3.2.39 - '@vueuse/router': 9.3.0_vue-router@4.1.5+vue@3.2.39 + '@vueuse/core': 9.3.0_vue@3.2.40 + '@vueuse/router': 9.3.0_vue-router@4.1.5+vue@3.2.40 axios: 0.27.2 blurhash: 2.0.1 bulma-css-variables: 0.9.33 @@ -113,26 +113,26 @@ dependencies: lodash.debounce: 4.0.8 marked: 4.1.0 minimist: 1.2.6 - pinia: 2.0.22_typescript@4.8.4+vue@3.2.39 + pinia: 2.0.22_typescript@4.8.4+vue@3.2.40 register-service-worker: 1.7.2 snake-case: 3.0.4 sortablejs: 1.15.0 ufo: 0.8.5 - v-tooltip: 4.0.0-beta.17_vue@3.2.39 - vue: 3.2.39 - vue-advanced-cropper: 2.8.3_vue@3.2.39 + v-tooltip: 4.0.0-beta.17_vue@3.2.40 + vue: 3.2.40 + vue-advanced-cropper: 2.8.3_vue@3.2.40 vue-drag-resize: 2.0.3 - vue-flatpickr-component: 9.0.6_vue@3.2.39 - vue-i18n: 9.2.2_vue@3.2.39 - vue-router: 4.1.5_vue@3.2.39 - vuex: 4.0.2_vue@3.2.39 + vue-flatpickr-component: 9.0.6_vue@3.2.40 + vue-i18n: 9.2.2_vue@3.2.40 + vue-router: 4.1.5_vue@3.2.40 + vuex: 4.0.2_vue@3.2.40 workbox-precaching: 6.5.4 - zhyswan-vuedraggable: 4.1.3_vue@3.2.39 + zhyswan-vuedraggable: 4.1.3_vue@3.2.40 devDependencies: '@4tw/cypress-drag-drop': 2.2.1_cypress@10.9.0 '@cypress/vite-dev-server': 3.1.1 - '@cypress/vue': 4.2.0_cypress@10.9.0+vue@3.2.39 + '@cypress/vue': 4.2.0_cypress@10.9.0+vue@3.2.40 '@faker-js/faker': 7.5.0 '@types/dompurify': 2.3.4 '@types/flexsearch': 0.7.3 @@ -140,9 +140,9 @@ devDependencies: '@typescript-eslint/eslint-plugin': 5.38.1_17e047bdec5ec7c01e9d134b6813cb9c '@typescript-eslint/parser': 5.38.1_eslint@8.24.0+typescript@4.8.4 '@vitejs/plugin-legacy': 2.2.0_terser@5.10.0+vite@3.1.3 - '@vitejs/plugin-vue': 3.1.0_vite@3.1.3+vue@3.2.39 + '@vitejs/plugin-vue': 3.1.0_vite@3.1.3+vue@3.2.40 '@vue/eslint-config-typescript': 11.0.2_b985cba226e1126d4cc23df4d3ba9cd4 - '@vue/test-utils': 2.0.2_vue@3.2.39 + '@vue/test-utils': 2.0.2_vue@3.2.40 '@vue/tsconfig': 0.1.3_@types+node@16.11.62 autoprefixer: 10.4.12_postcss@8.4.16 browserslist: 4.21.4 @@ -1579,7 +1579,7 @@ packages: - supports-color dev: true - /@cypress/vue/4.2.0_cypress@10.9.0+vue@3.2.39: + /@cypress/vue/4.2.0_cypress@10.9.0+vue@3.2.40: resolution: {integrity: sha512-a+5TCBMwng+UUcFSWxzdJ+Wsvtu+XltUKBQCvidysVvPkPF/c/Z+Geyl+sX7tasKT8KIOW9pI90PIwxzQvQh7A==} engines: {node: '>=8'} peerDependencies: @@ -1591,7 +1591,7 @@ packages: optional: true dependencies: cypress: 10.9.0 - vue: 3.2.39 + vue: 3.2.40 dev: true /@cypress/xvfb/1.2.4_supports-color@8.1.1: @@ -1681,14 +1681,14 @@ packages: '@fortawesome/fontawesome-common-types': 6.2.0 dev: false - /@fortawesome/vue-fontawesome/3.0.1_e1fd52f1eac82276a69e2e58efb0a751: + /@fortawesome/vue-fontawesome/3.0.1_21e6b971ab1cbc4f6c07645df616013e: resolution: {integrity: sha512-CdXZJoCS+aEPec26ZP7hWWU3SaJlQPZSCGdgpQ2qGl2HUmtUUNrI3zC4XWdn1JUmh3t5OuDeRG1qB4eGRNSD4A==} peerDependencies: '@fortawesome/fontawesome-svg-core': ~1 || ~6 vue: '>= 3.0.0 < 4' dependencies: '@fortawesome/fontawesome-svg-core': 6.2.0 - vue: 3.2.39 + vue: 3.2.40 dev: false /@github/hotkey/2.0.1: @@ -1808,12 +1808,12 @@ packages: '@jridgewell/sourcemap-codec': 1.4.11 dev: true - /@kyvg/vue3-notification/2.4.1_vue@3.2.39: + /@kyvg/vue3-notification/2.4.1_vue@3.2.40: resolution: {integrity: sha512-SYwnGsTTKJ2TwFQ60hgYHEvuhkLscrnqSGPvdFRRiOwUb1sULJAPl5s+h+EEjan24kbizBtsxLTPC1D1qLs1EA==} peerDependencies: vue: ^3.0.0 dependencies: - vue: 3.2.39 + vue: 3.2.40 dev: false /@mapbox/node-pre-gyp/1.0.8: @@ -2731,7 +2731,7 @@ packages: tslib: 1.14.1 dev: false - /@sentry/vue/7.13.0_vue@3.2.39: + /@sentry/vue/7.13.0_vue@3.2.40: resolution: {integrity: sha512-+OP0h4hE8Gz8xwN3rcHrbQpqhNQGQJoM8f7cOPw7TU7TCXj4apMsR4o5xPVlvSZl3TG0J9SBUPrZdd0Va9gptw==} engines: {node: '>=8'} peerDependencies: @@ -2742,7 +2742,7 @@ packages: '@sentry/types': 7.13.0 '@sentry/utils': 7.13.0 tslib: 1.14.1 - vue: 3.2.39 + vue: 3.2.40 dev: false /@sideway/address/4.1.3: @@ -3309,7 +3309,7 @@ packages: vite: 3.1.3_sass@1.55.0+terser@5.10.0 dev: true - /@vitejs/plugin-vue/3.1.0_vite@3.1.3+vue@3.2.39: + /@vitejs/plugin-vue/3.1.0_vite@3.1.3+vue@3.2.40: resolution: {integrity: sha512-fmxtHPjSOEIRg6vHYDaem+97iwCUg/uSIaTzp98lhELt2ISOQuDo2hbkBdXod0g15IhfPMQmAxh4heUks2zvDA==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: @@ -3317,7 +3317,7 @@ packages: vue: ^3.2.25 dependencies: vite: 3.1.3_sass@1.55.0+terser@5.10.0 - vue: 3.2.39 + vue: 3.2.40 dev: true /@volar/code-gen/0.40.13: @@ -3343,11 +3343,11 @@ packages: dependencies: '@volar/code-gen': 0.40.13 '@volar/source-map': 0.40.13 - '@vue/compiler-core': 3.2.39 - '@vue/compiler-dom': 3.2.39 - '@vue/compiler-sfc': 3.2.39 - '@vue/reactivity': 3.2.39 - '@vue/shared': 3.2.39 + '@vue/compiler-core': 3.2.40 + '@vue/compiler-dom': 3.2.40 + '@vue/compiler-sfc': 3.2.40 + '@vue/reactivity': 3.2.40 + '@vue/shared': 3.2.40 dev: true /@volar/vue-typescript/0.40.13: @@ -3367,11 +3367,11 @@ packages: source-map: 0.6.1 dev: true - /@vue/compiler-core/3.2.39: - resolution: {integrity: sha512-mf/36OWXqWn0wsC40nwRRGheR/qoID+lZXbIuLnr4/AngM0ov8Xvv8GHunC0rKRIkh60bTqydlqTeBo49rlbqw==} + /@vue/compiler-core/3.2.40: + resolution: {integrity: sha512-2Dc3Stk0J/VyQ4OUr2yEC53kU28614lZS+bnrCbFSAIftBJ40g/2yQzf4mPBiFuqguMB7hyHaujdgZAQ67kZYA==} dependencies: '@babel/parser': 7.17.0 - '@vue/shared': 3.2.39 + '@vue/shared': 3.2.40 estree-walker: 2.0.2 source-map: 0.6.1 @@ -3382,11 +3382,11 @@ packages: '@vue/shared': 3.2.37 dev: true - /@vue/compiler-dom/3.2.39: - resolution: {integrity: sha512-HMFI25Be1C8vLEEv1hgEO1dWwG9QQ8LTTPmCkblVJY/O3OvWx6r1+zsox5mKPMGvqYEZa6l8j+xgOfUspgo7hw==} + /@vue/compiler-dom/3.2.40: + resolution: {integrity: sha512-OZCNyYVC2LQJy4H7h0o28rtk+4v+HMQygRTpmibGoG9wZyomQiS5otU7qo3Wlq5UfHDw2RFwxb9BJgKjVpjrQw==} dependencies: - '@vue/compiler-core': 3.2.39 - '@vue/shared': 3.2.39 + '@vue/compiler-core': 3.2.40 + '@vue/shared': 3.2.40 /@vue/compiler-sfc/3.2.37: resolution: {integrity: sha512-+7i/2+9LYlpqDv+KTtWhOZH+pa8/HnX/905MdVmAcI/mPQOBwkHHIzrsEsucyOIZQYMkXUiTkmZq5am/NyXKkg==} @@ -3403,15 +3403,15 @@ packages: source-map: 0.6.1 dev: true - /@vue/compiler-sfc/3.2.39: - resolution: {integrity: sha512-fqAQgFs1/BxTUZkd0Vakn3teKUt//J3c420BgnYgEOoVdTwYpBTSXCMJ88GOBCylmUBbtquGPli9tVs7LzsWIA==} + /@vue/compiler-sfc/3.2.40: + resolution: {integrity: sha512-tzqwniIN1fu1PDHC3CpqY/dPCfN/RN1thpBC+g69kJcrl7mbGiHKNwbA6kJ3XKKy8R6JLKqcpVugqN4HkeBFFg==} dependencies: '@babel/parser': 7.17.0 - '@vue/compiler-core': 3.2.39 - '@vue/compiler-dom': 3.2.39 - '@vue/compiler-ssr': 3.2.39 - '@vue/reactivity-transform': 3.2.39 - '@vue/shared': 3.2.39 + '@vue/compiler-core': 3.2.40 + '@vue/compiler-dom': 3.2.40 + '@vue/compiler-ssr': 3.2.40 + '@vue/reactivity-transform': 3.2.40 + '@vue/shared': 3.2.40 estree-walker: 2.0.2 magic-string: 0.25.7 postcss: 8.4.16 @@ -3424,11 +3424,11 @@ packages: '@vue/shared': 3.2.37 dev: true - /@vue/compiler-ssr/3.2.39: - resolution: {integrity: sha512-EoGCJ6lincKOZGW+0Ky4WOKsSmqL7hp1ZYgen8M7u/mlvvEQUaO9tKKOy7K43M9U2aA3tPv0TuYYQFrEbK2eFQ==} + /@vue/compiler-ssr/3.2.40: + resolution: {integrity: sha512-80cQcgasKjrPPuKcxwuCx7feq+wC6oFl5YaKSee9pV3DNq+6fmCVwEEC3vvkf/E2aI76rIJSOYHsWSEIxK74oQ==} dependencies: - '@vue/compiler-dom': 3.2.39 - '@vue/shared': 3.2.39 + '@vue/compiler-dom': 3.2.40 + '@vue/shared': 3.2.40 /@vue/devtools-api/6.0.9: resolution: {integrity: sha512-O9tAMBMNMAMzgvbSS3OZlTpfgKCGjvjo5LTjWNtQ/M6A/SKWghJfvoMKuQL/vykLb6rjB/AkaQVFg9yDHprN6w==} @@ -3469,12 +3469,12 @@ packages: magic-string: 0.25.7 dev: true - /@vue/reactivity-transform/3.2.39: - resolution: {integrity: sha512-HGuWu864zStiWs9wBC6JYOP1E00UjMdDWIG5W+FpUx28hV3uz9ODOKVNm/vdOy/Pvzg8+OcANxAVC85WFBbl3A==} + /@vue/reactivity-transform/3.2.40: + resolution: {integrity: sha512-HQUCVwEaacq6fGEsg2NUuGKIhUveMCjOk8jGHqLXPI2w6zFoPrlQhwWEaINTv5kkZDXKEnCijAp+4gNEHG03yw==} dependencies: '@babel/parser': 7.17.0 - '@vue/compiler-core': 3.2.39 - '@vue/shared': 3.2.39 + '@vue/compiler-core': 3.2.40 + '@vue/shared': 3.2.40 estree-walker: 2.0.2 magic-string: 0.25.7 @@ -3484,32 +3484,32 @@ packages: '@vue/shared': 3.2.38 dev: true - /@vue/reactivity/3.2.39: - resolution: {integrity: sha512-vlaYX2a3qMhIZfrw3Mtfd+BuU+TZmvDrPMa+6lpfzS9k/LnGxkSuf0fhkP0rMGfiOHPtyKoU9OJJJFGm92beVQ==} + /@vue/reactivity/3.2.40: + resolution: {integrity: sha512-N9qgGLlZmtUBMHF9xDT4EkD9RdXde1Xbveb+niWMXuHVWQP5BzgRmE3SFyUBBcyayG4y1lhoz+lphGRRxxK4RA==} dependencies: - '@vue/shared': 3.2.39 + '@vue/shared': 3.2.40 - /@vue/runtime-core/3.2.39: - resolution: {integrity: sha512-xKH5XP57JW5JW+8ZG1khBbuLakINTgPuINKL01hStWLTTGFOrM49UfCFXBcFvWmSbci3gmJyLl2EAzCaZWsx8g==} + /@vue/runtime-core/3.2.40: + resolution: {integrity: sha512-U1+rWf0H8xK8aBUZhnrN97yoZfHbjgw/bGUzfgKPJl69/mXDuSg8CbdBYBn6VVQdR947vWneQBFzdhasyzMUKg==} dependencies: - '@vue/reactivity': 3.2.39 - '@vue/shared': 3.2.39 + '@vue/reactivity': 3.2.40 + '@vue/shared': 3.2.40 - /@vue/runtime-dom/3.2.39: - resolution: {integrity: sha512-4G9AEJP+sLhsqf5wXcyKVWQKUhI+iWfy0hWQgea+CpaTD7BR0KdQzvoQdZhwCY6B3oleSyNLkLAQwm0ya/wNoA==} + /@vue/runtime-dom/3.2.40: + resolution: {integrity: sha512-AO2HMQ+0s2+MCec8hXAhxMgWhFhOPJ/CyRXnmTJ6XIOnJFLrH5Iq3TNwvVcODGR295jy77I6dWPj+wvFoSYaww==} dependencies: - '@vue/runtime-core': 3.2.39 - '@vue/shared': 3.2.39 + '@vue/runtime-core': 3.2.40 + '@vue/shared': 3.2.40 csstype: 2.6.19 - /@vue/server-renderer/3.2.39_vue@3.2.39: - resolution: {integrity: sha512-1yn9u2YBQWIgytFMjz4f/t0j43awKytTGVptfd3FtBk76t1pd8mxbek0G/DrnjJhd2V7mSTb5qgnxMYt8Z5iSQ==} + /@vue/server-renderer/3.2.40_vue@3.2.40: + resolution: {integrity: sha512-gtUcpRwrXOJPJ4qyBpU3EyxQa4EkV8I4f8VrDePcGCPe4O/hd0BPS7v9OgjIQob6Ap8VDz9G+mGTKazE45/95w==} peerDependencies: - vue: 3.2.39 + vue: 3.2.40 dependencies: - '@vue/compiler-ssr': 3.2.39 - '@vue/shared': 3.2.39 - vue: 3.2.39 + '@vue/compiler-ssr': 3.2.40 + '@vue/shared': 3.2.40 + vue: 3.2.40 /@vue/shared/3.2.37: resolution: {integrity: sha512-4rSJemR2NQIo9Klm1vabqWjD8rs/ZaJSzMxkMNeJS6lHiUjjUeYFbooN19NgFjztubEKh3WlZUeOLVdbbUWHsw==} @@ -3519,15 +3519,15 @@ packages: resolution: {integrity: sha512-dTyhTIRmGXBjxJE+skC8tTWCGLCVc4wQgRRLt8+O9p5ewBAjoBwtCAkLPrtToSr1xltoe3st21Pv953aOZ7alg==} dev: true - /@vue/shared/3.2.39: - resolution: {integrity: sha512-D3dl2ZB9qE6mTuWPk9RlhDeP1dgNRUKC3NJxji74A4yL8M2MwlhLKUC/49WHjrNzSPug58fWx/yFbaTzGAQSBw==} + /@vue/shared/3.2.40: + resolution: {integrity: sha512-0PLQ6RUtZM0vO3teRfzGi4ltLUO5aO+kLgwh4Um3THSR03rpQWLTuRCkuO5A41ITzwdWeKdPHtSARuPkoo5pCQ==} - /@vue/test-utils/2.0.2_vue@3.2.39: + /@vue/test-utils/2.0.2_vue@3.2.40: resolution: {integrity: sha512-E2P4oXSaWDqTZNbmKZFVLrNN/siVN78YkEqs7pHryWerrlZR9bBFLWdJwRoguX45Ru6HxIflzKl4vQvwRMwm5g==} peerDependencies: vue: ^3.0.1 dependencies: - vue: 3.2.39 + vue: 3.2.40 dev: true /@vue/tsconfig/0.1.3_@types+node@16.11.62: @@ -3541,13 +3541,13 @@ packages: '@types/node': 16.11.62 dev: true - /@vueuse/core/9.3.0_vue@3.2.39: + /@vueuse/core/9.3.0_vue@3.2.40: resolution: {integrity: sha512-64Rna8IQDWpdrJxgitDg7yv1yTp41ZmvV8zlLEylK4QQLWAhz1OFGZDPZ8bU4lwcGgbEJ2sGi2jrdNh4LttUSQ==} dependencies: '@types/web-bluetooth': 0.0.15 '@vueuse/metadata': 9.3.0 - '@vueuse/shared': 9.3.0_vue@3.2.39 - vue-demi: 0.12.1_vue@3.2.39 + '@vueuse/shared': 9.3.0_vue@3.2.40 + vue-demi: 0.12.1_vue@3.2.40 transitivePeerDependencies: - '@vue/composition-api' - vue @@ -3557,23 +3557,23 @@ packages: resolution: {integrity: sha512-GnnfjbzIPJIh9ngL9s9oGU1+Hx/h5/KFqTfJykzh/1xjaHkedV9g0MASpdmPZIP+ynNhKAcEfA6g5i8KXwtoMA==} dev: false - /@vueuse/router/9.3.0_vue-router@4.1.5+vue@3.2.39: + /@vueuse/router/9.3.0_vue-router@4.1.5+vue@3.2.40: resolution: {integrity: sha512-UFN2MFciprH21oYsAgNHeDJ4Bd86HpRm9gximSN8j6h4fc2aa62fvfhprfHqdTxYAcgcGkMwcc9TO75jOvr8gg==} peerDependencies: vue-router: '>=4.0.0-rc.1' dependencies: - '@vueuse/shared': 9.3.0_vue@3.2.39 - vue-demi: 0.12.1_vue@3.2.39 - vue-router: 4.1.5_vue@3.2.39 + '@vueuse/shared': 9.3.0_vue@3.2.40 + vue-demi: 0.12.1_vue@3.2.40 + vue-router: 4.1.5_vue@3.2.40 transitivePeerDependencies: - '@vue/composition-api' - vue dev: false - /@vueuse/shared/9.3.0_vue@3.2.39: + /@vueuse/shared/9.3.0_vue@3.2.40: resolution: {integrity: sha512-caGUWLY0DpPC6l31KxeUy6vPVNA0yKxx81jFYLoMpyP6cF84FG5Dkf69DfSUqL57wX8JcUkJDMnQaQIZPWFEQQ==} dependencies: - vue-demi: 0.12.1_vue@3.2.39 + vue-demi: 0.12.1_vue@3.2.40 transitivePeerDependencies: - '@vue/composition-api' - vue @@ -10096,7 +10096,7 @@ packages: engines: {node: '>=6'} dev: true - /pinia/2.0.22_typescript@4.8.4+vue@3.2.39: + /pinia/2.0.22_typescript@4.8.4+vue@3.2.40: resolution: {integrity: sha512-u+b8/BC+tmvo3ACbYO2w5NfxHWFOjvvw9DQnyT0dW8aUMCPRQT5QnfZ5R5W2MzZBMTeZRMQI7V/QFbafmM9QHw==} peerDependencies: '@vue/composition-api': ^1.4.0 @@ -10110,8 +10110,8 @@ packages: dependencies: '@vue/devtools-api': 6.2.1 typescript: 4.8.4 - vue: 3.2.39 - vue-demi: 0.12.1_vue@3.2.39 + vue: 3.2.40 + vue-demi: 0.12.1_vue@3.2.40 dev: false /pinkie-promise/2.0.1: @@ -12511,14 +12511,14 @@ packages: hasBin: true dev: true - /v-tooltip/4.0.0-beta.17_vue@3.2.39: + /v-tooltip/4.0.0-beta.17_vue@3.2.40: resolution: {integrity: sha512-d7v/6KEXQOtcj3NT3Z1LpbDv8SBh8JgbsD+3s/zGIGCxiXC2SoVW6wGV4X0MlCo97PiosibcSe+VKbFiy4AKnQ==} peerDependencies: vue: ^3.0.11 dependencies: '@popperjs/core': 2.11.2 - vue: 3.2.39 - vue-resize: 2.0.0-alpha.1_vue@3.2.39 + vue: 3.2.40 + vue-resize: 2.0.0-alpha.1_vue@3.2.40 dev: false /v8-compile-cache-lib/3.0.1: @@ -12648,7 +12648,7 @@ packages: - terser dev: true - /vue-advanced-cropper/2.8.3_vue@3.2.39: + /vue-advanced-cropper/2.8.3_vue@3.2.40: resolution: {integrity: sha512-KyOm4sGMkaCMEfGCTWi3vuKZd4nhT+nWWUr9HfyA7Qvg3XYsfXWYeMeVT1mBBqlVGbYKMcPTGvdcBq1CXvFRWg==} engines: {node: '>=8', npm: '>=5'} peerDependencies: @@ -12657,10 +12657,10 @@ packages: classnames: 2.3.1 debounce: 1.2.1 easy-bem: 1.1.1 - vue: 3.2.39 + vue: 3.2.40 dev: false - /vue-demi/0.12.1_vue@3.2.39: + /vue-demi/0.12.1_vue@3.2.40: resolution: {integrity: sha512-QL3ny+wX8c6Xm1/EZylbgzdoDolye+VpCXRhI2hug9dJTP3OUJ3lmiKN3CsVV3mOJKwFi0nsstbgob0vG7aoIw==} engines: {node: '>=12'} hasBin: true @@ -12672,7 +12672,7 @@ packages: '@vue/composition-api': optional: true dependencies: - vue: 3.2.39 + vue: 3.2.40 dev: false /vue-drag-resize/2.0.3: @@ -12697,17 +12697,17 @@ packages: - supports-color dev: true - /vue-flatpickr-component/9.0.6_vue@3.2.39: + /vue-flatpickr-component/9.0.6_vue@3.2.40: resolution: {integrity: sha512-U3355po5WPejAagvDig+MA7v8NWr0+Dbx3a1pds19hx4i9CeXuBSpD7vl0fxKhk+Hfu3T+DN2aOR69HIwSJh1A==} engines: {node: '>=10.13.0'} peerDependencies: vue: ^3.0.0 dependencies: flatpickr: 4.6.13 - vue: 3.2.39 + vue: 3.2.40 dev: false - /vue-i18n/9.2.2_vue@3.2.39: + /vue-i18n/9.2.2_vue@3.2.40: resolution: {integrity: sha512-yswpwtj89rTBhegUAv9Mu37LNznyu3NpyLQmozF3i1hYOhwpG8RjcjIFIIfnu+2MDZJGSZPXaKWvnQA71Yv9TQ==} engines: {node: '>= 14'} peerDependencies: @@ -12717,24 +12717,24 @@ packages: '@intlify/shared': 9.2.2 '@intlify/vue-devtools': 9.2.2 '@vue/devtools-api': 6.2.1 - vue: 3.2.39 + vue: 3.2.40 dev: false - /vue-resize/2.0.0-alpha.1_vue@3.2.39: + /vue-resize/2.0.0-alpha.1_vue@3.2.40: resolution: {integrity: sha512-7+iqOueLU7uc9NrMfrzbG8hwMqchfVfSzpVlCMeJQe4pyibqyoifDNbKTZvwxZKDvGkB+PdFeKvnGZMoEb8esg==} peerDependencies: vue: ^3.0.0 dependencies: - vue: 3.2.39 + vue: 3.2.40 dev: false - /vue-router/4.1.5_vue@3.2.39: + /vue-router/4.1.5_vue@3.2.40: resolution: {integrity: sha512-IsvoF5D2GQ/EGTs/Th4NQms9gd2NSqV+yylxIyp/OYp8xOwxmU8Kj/74E9DTSYAyH5LX7idVUngN3JSj1X4xcQ==} peerDependencies: vue: ^3.2.0 dependencies: '@vue/devtools-api': 6.2.1 - vue: 3.2.39 + vue: 3.2.40 dev: false /vue-tsc/0.40.13_typescript@4.8.4: @@ -12748,22 +12748,22 @@ packages: typescript: 4.8.4 dev: true - /vue/3.2.39: - resolution: {integrity: sha512-tRkguhRTw9NmIPXhzk21YFBqXHT2t+6C6wPOgQ50fcFVWnPdetmRqbmySRHznrYjX2E47u0cGlKGcxKZJ38R/g==} + /vue/3.2.40: + resolution: {integrity: sha512-1mGHulzUbl2Nk3pfvI5aXYYyJUs1nm4kyvuz38u4xlQkLUn1i2R7nDbI4TufECmY8v1qNBHYy62bCaM+3cHP2A==} dependencies: - '@vue/compiler-dom': 3.2.39 - '@vue/compiler-sfc': 3.2.39 - '@vue/runtime-dom': 3.2.39 - '@vue/server-renderer': 3.2.39_vue@3.2.39 - '@vue/shared': 3.2.39 + '@vue/compiler-dom': 3.2.40 + '@vue/compiler-sfc': 3.2.40 + '@vue/runtime-dom': 3.2.40 + '@vue/server-renderer': 3.2.40_vue@3.2.40 + '@vue/shared': 3.2.40 - /vuex/4.0.2_vue@3.2.39: + /vuex/4.0.2_vue@3.2.40: resolution: {integrity: sha512-M6r8uxELjZIK8kTKDGgZTYX/ahzblnzC4isU1tpmEuOIIKmV+TRdc+H4s8ds2NuZ7wpUTdGRzJRtoj+lI+pc0Q==} peerDependencies: vue: ^3.0.2 dependencies: '@vue/devtools-api': 6.0.9 - vue: 3.2.39 + vue: 3.2.40 dev: false /wait-on/6.0.1: @@ -13209,13 +13209,13 @@ packages: engines: {node: '>=12.20'} dev: true - /zhyswan-vuedraggable/4.1.3_vue@3.2.39: + /zhyswan-vuedraggable/4.1.3_vue@3.2.40: resolution: {integrity: sha512-q4Mp52tQIvTAWG0CKxLCVLyG/3RnIskDxoJvfjDZ2kM8yTcMkY80VTc8rd3q9KwqJ0UVtjEGLufb23sjDp0peQ==} peerDependencies: vue: ^3.0.1 dependencies: sortablejs: 1.14.0 - vue: 3.2.39 + vue: 3.2.40 dev: false /zip-stream/4.1.0: From fd13b453f424187c3d9f3bd0729afaba59dfbde9 Mon Sep 17 00:00:00 2001 From: renovate Date: Wed, 28 Sep 2022 10:03:22 +0000 Subject: [PATCH 10/16] fix(deps): update dependency blurhash to v2.0.2 --- package.json | 2 +- pnpm-lock.yaml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index a258931c..9442e8d2 100644 --- a/package.json +++ b/package.json @@ -32,7 +32,7 @@ "@vueuse/core": "9.3.0", "@vueuse/router": "9.3.0", "axios": "0.27.2", - "blurhash": "2.0.1", + "blurhash": "2.0.2", "bulma-css-variables": "0.9.33", "camel-case": "4.1.2", "codemirror": "5.65.9", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index a8a0e878..b2e45e6c 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -30,7 +30,7 @@ specifiers: '@vueuse/router': 9.3.0 autoprefixer: 10.4.12 axios: 0.27.2 - blurhash: 2.0.1 + blurhash: 2.0.2 browserslist: 4.21.4 bulma-css-variables: 0.9.33 camel-case: 4.1.2 @@ -98,7 +98,7 @@ dependencies: '@vueuse/core': 9.3.0_vue@3.2.40 '@vueuse/router': 9.3.0_vue-router@4.1.5+vue@3.2.40 axios: 0.27.2 - blurhash: 2.0.1 + blurhash: 2.0.2 bulma-css-variables: 0.9.33 camel-case: 4.1.2 codemirror: 5.65.9 @@ -4154,8 +4154,8 @@ packages: resolution: {integrity: sha512-DRQrD6gJyy8FbiE4s+bDoXS9hiW3Vbx5uCdwvcCf3zLHL+Iv7LtGHLpr+GZV8rHG8tK766FGYBwRbu8pELTt+w==} dev: true - /blurhash/2.0.1: - resolution: {integrity: sha512-qAJW99ZIEVJqLKvR6EUtMavaalYiFgfHNvwO6eiqHE7RTBZYGQLPJvzs4WlnqSQPxZgqSPH/n4kRJIHzb/Y7dg==} + /blurhash/2.0.2: + resolution: {integrity: sha512-aYWeITmNkjtnR6X7wNgoIJ198qJc3w5yaIwLa7yxsV7/BMnWDWWgugBNvImSCcWNdVHhpNFIJgEb5jzhV4rkHA==} dev: false /body-parser/1.20.0: From ebfbb5ca9bf6576404b4bb6ca3be59684d499ae8 Mon Sep 17 00:00:00 2001 From: renovate Date: Wed, 28 Sep 2022 13:14:45 +0000 Subject: [PATCH 11/16] fix(deps): update sentry-javascript monorepo to v7.14.0 (#2440) Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/2440 Co-authored-by: renovate Co-committed-by: renovate --- package.json | 4 +-- pnpm-lock.yaml | 68 +++++++++++++++++++++++++------------------------- 2 files changed, 36 insertions(+), 36 deletions(-) diff --git a/package.json b/package.json index 9442e8d2..ebf0d97f 100644 --- a/package.json +++ b/package.json @@ -24,8 +24,8 @@ "@fortawesome/vue-fontawesome": "3.0.1", "@github/hotkey": "2.0.1", "@kyvg/vue3-notification": "2.4.1", - "@sentry/tracing": "7.13.0", - "@sentry/vue": "7.13.0", + "@sentry/tracing": "7.14.0", + "@sentry/vue": "7.14.0", "@types/is-touch-device": "1.0.0", "@types/lodash.clonedeep": "4.5.7", "@types/sortablejs": "1.15.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index b2e45e6c..1ede51e7 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -11,8 +11,8 @@ specifiers: '@fortawesome/vue-fontawesome': 3.0.1 '@github/hotkey': 2.0.1 '@kyvg/vue3-notification': 2.4.1 - '@sentry/tracing': 7.13.0 - '@sentry/vue': 7.13.0 + '@sentry/tracing': 7.14.0 + '@sentry/vue': 7.14.0 '@types/dompurify': 2.3.4 '@types/flexsearch': 0.7.3 '@types/is-touch-device': 1.0.0 @@ -90,8 +90,8 @@ dependencies: '@fortawesome/vue-fontawesome': 3.0.1_21e6b971ab1cbc4f6c07645df616013e '@github/hotkey': 2.0.1 '@kyvg/vue3-notification': 2.4.1_vue@3.2.40 - '@sentry/tracing': 7.13.0 - '@sentry/vue': 7.13.0_vue@3.2.40 + '@sentry/tracing': 7.14.0 + '@sentry/vue': 7.14.0_vue@3.2.40 '@types/is-touch-device': 1.0.0 '@types/lodash.clonedeep': 4.5.7 '@types/sortablejs': 1.15.0 @@ -2679,68 +2679,68 @@ packages: - zenObservable dev: true - /@sentry/browser/7.13.0: - resolution: {integrity: sha512-WbgClHPYe8TKsdVVbuzd6alxwh3maFQNuljMkSTnYvPx2P+NT0wHljTs37D39FGfSmAwaqn7D/1ZHAtC+6mWxA==} + /@sentry/browser/7.14.0: + resolution: {integrity: sha512-AdLmqeOXvCVYgJAgMUUby+TRh+yIeZO16NPpZWQPGggXIjnhSzoN4liyXJvQ7Mhm326GboFUKjQwqpCEviQcyg==} engines: {node: '>=8'} dependencies: - '@sentry/core': 7.13.0 - '@sentry/types': 7.13.0 - '@sentry/utils': 7.13.0 + '@sentry/core': 7.14.0 + '@sentry/types': 7.14.0 + '@sentry/utils': 7.14.0 tslib: 1.14.1 dev: false - /@sentry/core/7.13.0: - resolution: {integrity: sha512-hB46fklmKrSDMEvZOF8qBHhys7PONBFyxQtbNDZUlv/kabs4gF3VEg1ftCaXnjx4lLNlsUl/ScFdM6194RvISg==} + /@sentry/core/7.14.0: + resolution: {integrity: sha512-Hgn7De6CiCFnz868/Lrtei+9rj7/TIwhbDe3J+NeH+2ffXYn4VI8FxrlR/p2XfIq9iCfmG80EQXDtSh+Kh7mOw==} engines: {node: '>=8'} dependencies: - '@sentry/hub': 7.13.0 - '@sentry/types': 7.13.0 - '@sentry/utils': 7.13.0 + '@sentry/hub': 7.14.0 + '@sentry/types': 7.14.0 + '@sentry/utils': 7.14.0 tslib: 1.14.1 dev: false - /@sentry/hub/7.13.0: - resolution: {integrity: sha512-88/GsD1BoyrBwRKJCmVHZtSH5rizOsImUHWEXc1AOa1aR8nanfn56JdAbd6tC55pA+nT4R4H4vN/PrUaomTbtg==} + /@sentry/hub/7.14.0: + resolution: {integrity: sha512-O+pxsipeiURC6Mxuivz1pX3yHlkQCI2yjP38bISxUZv1NIijHuxiDmgqrrcCJltiIfyY2+f9LAezKVCAXnPFuw==} engines: {node: '>=8'} dependencies: - '@sentry/types': 7.13.0 - '@sentry/utils': 7.13.0 + '@sentry/types': 7.14.0 + '@sentry/utils': 7.14.0 tslib: 1.14.1 dev: false - /@sentry/tracing/7.13.0: - resolution: {integrity: sha512-/MKSd25rGv6Pc0FPBLXJifkfvSaYVPA8XUOLzVeDN0gl07h8AXli4qG9amTh/4Wb5h4dFpbcscOvW2VC+pxkIA==} + /@sentry/tracing/7.14.0: + resolution: {integrity: sha512-AtSitQukvU52PsLlYZJ2g2Lhj3VMmy4EwF/OMp8UHCtbJYwTNDF5N4Co0GUwFIs8zdXkIoJD+GMKfsSX1L3NXA==} engines: {node: '>=8'} dependencies: - '@sentry/hub': 7.13.0 - '@sentry/types': 7.13.0 - '@sentry/utils': 7.13.0 + '@sentry/hub': 7.14.0 + '@sentry/types': 7.14.0 + '@sentry/utils': 7.14.0 tslib: 1.14.1 dev: false - /@sentry/types/7.13.0: - resolution: {integrity: sha512-ttckM1XaeyHRLMdr79wmGA5PFbTGx2jio9DCD/mkEpSfk6OGfqfC7gpwy7BNstDH/VKyQj/lDCJPnwvWqARMoQ==} + /@sentry/types/7.14.0: + resolution: {integrity: sha512-9iFZS9Hr5hAoL+M9oUH2dY9burOaQh+CHGH66fortuTp++YDWKdbPEeKcz8hRJaUyBBn53rdxiBmAyHsrlE6KA==} engines: {node: '>=8'} dev: false - /@sentry/utils/7.13.0: - resolution: {integrity: sha512-jnR85LgRLSk7IQe2OhKOPMY4fasJCNQNW0iCXsH+S2R1qnsF+N4ksNkQ+7JyyM9E7F03YpI2qd76bKY0VIn5iA==} + /@sentry/utils/7.14.0: + resolution: {integrity: sha512-q9em4ZBcaUk7J1WULiltZVEcbyCE0wwAIjqRaoNmHVe4FeK++uAPo2ULZM1kQgN8syZnQ1jcfLktIKkWfnE2cg==} engines: {node: '>=8'} dependencies: - '@sentry/types': 7.13.0 + '@sentry/types': 7.14.0 tslib: 1.14.1 dev: false - /@sentry/vue/7.13.0_vue@3.2.40: - resolution: {integrity: sha512-+OP0h4hE8Gz8xwN3rcHrbQpqhNQGQJoM8f7cOPw7TU7TCXj4apMsR4o5xPVlvSZl3TG0J9SBUPrZdd0Va9gptw==} + /@sentry/vue/7.14.0_vue@3.2.40: + resolution: {integrity: sha512-ka03xD1BAdW1kXdmdDx3lSlzKuJG4GCCec+07IBbqIUpTmDrvPE0a+bSyjN1PPRG8sZgV0V/YN5iSPIuM864tQ==} engines: {node: '>=8'} peerDependencies: vue: 2.x || 3.x dependencies: - '@sentry/browser': 7.13.0 - '@sentry/core': 7.13.0 - '@sentry/types': 7.13.0 - '@sentry/utils': 7.13.0 + '@sentry/browser': 7.14.0 + '@sentry/core': 7.14.0 + '@sentry/types': 7.14.0 + '@sentry/utils': 7.14.0 tslib: 1.14.1 vue: 3.2.40 dev: false From 8b63df6f410dbf93ffdc3b4ac0fd5740b7f24a2c Mon Sep 17 00:00:00 2001 From: renovate Date: Wed, 28 Sep 2022 13:15:31 +0000 Subject: [PATCH 12/16] chore(deps): update dependency vite to v3.1.4 (#2439) Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/2439 Co-authored-by: renovate Co-committed-by: renovate --- package.json | 2 +- pnpm-lock.yaml | 28 ++++++++++++++-------------- 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/package.json b/package.json index ebf0d97f..ab418312 100644 --- a/package.json +++ b/package.json @@ -94,7 +94,7 @@ "rollup-plugin-visualizer": "5.8.2", "sass": "1.55.0", "typescript": "4.8.4", - "vite": "3.1.3", + "vite": "3.1.4", "vite-plugin-pwa": "0.13.1", "vite-svg-loader": "3.6.0", "vitest": "0.23.4", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 1ede51e7..78250b1d 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -66,7 +66,7 @@ specifiers: typescript: 4.8.4 ufo: 0.8.5 v-tooltip: 4.0.0-beta.17 - vite: 3.1.3 + vite: 3.1.4 vite-plugin-pwa: 0.13.1 vite-svg-loader: 3.6.0 vitest: 0.23.4 @@ -139,8 +139,8 @@ devDependencies: '@types/node': 16.11.62 '@typescript-eslint/eslint-plugin': 5.38.1_17e047bdec5ec7c01e9d134b6813cb9c '@typescript-eslint/parser': 5.38.1_eslint@8.24.0+typescript@4.8.4 - '@vitejs/plugin-legacy': 2.2.0_terser@5.10.0+vite@3.1.3 - '@vitejs/plugin-vue': 3.1.0_vite@3.1.3+vue@3.2.40 + '@vitejs/plugin-legacy': 2.2.0_terser@5.10.0+vite@3.1.4 + '@vitejs/plugin-vue': 3.1.0_vite@3.1.4+vue@3.2.40 '@vue/eslint-config-typescript': 11.0.2_b985cba226e1126d4cc23df4d3ba9cd4 '@vue/test-utils': 2.0.2_vue@3.2.40 '@vue/tsconfig': 0.1.3_@types+node@16.11.62 @@ -160,8 +160,8 @@ devDependencies: rollup-plugin-visualizer: 5.8.2_rollup@2.79.1 sass: 1.55.0 typescript: 4.8.4 - vite: 3.1.3_sass@1.55.0+terser@5.10.0 - vite-plugin-pwa: 0.13.1_vite@3.1.3 + vite: 3.1.4_sass@1.55.0+terser@5.10.0 + vite-plugin-pwa: 0.13.1_vite@3.1.4 vite-svg-loader: 3.6.0 vitest: 0.23.4_ddc85b0b7a78b2cfae025c8e16b7f605 vue-tsc: 0.40.13_typescript@4.8.4 @@ -3293,7 +3293,7 @@ packages: - supports-color dev: true - /@vitejs/plugin-legacy/2.2.0_terser@5.10.0+vite@3.1.3: + /@vitejs/plugin-legacy/2.2.0_terser@5.10.0+vite@3.1.4: resolution: {integrity: sha512-xkSXZl2LNk0KKyo5CJknNW84mSlmHIClFzsBuFXkX3yBt+Lr8UO/n4QOg2X7+jvurgBRies9FRn3ZvMem+TmIg==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: @@ -3306,17 +3306,17 @@ packages: regenerator-runtime: 0.13.9 systemjs: 6.12.6 terser: 5.10.0 - vite: 3.1.3_sass@1.55.0+terser@5.10.0 + vite: 3.1.4_sass@1.55.0+terser@5.10.0 dev: true - /@vitejs/plugin-vue/3.1.0_vite@3.1.3+vue@3.2.40: + /@vitejs/plugin-vue/3.1.0_vite@3.1.4+vue@3.2.40: resolution: {integrity: sha512-fmxtHPjSOEIRg6vHYDaem+97iwCUg/uSIaTzp98lhELt2ISOQuDo2hbkBdXod0g15IhfPMQmAxh4heUks2zvDA==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: vite: ^3.0.0 vue: ^3.2.25 dependencies: - vite: 3.1.3_sass@1.55.0+terser@5.10.0 + vite: 3.1.4_sass@1.55.0+terser@5.10.0 vue: 3.2.40 dev: true @@ -12553,7 +12553,7 @@ packages: extsprintf: 1.3.0 dev: true - /vite-plugin-pwa/0.13.1_vite@3.1.3: + /vite-plugin-pwa/0.13.1_vite@3.1.4: resolution: {integrity: sha512-NR3dIa+o2hzlzo4lF4Gu0cYvoMjSw2DdRc6Epw1yjmCqWaGuN86WK9JqZie4arNlE1ZuWT3CLiMdiX5wcmmUmg==} peerDependencies: vite: ^3.1.0 @@ -12562,7 +12562,7 @@ packages: fast-glob: 3.2.11 pretty-bytes: 6.0.0 rollup: 2.79.1 - vite: 3.1.3_sass@1.55.0+terser@5.10.0 + vite: 3.1.4_sass@1.55.0+terser@5.10.0 workbox-build: 6.5.4 workbox-window: 6.5.4 transitivePeerDependencies: @@ -12577,8 +12577,8 @@ packages: svgo: 2.8.0 dev: true - /vite/3.1.3_sass@1.55.0+terser@5.10.0: - resolution: {integrity: sha512-/3XWiktaopByM5bd8dqvHxRt5EEgRikevnnrpND0gRfNkrMrPaGGexhtLCzv15RcCMtV2CLw+BPas8YFeSG0KA==} + /vite/3.1.4_sass@1.55.0+terser@5.10.0: + resolution: {integrity: sha512-JoQI08aBjY9lycL7jcEq4p9o1xUjq5aRvdH4KWaXtkSx7e7RpAh9D3IjzDWRD4Fg44LS3oDAIOG/Kq1L+82psA==} engines: {node: ^14.18.0 || >=16.0.0} hasBin: true peerDependencies: @@ -12639,7 +12639,7 @@ packages: tinybench: 2.1.5 tinypool: 0.3.0 tinyspy: 1.0.2 - vite: 3.1.3_sass@1.55.0+terser@5.10.0 + vite: 3.1.4_sass@1.55.0+terser@5.10.0 transitivePeerDependencies: - less - sass From ca899d3b5172be6f39a60bdaffab58330225ecd9 Mon Sep 17 00:00:00 2001 From: Dominik Pschenitschni Date: Wed, 28 Sep 2022 13:28:03 +0000 Subject: [PATCH 13/16] chore: optimise loading order (#2435) Co-authored-by: Dominik Pschenitschni Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/2435 Co-authored-by: Dominik Pschenitschni Co-committed-by: Dominik Pschenitschni --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index c526fa6b..4ae9ce80 100644 --- a/index.html +++ b/index.html @@ -1,10 +1,10 @@ - Vikunja + Vikunja From 878c6ea9e17527b3f199f4acf10588e910b5727c Mon Sep 17 00:00:00 2001 From: Dominik Pschenitschni Date: Wed, 28 Sep 2022 13:28:45 +0000 Subject: [PATCH 14/16] chore: make const out of export download file name (#2436) Co-authored-by: Dominik Pschenitschni Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/2436 Co-authored-by: Dominik Pschenitschni Co-committed-by: Dominik Pschenitschni --- src/services/dataExport.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/services/dataExport.ts b/src/services/dataExport.ts index 3c4064ac..acbea34d 100644 --- a/src/services/dataExport.ts +++ b/src/services/dataExport.ts @@ -1,6 +1,8 @@ import AbstractService from './abstractService' import {downloadBlob} from '../helpers/downloadBlob' +const DOWNLOAD_NAME = 'vikunja-export.zip' + export default class DataExportService extends AbstractService { request(password: string) { return this.post('/user/export/request', {password}) @@ -10,7 +12,7 @@ export default class DataExportService extends AbstractService { const clear = this.setLoading() try { const url = await this.getBlobUrl('/user/export/download', 'POST', {password}) - downloadBlob(url, 'vikunja-export.zip') + downloadBlob(url, DOWNLOAD_NAME) } finally { clear() } From e9cf562969e42cc3ce3ffba3ed093db7a2089395 Mon Sep 17 00:00:00 2001 From: Dominik Pschenitschni Date: Wed, 28 Sep 2022 13:29:24 +0000 Subject: [PATCH 15/16] fix: vueI18n global scope fallback warnings (#2437) Co-authored-by: Dominik Pschenitschni Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/2437 Co-authored-by: Dominik Pschenitschni Co-committed-by: Dominik Pschenitschni --- src/components/date/datemathHelp.vue | 6 +++--- src/components/misc/api-config.vue | 2 +- src/components/misc/error.vue | 2 +- src/components/sharing/linkSharing.vue | 2 +- src/components/tasks/partials/attachments.vue | 2 +- src/components/tasks/partials/createdUpdated.vue | 6 +++--- src/views/user/settings/Caldav.vue | 2 +- 7 files changed, 11 insertions(+), 11 deletions(-) diff --git a/src/components/date/datemathHelp.vue b/src/components/date/datemathHelp.vue index 98b98e9a..4e4319ed 100644 --- a/src/components/date/datemathHelp.vue +++ b/src/components/date/datemathHelp.vue @@ -6,13 +6,13 @@ {{ $t('input.datemathHelp.intro') }}

- + now ||

- + @@ -99,7 +99,7 @@ {{ exampleDate }}||+1M/d - + {{ exampleDate }} diff --git a/src/components/misc/api-config.vue b/src/components/misc/api-config.vue index 3bd9719e..964a497c 100644 --- a/src/components/misc/api-config.vue +++ b/src/components/misc/api-config.vue @@ -23,7 +23,7 @@

- + {{ apiDomain }}
diff --git a/src/components/misc/error.vue b/src/components/misc/error.vue index 67c854f8..04cd1448 100644 --- a/src/components/misc/error.vue +++ b/src/components/misc/error.vue @@ -1,6 +1,6 @@