Stig Oskar Ofstad

Results 24 comments of Stig Oskar Ofstad

You are not "destroying tokens", if an attacker has them, they are still valid. You are only stopping the app from using the refresh_token to renew access tokens, which in...

Alright, How about we expose a function that enable/disable auto refresh? `const {enableRefresh, disableRefresh} = useContext(AuthContext)` This will keep more custom logic out of the library, while still allowing you...

@dburles Could you specify what you mean by "auth context API outside of react"? ReactContext is the only API we have now. Not sure what other API's you'd need in...

Yeah we had this at one point. Considered it a bug and changed it 😄 But sure, we can make it configurable! I'd welcome a PR on this 👍

This is all a bit new to me. But should only be needed in `AuthContext` as the rest is included in that.

Should have mentioned, this was in `v2.5.35`. If you think the bug no longer can arise, we can close this issue 👍

Main issue was with UV changing values in lock file on release every release, which screwed with our CI/release flow (it think this was it). But a lot has happen...

Was looking into this for another project. The solution was to add `dynamic = ["version"]` in pyproject.toml. This indicates that version is not defined by pyproject.toml. But "by something else",...

> Does this also fix the frontend tests? Which tests are failing?

hmm, hard to make out the actual error. But I see a "ERR_NETWORK" in there, so probably not related. Also, this change only affect build static js serving from prod...