* 2.24.1

- Updated dependencies
- MCP Server: better compatibility with Windows
- MCP Server: allow using a custom root for better flexibility
- Version Check: use package.json version instead of number of commits
- Prettier: reformatted some files
- Add SSH_AUTH_SOCK to dev passThroughEnv to solve SSH issues; handle execSync errors
- Use GIT_SSH to fix SSH issues on Windows
- Updated Stripe version
- Updated application version from 2.24.0 to 2.24.1 in package.json.
- Enhanced error handling in billing services to include error causes for better debugging.
This commit is contained in:
Giancarlo Buomprisco
2026-02-26 18:22:35 +08:00
committed by GitHub
parent f3ac595d06
commit ca585e09be
41 changed files with 2322 additions and 1803 deletions

View File

@@ -27,7 +27,7 @@
"@kit/shared": "workspace:*",
"@kit/tsconfig": "workspace:*",
"@kit/ui": "workspace:*",
"@tailwindcss/postcss": "^4.1.18",
"@tailwindcss/postcss": "^4.2.1",
"@types/node": "catalog:",
"@types/nodemailer": "catalog:",
"@types/react": "catalog:",

View File

@@ -14,7 +14,7 @@
"@playwright/test": "^1.58.2",
"@supabase/supabase-js": "catalog:",
"@types/node": "catalog:",
"dotenv": "17.2.4",
"dotenv": "17.3.1",
"node-html-parser": "^7.0.2",
"totp-generator": "^2.0.1"
}

View File

@@ -118,7 +118,7 @@ class UserBillingService {
`Checkout session not created due to an error`,
);
throw new Error(`Failed to create a checkout session`);
throw new Error(`Failed to create a checkout session`, { cause: error });
}
}
@@ -177,6 +177,7 @@ class UserBillingService {
throw new Error(
`Encountered an error creating the Billing Portal session`,
{ cause: error },
);
}

View File

@@ -133,7 +133,7 @@ class TeamBillingService {
`Error creating the checkout session`,
);
throw new Error(`Checkout not created`);
throw new Error(`Checkout not created`, { cause: error });
}
}
@@ -234,7 +234,7 @@ class TeamBillingService {
`Billing Portal session was not created`,
);
throw new Error(`Error creating Billing Portal`);
throw new Error(`Error creating Billing Portal`, { cause: error });
}
}

View File

@@ -69,7 +69,7 @@
"react-hook-form": "catalog:",
"react-i18next": "catalog:",
"recharts": "2.15.3",
"tailwind-merge": "^3.4.0",
"tailwind-merge": "^3.5.0",
"tw-animate-css": "catalog:",
"urlpattern-polyfill": "^10.1.0",
"zod": "catalog:"