MichaCo / CacheManager

CacheManager is an open source caching abstraction layer for .NET written in C#. It supports various cache providers and implements many advanced features.
http://cachemanager.michaco.net
Apache License 2.0
2.34k stars 456 forks source link

StackExchange.Redis library upgrade to 1.2.5 #179

Closed davenewza closed 6 years ago

davenewza commented 7 years ago

There has been an important fix in the newest version (released today) of StackExchange.Redis (and .StrongName). See https://github.com/StackExchange/StackExchange.Redis/issues/650

This issue is to suggest an update in the CacheManager.StackExchange.Redis package to use version 1.2.5 of StackExchange.Redis.StrongName. It is currently on 1.2.1, so this will be a backwards-compatible patch. See their release notes.

MichaCo commented 7 years ago

you can always explicitly reference a newer version of the redis client if you want to, you don't have to use the version CacheManager is expecting, that's just the minimal version it requires... I'll do some testing but usually I do not reference the latest stuff as that forces consumers to have to use those, too...

davenewza commented 7 years ago

No problem - I expected as much.