Uh oh!
There was an error while loading. Please reload this page.
Release 2.0 PR with a lot of changes - #340
Conversation
Setting up integration tests/samples for the different ASP.NET Core targets todo: fix obsolete logging setups and extensions
…reaking changes and Swagger
Fixing Swashbuckle 5.0 in ASP.NET Core 3.0 usage...
… work, but it should improve nested types, generics and such in general #327
suntereo
commented
Jun 1, 2021
This is good news for us! I started evaluating this for use in a new project last week and was concerned about the project being dead. Happy to see new activity! |
educosta
commented
Jun 24, 2021
Hi! When will this version be released? |
MichaConrad
commented
Jun 29, 2021
When I have time to fix some issues with the CI pipeline. Trying to replace the old one with Github actions. But its a pain in the a... |
frg
commented
Jul 30, 2021
Would it be possible to bump the |
MichaConrad
commented
Jul 30, 2021
@frg I'm already using 2.2 of the client. Minor version updates should be compatible. So you can always choose to manually use a newer version then what the CacheManager reference uses by just referencing it with a PackageReference in your project. Libraries, like CacheManager, should be more lax in terms of dependencies, otherwise I basically force consumers to update to the latest, which might not always be the greatest ^^ But I'll take a look regarding what changed |
frg
commented
Jul 30, 2021
You're right. Thanks! Also, looking forward for this update. Great work! |
robertcoltheart
commented
Sep 15, 2021
Any update on this? We've been waiting over a year for |
frg
commented
Sep 15, 2021
@robertcoltheart Keep in mind this is an open-source project. There's no guarantee for updates or timelines. One of the beauties of open-source projects is that you can fork and develop your own, which is what we did. |
muhmuhhum
commented
Jan 24, 2022
Any updates on this ? |
* removed a bunch of nugets * unified new .NET targets - not final yet * get it compile and stuff... * fixed#64 again by moving the region key update into the lua script.
…ing redis in proc, for testing, benchmarking and unit tests. The server has some limitations, no keyspace notifications for example.
Breaking Changes:
REMOVED Binary Serializer
For many reasons I decided to drop support for binary serialization. It was never a good option in the first place because of performance and Microsoft made it obsolete in NET50 because of security issues, too, see https://docs.microsoft.com/de-de/dotnet/fundamentals/syslib-diagnostics/syslib0011
REMOVED Performance Counters
This feature didn't really work great with distributed caches, I never used it and it causes more issues then it has value I think.
Microsoft.Configuration integration
I removed 2 extensions which either created a new ILoggerFactory or constructed the service provider to resolve one.
Both extensions are error prone and might lead to confusion. Therefore I deleted them.
There is only one extension which takes an existing ILoggerFactory which will work with all versions of those MS Extensions.
Others