pamapa

Results 411 comments of pamapa

Yes something i really like in lerna (https://github.com/lerna/lerna) is semi-automatic releasing. you can interactive choose the version, it adapts files and makes a commit and pushes. Just for the record...

lets keep things simple, other developer shall have it easy to provide features/fixes...

i guess this MR can be closed, the CI workflows have been renamed and updated. For the release making i am researching a helper library see #272

I am not using this the session monitor feature. But others do i guess. @kherock Are you using the session monitor feature with this library?

Can you help finding the infinity loop? Could you provide a logging? See https://authts.github.io/oidc-client-ts/#logging.

Behind `useAuth()` is a reducer. You can directly trigger on `auth.user` in your `useEffect`. See https://github.com/authts/react-oidc-context/blob/main/src/AuthProvider.tsx#L175, this is doing already what you need...

In order to initiate the auth process you need to call `signinRedirect` somewhere in your code...

Does not happen in my application. Please enable debug log and verify where the problem comes from. Logging: https://authts.github.io/oidc-client-ts/#logging

> P.S. Could it be because of React 18 having Strict mode on in development? I see this change hitting a lot of people these days :) Maybe. I just...

The [Authorization Code Grant](https://oauth.net/2/grant-types/authorization-code/) with [PKCE](https://oauth.net/2/pkce/) needs a temporary local state to function. When creating the sign-in request the `oidc-client-ts` is storing that state here https://github.com/authts/oidc-client-ts/blob/809da48c91b44df27454d8c0a6a5c04f4e748339/src/OidcClient.ts#L135 When the callback is...