Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
c8522c1
Added new dashboard for session analytics
amansr09 Oct 14, 2025
e25743a
fix filter issue and some bugs
amansr09 Oct 21, 2025
146d876
fixed some bug
amansr09 Oct 21, 2025
a1035ad
Added pagination in session view to show all session in given time range
amansr09 Oct 22, 2025
3bcd14b
Add filter persistence and optimized performnace
amansr09 Oct 26, 2025
077b3c8
Added missing deoendecny in react component
amansr09 Oct 28, 2025
8b46600
Fix juspay dashboard pagination and URL persistence issues
amansr09 Oct 29, 2025
92431c0
Added Resizable pannel, view & close pannel for mobile view,Auto-scro…
amansr09 Nov 3, 2025
6ad5f92
Made statistics cards clickable filters and added userEmail based fi…
amansr09 Nov 6, 2025
6020720
fixed some bugs
amansr09 Nov 6, 2025
0210f0d
minor bug fix after rebase
amansr09 Nov 10, 2025
c7b987d
Merge pull request #13 from amansr09/bug_fix_rebase
rab1prasad Nov 10, 2025
cb7d595
Added manual feedback/rating suppprt along with summary statstics pannel
amansr09 Nov 13, 2025
6c49feb
Merge branch 'langfuse:main' into main
rab1prasad Nov 14, 2025
4ebdc94
BZ-46386: fix: linting issues in juspay/langfuse repo
rab1prasad Nov 14, 2025
fec7633
BZ-46426: fix: build failure juspay/langfuse repo
rab1prasad Nov 17, 2025
7ac2aa2
Fixed TRPC issue
amansr09 Nov 18, 2025
b49a8d7
Fixed url too long issue
amansr09 Nov 18, 2025
4048e5e
Fixed internal server error
amansr09 Nov 19, 2025
082e7a6
reduce the limit size
amansr09 Nov 19, 2025
73e5393
BZ-47112: fix: patch CVE-2025-55182 (React2Shell) vulnerability
rab1prasad Dec 8, 2025
29e3e33
fix parsing issue (Bad escaped character in JSON)
amansr09 Dec 19, 2025
a23b9d8
chore(deps): bump ajv from 8.17.1 to 8.18.0
dependabot[bot] Feb 20, 2026
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
2 changes: 1 addition & 1 deletion ee/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"@langfuse/shared": "workspace:*",
"@opentelemetry/api": ">=1.0.0 <1.10.0",
"https-proxy-agent": "^7.0.6",
"next": "15.5.4",
"next": "15.5.7",
"next-auth": "^4.24.12",
"zod": "^3.25.62"
},
Expand Down
4 changes: 2 additions & 2 deletions packages/shared/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
"@slack/oauth": "^3.0.4",
"@slack/web-api": "^7.10.0",
"@types/bcryptjs": "^2.4.6",
"ajv": "^8.17.1",
"ajv": "^8.18.0",
"ajv-formats": "^3.0.1",
"bcryptjs": "^2.4.3",
"bullmq": "^5.34.10",
Expand Down Expand Up @@ -127,6 +127,6 @@
},
"peerDependencies": {
"@types/react": "~19.2.2",
"react": "~19.2.0"
"react": "~19.2.1"
}
}
3,372 changes: 1,424 additions & 1,948 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@
"lodash": "^4.17.21",
"lucide-react": "^0.552.0",
"nanoid": "^3.3.8",
"next": "15.5.4",
"next": "15.5.7",
"next-auth": "^4.24.12",
"next-query-params": "^5.1.0",
"next-themes": "^0.4.6",
Expand All @@ -137,9 +137,9 @@
"prisma": "^6.17.1",
"protobufjs": "^7.4.0",
"rate-limiter-flexible": "^5.0.3",
"react": "19.2.0",
"react": "19.2.1",
"react-day-picker": "^9.9.0",
"react-dom": "19.2.0",
"react-dom": "19.2.1",
"react-dropzone": "^14.3.8",
"react-grid-layout": "^1.5.2",
"react-hook-form": "^7.62.0",
Expand Down Expand Up @@ -169,7 +169,7 @@
"devDependencies": {
"@jedmao/location": "^3.0.0",
"@mermaid-js/mermaid-cli": "^11.2.0",
"@next/bundle-analyzer": "15.5.4",
"@next/bundle-analyzer": "15.5.7",
"@playwright/test": "^1.47.2",
"@repo/eslint-config": "workspace:*",
"@repo/typescript-config": "workspace:*",
Expand All @@ -195,7 +195,7 @@
"cross-env": "^7.0.3",
"dotenv-cli": "^7.4.2",
"eslint": "^8.56.0",
"eslint-config-next": "15.5.4",
"eslint-config-next": "15.5.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"node-mocks-http": "^1.14.1",
Expand Down
6 changes: 6 additions & 0 deletions web/src/components/layouts/routes.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,12 @@ export const ROUTES: Route[] = [
icon: Home,
section: RouteSection.Main,
},
{
title: "Session Analytics v2",
pathname: `/project/[projectId]/juspay-dashboard`,
icon: LayoutDashboard,
section: RouteSection.Main,
},
{
title: "Dashboards",
pathname: `/project/[projectId]/dashboards`,
Expand Down
Loading
Loading