Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
fe59ab4
fix(embedding): fail closed instead of wiping a corrupt RAG index
kojiwakayama Aug 2, 2026
053021f
fix(embedding): classify unreadable RAG stores safely
kojiwakayama Aug 3, 2026
e9024bc
fix(embedding): preserve index on atomic write failure
kojiwakayama Aug 3, 2026
462bbf0
fix(embedding): fence local RAG persistence
kojiwakayama Aug 3, 2026
2db7bf5
fix(platform): support exact snapshots on Windows
kojiwakayama Aug 3, 2026
dc2adb0
fix(platform): publish only proven Windows snapshots
kojiwakayama Aug 3, 2026
e0147b1
fix(embedding): harden lease and snapshot provenance
kojiwakayama Aug 3, 2026
86a6fc5
fix(routing): contain route and layout resolution to the project root
kojiwakayama Aug 2, 2026
585abd2
fix(entities): preserve the adapter receiver when resolving entity ids
kojiwakayama Aug 2, 2026
136dedc
fix(routing): match supported file extensions case-insensitively
kojiwakayama Aug 2, 2026
4d6b798
fix(routing): canonicalize redundant segments in resolved slugs
kojiwakayama Aug 2, 2026
34c49e4
fix(routing): resolve directory index pages through adapter resolveFile
kojiwakayama Aug 2, 2026
80dcf9f
test(entities): port the getEntityInfo hardening suite
kojiwakayama Aug 2, 2026
8ff2df1
fix(routing): harden entity resolution boundaries
kojiwakayama Aug 3, 2026
b789617
test(routing): model bounded hosted page reads
kojiwakayama Aug 3, 2026
2e04fe0
fix(routing): honor symlink-free adapter contracts
kojiwakayama Aug 3, 2026
b45d448
fix(routing): bind entity resolution to captured authority
kojiwakayama Aug 3, 2026
53a7fdc
fix(routing): enforce bounded app route resolution
kojiwakayama Aug 3, 2026
0acafef
Harden route parameter review fixes
kojiwakayama Aug 3, 2026
0b19d27
Harden app route parameter records
kojiwakayama Aug 3, 2026
33d43b4
Keep local RAG search outside store locks
kojiwakayama Aug 3, 2026
1fe9965
Keep route hardening assertions type-narrowed
kojiwakayama Aug 3, 2026
061cc32
Bound contested route and embedding resolution paths
kojiwakayama Aug 3, 2026
c50eded
Preserve embedding provider failure identity
kojiwakayama Aug 3, 2026
db5ac52
Preserve optional catch-all params at route roots
kojiwakayama Aug 3, 2026
4bbd964
Reconcile route hardening with current main
kojiwakayama Aug 3, 2026
8c003af
Keep cloud fetch tests inside the mock transport
kojiwakayama Aug 3, 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
1 change: 0 additions & 1 deletion scripts/lint/test-typecheck-baseline.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
"src/build/renderer/services/css-bundler.test.ts",
"src/cache/registry.test.ts",
"src/embedding/chunk.test.ts",
"src/embedding/rag-store.test.ts",
"src/eval/judges.test.ts",
"src/mcp/elicitation.test.ts",
"src/mcp/server.test.ts",
Expand Down
12 changes: 12 additions & 0 deletions scripts/typecheck/fixtures/core-frontmatter.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
// Consumer fixture for the root package declaration emitted by dnt.
import type { MDXFrontmatter } from "veryfront";

const customFrontmatterValue: string | number | boolean | string[] | undefined = true;

export const frontmatter: MDXFrontmatter = {
title: "Consumer page",
custom: customFrontmatterValue,
};

export const legacyCustomValue: string | number | boolean | string[] | undefined =
frontmatter.custom;
1 change: 1 addition & 0 deletions scripts/typecheck/tsconfig.consumer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"baseUrl": "../..",
"paths": {
"veryfront": ["./npm/esm/src/index.d.ts"],
"react": ["./storybook/node_modules/@types/react"],
"react/jsx-runtime": ["./storybook/node_modules/@types/react/jsx-runtime"],
"react/jsx-dev-runtime": ["./storybook/node_modules/@types/react/jsx-dev-runtime"],
Expand Down
Loading