0
0
mirror of https://github.com/honojs/hono.git synced 2024-11-30 01:56:18 +01:00
Commit Graph

643 Commits

Author SHA1 Message Date
Yusuke Wada
c15cb7a9bb docs(readme): update 2022-07-02 21:32:02 +09:00
Yusuke Wada
7be6315ced v1.6.0 2022-07-02 18:32:55 +09:00
Yusuke Wada
d589ef0a7b docs(readme): update readme in deno_dist 2022-07-02 18:32:01 +09:00
Yusuke Wada
0c8d9ce98b docs: write about Deno 2022-07-02 18:29:09 +09:00
Yusuke Wada
c65e811796
chore: add benchmark scripts for deno (#337) 2022-07-02 17:51:59 +09:00
Yusuke Wada
fb8c7b5527 v1.6.0-0 2022-07-02 15:54:55 +09:00
Yusuke Wada
2cdeabb8eb chore: fixed package.json 2022-07-02 15:53:13 +09:00
Yusuke Wada
447fc3f4d6 chore: install np 2022-07-02 15:50:17 +09:00
Yusuke Wada
d9e9e62e47
feat: support Deno! (#336) 2022-07-02 15:09:45 +09:00
equt
a289e0fc8d
feat(context): type JSON object as generic var T (#335)
close #334
2022-07-02 09:11:03 +09:00
Yusuke Wada
1282473f85
refactor: enable strictPropertyInitialization (#333)
* refactor: enable `strictPropertyInitialization`

* checkout `0de127fd74879445b0910fd6505ca22a22a5d791`
2022-07-01 10:30:43 +09:00
Yusuke Wada
11d3d4e4c6 chore: bump up to v1.5.2 2022-06-27 14:09:22 +09:00
Yusuke Wada
7766139d27
feat(serve-static): add path option (#331) 2022-06-27 10:34:45 +09:00
Yusuke Wada
5125c780f0
refactor: make HonoRequest (#330)
* refactor: make `HonoRequest`

* apply to middlewares

* fix tests
2022-06-27 10:32:25 +09:00
Yusuke Wada
34aa124405 chore: update libs 2022-06-23 23:20:56 +09:00
唯岸 雪
02e32bdd3a
fix(typo) JSX README (#328) 2022-06-20 15:40:19 +09:00
Yusuke Wada
1de0305f3c chore: bump up to v1.5.1 2022-06-19 10:36:29 +09:00
Hans Otto Wirtz
157e4eaf3e
feat(context): add executionCtx to Context (#326) 2022-06-18 12:16:24 +09:00
Yusuke Wada
b82a75c992 chore: bump up to v1.5.0 2022-06-17 18:53:36 +09:00
Yusuke Wada
66c992c094 docs(readme): update 2022-06-17 18:48:50 +09:00
Yusuke Wada
6a7746de7d
refactor(trie-router): routes are returned in the registration order (#325) 2022-06-17 18:02:13 +09:00
Taku Amano
3179adc1c2
refactor(reg-exp-router): Routes are returned in the registration order. (#324) 2022-06-17 14:01:48 +09:00
Yusuke Wada
f6c9592609 chore: bump up to v1.4.7 2022-06-13 11:52:05 +09:00
Yusuke Wada
552be101b2 docs: fixed remissing property 2022-06-13 10:41:57 +09:00
Yusuke Wada
394aea104c refactor: remove not used file 2022-06-13 10:13:33 +09:00
Yusuke Wada
5976a60232
refactor(html): make html as middleware (#319) 2022-06-13 10:06:37 +09:00
Yusuke Wada
d43321109d
[BREAKING] refactor(jsx): h to jsx, remove h (#318) 2022-06-13 09:25:27 +09:00
Taku Amano
21aabc44f4
feat(utils/html): Introduce a function raw. (#316) 2022-06-12 11:46:51 +09:00
Taku Amano
9488e33279
feat: Introduce html template literals tag. (#312)
* refactor: Rename EscapedString to HtmlEscapedString.

* feat(utils/html): Introduce `html` template literals tag.

* refactor(middleware/jsx): Use HtmlEscapedString for Fragment.

* feat(utils/html): Arrays are handled in the same way as JSX
2022-06-12 10:24:50 +09:00
Taku Amano
5993b61067
feat(middleware/jsx): We need Fragment. (#310) 2022-06-12 08:20:31 +09:00
Yusuke Wada
cfc8c6ee9d chore: bump up to v1.4.6 2022-06-10 18:50:20 +09:00
Yusuke Wada
583d3d498b
Merge pull request #306 from honojs/feat/jsx
feat: jsx middleware
2022-06-10 18:43:22 +09:00
Yusuke Wada
e6c916a6ce docs: add docs for JSX middleware 2022-06-10 18:37:30 +09:00
Taku Amano
9ae8f7295d
feat(middleware/jsx): Introduce memo. (#309)
* feat(middleware/jsx): Introduce memo.

* fix(middleware/jsx): propsAreEqual is always defined.
2022-06-10 15:09:29 +09:00
Taku Amano
ddd905ec26
feat(middleware/jsx): Support dangerouslySetInnerHTML and some special spec (#308)
* feat(middleware/jsx): handle some special cases for jsx.

* feat(middleware/jsx): Support dangerouslySetInnerHTML.
2022-06-10 10:19:04 +09:00
Taku Amano
b96526270e
perf(utils/html): Improve performance escape() (#307) 2022-06-10 07:47:43 +09:00
Eric Lee
d2a4b2dfb1
Export md5 function in src/utils/crypto.ts (#305)
* Export `md5` function in src/utils/crypto.ts

Export an additional `md5` function in the crypto utility.

Useful when working with R2 and providing a MD5 hash for verification.

```
import { md5 } from "hono/utils/crypto";

...
const md5Digest = md5(body);
const object = await bucket.put(key, body, {md5: md5Digest});
```

* Update crypto.test.ts

Add a test for 'md5' crypto utility function.

* Add forgotten import to crypto.test.ts
2022-06-10 07:45:51 +09:00
Charl Kruger
6b8d605375
Update README.md (#304)
* Update README.md

Adding some clarity on how to access bindings like secrets

* Update README.md
2022-06-07 21:09:17 +09:00
Yusuke Wada
273106cfa9 [WIP] feat: jsx middleware 2022-06-07 19:03:42 +09:00
Yusuke Wada
38a8c46568
feat: notFound support asyc/await (#303)
Close #302
2022-06-07 16:13:12 +09:00
Yusuke Wada
8506ed4969 chore: bump up to v1.4.5 2022-06-07 10:24:50 +09:00
Yusuke Wada
0de127fd74
feat: throw error if context is not finalized (#301)
* feat: throw error if context is not finalized

* remove duplicate
2022-06-07 10:20:05 +09:00
Yusuke Wada
7c244c3bb3
feat(middleware): add bearer auth middleware (#299)
* feat(middleware): add bearer auth middleware

Close #279

* add prefix option

* tweak
2022-06-06 08:38:33 +09:00
Yusuke Wada
153fe69b17 chore: bump up to v1.4.4 2022-06-04 20:10:45 +09:00
Taku Amano
078c5ddf4d
fix: Import "declare global" for the Request interface explicitly. (#298) 2022-06-04 19:57:28 +09:00
Minghe
92793399a3
fix(status): make the status 401 for the invalid authorization info (#296) 2022-06-03 11:14:40 +09:00
Yusuke Wada
b17d56fd7e chore: bump up to v1.4.3 2022-06-02 15:22:09 +09:00
Yusuke Wada
6a42e1c847 chore(type): fixed generics warnings 2022-06-02 15:20:03 +09:00
Yusuke Wada
d54ff87c58 chore(benchmark): tweak, Hono is really fastest! 2022-06-02 15:10:57 +09:00
Minghe
06b37a4a8a
fix(test): upgrade the miniflare to consume the fix on node18 (#295) 2022-06-02 14:56:35 +09:00