Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): bump the minorandpatch group across 1 directory with 31 updates #945

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5,092 changes: 2,724 additions & 2,368 deletions package-lock.json

Large diffs are not rendered by default.

22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,23 +14,23 @@
],
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.3.0",
"@swc/core": "^1.9.1",
"@swc/jest": "^0.2.27",
"@tada5hi/commitlint-config": "^1.2.2",
"@tada5hi/eslint-config-vue-typescript": "^1.3.12",
"@types/jest": "^29.5.12",
"@types/node": "^22.9.0",
"@swc/core": "^1.10.6",
"@swc/jest": "^0.2.37",
"@tada5hi/commitlint-config": "^1.2.3",
"@tada5hi/eslint-config-vue-typescript": "^1.3.13",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.5",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"husky": "^9.1.4",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-serial-runner": "^1.2.0",
"lint-staged": "^15.2.10",
"nx": "^20.1.0",
"lint-staged": "^15.3.0",
"nx": "^20.3.0",
"rimraf": "^6.0.1",
"rollup": "^4.25.0",
"rollup": "^4.30.1",
"ts-jest": "^29.2.5",
"typescript": "5.6.2",
"typescript": "5.7.2",
"workspaces-publish": "^1.4.4"
},
"scripts": {
Expand Down
63 changes: 30 additions & 33 deletions packages/client-ui/composables/toast.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,46 +5,43 @@
* view the LICENSE file that was distributed with this source code.
*/

import type { OrchestratedToast } from 'bootstrap-vue-next';
import { isObject } from '@privateaim/kit';
import { useToast as _useToast } from 'bootstrap-vue-next';
import { isObject } from '@privateaim/kit'; import type { OrchestratedToast } from 'bootstrap-vue-next';
import { useToastController } from 'bootstrap-vue-next';

export function useToast() {
const toast = _useToast();

const show = (
el: string | OrchestratedToast,
options: OrchestratedToast = {},
) => {
if (typeof toast.show === 'undefined') {
return Symbol('');
}

if (isObject(el)) {
el.pos = el.pos || 'top-center';
return toast.show({
props: el,
});
}

options.pos = options.pos || 'top-center';

return toast.show({
props: {
...(options || {}),
body: el,
},
});
};
const toast = useToastController();

return {
hide(el: symbol) {
if (typeof toast.remove === 'undefined') {
return;
if (typeof toast.remove !== 'undefined') {
toast.remove(el);
}
},
show(
el: string | OrchestratedToast,
options: OrchestratedToast = {},
) {
if (typeof toast.show === 'undefined') {
return Symbol('');
}

if (isObject(el)) {
el.pos = el.pos || 'top-center';
return toast.show({
props: el,
});
}

toast.remove(el);
if (options) {
options.pos = options.pos || 'top-center';
}

return toast.show({
props: {
...(options || {}),
body: el,
},
});
},
show,
};
}
10 changes: 5 additions & 5 deletions packages/client-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@
"@authup/core-http-kit": "^1.0.0-beta.23",
"@authup/core-kit": "^1.0.0-beta.23",
"@ilingo/vuelidate": "^5.0.3",
"@fortawesome/fontawesome-free": "^6.6.0",
"@fortawesome/fontawesome-free": "^6.7.2",
"@nuxtjs/google-fonts": "^3.2.0",
"@privateaim/client-vue": "^0.8.4",
"@privateaim/core-kit": "^0.8.4",
"@privateaim/kit": "^0.8.4",
"@privateaim/storage-kit": "^0.8.4",
"@pinia/nuxt": "^0.7.0",
"@pinia/nuxt": "^0.9.0",
"@vuecs/countdown": "^1.0.0",
"@vuecs/form-controls": "^2.3.1",
"@vuecs/gravatar": "^1.0.1",
Expand All @@ -44,10 +44,10 @@
"@vuelidate/validators": "^2.0.4",
"@vueuse/core": "^11.2.0",
"bootstrap": "^5.3.3",
"bootstrap-vue-next": "^0.24.23",
"bootstrap-vue-next": "^0.26.19",
"events": "^3.3.0",
"hapic": "^2.5.1",
"nuxt": "3.14.159",
"hapic": "^2.5.2",
"nuxt": "3.15.1",
"pinia": "^2.2.6",
"rapiq": "^0.9.0",
"smob": "^1.5.0",
Expand Down
8 changes: 4 additions & 4 deletions packages/client-vue/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
"@privateaim/kit": "^0.8.4",
"@privateaim/core-http-kit": "^0.8.4",
"@privateaim/storage-kit": "^0.8.4",
"@types/node": "^22.9.0",
"@types/node": "^22.10.5",
"@vitejs/plugin-vue": "^5.1.4",
"@vuecs/form-controls": "^2.3.1",
"@vuecs/link": "^1.0.0",
Expand All @@ -61,15 +61,15 @@
"@vuelidate/core": "^2.0.3",
"@vuelidate/validators": "^2.0.4",
"@vueuse/core": "^11.2.0",
"bootstrap-vue-next": "^0.24.23",
"bootstrap-vue-next": "^0.26.19",
"cross-env": "^7.0.3",
"pinia": "^2.2.2",
"rapiq": "^0.9.0",
"rollup-plugin-css-only": "^4.5.2",
"smob": "^1.5.0",
"socket.io-client": "^4.8.1",
"vue": "^3.5.11",
"vue-tsc": "^2.1.10",
"vue-tsc": "^2.2.0",
"vue3-form-wizard": "^0.2.4"
},
"peerDependencies": {
Expand All @@ -88,7 +88,7 @@
"@vuecs/timeago": "^1.1.0",
"@vuelidate/core": "^2.x",
"@vuelidate/validators": "^2.x",
"bootstrap-vue-next": "^0.24.23",
"bootstrap-vue-next": "^0.26.19",
"pinia": "^2.2.2",
"rapiq": ">=0.8.0 <1.0.0",
"smob": "^1.4.x",
Expand Down
4 changes: 2 additions & 2 deletions packages/core-http-kit/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@
"devDependencies": {
"@authup/kit": "^1.0.0-beta.23",
"@privateaim/core-kit": "^0.8.4",
"hapic": "^2.5.1",
"hapic": "^2.5.2",
"rapiq": "^0.9.0"
},
"peerDependencies": {
"@authup/kit": "^1.0.0-beta.23",
"@privateaim/core-kit": "^0.8.4",
"hapic": "^2.5.1",
"hapic": "^2.5.2",
"rapiq": "^0.9.0"
},
"publishConfig": {
Expand Down
10 changes: 5 additions & 5 deletions packages/server-analysis-manager/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,31 +23,31 @@
"dependencies": {
"@authup/core-http-kit": "^1.0.0-beta.23",
"@ebec/http": "^2.3.0",
"@hapic/harbor": "^2.4.0",
"@hapic/harbor": "^2.5.0",
"@privateaim/core-kit": "^0.8.4",
"@privateaim/kit": "^0.8.4",
"@privateaim/core-http-kit": "^0.8.4",
"@privateaim/server-kit": "^0.8.4",
"@privateaim/server-analysis-manager-kit": "^0.7.5",
"@privateaim/storage-kit": "^0.8.4",
"amqp-extension": "^4.0.0-beta.3",
"dockerode": "^4.0.2",
"dockerode": "^4.0.3",
"docker-scan": "^1.1.0",
"dotenv": "^16.4.5",
"envix": "^1.3.0",
"gunzip-maybe": "^1.4.2",
"hapic": "^2.5.1",
"hapic": "^2.5.2",
"routup": "^4.0.1",
"rapiq": "^0.9.0",
"redis-extension": "^2.0.1",
"singa": "^1.0.0",
"tar": "^7.4.3",
"tar-fs": "^3.0.6",
"tar-stream": "^3.1.6",
"uuid": "^11.0.3"
"uuid": "^11.0.4"
},
"devDependencies": {
"@types/dockerode": "^3.3.31",
"@types/dockerode": "^3.3.34",
"@types/tar-fs": "^2.0.4",
"@types/tar-stream": "^2.2.2",
"@types/uuid": "^10.0.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/server-core-realtime/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"@socket.io/redis-adapter": "^8.3.0",
"dotenv": "^16.4.5",
"envix": "^1.3.0",
"hapic": "^2.5.1",
"hapic": "^2.5.2",
"redis-extension": "^2.0.1",
"routup": "^4.0.1",
"socket.io": "^4.8.1"
Expand Down
12 changes: 6 additions & 6 deletions packages/server-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
"@authup/core-http-kit": "^1.0.0-beta.23",
"@authup/server-adapter-http": "^1.0.0-beta.20",
"@ebec/http": "^2.3.0",
"@hapic/harbor": "^2.4.0",
"@hapic/vault": "^2.3.4",
"@hapic/harbor": "^2.5.0",
"@hapic/vault": "^2.3.5",
"@privateaim/core-kit": "^0.8.4",
"@privateaim/kit": "^0.8.4",
"@privateaim/server-kit": "^0.8.4",
Expand All @@ -38,9 +38,9 @@
"docker-scan": "^1.1.0",
"dotenv": "^16.4.5",
"envix": "^1.3.0",
"hapic": "^2.5.1",
"hapic": "^2.5.2",
"locter": "^2.1.4",
"mysql2": "^3.11.4",
"mysql2": "^3.12.0",
"pascal-case": "^4.0.0",
"pg": "^8.13.1",
"prom-client": "^14.2.0",
Expand All @@ -53,7 +53,7 @@
"typeorm-extension": "^3.6.3",
"validup": "^0.1.8",
"yargs": "^17.7.1",
"zod": "^3.23.7"
"zod": "^3.24.1"
},
"devDependencies": {
"@privateaim/core-http-kit": "^0.8.4",
Expand All @@ -62,7 +62,7 @@
"@types/module-alias": "^2.0.4",
"@types/supertest": "^6.0.2",
"@types/yargs": "^17.0.32",
"better-sqlite3": "^11.5.0",
"better-sqlite3": "^11.7.2",
"cross-env": "^7.0.3",
"supertest": "^7.0.0",
"ts-node": "^10.9.2"
Expand Down
2 changes: 1 addition & 1 deletion packages/server-http-kit/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"@routup/rate-limit": "^2.4.0",
"@routup/swagger": "^2.4.1",
"cors": "^2.8.5",
"hapic": "^2.5.1",
"hapic": "^2.5.2",
"locter": "^2.1.4",
"validup": "^0.1.8"
},
Expand Down
6 changes: 3 additions & 3 deletions packages/server-kit/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,20 +33,20 @@
"@privateaim/kit": "^0.8.4",
"@socket.io/redis-emitter": "^5.1.0",
"envix": "^1.5.0",
"hapic": "^2.5.1",
"hapic": "^2.5.2",
"singa": "^1.0.0",
"winston": "^3.17.0"
},
"devDependencies": {
"@authup/core-http-kit": "^1.0.0-beta.23",
"@hapic/vault": "^2.3.4",
"@hapic/vault": "^2.3.5",
"amqp-extension": "^4.0.0-beta.3",
"redis-extension": "^2.0.1",
"typeorm-extension": "^3.6.3"
},
"peerDependencies": {
"@authup/core-http-kit": "^1.0.0-beta.23",
"@hapic/vault": "^2.3.4",
"@hapic/vault": "^2.3.5",
"amqp-extension": "^4.0.0-beta.3",
"redis-extension": "^2.0.1",
"typeorm-extension": "^3.6.3"
Expand Down
2 changes: 1 addition & 1 deletion packages/server-messenger/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"@socket.io/redis-adapter": "^8.3.0",
"dotenv": "^16.4.5",
"envix": "^1.3.0",
"hapic": "^2.5.1",
"hapic": "^2.5.2",
"redis-extension": "^2.0.1",
"routup": "^4.0.1",
"socket.io": "^4.8.1"
Expand Down
10 changes: 5 additions & 5 deletions packages/server-storage/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"@authup/kit": "^1.0.0-beta.23",
"@authup/core-kit": "^1.0.0-beta.23",
"@ebec/http": "^2.3.0",
"@hapic/vault": "^2.3.4",
"@hapic/vault": "^2.3.5",
"@privateaim/kit": "^0.8.4",
"@privateaim/server-kit": "^0.8.4",
"@privateaim/server-http-kit": "^0.8.4",
Expand All @@ -26,10 +26,10 @@
"cors": "^2.8.5",
"dotenv": "^16.4.4",
"envix": "^1.3.0",
"hapic": "^2.5.1",
"hapic": "^2.5.2",
"locter": "^2.1.4",
"minio": "^8.0.2",
"mysql2": "^3.11.4",
"minio": "^8.0.3",
"mysql2": "^3.12.0",
"redis-extension": "^2.0.1",
"routup": "^4.0.1",
"singa": "^1.0.0",
Expand All @@ -43,7 +43,7 @@
"@types/cors": "^2.8.17",
"@types/supertest": "^6.0.2",
"@types/tar-stream": "^2.2.3",
"testcontainers": "^10.14.0"
"testcontainers": "^10.16.0"
},
"scripts": {
"dev": "ts-node src/index.ts",
Expand Down
4 changes: 2 additions & 2 deletions packages/storage-kit/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@
"devDependencies": {
"@authup/core-kit": "^1.0.0-beta.23",
"@privateaim/kit": "^0.8.4",
"hapic": "^2.5.1",
"hapic": "^2.5.2",
"rapiq": "^0.9.0"
},
"peerDependencies": {
"@authup/core-kit": "^1.0.0-beta.23",
"@privateaim/kit": "^0.8.4",
"hapic": "^2.5.1",
"hapic": "^2.5.2",
"rapiq": "^0.9.0"
},
"scripts": {
Expand Down
Loading