From b1fa976bd74758f992518fa0f5c2508d590c0bc5 Mon Sep 17 00:00:00 2001 From: Varga Zsolt Date: Tue, 11 Jan 2022 15:38:33 +0100 Subject: [PATCH] Release 0.1.7 --- changelog.md | 6 ++++++ package.json | 4 ++-- .../http/provider/http-upstream.provider.ts | 16 +++++++++------- version | 2 +- 4 files changed, 18 insertions(+), 10 deletions(-) diff --git a/changelog.md b/changelog.md index 6b2e8819..1464263f 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,9 @@ +### Version 0.1.7 + +- Seamless HTTP restarts +- Proxified HTTP upstream servers +- Fix JSON Schema type bugs in the rest service + ### Version 0.1.6 - CRON based flow trigger diff --git a/package.json b/package.json index 0e4b73ac..eb5301a0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@artgen/core", - "version": "0.1.6", + "version": "0.1.7", "description": "Versatily headless CMS", "main": "build/main.js", "homepage": "https://artgen.io", @@ -181,4 +181,4 @@ "vite": "^2.6.10", "vite-react-jsx": "^1.1.2" } -} +} \ No newline at end of file diff --git a/src/modules/http/provider/http-upstream.provider.ts b/src/modules/http/provider/http-upstream.provider.ts index 0ea03d52..60489f02 100644 --- a/src/modules/http/provider/http-upstream.provider.ts +++ b/src/modules/http/provider/http-upstream.provider.ts @@ -38,9 +38,9 @@ export class HttpUpstreamProvider implements Provider { mode: 'dynamic', openapi: { info: { - title: 'Artgen API', - description: 'Http Server Documentation', - version: `RV1`, + title: 'Artgen Core - API', + description: 'Http Upstream Server Documentation', + version: `RV42`, }, components: { securitySchemes: { @@ -54,23 +54,25 @@ export class HttpUpstreamProvider implements Provider { type: 'apiKey', in: 'query', name: 'access-key', + description: 'Access Key identification in the query param', }, accessKeyHeader: { type: 'apiKey', in: 'header', name: 'X-Access-Key', + description: 'Access Key identification in the HTTP header', }, }, }, tags: [ - { - name: 'OData', - description: 'OData backed endpoints', - }, { name: 'Rest', description: 'Rest structured endpoints', }, + { + name: 'OData', + description: 'OData backed endpoints', + }, { name: 'Flow', description: 'Flow defined HTTP triggers', diff --git a/version b/version index a1922332..a1e1395a 100644 --- a/version +++ b/version @@ -1 +1 @@ -0.1.6 \ No newline at end of file +0.1.7 \ No newline at end of file