Skip to content

Commit f0bda6b

Browse files
committed
Bump most other libs
1 parent eb02ab6 commit f0bda6b

File tree

5 files changed

+2913
-2627
lines changed

5 files changed

+2913
-2627
lines changed

package.json

Lines changed: 14 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"dependencies": {
3434
"@aws-sdk/client-s3": "^3.440.0",
3535
"@aws-sdk/s3-request-presigner": "^3.440.0",
36-
"@faker-js/faker": "^8.2.0",
36+
"@faker-js/faker": "^9.7.0",
3737
"@fastify/compress": "^8.0.1",
3838
"@fastify/cookie": "^11.0.1",
3939
"@fastify/cors": "^11.0.1",
@@ -64,23 +64,23 @@
6464
"common-tags": "^1.8.2",
6565
"cypher-query-builder": "patch:cypher-query-builder@npm%3A6.0.4#~/.yarn/patches/cypher-query-builder-npm-6.0.4-e8707a5e8e.patch",
6666
"dotenv": "^16.3.1",
67-
"dotenv-expand": "^10.0.0",
67+
"dotenv-expand": "^12.0.2",
6868
"execa": "^9.5.2",
6969
"extensionless": "^1.7.0",
7070
"fast-safe-stringify": "^2.1.1",
7171
"fastest-levenshtein": "^1.0.16",
7272
"fastify": "^5.0.0",
7373
"fastify-raw-body": "^5.0.0",
74-
"file-type": "^18.6.0",
74+
"file-type": "^20.5.0",
7575
"gel": "^2.1.0-canary.20250319T143140",
76-
"glob": "^10.3.10",
76+
"glob": "^11.0.2",
7777
"got": "^14.3.0",
7878
"graphql": "^16.9.0",
7979
"graphql-parse-resolve-info": "^4.14.0",
8080
"graphql-scalars": "^1.22.4",
8181
"graphql-yoga": "^5.13.4",
8282
"human-format": "^1.2.0",
83-
"image-size": "^1.0.2",
83+
"image-size": "^2.0.2",
8484
"indent-string": "^5.0.0",
8585
"ioredis": "^5.3.2",
8686
"iso-3166-1": "^2.1.1",
@@ -90,8 +90,8 @@
9090
"lodash": "npm:lodash-es@^4.17.21",
9191
"lru-cache": "^11.0.1",
9292
"luxon": "^3.5.0",
93-
"mime": "beta",
94-
"nanoid": "^4.0.2",
93+
"mime": "^4.0.7",
94+
"nanoid": "^5.1.5",
9595
"neo4j-driver": "^5.28.1",
9696
"p-retry": "^6.2.1",
9797
"plur": "^5.1.0",
@@ -100,16 +100,16 @@
100100
"react-dom": "^18.2.0",
101101
"read-package-up": "^11.0.0",
102102
"reflect-metadata": "^0.2.2",
103-
"rimraf": "^5.0.5",
103+
"rimraf": "^6.0.1",
104104
"rxjs": "^7.8.1",
105105
"sanitize-filename": "^1.6.3",
106106
"title-case": "^4.3.1",
107-
"ts-essentials": "^9.4.1",
107+
"ts-essentials": "^10.0.4",
108108
"urlpattern-polyfill": "^10.0.0",
109-
"uuid": "^10.0.0",
109+
"uuid": "^11.1.0",
110110
"validator": "^13.15.0",
111111
"winston": "^3.11.0",
112-
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.0/xlsx-0.20.0.tgz",
112+
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz",
113113
"xregexp": "^5.1.1",
114114
"yaml": "^2.3.3"
115115
},
@@ -130,9 +130,8 @@
130130
"@types/node": "^22.7.8",
131131
"@types/prismjs": "^1.26.2",
132132
"@types/react": "^18.2.33",
133-
"@types/stack-trace": "^0.0.32",
133+
"@types/stack-trace": "^0.0.33",
134134
"@types/triple-beam": "^1.3.4",
135-
"@types/uuid": "^10.0.0",
136135
"@types/validator": "^13.11.5",
137136
"@typescript-eslint/parser": "^5.62.0",
138137
"debugger-is-attached": "^1.2.0",
@@ -141,10 +140,10 @@
141140
"eslint-plugin-typescript-sort-keys": "^2.3.0",
142141
"husky": "^4.3.8",
143142
"jest": "^29.7.0",
144-
"lint-staged": "^14.0.1",
143+
"lint-staged": "^15.5.1",
145144
"npm-check-updates": "^18.0.1",
146145
"ts-jest": "^29.1.1",
147-
"ts-morph": "^19.0.0",
146+
"ts-morph": "^25.0.1",
148147
"ts-node": "^10.9.1",
149148
"ts-patch": "^3.0.2",
150149
"ts-transformer-keys": "^0.4.4",

src/common/generate-id.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { customAlphabet } from 'nanoid/async';
1+
import { customAlphabet } from 'nanoid';
22
import { ID } from './id-field';
33

44
// 100 IDs / hour = 1k years to have 1% probability of a single collision

src/components/file/media/media-detector.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { CachedByArg as Once } from '@seedcompany/common';
44
import { $, execa } from 'execa';
55
import { FFProbeResult } from 'ffprobe';
66
import { imageSize } from 'image-size';
7-
import { ISize as ImageSize } from 'image-size/dist/types/interface';
7+
import type { ISize as ImageSize } from 'image-size/types/interface';
88
import { Except } from 'type-fest';
99
import { retry } from '~/common/retry';
1010
import { ILogger, Logger } from '~/core';

src/core/events/event-handler.decorator.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ export interface IEventHandler<T> {
5555

5656
const getOrDefineEventId = (event: Type): ID => {
5757
if (!Reflect.hasMetadata(EVENT_METADATA, event)) {
58-
const id = nanoid() as ID;
58+
const id: ID = nanoid();
5959
Reflect.defineMetadata(EVENT_METADATA, { id }, event);
6060
return id;
6161
}

0 commit comments

Comments
 (0)