Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat!: react-query and supplementary improvements #147

Closed
wants to merge 21 commits into from

Commits on Feb 27, 2024

  1. chore: move to pnpm

    The main motivation being that with pnpm packages
    in the monorepo don't have to specify versions of
    the dependencies of other packages in the monorepo.
    It is also widely adopted across different monorepos.
    
    As well as `changesets` would replace the `workspace:*`
    marked versions on fly, so there won't be a need in managing
    those by hands (if there was one before).
    
    Fixes the lint issue, where in `with-next-auth`
    example a lint config was not properly set up, which caused the `lint`
    job to hang up waiting for stdin input.
    
    Adds a `turbo.json` config to `auth-kit` to depend on `auth-client`,
    as the build job for the first depends on the latter.
    dalechyn committed Feb 27, 2024
    Configuration menu
    Copy the full SHA
    b12ce1a View commit details
    Browse the repository at this point in the history

Commits on Feb 28, 2024

  1. fix: Date.now() being revaluated in the poll function

    Moved the `Date.now()` to `now` variable to ensure the timestamp
    at which the polling started is preserved correctly.
    dalechyn committed Feb 28, 2024
    Configuration menu
    Copy the full SHA
    69ac42e View commit details
    Browse the repository at this point in the history
  2. feat!: move to react-query

    It is a breaking change, since the hook APIs also change.
    However, everything is much more reliable now, and effects are not triggered
    when they don't have to.
    
    The context was changed to simply hold the `config`, which one has now
    to initiate with `createConfig`, in order to construct an `appClient`.
    
    The rest of the state now is handled by `zustand`, specifically, the
    `useProfile` and `useSignInMessage` use it.
    dalechyn committed Feb 28, 2024
    Configuration menu
    Copy the full SHA
    b82871f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    075acaa View commit details
    Browse the repository at this point in the history
  4. chore: changesets

    dalechyn committed Feb 28, 2024
    Configuration menu
    Copy the full SHA
    626ead6 View commit details
    Browse the repository at this point in the history

Commits on Feb 29, 2024

  1. Configuration menu
    Copy the full SHA
    7b06f2e View commit details
    Browse the repository at this point in the history

Commits on Mar 18, 2024

  1. wip: cleaning up auth-kit

    dalechyn committed Mar 18, 2024
    Configuration menu
    Copy the full SHA
    6cb43f9 View commit details
    Browse the repository at this point in the history
  2. wip: fix auth-client

    dalechyn committed Mar 18, 2024
    Configuration menu
    Copy the full SHA
    6163e4c View commit details
    Browse the repository at this point in the history

Commits on Mar 19, 2024

  1. wip

    dalechyn committed Mar 19, 2024
    Configuration menu
    Copy the full SHA
    25b2761 View commit details
    Browse the repository at this point in the history
  2. wip

    dalechyn committed Mar 19, 2024
    Configuration menu
    Copy the full SHA
    2483029 View commit details
    Browse the repository at this point in the history

Commits on Mar 20, 2024

  1. wip

    dalechyn committed Mar 20, 2024
    Configuration menu
    Copy the full SHA
    b75beb8 View commit details
    Browse the repository at this point in the history

Commits on Mar 25, 2024

  1. refactor: relay to use hono

    dalechyn committed Mar 25, 2024
    Configuration menu
    Copy the full SHA
    4fc586c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    65f2bd5 View commit details
    Browse the repository at this point in the history

Commits on Mar 31, 2024

  1. nit: tweaks

    dalechyn committed Mar 31, 2024
    Configuration menu
    Copy the full SHA
    b1eb3f3 View commit details
    Browse the repository at this point in the history

Commits on Apr 17, 2024

  1. Configuration menu
    Copy the full SHA
    8093323 View commit details
    Browse the repository at this point in the history
  2. refactor: bring back the old api

    I introduced changes to routes, data types and now I'm reverting it back
    dalechyn committed Apr 17, 2024
    Configuration menu
    Copy the full SHA
    1d8e329 View commit details
    Browse the repository at this point in the history
  3. nit: tweak

    dalechyn committed Apr 17, 2024
    Configuration menu
    Copy the full SHA
    0c21b18 View commit details
    Browse the repository at this point in the history
  4. feat: fallback hub url

    Reimplemented 1265f28.
    dalechyn committed Apr 17, 2024
    Configuration menu
    Copy the full SHA
    c76efc5 View commit details
    Browse the repository at this point in the history
  5. feat: implement 62874a0 from main

    dalechyn committed Apr 17, 2024
    Configuration menu
    Copy the full SHA
    39e0cf8 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    906520a View commit details
    Browse the repository at this point in the history
  7. chore: lockfile fix

    dalechyn committed Apr 17, 2024
    Configuration menu
    Copy the full SHA
    55afa21 View commit details
    Browse the repository at this point in the history