mus65

Results 19 comments of mus65

For anyone who needs a workaround: we worked around this by setting TokenValidationParameters.RequireExpirationTime to false if exp overflows. ``` if ( DateTime.UtcNow.Year < 2038 && jwtTokenParsed.Payload.TryGetValue("exp", out object expObj) &&...

We also hit this, but we found an alternative which makes the whole extension obsolete, at least for our use cases. In "Options -> Text Editor -> Code Cleanup" there...

This even causes a regression in our frontend because the JS crypto API complains about it: ```DOMException: The JWK "key_ops" member was inconsistent with that specified by the Web Crypto...

@darkoperator @Rob-Hague I'm confused. If the csproj diff fixes it, wouldn't this mean the problem is version 8.0.0? In this case https://github.com/sshnet/SSH.NET/pull/1288 wouldn't fix it, since SSH.NET would still need...

@WojciechNagorski @Rob-Hague @darkoperator I updated my PR to fix both issues: https://github.com/sshnet/SSH.NET/pull/1288

> > For anyone who needs a workaround: we worked around this by setting TokenValidationParameters.RequireExpirationTime to false if exp overflows. > > ``` > > if ( > > DateTime.UtcNow.Year...

There is a good write-up here on how to make this work (assuming you have an up-to-date NSwag): https://github.com/RicoSuter/NSwag/issues/4938#issuecomment-2236419139

Same here, we initially ran into #4633 after upgrading to v14 and after applying the workaround (https://github.com/RicoSuter/NSwag/issues/4633#issuecomment-1875176162) , we are running into this error. Removing /GenerateExceptionClasses:false is not a viable...

Guess it wasn't this simple after all, a lot of tests fail with a NullReferenceException. I'm gonna take a look within the next few days. Converted to draft.

tests fixed with b7f6cd4b4f86a2c8c87ec0d8fee2a4f354683f58