3.0.0
The main breaking change in version 3 is that the function signature now uses the W3C standard Request
and Response
classes directly:
export default (req: Request) => {
return new Response(`Hello, from Deno v${Deno.version.deno}!`);
};
Please see the migration guide for further details.
Major Changes
- Remove legacy interfaces, implement Vercel style interface: #132
- Remove deprecated syntax from dev server: 554900e
- Remove shebang flag file path relativization: 2ed3652
Minor Changes
- Extract build logic into
DenoLambda
class: #133
Patches
Credits
Huge thanks to @katsuki-yuri and @kidonng for helping!