From 2a1d487756d01bfc93ae2371cf361c96c5d087b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Greg=20Berg=C3=A9?= Date: Wed, 23 Nov 2022 15:03:59 +0100 Subject: [PATCH] fix: stabilize axios version A bug introduced in Axios 1.2.0 makes it fail with transfer-encoding: chunked. Now the version is fixed to avoid any problem. --- package-lock.json | 4 ++-- packages/core/package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index 65d00e4..84fdf4c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -30101,7 +30101,7 @@ "version": "0.6.0", "license": "MIT", "dependencies": { - "axios": "^1.1.2", + "axios": "1.1.2", "convict": "^6.2.3", "debug": "^4.3.4", "env-ci": "^7.3.0", @@ -30387,7 +30387,7 @@ "version": "file:packages/core", "requires": { "@types/convict": "^6.1.1", - "axios": "^1.1.2", + "axios": "1.1.2", "convict": "^6.2.3", "debug": "^4.3.4", "env-ci": "^7.3.0", diff --git a/packages/core/package.json b/packages/core/package.json index 88578de..92034c6 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -45,7 +45,7 @@ "access": "public" }, "dependencies": { - "axios": "^1.1.2", + "axios": "1.1.2", "convict": "^6.2.3", "debug": "^4.3.4", "env-ci": "^7.3.0",