From 871a7423314f877b3a3a4c763d4538b91f6f1410 Mon Sep 17 00:00:00 2001 From: Florian Rudisch Date: Sun, 16 Jan 2022 11:48:02 +0100 Subject: [PATCH] Release 1.0.0 (#5) --- CHANGELOG.md | 9 +++++++++ package.json | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..93856a2 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,9 @@ +# CHANGELOG + +## 1.0.0 (16.01.2022) + +Features: + + - add middleware for azure function to use generic functionality across multiple azure functions + - add [joi](https://github.com/sideway/joi) validation as integration for the middleware to validate incomming requests against a schema + - add JWT authorization as integration for the middleware to authorize requests against a passed JWT diff --git a/package.json b/package.json index fbe0967..78f0a3c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@senacor/azure-function-middleware", - "version": "0.0.1", + "version": "1.0.0", "description": "Middleware for azure functions to handle authentication, authorization, error handling and logging", "main": "dist/index.js", "types": "dist/index.d.ts",