Skip to content

Commit 0476315

Browse files
ZimengXiongAdrianAcalaYiheng-LiuCopilot
authored
0.2.1 Release (#32)
* feat(security): implement CSRF protection * chore: clean up CSRF implementation - Remove unused generateCsrfToken export from security.ts - Remove redundant /csrf-token path check (GET already exempt) - Restore defineConfig wrapper in vitest.config.ts for type safety * add K8S note in README, fix broken e2e * feat/upload-bar (#30) * feat/upload-bar: add a upload bar when user upload file, indicate the upload process * feat/save-loading-status: add save status when click back button from editor * fix: address PR review issues in upload and save features - Replace deprecated substr() with substring() in UploadContext - Fix broken error handling that checked stale task status - Fix missing useEffect dependency in UploadStatus - Fix CSS class conflict in progress bar styling - Add error recovery for save state in Editor (reset on failure) - Use .finally() instead of .then() to ensure refresh on upload failure - Fix inconsistent indentation in UploadContext * fix e2e tests --------- Co-authored-by: Zimeng Xiong <zxzimeng@gmail.com> * chore: pre-release v0.2.1-dev * Update backend/src/security.ts Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * fix filename/math random UUID generation --------- Co-authored-by: AdrianAcala <adrianacala017@gmail.com> Co-authored-by: adamant368 <60790941+Yiheng-Liu@users.noreply.github.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent e75b727 commit 0476315

37 files changed

Lines changed: 2069 additions & 680 deletions

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,9 @@ backend/dist/
3131
# E2E Testing
3232
e2e/node_modules/
3333
e2e/test-results/
34+
e2e/test-results-user/
3435
e2e/playwright-report/
36+
e2e/playwright-report-user/
3537
e2e/.playwright/
3638

3739
# Temporary files

AGENTS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ ExcaliDash/
148148
**Backend (.env):**
149149

150150
```bash
151-
DATABASE_URL="file:./prisma/dev.db"
151+
DATABASE_URL="file:./dev.db"
152152
PORT=8000
153153
NODE_ENV=development
154154
```

0 commit comments

Comments
 (0)