From a29ba61d8215579ad8c88629514d519b612ed79d Mon Sep 17 00:00:00 2001 From: Steve Liu Date: Tue, 3 Dec 2024 11:27:18 -0800 Subject: [PATCH] Temporary Fix for Failing MySql2 Contract Tests (#125) Changes to mysql2 upstream 3.11.5 has caused failures in contract tests. Currently locking it to 3.11.4 until a fix is implemented. *Description of changes:* Locking the package.json in mysql2 to 3.11.4 By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice. --- contract-tests/images/applications/mysql2/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contract-tests/images/applications/mysql2/package.json b/contract-tests/images/applications/mysql2/package.json index edf0fcd..0c1fe64 100644 --- a/contract-tests/images/applications/mysql2/package.json +++ b/contract-tests/images/applications/mysql2/package.json @@ -10,6 +10,6 @@ "license": "ISC", "description": "", "dependencies": { - "mysql2": "^3.11.3" + "mysql2": "3.11.4" } }