Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,15 +43,15 @@
"devDependencies": {
"audit-ci": "^7.1.0",
"is-ci": "^4.1.0",
"lefthook": "^2.1.6",
"oxfmt": "^0.50.0",
"oxlint": "^1.65.0",
"lefthook": "^2.1.8",
"oxfmt": "^0.52.0",
"oxlint": "^1.67.0",
"rimraf": "^6.1.3",
"typescript": "^6.0.3"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=10.0.0"
},
"packageManager": "pnpm@11.1.3"
"packageManager": "pnpm@11.4.0"
}
9 changes: 7 additions & 2 deletions packages/app/cypress/e2e/compare-per-dollar-redirect.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,13 @@ describe('Compare-per-dollar canonical slug redirect', () => {

it('preserves query params across the bare-slug redirect', () => {
cy.visit('/compare-per-dollar/h100-vs-h200?i_seq=1k/1k');
cy.location('pathname').should('eq', '/compare-per-dollar/deepseek-r1-h100-vs-h200');
cy.location('search').should('contain', 'i_seq=1k%2F1k');
// Assert pathname and search together so Cypress retries the pair atomically:
// on Firefox, reading them as two separate commands can catch a window where the
// redirect has landed but `search` momentarily reads empty mid-navigation.
cy.location().should((loc) => {
expect(loc.pathname).to.eq('/compare-per-dollar/deepseek-r1-h100-vs-h200');
expect(loc.search).to.contain('i_seq=1k%2F1k');
});
});

it('serves a non-deepseek canonical slug without redirecting', () => {
Expand Down
9 changes: 7 additions & 2 deletions packages/app/cypress/e2e/compare-redirect.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,13 @@ describe('Compare canonical slug redirect', () => {

it('preserves query params across the bare-slug redirect', () => {
cy.visit('/compare/h100-vs-h200?i_seq=1k/1k');
cy.location('pathname').should('eq', '/compare/deepseek-r1-h100-vs-h200');
cy.location('search').should('contain', 'i_seq=1k%2F1k');
// Assert pathname and search together so Cypress retries the pair atomically:
// on Firefox, reading them as two separate commands can catch a window where the
// redirect has landed but `search` momentarily reads empty mid-navigation.
cy.location().should((loc) => {
expect(loc.pathname).to.eq('/compare/deepseek-r1-h100-vs-h200');
expect(loc.search).to.contain('i_seq=1k%2F1k');
});
});

it('serves a non-deepseek canonical slug without redirecting', () => {
Expand Down
26 changes: 13 additions & 13 deletions packages/app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"@chenglou/pretext": "^0.0.7",
"@jpinsonneau/html-to-image": "^1.11.13",
"@noble/ciphers": "^2.2.0",
"@posthog/nextjs-config": "^1.9.22",
"@posthog/nextjs-config": "^1.9.37",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-label": "^2.1.8",
Expand All @@ -45,29 +45,29 @@
"@react-three/fiber": "^9.6.1",
"@semianalysisai/inferencex-constants": "workspace:*",
"@semianalysisai/inferencex-db": "workspace:*",
"@shikijs/rehype": "^4.0.2",
"@shikijs/rehype": "^4.1.0",
"@tailwindcss/typography": "^0.5.19",
"@tanstack/react-query": "^5.100.10",
"@tanstack/react-query": "^5.100.14",
"@vercel/analytics": "^2.0.1",
"@vercel/blob": "^2.3.3",
"@vercel/blob": "^2.4.0",
"@vercel/speed-insights": "^2.0.0",
"adm-zip": "^0.5.17",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"d3": "^7.9.0",
"dompurify": "^3.4.2",
"dompurify": "^3.4.7",
"gray-matter": "^4.0.3",
"iwanthue": "^2.0.0",
"lucide-react": "^1.16.0",
"mp4-muxer": "^5.2.2",
"next": "^16.2.6",
"next-mdx-remote": "^6.0.0",
"next-themes": "^0.4.6",
"posthog-js": "^1.373.1",
"posthog-js": "^1.376.3",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"remark-gfm": "^4.0.1",
"shiki": "^4.0.2",
"shiki": "^4.1.0",
"tailwind-merge": "^3.6.0",
"three": "^0.184.0"
},
Expand All @@ -77,23 +77,23 @@
"@types/adm-zip": "^0.5.8",
"@types/d3": "^7.4.3",
"@types/mdast": "^4.0.4",
"@types/node": "^25.7.0",
"@types/react": "^19.2.14",
"@types/node": "^25.9.1",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"@types/three": "^0.184.1",
"@vitest/coverage-v8": "^4.1.6",
"cypress": "^15.15.0",
"@vitest/coverage-v8": "^4.1.7",
"cypress": "^15.16.0",
"cypress-split": "^1.24.31",
"dotenv": "^17.4.2",
"dotenv-cli": "^11.0.0",
"esbuild": "^0.28.0",
"fake-indexeddb": "^6.2.5",
"jsdom": "^29.1.1",
"tailwindcss": "^4.3.0",
"tsx": "^4.21.0",
"tsx": "^4.22.3",
"tw-animate-css": "^1.4.0",
"typescript": "^6.0.3",
"vitest": "^4.1.6"
"vitest": "^4.1.7"
},
"engines": {
"node": ">=18.0.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/constants/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"test:unit:coverage": "vitest run --coverage"
},
"devDependencies": {
"@vitest/coverage-v8": "^4.1.6",
"vitest": "^4.1.6"
"@vitest/coverage-v8": "^4.1.7",
"vitest": "^4.1.7"
}
}
8 changes: 4 additions & 4 deletions packages/db/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@
},
"devDependencies": {
"@types/adm-zip": "^0.5.8",
"@types/node": "^25.7.0",
"@vitest/coverage-v8": "^4.1.6",
"@types/node": "^25.9.1",
"@vitest/coverage-v8": "^4.1.7",
"adm-zip": "^0.5.17",
"dotenv-cli": "^11.0.0",
"tsx": "^4.21.0",
"tsx": "^4.22.3",
"typescript": "^6.0.3",
"vitest": "^4.1.6"
"vitest": "^4.1.7"
}
}
6 changes: 3 additions & 3 deletions packages/mcp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@
"zod": "^4.4.3"
},
"devDependencies": {
"@types/node": "^25.7.0",
"@types/node": "^25.9.1",
"dotenv-cli": "^11.0.0",
"tsx": "^4.21.0",
"tsx": "^4.22.3",
"typescript": "^6.0.3",
"vitest": "^4.1.6"
"vitest": "^4.1.7"
}
}
Loading
Loading