Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
00b590e
feat(tanstack-start): Introduce @clerk/tanstack-start
octoper Jun 3, 2024
afe8345
chore(tanstack-start): Make package ESM only
octoper Jun 4, 2024
35877e1
fix(tanstack-start): Adding handshake handling
octoper Jun 5, 2024
24a7f99
fix(tanstack-start): Inject Clerk initial state into client
octoper Jun 5, 2024
5795d8a
feat(tanstack-start): Introduce clerkMiddlewareHandler for SSR
octoper Jun 5, 2024
7b01a20
fix(tanstack-start): Fix build and type generation
octoper Jun 6, 2024
ac1f2a6
refactor(tanstack-start): Refactor clerkMiddlewareHandler
octoper Jun 6, 2024
6b2cf58
refactor(tanstack-start): Change structure of server subpath
octoper Jun 6, 2024
eb584f2
feat(tanstack-start): Added routing options to ClerkProvider & added …
octoper Jun 7, 2024
c68ec97
chore(tanstack-start): Update README.md
octoper Jun 7, 2024
62e2442
chore(tanstack-start): Added changeset
octoper Jun 7, 2024
4c96a7b
chore(tanstack-start): Remove pnpm-lock.yaml
octoper Jun 7, 2024
6f8aa7f
chore(repo): Update package-lock.json
octoper Jun 7, 2024
f3e35c1
chore(tanstack-start): Switch module to esnext
octoper Jun 7, 2024
5549c1c
chore(tanstack-start): Switch module to esnext
octoper Jun 7, 2024
03163e2
chore(tanstack-start): Create server folder for subpath
octoper Jun 7, 2024
d0365ee
chore(tanstack-start): Remove test scripts for now
octoper Jun 7, 2024
5392400
chore(tanstack-start): Change clerkContext to clerkInitialState to av…
octoper Jun 10, 2024
1f5df8a
refactor(tanstack-start): Renamed clerkMiddlewareHandler to createCle…
octoper Jun 10, 2024
4bbba1b
chore(tanstack-start): Drop CommonJS support
octoper Jun 10, 2024
aa05afb
chore(tanstack-start): Drop CommonJS support
octoper Jun 10, 2024
469d811
ci(tanstack-start): Updated ci.yml to include tanstack-start to allow…
octoper Jun 10, 2024
00dba4f
chore(tanstack-start): Update README.md
octoper Jun 10, 2024
404d98d
Merge branch 'main' into tanstack-start
nikosdouvlis Jun 11, 2024
308e8df
Update package.json
nikosdouvlis Jun 11, 2024
ebcedb2
ci(repo): Trigger CI
octoper Jun 11, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/sharp-ties-grab.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@clerk/tanstack-start': patch
---

Introducing experimental version of Clerk SDK for TanStack Start
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,10 @@ jobs:
run: npx turbo lint:publint $TURBO_ARGS --only

- name: Lint types using attw
run: npx turbo lint:attw $TURBO_ARGS --filter=!nextjs --filter=!elements --filter=!backend --only
run: npx turbo lint:attw $TURBO_ARGS --filter=!nextjs --filter=!tanstack-start --filter=!elements --filter=!backend --only

- name: Lint types using attw [Errors Allowed]
run: npx turbo lint:attw $TURBO_ARGS --filter=nextjs --filter=backend --filter=elements --continue --only
run: npx turbo lint:attw $TURBO_ARGS --filter=nextjs --filter=tanstack-start --filter=backend --filter=elements --continue --only
continue-on-error: true # TODO: Remove this when all related errors are fixed

- name: Run lint
Expand Down
Loading