Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
7d99012
Denormalize run tags, increase character limit to 128
ericallam Sep 29, 2024
394ef77
WIP realtime subscribing to runs
ericallam Sep 29, 2024
e01c9d2
extracted the stream stuff into core, made it more reusable
ericallam Sep 29, 2024
67dfa23
WIP tags
ericallam Sep 29, 2024
a32ba39
Remove tags for now because it’s not support in electric
ericallam Sep 30, 2024
70fd57b
Support async iterables, readable stream, and callback style subscrip…
ericallam Sep 30, 2024
cf212e2
Remove tags streaming endpoint
ericallam Sep 30, 2024
2a30af0
Add realtime rate limits and scope them to the /realtime path
ericallam Sep 30, 2024
de0de4d
WIP rate limt per org
ericallam Oct 1, 2024
8bb23bd
Introduce per org rate limits
ericallam Oct 1, 2024
e2ab984
WIP JWT auth
ericallam Oct 9, 2024
680ec68
Move migrations into new internal db package
ericallam Oct 9, 2024
0f179c5
Resolve pnpm lock file
ericallam Oct 9, 2024
04ab0dd
Authenticating to the realtime API with JWTs are working
ericallam Oct 9, 2024
480b192
realtime in the client
ericallam Oct 9, 2024
b7566e6
Created react-hooks package and starting to move stuff in there
ericallam Oct 10, 2024
49a39b9
Improve types for hooks
ericallam Oct 10, 2024
c492ca9
schema tasks
ericallam Oct 10, 2024
7937c4f
Added useBatch hook
ericallam Oct 10, 2024
502077c
build uploadthing/fal demo and change how run metadata is synced to t…
ericallam Oct 11, 2024
1fe0346
tweaks
ericallam Oct 12, 2024
2d69ffc
WIL realtime concurrency tracking
ericallam Oct 14, 2024
090c4a6
Implement test for realtime client using testcontainers
ericallam Oct 15, 2024
0d31dca
Allow customizing the expiration time of the automatic JWT created af…
ericallam Oct 15, 2024
279c0ac
Add support for subscribing to run tags
ericallam Oct 15, 2024
e21eadb
Improve auth types and API
ericallam Oct 16, 2024
44e68a4
finalize the realtime API
ericallam Oct 17, 2024
b687d28
Fixed some example stuff
ericallam Oct 17, 2024
63397ad
Allow up to 10 run tags
ericallam Oct 17, 2024
b22615e
Remove core from docker-provider tsconfig paths to prevent it from be…
ericallam Oct 17, 2024
0055dcf
do the same for the kubernetes provider
ericallam Oct 17, 2024
8f04737
Fixing some typecheck errors
ericallam Oct 17, 2024
5c8e7a1
Fix webapp type errors
ericallam Oct 18, 2024
ca01927
Update @trigger.dev/platform to 1.0.13
ericallam Oct 18, 2024
d274dde
Fix attw error
ericallam Oct 18, 2024
2145613
Remove from/to in subscribeToRuns query params
ericallam Oct 18, 2024
5cbc0e9
Add tests for the rate limit middleware and add custom JWT rate limits
ericallam Oct 18, 2024
63b9941
turn off webapp test parallelism
ericallam Oct 21, 2024
a5cc2fc
Finish renaming jwt -> publicAccessToken and automatically give the J…
ericallam Oct 21, 2024
a19baa0
Add changeset
ericallam Oct 21, 2024
d83c35d
Attempt to fix unit tests in CI
ericallam Oct 21, 2024
e69847d
Skip running the auth rate limit middleware tests for now
ericallam Oct 21, 2024
74c6447
Try a beefier machine
ericallam Oct 21, 2024
c7ada46
Try and run webapp tests separately
ericallam Oct 21, 2024
bc91b48
Setup env vars
ericallam Oct 21, 2024
85e8f47
Make sliding window test more reliabile
ericallam Oct 21, 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
Prev Previous commit
Next Next commit
Remove core from docker-provider tsconfig paths to prevent it from be…
…ing typechecked
  • Loading branch information
ericallam committed Oct 21, 2024
commit b22615ed89ccc98103b945e1161114005d9a81ac
6 changes: 1 addition & 5 deletions apps/docker-provider/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,6 @@
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"strict": true,
"skipLibCheck": true,
"paths": {
"@trigger.dev/core/v3": ["../../packages/core/src/v3"],
"@trigger.dev/core/v3/*": ["../../packages/core/src/v3/*"]
}
"skipLibCheck": true
}
}