Skip to content

Commit ab53a32

Browse files
Merge branch 'dev' into codex/add-multistep-onboarding-flow
2 parents dbb3e7a + de4c247 commit ab53a32

31 files changed

Lines changed: 32 additions & 32 deletions

File tree

.github/workflows/npm-publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,6 @@ jobs:
4343

4444
- name: Publish packages
4545
# pnpm publish skips versions that already exist on npm by default
46-
run: pnpm publish -r --no-git-checks
46+
run: pnpm publish -r --no-git-checks --access public
4747
env:
4848
NPM_CONFIG_PROVENANCE: true

apps/backend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stackframe/backend",
3-
"version": "2.8.73",
3+
"version": "2.8.74",
44
"repository": "https://github.com/stack-auth/stack-auth",
55
"private": true,
66
"type": "module",

apps/backend/src/app/api/latest/internal/config/override/[level]/route.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import { globalPrismaClient, rawQuery } from "@/prisma-client";
1818
import { createSmartRouteHandler } from "@/route-handlers/smart-route-handler";
1919
import { branchConfigSchema, environmentConfigSchema, getConfigOverrideErrors, migrateConfigOverride, projectConfigSchema } from "@stackframe/stack-shared/dist/config/schema";
2020
import { adaptSchema, adminAuthTypeSchema, branchConfigSourceSchema, yupNumber, yupObject, yupString } from "@stackframe/stack-shared/dist/schema-fields";
21-
import { StatusError, captureError } from "@stackframe/stack-shared/dist/utils/errors";
21+
import { StackAssertionError, StatusError, captureError } from "@stackframe/stack-shared/dist/utils/errors";
2222
import * as yup from "yup";
2323
type BranchConfigSourceApi = yup.InferType<typeof branchConfigSourceSchema>;
2424

@@ -194,7 +194,7 @@ async function warnOnValidationFailure(
194194
captureError("config-override-validation-warning", `Config override validation warning for project ${options.projectId} (this may not be a logic error, but rather a client/implementation issue — e.g. dot notation into non-existent record entries): ${validationResult.error}`);
195195
}
196196
} catch (e) {
197-
captureError("config-override-validation-check-failed", e);
197+
captureError("config-override-validation-check-failed", new StackAssertionError("Config override validation check failed. This may be really bad! Make sure to check the error and the config.", { cause: e, options, levelConfig }));
198198
}
199199
}
200200

apps/dashboard/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stackframe/dashboard",
3-
"version": "2.8.73",
3+
"version": "2.8.74",
44
"repository": "https://github.com/stack-auth/stack-auth",
55
"private": true,
66
"scripts": {

apps/dev-launchpad/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stackframe/dev-launchpad",
3-
"version": "2.8.73",
3+
"version": "2.8.74",
44
"repository": "https://github.com/stack-auth/stack-auth",
55
"private": true,
66
"scripts": {

apps/e2e/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stackframe/e2e-tests",
3-
"version": "2.8.73",
3+
"version": "2.8.74",
44
"repository": "https://github.com/stack-auth/stack-auth",
55
"private": true,
66
"type": "module",

apps/hosted-components/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@stackframe/hosted-components",
33
"private": true,
4-
"version": "2.8.73",
4+
"version": "2.8.74",
55
"type": "module",
66
"scripts": {
77
"dev": "vite dev --port ${NEXT_PUBLIC_STACK_PORT_PREFIX:-81}09",

apps/mock-oauth-server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stackframe/mock-oauth-server",
3-
"version": "2.8.73",
3+
"version": "2.8.74",
44
"repository": "https://github.com/stack-auth/stack-auth",
55
"private": true,
66
"main": "index.js",

docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stackframe/stack-docs",
3-
"version": "2.8.73",
3+
"version": "2.8.74",
44
"repository": "https://github.com/stack-auth/stack-auth",
55
"description": "",
66
"main": "index.js",

examples/cjs-test/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stackframe/example-cjs-test",
3-
"version": "2.8.73",
3+
"version": "2.8.74",
44
"repository": "https://github.com/stack-auth/stack-auth",
55
"private": true,
66
"scripts": {

0 commit comments

Comments
 (0)