From afd8fda9b60c06385ff80f6303e517d4f7cc8c45 Mon Sep 17 00:00:00 2001 From: Thomas Heartman Date: Thu, 20 Apr 2023 12:29:11 +0200 Subject: [PATCH] 0.15.2 (#128) This PR releases v0.15.2. It contains a bugfix (#126) for the recently released content-type checking that the proxy does. ## The content-type bug Prior to this fix, the content-type checking would apply to all endpoints on the app you use for the proxy. If you use the proxy as a standalone app, then that doesn't really matter, but if you pass in a separate app, then all non-proxy endpoints will also have the content-type checking applied. The fix, provided by @Dzixxx, makes it so that the content-type validation only happens on the endpoints bundled by the proxy. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 1335e4f..757bf02 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@unleash/proxy", - "version": "0.15.1", + "version": "0.15.2", "description": "The Unleash Proxy (Open-Source)", "main": "dist/index.js", "types": "dist/index.d.ts",