Skip to content
Open
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
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
},
"packageManager": "pnpm@9.15.0",
"omnigraph": {
"serverVersion": "0.8.0"
"serverVersion": "0.8.1"
},
"scripts": {
"sync-spec": "tsx scripts/sync-spec.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/mcp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@modernrelay/omnigraph-mcp",
"version": "0.8.0",
"version": "0.8.1",
"description": "MCP server exposing an Omnigraph database to LLM clients (Tools + Resources, stdio transport).",
"license": "MIT",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion packages/mcp/src/version.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
/**
* The MCP server package version reported in the MCP initialize response.
*/
export const MCP_PACKAGE_VERSION = "0.8.0";
export const MCP_PACKAGE_VERSION = "0.8.1";
4 changes: 2 additions & 2 deletions packages/mcp/test/server.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ describe('omnigraph-mcp server', () => {
const { client } = await setup();
const info = client.getServerVersion();
expect(info?.name).toBe('omnigraph-mcp');
expect(info?.version).toBe('0.8.0');
expect(info?.version).toBe('0.8.1');
});

it('lists every expected tool', async () => {
Expand Down Expand Up @@ -135,7 +135,7 @@ describe('omnigraph-mcp server', () => {
const parsed = JSON.parse(block.text);
expect(parsed.status).toBe('ok');
expect(parsed.version).toBe('0.3.0');
expect(parsed.sdkServerVersion).toBe('0.8.0');
expect(parsed.sdkServerVersion).toBe('0.8.1');
});

it('calls the query tool and preserves opaque param keys', async () => {
Expand Down
2 changes: 1 addition & 1 deletion packages/sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@modernrelay/omnigraph",
"version": "0.8.0",
"version": "0.8.1",
"description": "TypeScript SDK for the Omnigraph HTTP API.",
"license": "MIT",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion packages/sdk/src/version.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
* The SDK targets the corresponding OpenAPI spec exactly; behaviour against
* a different server major.minor is undefined.
*/
export const SERVER_VERSION = "0.8.0";
export const SERVER_VERSION = "0.8.1";
2 changes: 1 addition & 1 deletion spec/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"name": "MIT",
"identifier": "MIT"
},
"version": "0.8.0"
"version": "0.8.1"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Vendor the exact upstream spec payload

The v0.8.1 raw openapi.json tag is a compact 65-line file, while this diff keeps the previously formatted 2,568-line copy and only edits info.version; because scripts/check-drift.ts compares readFileSync(SPEC_FILE, 'utf8') directly against await response.text(), CI/release runs of pnpm run check-drift fail for this target version until the file is written exactly as pnpm run sync-spec would.

Useful? React with 👍 / 👎.

},
"paths": {
"/graphs": {
Expand Down
Loading