Alosaur Versions Save

Alosaur - Deno web framework with many ES Decorators

v1.1.1

2 months ago
  • Fix performance in lite handler

Full Changelog: https://github.com/alosaur/alosaur/compare/v1.1.0...v1.1.1

v1.1.0

3 months ago

What's Changed

Full Changelog: https://github.com/alosaur/alosaur/compare/v1.0.0...v1.1.0

v1.0.0

3 months ago

Breacking changes

Es decorators

@Controller("/home")
export class HomeController {
   @Get("/query-name")
+  @ActionParam(0, QueryParam("name"))
+  text(name: string) {
-  text(@QueryParam("name") name: string) {
    return Content(`Hey! ${name}`);
  }
}

DI container

-@Controller("/home")
+@Controller({ baseRoute: "/home", ctor: { inject: ["FooService"] } })
export class HomeController {
  name: string | undefined = undefined;

-  constructor(@Inject("FooService") private service: FooService) {}
+  constructor(private service: FooService) {}
}

Full Changelog: https://github.com/alosaur/alosaur/compare/v0.38.0...v1.0.0

What's next?

  • Update to latest deno/std
  • Update to Deno.serve
  • Resolve issues

v0.38.0

1 year ago

What's Changed

New Contributors

Full Changelog: https://github.com/alosaur/alosaur/compare/v0.37.0...v0.38.0

v0.37.0

2 years ago

Up deps versions

v0.36.0

2 years ago
  • fix(core): Fix invalid immediate response from MiddlewareTarget::onPreRequest #174
  • feat(tools): uses default deno.json, update to latest deno, deno_doc up #177
  • feat(test): implement part of tests #178

thanks: @Ingrim4

v0.35.3

2 years ago

v0.35.2

2 years ago

v0.35.1

2 years ago

v0.35.0

2 years ago

Up deno deps