From c57dd46cc119849fc8e55437f8d8f48ab3373421 Mon Sep 17 00:00:00 2001 From: titanism <101466223+titanism@users.noreply.github.com> Date: Sat, 1 Jul 2023 11:07:04 -0500 Subject: [PATCH] fix: bump dayjs version (fixes #934) Per https://github.com/twilio/twilio-node/issues/934#issuecomment-1615975913 the version of `dayjs` should be at least `v1.11.9` to avoid an error. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 3271a1476..8798f2bea 100644 --- a/package.json +++ b/package.json @@ -21,7 +21,7 @@ }, "dependencies": { "axios": "^0.26.1", - "dayjs": "^1.8.29", + "dayjs": "^1.11.9", "https-proxy-agent": "^5.0.0", "jsonwebtoken": "^9.0.0", "qs": "^6.9.4",