Skip to content

Commit 708f8c6

Browse files
committed
📘 doc: document changelog
1 parent 7acc183 commit 708f8c6

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# 1.4.29
1+
# 1.4.29 - 17 Mar 2025
22
Feature:
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

1818
Change:
19+
- [#1613](https://github.com/elysiajs/elysia/pull/1613) export `ElysiaTypeCustomErrors`
1920
- remove Bun specific built
2021
- export `AnySchema`, `UnwrapSchema`, `ModelsToTypes` from root
2122

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
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",

src/type-system/types.ts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff 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'
1414
import type { TypeCheck } from '@sinclair/typebox/compiler'
1515

16-
import { ElysiaFormData } from '../utils'
16+
import type { ElysiaFormData } from '../utils'
1717
import type { CookieOptions } from '../cookies'
1818
import 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
*

0 commit comments

Comments
 (0)