Skip to content

Commit 834e71b

Browse files
committed
🧹 chore: merge main
1 parent efc0b34 commit 834e71b

File tree

3 files changed

+18
-5
lines changed

3 files changed

+18
-5
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# 1.4.13 - 23 Oct 2025
2+
- [#1495](https://github.com/elysiajs/elysia/pull/1495) request server hook parameters are typed as any (Bun 1.3.0)
3+
- [#1483](https://github.com/elysiajs/elysia/pull/1483) handle standard schema validators in ValidationError.all
4+
- [#1459](https://github.com/elysiajs/elysia/pull/1459) fix strictPath behavior when aot: false is set
5+
- [#1455](https://github.com/elysiajs/elysia/pull/1455) graceful shutdown not awaiting server.stop
6+
- [#1499](https://github.com/elysiajs/elysia/pull/1449) fails when mergint with t.Optional schema
7+
18
# 1.4.12 - 14 Oct 2025
29
Improvement:
310
- named macro function callback

bun.lock

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,11 @@
77
"cookie": "^1.0.2",
88
"exact-mirror": "0.2.2",
99
"fast-decode-uri-component": "^1.0.1",
10+
"memoirist": "^0.4.0",
1011
},
1112
"devDependencies": {
1213
"@elysiajs/openapi": "^1.4.1",
13-
"@types/bun": "^1.3.0",
14+
"@types/bun": "^1.2.12",
1415
"@types/cookie": "^1.0.0",
1516
"@types/fast-decode-uri-component": "^1.0.0",
1617
"@typescript-eslint/eslint-plugin": "^8.30.1",
@@ -23,7 +24,6 @@
2324
"expect-type": "^1.2.1",
2425
"file-type": "^20.4.1",
2526
"knip": "^5.64.1",
26-
"memoirist": "^0.4.0",
2727
"prettier": "^3.5.3",
2828
"tsup": "^8.4.0",
2929
"typescript": "^5.8.3",
@@ -32,12 +32,14 @@
3232
},
3333
"peerDependencies": {
3434
"@sinclair/typebox": ">= 0.34.0 < 1",
35+
"@types/bun": ">= 1.2.0",
3536
"exact-mirror": ">= 0.0.9",
3637
"file-type": ">= 20.0.0",
3738
"openapi-types": ">= 12.0.0",
3839
"typescript": ">= 5.0.0",
3940
},
4041
"optionalPeers": [
42+
"@types/bun",
4143
"typescript",
4244
],
4345
},

package.json

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -192,11 +192,12 @@
192192
"dependencies": {
193193
"cookie": "^1.0.2",
194194
"exact-mirror": "0.2.2",
195-
"fast-decode-uri-component": "^1.0.1"
195+
"fast-decode-uri-component": "^1.0.1",
196+
"memoirist": "^0.4.0"
196197
},
197198
"devDependencies": {
198199
"@elysiajs/openapi": "^1.4.1",
199-
"@types/bun": "^1.3.0",
200+
"@types/bun": "^1.2.12",
200201
"@types/cookie": "^1.0.0",
201202
"@types/fast-decode-uri-component": "^1.0.0",
202203
"@typescript-eslint/eslint-plugin": "^8.30.1",
@@ -209,14 +210,14 @@
209210
"expect-type": "^1.2.1",
210211
"file-type": "^20.4.1",
211212
"knip": "^5.64.1",
212-
"memoirist": "^0.4.0",
213213
"prettier": "^3.5.3",
214214
"tsup": "^8.4.0",
215215
"typescript": "^5.8.3",
216216
"valibot": "^1.1.0",
217217
"zod": "^4.1.5"
218218
},
219219
"peerDependencies": {
220+
"@types/bun": ">= 1.2.0",
220221
"@sinclair/typebox": ">= 0.34.0 < 1",
221222
"exact-mirror": ">= 0.0.9",
222223
"file-type": ">= 20.0.0",
@@ -227,6 +228,9 @@
227228
"esbuild": "0.25.4"
228229
},
229230
"peerDependenciesMeta": {
231+
"@types/bun": {
232+
"optional": true
233+
},
230234
"typescript": {
231235
"optional": true
232236
}

0 commit comments

Comments
 (0)