mirror of
https://gitlab.com/soapbox-pub/ditto.git
synced 2025-12-06 11:29:46 +00:00
Merge branch 'upgrade-zod' into 'main'
Bump zod to v3.23.5 See merge request soapbox-pub/ditto!205
This commit is contained in:
commit
1477dc1049
3 changed files with 10 additions and 5 deletions
|
|
@ -49,9 +49,9 @@
|
||||||
"tldts": "npm:tldts@^6.0.14",
|
"tldts": "npm:tldts@^6.0.14",
|
||||||
"tseep": "npm:tseep@^1.2.1",
|
"tseep": "npm:tseep@^1.2.1",
|
||||||
"type-fest": "npm:type-fest@^4.3.0",
|
"type-fest": "npm:type-fest@^4.3.0",
|
||||||
"unfurl": "npm:unfurl.js@^6.4.0",
|
"unfurl.js": "npm:unfurl.js@^6.4.0",
|
||||||
"uuid62": "npm:uuid62@^1.0.2",
|
"uuid62": "npm:uuid62@^1.0.2",
|
||||||
"zod": "npm:zod@^3.23.4",
|
"zod": "npm:zod@^3.23.5",
|
||||||
"~/fixtures/": "./fixtures/"
|
"~/fixtures/": "./fixtures/"
|
||||||
},
|
},
|
||||||
"lint": {
|
"lint": {
|
||||||
|
|
|
||||||
9
deno.lock
generated
9
deno.lock
generated
|
|
@ -62,7 +62,8 @@
|
||||||
"npm:uuid62@^1.0.2": "npm:uuid62@1.0.2",
|
"npm:uuid62@^1.0.2": "npm:uuid62@1.0.2",
|
||||||
"npm:websocket-ts@^2.1.5": "npm:websocket-ts@2.1.5",
|
"npm:websocket-ts@^2.1.5": "npm:websocket-ts@2.1.5",
|
||||||
"npm:zod@^3.21.0": "npm:zod@3.23.4",
|
"npm:zod@^3.21.0": "npm:zod@3.23.4",
|
||||||
"npm:zod@^3.23.4": "npm:zod@3.23.4"
|
"npm:zod@^3.23.4": "npm:zod@3.23.4",
|
||||||
|
"npm:zod@^3.23.5": "npm:zod@3.23.5"
|
||||||
},
|
},
|
||||||
"jsr": {
|
"jsr": {
|
||||||
"@bradenmacdonald/s3-lite-client@0.7.4": {
|
"@bradenmacdonald/s3-lite-client@0.7.4": {
|
||||||
|
|
@ -1279,6 +1280,10 @@
|
||||||
"zod@3.23.4": {
|
"zod@3.23.4": {
|
||||||
"integrity": "sha512-/AtWOKbBgjzEYYQRNfoGKHObgfAZag6qUJX1VbHo2PRBgS+wfWagEY2mizjfyAPcGesrJOcx/wcl0L9WnVrHFw==",
|
"integrity": "sha512-/AtWOKbBgjzEYYQRNfoGKHObgfAZag6qUJX1VbHo2PRBgS+wfWagEY2mizjfyAPcGesrJOcx/wcl0L9WnVrHFw==",
|
||||||
"dependencies": {}
|
"dependencies": {}
|
||||||
|
},
|
||||||
|
"zod@3.23.5": {
|
||||||
|
"integrity": "sha512-fkwiq0VIQTksNNA131rDOsVJcns0pfVUjHzLrNBiF/O/Xxb5lQyEXkhZWcJ7npWsYlvs+h0jFWXXy4X46Em1JA==",
|
||||||
|
"dependencies": {}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
@ -1618,7 +1623,7 @@
|
||||||
"npm:type-fest@^4.3.0",
|
"npm:type-fest@^4.3.0",
|
||||||
"npm:unfurl.js@^6.4.0",
|
"npm:unfurl.js@^6.4.0",
|
||||||
"npm:uuid62@^1.0.2",
|
"npm:uuid62@^1.0.2",
|
||||||
"npm:zod@^3.23.4"
|
"npm:zod@^3.23.5"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
import TTLCache from '@isaacs/ttlcache';
|
import TTLCache from '@isaacs/ttlcache';
|
||||||
import Debug from '@soapbox/stickynotes/debug';
|
import Debug from '@soapbox/stickynotes/debug';
|
||||||
import { unfurl } from 'unfurl';
|
import { unfurl } from 'unfurl.js';
|
||||||
|
|
||||||
import { sanitizeHtml } from '@/deps.ts';
|
import { sanitizeHtml } from '@/deps.ts';
|
||||||
import { Time } from '@/utils/time.ts';
|
import { Time } from '@/utils/time.ts';
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue