Skip to content

3.0.0

Compare
Choose a tag to compare
@TooTallNate TooTallNate released this 19 Feb 20:49

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

  • Update Deno std used by dev server: #102
  • Default to Deno v1.30.3: d3ce5c1

Credits

Huge thanks to @katsuki-yuri and @kidonng for helping!