nhost

The Open Source Firebase Alternative with GraphQL.

MIT License

Downloads
67.3K
Stars
7.9K
Committers
89

Bot releases are visible (Hide)

nhost - @nhost/[email protected]

Published by github-actions[bot] about 2 years ago

Patch Changes

nhost - @nhost/[email protected]

Published by github-actions[bot] about 2 years ago

Patch Changes

nhost - @nhost/[email protected]

Published by github-actions[bot] about 2 years ago

Patch Changes

nhost - @nhost/[email protected]

Published by github-actions[bot] about 2 years ago

Patch Changes

nhost - @nhost/[email protected]

Published by github-actions[bot] about 2 years ago

Patch Changes

nhost - @nhost/[email protected]

Published by github-actions[bot] about 2 years ago

Patch Changes

  • ba785da1: Bump dependencies versions
  • Updated dependencies [13c41fe6][ba785da1] [3ced63ab]
  • Updated dependencies
nhost - @nhost/[email protected]

Published by github-actions[bot] about 2 years ago

Patch Changes

nhost - @nhost/[email protected]

Published by github-actions[bot] about 2 years ago

Minor Changes

  • 6da44bf8: The useAuthenticationStatus hook now returns the number of attempts to get an access token from the server connectionAttempts.

Patch Changes

nhost - @nhost/[email protected]

Published by github-actions[bot] about 2 years ago

Minor Changes

  • 6da44bf8: The useAuthenticationStatus composable now returns the number of attempts to get an access token from the server connectionAttempts.

Patch Changes

nhost - @nhost/[email protected]

Published by github-actions[bot] about 2 years ago

Minor Changes

  • 6da44bf8: The nhost.auth.getAuthenticationStatus function now returns the number of attempts to get an access token from the server connectionAttempts.

Patch Changes

  • 13c41fe6: Correct nhost.auth.signIn to allow anonymous sign-in
    The typings were not allowing empty or undefined parameters to let users sign in anonymously. nhost.auth.signIn() now triggers an anonymous sign-in.
  • ba785da1: Bump dependencies versions
  • Updated dependencies [13c41fe6][ba785da1] [3ced63ab]
nhost - @nhost/[email protected]

Published by github-actions[bot] about 2 years ago

Patch Changes

  • ba785da1: Bump dependencies versions
  • Updated dependencies [ba785da1]
nhost - @nhost/[email protected]

Published by github-actions[bot] about 2 years ago

Patch Changes

nhost - @nhost/[email protected]

Published by github-actions[bot] about 2 years ago

Patch Changes

  • 3c70860a: Add description for all Stripe GraphQL Fields
    Thanks @piromsurang for the contribution
nhost - @nhost/[email protected]

Published by github-actions[bot] about 2 years ago

Patch Changes

nhost - @nhost/[email protected]

Published by github-actions[bot] about 2 years ago

Minor Changes

  • 3ced63ab: Retry the token import when starting offline
    When using auto-sign-in and the user client stored a refresh token, it now retries to get an access token from the server until the server can be reached and did not return an internal error.
    The five first attempts occur every second, then occur every five seconds.

    When offline, it means nhost.auth.isAuthenticatedAsync() won't resolve until the user is online. In that case, use a conjunction of nhost.auth.getAuthenticationStatus() and nhost.auth.onAuthStateChanged.

Patch Changes

  • 13c41fe6: Correct nhost.auth.signIn to allow anonymous sign-in
    The typings were not allowing empty or undefined parameters to let users sign in anonymously. nhost.auth.signIn() now triggers an anonymous sign-in.
  • ba785da1: remove predictableActionArguments warning
  • ba785da1: Bump dependencies versions
nhost - @nhost/[email protected]

Published by github-actions[bot] about 2 years ago

Patch Changes

  • 1e31a956: read nextjs context cookies in createServerSideClient

  • 8eafa198: Fix createServerSideClient

    The refresh token was not fetched from the cookie when using createServerSideClient since this PR.
    It is now fixed.

nhost - @nhost/[email protected]

Published by github-actions[bot] about 2 years ago

Patch Changes

  • c922de7b: feat/added async support for isAllowed prop for createStripeGraphQLServer
nhost - @nhost/[email protected]

Published by github-actions[bot] about 2 years ago

Patch Changes

nhost - @nhost/[email protected]

Published by github-actions[bot] about 2 years ago

Minor Changes

  • 739a3c45: Sign up with an email and a security key.

    const { error, session } = await nhost.auth.signUp({
      email: '[email protected]',
      securityKey: true
    })
    
    if (error) {
      console.log(error)
    } else if (session) {
      console.log(session.user)
    } else {
      console.log(
        'You need to verify your email address by clicking the link in the email we sent you.'
      )
    }
    

Patch Changes

nhost - @nhost/[email protected]

Published by github-actions[bot] about 2 years ago

Minor Changes

  • 8e4d790b: Sign up with an email and a security key.