Skip to content

Commit

Permalink
Release 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kitsonk committed Jul 28, 2024
1 parent 24b050a commit 2678270
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# acorn change log

## Version 1.0.0

A fundamental rewrite of acorn to provide a cleaner and more cohesive way to
create RESTful services.

Notable features of acorn 1.0:

- Integrated request body, response body and request query parameter validation
via integrated [valibot](https://valibot.dev/).
- Integrated logger supporting logging to the console, rotating files or
streams.
- A more rich `Context` which provides short-cuts for common RESTful situations
like redirection, object creation and not found handling. In addition
providing runtime agnostic access to environment variables.
- Default handling of exceptions, not found resources and method not allowed.
- Status routes to allow generalized handling of response statuses.
- Hooks to provide insight into the inner workings of acorn.
- More robust support for Node.js, Bun, and Cloudflare Workers.

## Version 0.7.1

- docs: improve examples (7a20b7e)
Expand Down
2 changes: 1 addition & 1 deletion deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@oak/acorn",
"version": "1.0.0-alpha.6",
"version": "1.0.0",
"exports": { ".": "./mod.ts" },
"publish": {
"exclude": [
Expand Down

0 comments on commit 2678270

Please sign in to comment.