Skip to content

Commit

Permalink
Release 0.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kitsonk committed Jul 9, 2024
1 parent fd092b3 commit 82998d3
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# @oak/commons Change Log

## Version 0.13.0

- feat: add assert (22ddaa9)

Oak commons now has an `assert()` function that throws an HTTP error, which is
useful when asserting something in middleware or a handler where a more
informative response can be sent to the client.

- feat: add keystack (fd092b3)

Oak commons has taken back over a previous contribution to the Deno std
library that was removed. It is used to manage multiple encryption keys and
adheres to the interface of the secure cookie map to be able to sign and
verify cookies.

- chore: update std dependencies (73b5576)

## Version 0.12.0

- feat: add `asResponse()` method to HTTP errors (36f8232)
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/commons",
"version": "0.12.0",
"version": "0.13.0",
"exports": {
"./assert": "./assert.ts",
"./cookie_map": "./cookie_map.ts",
Expand Down

0 comments on commit 82998d3

Please sign in to comment.