From ee0420ac5a40fc9610133f870e8a2cd71b3eb476 Mon Sep 17 00:00:00 2001 From: Louis Date: Tue, 9 Feb 2021 15:09:34 +0100 Subject: [PATCH] Prevent use of `saml2-js` version `2.1.0` or superior as it break some XML output. This can be restored when this PR is merged: https://github.com/Clever/saml2/pull/229 --- peertube-plugin-auth-saml2/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/peertube-plugin-auth-saml2/package.json b/peertube-plugin-auth-saml2/package.json index 131784e..9d374d5 100644 --- a/peertube-plugin-auth-saml2/package.json +++ b/peertube-plugin-auth-saml2/package.json @@ -19,6 +19,6 @@ "clientScripts": [], "translations": {}, "dependencies": { - "saml2-js": "^2.0.5" + "saml2-js": "~3.0.1" } }