chore: update package versions and improve code readability
All checks were successful
Deploy to production / deploy (push) Successful in 2m1s

- Bump 'tmp' package version from 0.2.5 to 0.2.6 in package.json
- Change version from 3.0.0-pre-alpha.0.1 to 3.0.0-beta-1.0.0 in package-lock.json
- Update various dependencies in package-lock.json:
  - 'brace-expansion' from 5.0.5 to 5.0.6
  - 'dompurify' from 3.3.3 to 3.4.8
  - 'js-cookie' from 3.0.5 to 3.0.8
  - 'lodash' from 4.17.23 to 4.18.1
- Refactor date range selection in CalendarView.vue for better readability
This commit is contained in:
Torsten Schulz (local)
2026-06-04 14:20:56 +02:00
parent b5dcc6ea8f
commit 58f97a5b06
6 changed files with 2611 additions and 1114 deletions

1426
backend/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -46,13 +46,16 @@
"sequelize": "^6.37.8",
"sharp": "^0.34.5",
"socket.io": "^4.8.3",
"uuid": "^13.0.0",
"uuid": "^14.0.0",
"ws": "^8.20.0"
},
"devDependencies": {
"sequelize-cli": "^6.6.5"
},
"overrides": {
"minimatch": "10.2.4"
"minimatch": "10.2.4",
"sequelize": {
"uuid": "14.0.0"
}
}
}

File diff suppressed because it is too large Load Diff

View File

@@ -47,6 +47,6 @@
},
"overrides": {
"minimatch": "10.2.4",
"tmp": "0.2.5"
"tmp": "0.2.6"
}
}

View File

@@ -628,8 +628,8 @@ export default {
this.dragStartDate = null;
},
selectDateRange(startStr, endStr) {
const start = new Date(startStr);
const end = new Date(endStr);
let start = new Date(startStr);
let end = new Date(endStr);
if (start > end) {
[start, end] = [end, start];

33
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{
"name": "yourpart",
"version": "3.0.0-pre-alpha.0.1",
"version": "3.0.0-beta-1.0.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "yourpart",
"version": "3.0.0-pre-alpha.0.1",
"version": "3.0.0-beta-1.0.0",
"dependencies": {
"cors": "^2.8.6",
"dompurify": "^3.3.3",
@@ -146,9 +146,9 @@
"license": "MIT"
},
"node_modules/brace-expansion": {
"version": "5.0.5",
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.5.tgz",
"integrity": "sha512-VZznLgtwhn+Mact9tfiwx64fA9erHH/MCXEUfB/0bX/6Fz6ny5EGTXYltMocqg4xFAQZtnO3DHWWXi8RiuN7cQ==",
"version": "5.0.6",
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.6.tgz",
"integrity": "sha512-kLpxurY4Z4r9sgMsyG0Z9uzsBlgiU/EFKhj/h91/8yHu0edo7XuixOIH3VcJ8kkxs6/jPzoI6U9Vj3WqbMQ94g==",
"license": "MIT",
"dependencies": {
"balanced-match": "^4.0.2"
@@ -415,9 +415,9 @@
}
},
"node_modules/dompurify": {
"version": "3.3.3",
"resolved": "https://registry.npmjs.org/dompurify/-/dompurify-3.3.3.tgz",
"integrity": "sha512-Oj6pzI2+RqBfFG+qOaOLbFXLQ90ARpcGG6UePL82bJLtdsa6CYJD7nmiU8MW9nQNOtCHV3lZ/Bzq1X0QYbBZCA==",
"version": "3.4.8",
"resolved": "https://registry.npmjs.org/dompurify/-/dompurify-3.4.8.tgz",
"integrity": "sha512-yb1cEmaOum7wFvOCSQxyfgVlv5D47Rc30iZWoMpbDIWTnJ6grDDQyu2KFJzB2k7u0pMuJcQ1zphH//fFnw2tjQ==",
"license": "(MPL-2.0 OR Apache-2.0)",
"optionalDependencies": {
"@types/trusted-types": "^2.0.7"
@@ -727,13 +727,10 @@
}
},
"node_modules/js-cookie": {
"version": "3.0.5",
"resolved": "https://registry.npmjs.org/js-cookie/-/js-cookie-3.0.5.tgz",
"integrity": "sha512-cEiJEAEoIbWfCZYKWhVwFuvPX1gETRYPw6LlaTKoxD3s2AkXzkCjnp6h0V77ozyqj0jakteJ4YqDJT830+lVGw==",
"license": "MIT",
"engines": {
"node": ">=14"
}
"version": "3.0.8",
"resolved": "https://registry.npmjs.org/js-cookie/-/js-cookie-3.0.8.tgz",
"integrity": "sha512-yeJd4aNAdYZQjaon2bpD/Gb0B/omw7HQOsynXXcOiWVCacbBcPlgn8S/d1X6blFSaHao7ozqtW7NZW19xpCtIw==",
"license": "MIT"
},
"node_modules/json-parse-even-better-errors": {
"version": "4.0.0",
@@ -758,9 +755,9 @@
}
},
"node_modules/lodash": {
"version": "4.17.23",
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.23.tgz",
"integrity": "sha512-LgVTMpQtIopCi79SJeDiP0TfWi5CNEc/L/aRdTh3yIvmZXTnheWpKjSZhnvMl8iXbC1tFg9gdHHDMLoV7CnG+w==",
"version": "4.18.1",
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.18.1.tgz",
"integrity": "sha512-dMInicTPVE8d1e5otfwmmjlxkZoUpiVLwyeTdUsi/Caj/gfzzblBcCE5sRHV/AsjuCmxWrte2TNGSYuCeCq+0Q==",
"license": "MIT"
},
"node_modules/lru-cache": {