From 9572b90a821c12cd46889df12995ebce2cba02dc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 29 May 2024 04:11:11 +0000 Subject: [PATCH 1/2] Bump bootstrap-vue-next from 0.18.1 to 0.19.0 in the bootstrap group Bumps the bootstrap group with 1 update: [bootstrap-vue-next](https://github.com/bootstrap-vue-next/bootstrap-vue-next/tree/HEAD/packages/bootstrap-vue-next). Updates `bootstrap-vue-next` from 0.18.1 to 0.19.0 - [Release notes](https://github.com/bootstrap-vue-next/bootstrap-vue-next/releases) - [Changelog](https://github.com/bootstrap-vue-next/bootstrap-vue-next/blob/main/packages/bootstrap-vue-next/CHANGELOG.md) - [Commits](https://github.com/bootstrap-vue-next/bootstrap-vue-next/commits/nuxt-v0.19.0/packages/bootstrap-vue-next) --- updated-dependencies: - dependency-name: bootstrap-vue-next dependency-type: direct:production update-type: version-update:semver-minor dependency-group: bootstrap ... Signed-off-by: dependabot[bot] --- package.json | 2 +- pnpm-lock.yaml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index da457549..ff7e01ae 100644 --- a/package.json +++ b/package.json @@ -23,7 +23,7 @@ "@vueuse/integrations": "^10.10.0", "axios": "^1.7.2", "bootstrap": "^5.3.3", - "bootstrap-vue-next": "^0.18.1", + "bootstrap-vue-next": "^0.19.0", "core-js": "^3.37.1", "date-fns": "^3.6.0", "date-fns-tz": "^3.1.3", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index d78d2392..55a2aa37 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -27,8 +27,8 @@ dependencies: specifier: ^5.3.3 version: 5.3.3(@popperjs/core@2.11.8) bootstrap-vue-next: - specifier: ^0.18.1 - version: 0.18.1(vue@3.4.27) + specifier: ^0.19.0 + version: 0.19.0(vue@3.4.27) core-js: specifier: ^3.37.1 version: 3.37.1 @@ -1481,8 +1481,8 @@ packages: resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} dev: true - /bootstrap-vue-next@0.18.1(vue@3.4.27): - resolution: {integrity: sha512-/NNFwGU1aC1l4MMGGP7ooY4YQtaej1eGKnQBxGskKhZLz05JDCmNdIpy1gKODzeZz8pYeyHF7288h0uLCRqWkQ==} + /bootstrap-vue-next@0.19.0(vue@3.4.27): + resolution: {integrity: sha512-IllkPA3NEND+G304oflIDkeNXclGPraAFMX+QEuHkm3oN7vexWMvWbroPvrC1v+rJbH335KoAjsL4DJXCJOKFQ==} peerDependencies: vue: ^3.4.27 dependencies: From f5d7c28ae85169f9758760cf695162d05c2b0b9e Mon Sep 17 00:00:00 2001 From: Matthias Date: Wed, 29 May 2024 06:48:46 +0200 Subject: [PATCH 2/2] SetInterval may be overridden by nodejs types... ensure to use window --- src/stores/pairlistConfig.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stores/pairlistConfig.ts b/src/stores/pairlistConfig.ts index e405dcb6..27b58137 100644 --- a/src/stores/pairlistConfig.ts +++ b/src/stores/pairlistConfig.ts @@ -151,7 +151,7 @@ export const usePairlistConfigStore = defineStore( const { job_id: jobId } = await botStore.activeBot.evaluatePairlist(payload); console.log('jobId', jobId); - intervalId.value = setInterval(async () => { + intervalId.value = window.setInterval(async () => { const res = await botStore.activeBot.getBackgroundJobStatus(jobId); if (!res.running) { clearInterval(intervalId.value);