Skip to content

Commit 889c1b4

Browse files
Version Packages
1 parent bc17ace commit 889c1b4

6 files changed

Lines changed: 40 additions & 23 deletions

File tree

.changeset/calm-houses-listen.md

Lines changed: 0 additions & 9 deletions
This file was deleted.

.changeset/some-bags-tie.md

Lines changed: 0 additions & 10 deletions
This file was deleted.

packages/create-sei/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# @sei-js/create-sei-app
22

3+
## 1.0.1
4+
5+
### Patch Changes
6+
7+
- 9168186: Improve the `next-template` runtime defaults generated by `create-sei`.
8+
9+
- Add a `prebuild` Biome check and include Biome in template dev dependencies.
10+
- Configure Next.js to allow Sei CDN images and skip ESLint during builds.
11+
- Update provider and shell setup for improved chain/image handling.
12+
- Align template config/docs with current defaults (`.env.example`, `README`, Biome, Tailwind v4 config).
13+
314
## 1.0.0
415

516
### Major Changes

packages/create-sei/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sei-js/create-sei",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/sei-protocol/sei-js.git",

packages/mcp-server/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
## 0.3.3
4+
5+
### Patch Changes
6+
7+
- bc17ace: Fix session binding and response isolation in the HTTP SSE transport.
8+
9+
- POST handler now validates `sessionId` on every request — rejects missing session IDs (400) and unknown session IDs (404)
10+
- Each POST is routed to the transport instance that owns the matching session ID, preventing cross-client request injection
11+
- Session IDs now use the MCP SDK's `transport.sessionId` rather than `Date.now()`
12+
313
## 0.3.2
414

515
### Patch Changes

packages/mcp-server/package.json

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,16 @@
22
"name": "@sei-js/mcp-server",
33
"description": "Model Context Protocol (MCP) server for interacting with EVM-compatible networks",
44
"type": "module",
5-
"version": "0.3.2",
5+
"version": "0.3.3",
66
"bin": "./bin/mcp-server.js",
77
"main": "./dist/esm/index.js",
88
"module": "./dist/esm/index.js",
9-
"files": ["dist/", "bin/", "README.md", "LICENSE"],
9+
"files": [
10+
"dist/",
11+
"bin/",
12+
"README.md",
13+
"LICENSE"
14+
],
1015
"scripts": {
1116
"build": "rm -rf dist && tsc",
1217
"start": "node dist/esm/index.js",
@@ -35,7 +40,17 @@
3540
"viem": "^2.30.5",
3641
"zod": "^3.24.2"
3742
},
38-
"keywords": ["mcp", "model-context-protocol", "evm", "blockchain", "sei", "web3", "smart-contracts", "ai", "agent"],
43+
"keywords": [
44+
"mcp",
45+
"model-context-protocol",
46+
"evm",
47+
"blockchain",
48+
"sei",
49+
"web3",
50+
"smart-contracts",
51+
"ai",
52+
"agent"
53+
],
3954
"author": "@codebycarson",
4055
"license": "MIT",
4156
"engines": {

0 commit comments

Comments
 (0)