chore(release): 0.2.0 - #60
Merged
TheGreatAxios merged 3 commits intoSep 27, 2026
Merged
Conversation
TheGreatAxios
force-pushed
the
release-0.2.0
branch
3 times, most recently
from
September 25, 2026 23:33
c87e680 to
881792d
Compare
TheGreatAxios
force-pushed
the
release-0.2.0
branch
from
September 26, 2026 00:17
881792d to
d046edd
Compare
TheGreatAxios
force-pushed
the
release-0.2.0
branch
from
September 26, 2026 00:35
d046edd to
158ef4a
Compare
TheGreatAxios
force-pushed
the
release-0.2.0
branch
2 times, most recently
from
September 26, 2026 01:32
9ac8f6a to
f7ff5d7
Compare
TheGreatAxios
force-pushed
the
release-0.2.0
branch
from
September 26, 2026 01:36
f7ff5d7 to
ed3a2c2
Compare
TheGreatAxios
added this pull request to stack #61
September 26, 2026 01:57
TheGreatAxios
force-pushed
the
release-0.2.0
branch
3 times, most recently
from
September 26, 2026 02:32
41558ce to
d068a54
Compare
Migrates and writes a database with the published 0.1.0 package, then runs this version's migrations and checks every row survives and the 0.1.0 documents stay searchable.
The end-to-end suites and their harness move from tests/ to the root e2e/ directory, with the database harness and HTTP stub merged into e2e/helpers.ts, to match the repo test layout. bun run test now runs src/ only and the new test:e2e script runs e2e/; CI runs both.
TheGreatAxios
force-pushed
the
release-0.2.0
branch
from
September 27, 2026 00:32
d068a54 to
8e8c9e3
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Stacked on #59; merge last, after #52–#59.
tests/toe2e/, with the shared harness and HTTP stub ine2e/helpers.ts.bun run testrunssrc/andbun run test:e2erunse2e/; CI runs both.e2e/upgrade-from-0.1.0.test.ts: it migrates and writes a database with the published@corbits/memory@0.1.0(npm alias devDependency), runs this version'srunMemoryMigrationstwice, and checks that every row of every memory table survives, the 0.1.0 ledger is dropped, and 0.1.0 documents stay searchable.Verification
bun install --frozen-lockfile, build, typecheck,bun run testandbun run test:e2e(375 pass total) against local Postgres 17 with pgvector.Closes CL-9358