Skip to content

Commit 0b2b7ed

Browse files
committed
🔧 fix: merge pr and publish beta
1 parent d46f594 commit 0b2b7ed

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ Bug fix:
1313
- [#1274](https://github.com/elysiajs/elysia/issues/1274) support .use(undefined | false) for conditional plugin
1414
- [#1276](https://github.com/elysiajs/elysia/issues/1276) mapResponse with set inference produce invalid instruction
1515
- [#1268](https://github.com/elysiajs/elysia/issues/1268) using number instead of stringifed value for reporting validation error
16+
- [#1297](https://github.com/elysiajs/elysia/issues/1297), [#1325](https://github.com/elysiajs/elysia/pull/1325) fix HTML imported pages in compiled apps
17+
- [#1319](https://github.com/elysiajs/elysia/pull/1319) fix array of plugin usage causes incorrect path aggregation
1618
- [#1323](https://github.com/elysiajs/elysia/issues/1323) don't duplicate error from plugin
1719
- dynamic handle should handle named parser
1820
- hand

example/a.ts

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
import { Elysia, t } from '../src'
2+
import Index from './index.html'
23

3-
const app = new Elysia({ precompile: true })
4+
const app = new Elysia()
45
.get(
56
'/',
6-
async () => {
7-
// `b: 2` should not be included, yet it is.
8-
return { keys: [{ a: 1, b: 2 }], extra: true }
9-
},
7+
Index,
108
{
119
response: t.Object(
1210
{ keys: t.Array(t.Object({ a: t.Number() })) },

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.3.9-beta.2",
4+
"version": "1.3.9-beta.4",
55
"author": {
66
"name": "saltyAom",
77
"url": "https://github.com/SaltyAom",

0 commit comments

Comments
 (0)