From 7949e3fa272a25c2d71b1794b1514cbe1624f168 Mon Sep 17 00:00:00 2001 From: Naseem Date: Tue, 28 Jan 2020 10:04:47 -0500 Subject: [PATCH] [ioredis plugin] fix: change supportedVersions to >1 <5 (#671) * fix: change supportedVersions to 4.x.x * fix: supported versions Co-authored-by: Daniel Dyla --- packages/opentelemetry-plugin-ioredis/src/ioredis.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/opentelemetry-plugin-ioredis/src/ioredis.ts b/packages/opentelemetry-plugin-ioredis/src/ioredis.ts index 7d08fd0fed..978ec8322f 100644 --- a/packages/opentelemetry-plugin-ioredis/src/ioredis.ts +++ b/packages/opentelemetry-plugin-ioredis/src/ioredis.ts @@ -23,7 +23,7 @@ import { VERSION } from './version'; export class IORedisPlugin extends BasePlugin { static readonly COMPONENT = 'ioredis'; static readonly DB_TYPE = 'redis'; - readonly supportedVersions = ['^2.0.0']; + readonly supportedVersions = ['>1 <5']; constructor(readonly moduleName: string) { super('@opentelemetry/plugin-ioredis', VERSION);