From e496ec310cbe0c3178c045151a97b8444c9b2ac7 Mon Sep 17 00:00:00 2001 From: shacharPash Date: Thu, 24 Aug 2023 16:31:30 +0300 Subject: [PATCH 1/2] deprecated redisGraph --- src/NRedisStack/Graph/IGraphCommands.cs | 1 + src/NRedisStack/Graph/IGraphCommandsAsync.cs | 1 + 2 files changed, 2 insertions(+) diff --git a/src/NRedisStack/Graph/IGraphCommands.cs b/src/NRedisStack/Graph/IGraphCommands.cs index 8995d072..64ba041f 100644 --- a/src/NRedisStack/Graph/IGraphCommands.cs +++ b/src/NRedisStack/Graph/IGraphCommands.cs @@ -3,6 +3,7 @@ namespace NRedisStack { + [Obsolete("RedisGraph is not supported since Redis 7.2 (https://redis.com/blog/redisgraph-eol/)")] public interface IGraphCommands { /// diff --git a/src/NRedisStack/Graph/IGraphCommandsAsync.cs b/src/NRedisStack/Graph/IGraphCommandsAsync.cs index 7ea98ec8..a6d2d36d 100644 --- a/src/NRedisStack/Graph/IGraphCommandsAsync.cs +++ b/src/NRedisStack/Graph/IGraphCommandsAsync.cs @@ -3,6 +3,7 @@ namespace NRedisStack { + [Obsolete("RedisGraph is not supported since Redis 7.2 (https://redis.com/blog/redisgraph-eol/)")] public interface IGraphCommandsAsync { /// From 7bff03514d9707fb4e16bd78d91b89de116e8490 Mon Sep 17 00:00:00 2001 From: "Chayim I. Kirshen" Date: Sun, 3 Sep 2023 09:23:36 +0300 Subject: [PATCH 2/2] updating deprecation text --- src/NRedisStack/Graph/IGraphCommands.cs | 4 ++-- src/NRedisStack/Graph/IGraphCommandsAsync.cs | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/NRedisStack/Graph/IGraphCommands.cs b/src/NRedisStack/Graph/IGraphCommands.cs index 64ba041f..af341c02 100644 --- a/src/NRedisStack/Graph/IGraphCommands.cs +++ b/src/NRedisStack/Graph/IGraphCommands.cs @@ -3,7 +3,7 @@ namespace NRedisStack { - [Obsolete("RedisGraph is not supported since Redis 7.2 (https://redis.com/blog/redisgraph-eol/)")] + [Obsolete("RedisGraph supported is deprecated as of Redis Stack 7.2 (https://redis.com/blog/redisgraph-eol/)")] public interface IGraphCommands { /// @@ -140,4 +140,4 @@ public interface IGraphCommands /// List> Slowlog(string graphName); } -} \ No newline at end of file +} diff --git a/src/NRedisStack/Graph/IGraphCommandsAsync.cs b/src/NRedisStack/Graph/IGraphCommandsAsync.cs index a6d2d36d..62c49d18 100644 --- a/src/NRedisStack/Graph/IGraphCommandsAsync.cs +++ b/src/NRedisStack/Graph/IGraphCommandsAsync.cs @@ -3,7 +3,7 @@ namespace NRedisStack { - [Obsolete("RedisGraph is not supported since Redis 7.2 (https://redis.com/blog/redisgraph-eol/)")] + [Obsolete("RedisGraph supported is deprecated as of Redis Stack 7.2 (https://redis.com/blog/redisgraph-eol/)")] public interface IGraphCommandsAsync { /// @@ -140,4 +140,4 @@ public interface IGraphCommandsAsync /// Task>> SlowlogAsync(string graphName); } -} \ No newline at end of file +}