File tree Expand file tree Collapse file tree 3 files changed +8
-4
lines changed
Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 1- # 1.4.29
1+ # 1.4.29 - 17 Mar 2025
22Feature:
33- [ #1803 ] ( https://github.com/elysiajs/elysia/pull/1803 ) stream response with pull based backpressure
44- [ #1802 ] ( https://github.com/elysiajs/elysia/pull/1802 ) handle range header for file/blob response
@@ -16,6 +16,7 @@ Bug fix:
1616- detect HTML bundle when inline response is Promise
1717
1818Change:
19+ - [ #1613 ] ( https://github.com/elysiajs/elysia/pull/1613 ) export ` ElysiaTypeCustomErrors `
1920- remove Bun specific built
2021- export ` AnySchema ` , ` UnwrapSchema ` , ` ModelsToTypes ` from root
2122
Original file line number Diff line number Diff line change 11{
22 "name" : " elysia" ,
33 "description" : " Ergonomic Framework for Human" ,
4- "version" : " 1.4.28-exp.0 " ,
4+ "version" : " 1.4.29 " ,
55 "author" : {
66 "name" : " saltyAom" ,
77 "url" : " https://github.com/SaltyAom" ,
Original file line number Diff line number Diff line change @@ -10,10 +10,10 @@ import type {
1010 TUnsafe ,
1111 Uint8ArrayOptions
1212} from '@sinclair/typebox'
13- import { ValueError } from '@sinclair/typebox/errors'
13+ import type { ValueError } from '@sinclair/typebox/errors'
1414import type { TypeCheck } from '@sinclair/typebox/compiler'
1515
16- import { ElysiaFormData } from '../utils'
16+ import type { ElysiaFormData } from '../utils'
1717import type { CookieOptions } from '../cookies'
1818import type { MaybeArray } from '../types'
1919
@@ -146,6 +146,9 @@ export type TForm<T extends TProperties = TProperties> = TUnsafe<
146146>
147147
148148/**
149+ * !important
150+ * @see https://github.com/elysiajs/elysia/pull/1613
151+ *
149152 * Augment this interface to extend allowed values for SchemaOptions['error'].
150153 * Defining custom string templates will add autocomplete while allowing any arbitrary string, number, etc.
151154 *
You can’t perform that action at this time.
0 commit comments