diff --git a/HISTORY.rst b/HISTORY.rst index e0c5da850787b06bb721e7bf5c59fa2faf545c03_SElTVE9SWS5yc3Q=..6ae2dd22da4bcfec2bd0c45f0217c6a90d05abc3_SElTVE9SWS5yc3Q= 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,8 +1,11 @@ Release history =============== +0.6.0 (2023-03-14) +================== + - api: - template-add/template-update: body/body-format errors now return 400 errors and not 500. @@ -4,8 +7,16 @@ - api: - template-add/template-update: body/body-format errors now return 400 errors and not 500. + - template-add/template-update: duplicate template name now return a 400 + status. + + - template-list does not return template bodies anymore, for big speed-up. + +- Renderings are now logged in the 'render_logs' table (and to prometheus + summaries), and can be retrived with /v1/renderlogs/{period} + 0.5.0 (2022-11-15) ================== diff --git a/restapi/doc.go b/restapi/doc.go index e0c5da850787b06bb721e7bf5c59fa2faf545c03_cmVzdGFwaS9kb2MuZ28=..6ae2dd22da4bcfec2bd0c45f0217c6a90d05abc3_cmVzdGFwaS9kb2MuZ28= 100644 --- a/restapi/doc.go +++ b/restapi/doc.go @@ -10,7 +10,7 @@ // https // Host: localhost // BasePath: /api -// Version: 0.5.0 +// Version: 0.6.0 // // Consumes: // - application/io.orus.rednerd.v1+json diff --git a/restapi/embedded_spec.go b/restapi/embedded_spec.go index e0c5da850787b06bb721e7bf5c59fa2faf545c03_cmVzdGFwaS9lbWJlZGRlZF9zcGVjLmdv..6ae2dd22da4bcfec2bd0c45f0217c6a90d05abc3_cmVzdGFwaS9lbWJlZGRlZF9zcGVjLmdv 100644 --- a/restapi/embedded_spec.go +++ b/restapi/embedded_spec.go @@ -33,7 +33,7 @@ "info": { "description": "The Rednerd rendering server. For a list of available rendering engines\nand their options, see \u003ca href=\"/docs/engines\"\u003eRednerd Engines\u003c/a\u003e.\n", "title": "Rednerd API", - "version": "0.5.0" + "version": "0.6.0" }, "basePath": "/api", "paths": { @@ -1271,7 +1271,7 @@ "info": { "description": "The Rednerd rendering server. For a list of available rendering engines\nand their options, see \u003ca href=\"/docs/engines\"\u003eRednerd Engines\u003c/a\u003e.\n", "title": "Rednerd API", - "version": "0.5.0" + "version": "0.6.0" }, "basePath": "/api", "paths": { diff --git a/swagger.yaml b/swagger.yaml index e0c5da850787b06bb721e7bf5c59fa2faf545c03_c3dhZ2dlci55YW1s..6ae2dd22da4bcfec2bd0c45f0217c6a90d05abc3_c3dhZ2dlci55YW1s 100644 --- a/swagger.yaml +++ b/swagger.yaml @@ -6,7 +6,7 @@ and their options, see <a href="/docs/engines">Rednerd Engines</a>. title: Rednerd API - version: 0.5.0 + version: 0.6.0 consumes: - application/io.orus.rednerd.v1+json - application/json