Skip to content

Commit fd2ae88

Browse files
committed
chore(release): prepare v0.2.1
1 parent 9cbf183 commit fd2ae88

10 files changed

Lines changed: 45 additions & 11 deletions

File tree

CHANGELOG.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
## 0.2.1
6+
7+
### Changed
8+
9+
- Remote public-mode access no longer hard-requires HTTPS. HTTP access is now allowed, while HTTPS remains recommended for public deployment.
10+
- The auth gate now shows the normal sign-in flow on remote HTTP hosts instead of blocking with an HTTPS requirement.
11+
- Deployment docs now document the HTTP/HTTPS tradeoff and the `Secure` cookie behavior more clearly.
12+
13+
### Added
14+
15+
- Release E2E coverage for remote HTTP sign-in.
16+
- Community support acknowledgement for LinuxDo in the Chinese homepage README.
17+
18+
## 0.2.0
19+
20+
### Added
21+
22+
- Initial local-server + web-ui workbench release for local folders and remote Git repositories.
23+
- Claude-based workspace flow with draft tasks, split panes, and PTY-style agent interaction.
24+
- Code browsing and editing with file tree, file search, Monaco preview/edit, and save.
25+
- Git workflow support with diff review, stage, unstage, discard, and commit actions.
26+
- Embedded multi-terminal workspace panel.
27+
- Public-mode auth with passphrase login, session cookies, root-path restrictions, and IP blocking.
28+
- npm CLI packaging, release verification, and cross-platform runtime publishing flow.

README.en.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -217,6 +217,7 @@ The following should not be described as fully shipped user-facing functionality
217217

218218
Product docs:
219219

220+
- Changelog: `CHANGELOG.md`
220221
- Chinese PRD: `docs/PRD.md`
221222
- English PRD: `docs/PRD.en.md`
222223

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44

55
Coder Studio 是一个本地优先的开发工作台,当前以本地 server + Web 界面形态运行,用于把仓库接入、Claude Agent 运行、代码浏览与编辑、Git 操作、内置终端放到同一个界面中。
66

7+
## 社区支持
8+
9+
感谢 LinuxDo 各位佬的支持!欢迎大家加入 [LinuxDo](https://linux.do/),各种技术交流、AI 前沿资讯、AI 经验分享,尽在 LinuxDo!
10+
711
## 项目是什么
812

913
这个项目当前的产品形态不是“通用 AI 平台”,而是一个围绕真实 Git 仓库工作的本地工作台;默认通过本地 server 暴露界面与 API。
@@ -216,6 +220,7 @@ pnpm build:cli
216220

217221
用户文档:
218222

223+
- 更新日志:`CHANGELOG.md`
219224
- 中文 PRD:`docs/PRD.md`
220225
- English PRD: `docs/PRD.en.md`
221226

apps/server/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "coder-studio"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
edition = "2021"
55

66
[dependencies]

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "coder-studio-workspace",
33
"private": true,
4-
"version": "0.2.0",
4+
"version": "0.2.1",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",

packages/cli/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@spencer-kit/coder-studio",
3-
"version": "0.2.0",
3+
"version": "0.2.1",
44
"type": "module",
55
"description": "CLI runtime manager for Coder Studio.",
66
"bin": {
@@ -12,10 +12,10 @@
1212
"README.md"
1313
],
1414
"optionalDependencies": {
15-
"@spencer-kit/coder-studio-linux-x64": "0.2.0",
16-
"@spencer-kit/coder-studio-darwin-arm64": "0.2.0",
17-
"@spencer-kit/coder-studio-darwin-x64": "0.2.0",
18-
"@spencer-kit/coder-studio-win32-x64": "0.2.0"
15+
"@spencer-kit/coder-studio-linux-x64": "0.2.1",
16+
"@spencer-kit/coder-studio-darwin-arm64": "0.2.1",
17+
"@spencer-kit/coder-studio-darwin-x64": "0.2.1",
18+
"@spencer-kit/coder-studio-win32-x64": "0.2.1"
1919
},
2020
"publishConfig": {
2121
"access": "public"

templates/npm/platform-packages/coder-studio-darwin-arm64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@spencer-kit/coder-studio-darwin-arm64",
3-
"version": "0.2.0",
3+
"version": "0.2.1",
44
"description": "macOS arm64 runtime bundle for Coder Studio.",
55
"os": [
66
"darwin"

templates/npm/platform-packages/coder-studio-darwin-x64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@spencer-kit/coder-studio-darwin-x64",
3-
"version": "0.2.0",
3+
"version": "0.2.1",
44
"description": "macOS x64 runtime bundle for Coder Studio.",
55
"os": [
66
"darwin"

templates/npm/platform-packages/coder-studio-linux-x64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@spencer-kit/coder-studio-linux-x64",
3-
"version": "0.2.0",
3+
"version": "0.2.1",
44
"description": "Linux x64 runtime bundle for Coder Studio.",
55
"os": [
66
"linux"

templates/npm/platform-packages/coder-studio-win32-x64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@spencer-kit/coder-studio-win32-x64",
3-
"version": "0.2.0",
3+
"version": "0.2.1",
44
"description": "Windows x64 runtime bundle for Coder Studio.",
55
"os": [
66
"win32"

0 commit comments

Comments
 (0)