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
6 changes: 6 additions & 0 deletions .changeset/smooth-phones-speak.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"@stackspulse/server": patch
"stackspulse": patch
---

Upgrade deps.
2 changes: 1 addition & 1 deletion apps/server/nitro.config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export default defineNitroConfig({
compatibilityDate: "2024-11-01",
compatibilityDate: "2025-05-10",
srcDir: "src",
routeRules: {
// no cache for all /api/root/** routes
Expand Down
20 changes: 10 additions & 10 deletions apps/server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,25 +10,25 @@
"deploy": "fly deploy --remote-only"
},
"dependencies": {
"@dotenvx/dotenvx": "1.36.0",
"@sentry/node": "8.54.0",
"@stacks/blockchain-api-client": "8.6.0",
"@dotenvx/dotenvx": "1.43.0",
"@sentry/node": "9.17.0",
"@stacks/blockchain-api-client": "8.10.0",
"@stacks/stacks-blockchain-api-types": "7.14.1",
"@stackspulse/protocols": "workspace:*",
"@t3-oss/env-core": "0.12.0",
"better-sqlite3": "11.8.1",
"@t3-oss/env-core": "0.13.4",
"better-sqlite3": "11.10.0",
"db0": "0.2.4",
"drizzle-orm": "0.39.3",
"h3": "1.15.0",
"h3": "1.15.3",
"nitro-cors": "0.7.1",
"postgres": "3.4.5",
"twitter-api-v2": "1.18.2",
"unstorage": "1.14.4",
"zod": "3.24.2",
"zod-validation-error": "3.4.0"
"unstorage": "1.16.0",
"zod": "3.24.4",
"zod-validation-error": "3.4.1"
},
"devDependencies": {
"nitropack": "2.10.4",
"nitropack": "2.11.11",
"prisma": "6.3.1"
}
}
46 changes: 23 additions & 23 deletions apps/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,44 +10,44 @@
"deploy": "fly deploy --remote-only"
},
"dependencies": {
"@dotenvx/dotenvx": "1.36.0",
"@dotenvx/dotenvx": "1.43.0",
"@hirosystems/token-metadata-api-client": "2.0.0",
"@radix-ui/themes": "3.2.0",
"@sentry/nextjs": "8.54.0",
"@sentry/nextjs": "9.17.0",
"@stacks/stacks-blockchain-api-types": "7.14.1",
"@stacks/transactions": "7.0.4",
"@stacks/transactions": "7.0.6",
"@stackspulse/protocols": "workspace:*",
"@t3-oss/env-core": "0.12.0",
"@t3-oss/env-nextjs": "0.12.0",
"@tabler/icons-react": "3.30.0",
"@tanstack/react-query": "5.66.3",
"@t3-oss/env-core": "0.13.4",
"@t3-oss/env-nextjs": "0.13.4",
"@tabler/icons-react": "3.31.0",
"@tanstack/react-query": "5.75.7",
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"date-fns": "4.1.0",
"fathom-client": "3.7.2",
"javascript-time-ago": "2.5.11",
"next": "15.1.7",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-is": "19.0.0",
"recharts": "2.15.1",
"sharp": "0.33.5",
"next": "15.3.2",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-is": "19.1.0",
"recharts": "2.15.3",
"sharp": "0.34.1",
"tailwind-merge": "2.5.5",
"tailwindcss-animate": "1.0.7",
"unstorage": "1.14.4",
"zod": "3.24.2"
"unstorage": "1.16.0",
"zod": "3.24.4"
},
"devDependencies": {
"@types/node": "22.13.4",
"@types/react": "19.0.9",
"@types/react-dom": "19.0.3",
"autoprefixer": "10.4.20",
"eslint": "9.20.1",
"eslint-config-next": "15.1.7",
"@types/node": "22.15.17",
"@types/react": "19.1.3",
"@types/react-dom": "19.1.3",
"autoprefixer": "10.4.21",
"eslint": "9.26.0",
"eslint-config-next": "15.3.2",
"eslint-plugin-tailwindcss": "3.18.0",
"postcss": "8.5.2",
"postcss": "8.5.3",
"radix-themes-tw": "0.2.3",
"tailwindcss": "3.4.15",
"typescript": "5.7.3"
"typescript": "5.8.3"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,7 @@ import * as Sentry from "@sentry/nextjs";

Sentry.init({
dsn: env.NEXT_PUBLIC_SENTRY_DSN,
debug: false,
sendDefaultPii: true,
});

export const onRouterTransitionStart = Sentry.captureRouterTransitionStart;
8 changes: 6 additions & 2 deletions apps/web/src/instrumentation.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
import * as Sentry from "@sentry/nextjs";

export async function register() {
if (process.env.NEXT_RUNTIME === "nodejs") {
await import("../sentry.server.config");
await import("./sentry.server.config");
}

if (process.env.NEXT_RUNTIME === "edge") {
await import("../sentry.edge.config");
await import("./sentry.edge.config");
}
}

export const onRequestError = Sentry.captureRequestError;
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ import * as Sentry from "@sentry/nextjs";

Sentry.init({
dsn: env.NEXT_PUBLIC_SENTRY_DSN,
debug: false,
sendDefaultPii: true,
});
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ import * as Sentry from "@sentry/nextjs";

Sentry.init({
dsn: env.NEXT_PUBLIC_SENTRY_DSN,
debug: false,
sendDefaultPii: true,
spotlight: process.env.NODE_ENV === "development",
});
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@changesets/cli": "2.27.12",
"lint-staged": "15.4.3",
"turbo": "2.4.2"
"@changesets/cli": "2.29.3",
"lint-staged": "15.5.2",
"turbo": "2.5.3"
},
"lint-staged": {
"*": [
Expand Down
4 changes: 2 additions & 2 deletions packages/protocols/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"build": "tsc"
},
"devDependencies": {
"@tsconfig/node22": "22.0.0",
"typescript": "5.7.3"
"@tsconfig/node22": "22.0.1",
"typescript": "5.8.3"
}
}
Loading