From e01275bb10d868a064d0cb27a6ae11ffa3d91ac2 Mon Sep 17 00:00:00 2001 From: Jordan Hawker Date: Sun, 12 Mar 2023 12:55:51 -0700 Subject: [PATCH] Un-pin @sinonjs/fake-timers (#2495) The commit upgrading from v9 to v10 appears to have accidentally dropped the caret from the version range, pinning it to a single version: https://github.com/sinonjs/sinon/commit/aa493da47d788025c0d512696651072973f301ec Un-pinning the version will allow sinon and its consumers to automatically pick up new in-range versions of @sinonjs/fake-timers as they're released in the future. --- package-lock.json | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package-lock.json b/package-lock.json index 3789f38b6..215dba9f7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -10,7 +10,7 @@ "license": "BSD-3-Clause", "dependencies": { "@sinonjs/commons": "^2.0.0", - "@sinonjs/fake-timers": "10.0.2", + "@sinonjs/fake-timers": "^10.0.2", "@sinonjs/samsam": "^7.0.1", "diff": "^5.0.0", "nise": "^5.1.2", diff --git a/package.json b/package.json index a094c2d5e..0f3461780 100644 --- a/package.json +++ b/package.json @@ -74,7 +74,7 @@ }, "dependencies": { "@sinonjs/commons": "^2.0.0", - "@sinonjs/fake-timers": "10.0.2", + "@sinonjs/fake-timers": "^10.0.2", "@sinonjs/samsam": "^7.0.1", "diff": "^5.0.0", "nise": "^5.1.2",