Closed renovate[bot] closed 11 months ago
The latest updates on your projects. Learn more about Vercel for Git βοΈ
Name | Status | Preview | Comments | Updated |
---|---|---|---|---|
artifact-viewer | β Failed (Inspect) | Mar 24, 2023 at 11:10PM (UTC) |
Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.
β» Renovate will retry this branch, including artifacts, only when one of the following happens:
The artifact failure details are included below:
Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit
This PR contains the following updates:
2.2.1
->2.7.8
Release Notes
honojs/hono (hono)
### [`v2.7.8`](https://togithub.com/honojs/hono/releases/tag/v2.7.8) [Compare Source](https://togithub.com/honojs/hono/compare/v2.7.7...v2.7.8) ##### Summary This is a patch release. The type definition returned by `c.req.header()` was `string`, but it has been corrected to `string | undefined`. ##### What's Changed - header may return undefined by [@AlexErrant](https://togithub.com/AlexErrant) in [https://github.com/honojs/hono/pull/884](https://togithub.com/honojs/hono/pull/884) ##### New Contributors - [@AlexErrant](https://togithub.com/AlexErrant) made their first contribution in [https://github.com/honojs/hono/pull/884](https://togithub.com/honojs/hono/pull/884) **Full Changelog**: https://github.com/honojs/hono/compare/v2.7.7...v2.7.8 ### [`v2.7.7`](https://togithub.com/honojs/hono/releases/tag/v2.7.7) [Compare Source](https://togithub.com/honojs/hono/compare/v2.7.6...v2.7.7) ##### Summary Since it only includes a slight change in the feature, released as a patch-release. ##### Enable `onError` of sub instances This release enables `onError` of sub instances attached by `app.route()`. ```ts const app = new Hono() const sub = new Hono() sub.get('/ok', async (c) => { return c.text('ok') }) sub.get('/error', () => { throw new Error('This is Error') }) sub.onError((_, c) => { return c.text('onError by sub', 500) }) app.route('/sub', sub) ``` If you access `GET /sub/error`, it will return `onError by sub`. ##### What's Changed - feat: use added app's errorHandler by [@usualoma](https://togithub.com/usualoma) in [https://github.com/honojs/hono/pull/871](https://togithub.com/honojs/hono/pull/871) - Revert "feat: use added app's errorHandler ([#871](https://togithub.com/honojs/hono/issues/871))" by [@yusukebe](https://togithub.com/yusukebe) in [https://github.com/honojs/hono/pull/872](https://togithub.com/honojs/hono/pull/872) - feat: use added app's errorHandler with comose() by [@usualoma](https://togithub.com/usualoma) in [https://github.com/honojs/hono/pull/874](https://togithub.com/honojs/hono/pull/874) **Full Changelog**: https://github.com/honojs/hono/compare/v2.7.6...v2.7.7 ### [`v2.7.6`](https://togithub.com/honojs/hono/releases/tag/v2.7.6) [Compare Source](https://togithub.com/honojs/hono/compare/v2.7.5...v2.7.6) ##### Summary This is a patch release. ##### What's Changed - Missing mime types by [@Hoodgail](https://togithub.com/Hoodgail) in [https://github.com/honojs/hono/pull/827](https://togithub.com/honojs/hono/pull/827) - Fix 404 error on Serve Static Middleware by [@BioniCosmos](https://togithub.com/BioniCosmos) in [https://github.com/honojs/hono/pull/863](https://togithub.com/honojs/hono/pull/863) - fix(serve-static): decode url pathname by [@yusukebe](https://togithub.com/yusukebe) in [https://github.com/honojs/hono/pull/864](https://togithub.com/honojs/hono/pull/864) - chore: denoify by [@yusukebe](https://togithub.com/yusukebe) in [https://github.com/honojs/hono/pull/865](https://togithub.com/honojs/hono/pull/865) ##### New Contributors - [@Hoodgail](https://togithub.com/Hoodgail) made their first contribution in [https://github.com/honojs/hono/pull/827](https://togithub.com/honojs/hono/pull/827) - [@BioniCosmos](https://togithub.com/BioniCosmos) made their first contribution in [https://github.com/honojs/hono/pull/863](https://togithub.com/honojs/hono/pull/863) **Full Changelog**: https://github.com/honojs/hono/compare/v2.7.5...v2.7.6 ### [`v2.7.5`](https://togithub.com/honojs/hono/releases/tag/v2.7.5) [Compare Source](https://togithub.com/honojs/hono/compare/v2.7.4...v2.7.5) ##### Summary This is a patch release. ##### What's Changed - fix(context): fixed bug raw `Response` content-type is overwritten by [@yusukebe](https://togithub.com/yusukebe) in [https://github.com/honojs/hono/pull/836](https://togithub.com/honojs/hono/pull/836) **Full Changelog**: https://github.com/honojs/hono/compare/v2.7.4...v2.7.5 ### [`v2.7.4`](https://togithub.com/honojs/hono/releases/tag/v2.7.4) [Compare Source](https://togithub.com/honojs/hono/compare/v2.7.3...v2.7.4) ##### Summary This is a patch release. ##### What's Changed - build: validate package exports after build by [@yudai-nkt](https://togithub.com/yudai-nkt) in [https://github.com/honojs/hono/pull/824](https://togithub.com/honojs/hono/pull/824) - fix(request): make optional param type correct by [@yusukebe](https://togithub.com/yusukebe) in [https://github.com/honojs/hono/pull/826](https://togithub.com/honojs/hono/pull/826) - fix(context): set the header values of already set by [@yusukebe](https://togithub.com/yusukebe) in [https://github.com/honojs/hono/pull/834](https://togithub.com/honojs/hono/pull/834) **Full Changelog**: https://github.com/honojs/hono/compare/v2.7.3...v2.7.4 ### [`v2.7.3`](https://togithub.com/honojs/hono/releases/tag/v2.7.3) [Compare Source](https://togithub.com/honojs/hono/compare/v2.7.2...v2.7.3) ##### Summary This is a patch release. ##### What's Changed - remove unnecessary individual strict mode family options by [@hclj37](https://togithub.com/hclj37) in [https://github.com/honojs/hono/pull/805](https://togithub.com/honojs/hono/pull/805) - fix(context): enable destruction such `json` by [@yusukebe](https://togithub.com/yusukebe) in [https://github.com/honojs/hono/pull/813](https://togithub.com/honojs/hono/pull/813) - fix: fixed type error for optional parameters by [@yusukebe](https://togithub.com/yusukebe) in [https://github.com/honojs/hono/pull/814](https://togithub.com/honojs/hono/pull/814) ##### New Contributors - [@hclj37](https://togithub.com/hclj37) made their first contribution in [https://github.com/honojs/hono/pull/805](https://togithub.com/honojs/hono/pull/805) **Full Changelog**: https://github.com/honojs/hono/compare/v2.7.2...v2.7.3 ### [`v2.7.2`](https://togithub.com/honojs/hono/releases/tag/v2.7.2) [Compare Source](https://togithub.com/honojs/hono/compare/v2.7.1...v2.7.2) ##### Summary This is a patch release. ##### What's Changed - chore: update license, contributors as the copyright holders by [@yusukebe](https://togithub.com/yusukebe) in [https://github.com/honojs/hono/pull/769](https://togithub.com/honojs/hono/pull/769) - fix(package.json): typo exports static-router by [@taishinaritomi](https://togithub.com/taishinaritomi) in [https://github.com/honojs/hono/pull/776](https://togithub.com/honojs/hono/pull/776) - fix(cors): fix bugs handling pre-flight by [@yusukebe](https://togithub.com/yusukebe) in [https://github.com/honojs/hono/pull/792](https://togithub.com/honojs/hono/pull/792) **Full Changelog**: https://github.com/honojs/hono/compare/v2.7.1...v2.7.2 ### [`v2.7.1`](https://togithub.com/honojs/hono/releases/tag/v2.7.1) [Compare Source](https://togithub.com/honojs/hono/compare/v2.7.0...v2.7.1) ##### Summary Nothing has changed in this version-up. But, the current Validator Middleware has been deprecated. See the migration guide: https://github.com/honojs/hono/blob/main/docs/MIGRATION.md ##### What's Changed - docs(migration): write about validator middleware by [@yusukebe](https://togithub.com/yusukebe) in [https://github.com/honojs/hono/pull/759](https://togithub.com/honojs/hono/pull/759) - chore(validator): show warnings about the breaking changes by [@yusukebe](https://togithub.com/yusukebe) in [https://github.com/honojs/hono/pull/760](https://togithub.com/honojs/hono/pull/760) **Full Changelog**: https://github.com/honojs/hono/compare/v2.7.0...v2.7.1 ### [`v2.7.0`](https://togithub.com/honojs/hono/releases/tag/v2.7.0) [Compare Source](https://togithub.com/honojs/hono/compare/v2.6.2...v2.7.0) ##### Summary [Lagon](https://lagon.app) is another serverless edge function runtime like Cloudflare Workers or Deno Deploy. Hono was already running on Lagon but added tests/CI for Lagon, and now generally supported! Thanks [@QuiiBz](https://togithub.com/QuiiBz) ! And fix the bug that occurred when we set `"moduleResolution": "NodeNext"` in tsconfig.json. Thanks [@taishinaritomi](https://togithub.com/taishinaritomi) ! ##### What's Changed - feat: Lagon support with runtime detection & tests by [@QuiiBz](https://togithub.com/QuiiBz) in [https://github.com/honojs/hono/pull/742](https://togithub.com/honojs/hono/pull/742) - fix: Support tsconfig.json "moduleResolution" : "NodeNext" by [@taishinaritomi](https://togithub.com/taishinaritomi) in [https://github.com/honojs/hono/pull/747](https://togithub.com/honojs/hono/pull/747) ##### New Contributors - [@QuiiBz](https://togithub.com/QuiiBz) made their first contribution in [https://github.com/honojs/hono/pull/742](https://togithub.com/honojs/hono/pull/742) **Full Changelog**: https://github.com/honojs/hono/compare/v2.6.2...v2.7.0 ### [`v2.6.2`](https://togithub.com/honojs/hono/releases/tag/v2.6.2) [Compare Source](https://togithub.com/honojs/hono/compare/v2.6.1...v2.6.2) ##### Summary This release includes a performance improvement and some bug fixes. ##### What's Changed - Log a more detailed error stack. by [@renhiyama](https://togithub.com/renhiyama) in [https://github.com/honojs/hono/pull/719](https://togithub.com/honojs/hono/pull/719) - fix(type): make `SchemaToProp` work correctly by [@yusukebe](https://togithub.com/yusukebe) in [https://github.com/honojs/hono/pull/720](https://togithub.com/honojs/hono/pull/720) - fix(request): `c.req.param()` should return `undefined` not "undefined" by [@yusukebe](https://togithub.com/yusukebe) in [https://github.com/honojs/hono/pull/721](https://togithub.com/honojs/hono/pull/721) - perf(context): `c.text()` returns a response immediately if header is empty by [@yusukebe](https://togithub.com/yusukebe) in [https://github.com/honojs/hono/pull/722](https://togithub.com/honojs/hono/pull/722) ##### New Contributors - [@renhiyama](https://togithub.com/renhiyama) made their first contribution in [https://github.com/honojs/hono/pull/719](https://togithub.com/honojs/hono/pull/719) **Full Changelog**: https://github.com/honojs/hono/compare/v2.6.1...v2.6.2 ### [`v2.6.1`](https://togithub.com/honojs/hono/releases/tag/v2.6.1) [Compare Source](https://togithub.com/honojs/hono/compare/v2.6.0...v2.6.1) ##### Summary This is a patch release. ##### What's Changed - fix(type): fix the type mismatch if using `Handler` as middleware by [@yusukebe](https://togithub.com/yusukebe) in [https://github.com/honojs/hono/pull/714](https://togithub.com/honojs/hono/pull/714) - fix(type): infer types correctly by [@yusukebe](https://togithub.com/yusukebe) in [https://github.com/honojs/hono/pull/715](https://togithub.com/honojs/hono/pull/715) **Full Changelog**: https://github.com/honojs/hono/compare/v2.6.0...v2.6.1 ### [`v2.6.0`](https://togithub.com/honojs/hono/releases/tag/v2.6.0) [Compare Source](https://togithub.com/honojs/hono/compare/v2.5.10...v2.6.0) ##### Summary This release includes the new feature for adavanced users, it will be important in the future!! ##### BREAKING CHANGE `c.req.cookie()` now returns `string | undefined`. This may cause a Type error. ##### You can use 3rd party libs for the validation It become to allow normal types, instead of only allowing `Schema` in the Handler. ```ts type User = { id: string name: string age: number } const handler: HandlerConfiguration
π Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
π¦ Automerge: Disabled by config. Please merge this manually once you are satisfied.
β» Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
π Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Mend Renovate. View repository job log here.