@sunflower0305/claude-proxy 1.1.2 → 1.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md ADDED
@@ -0,0 +1,97 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ ## [1.1.3] - 2026-04-24
6
+
7
+ Patch release of `@sunflower0305/claude-proxy`.
8
+
9
+ ### Added
10
+
11
+ - README Changelog section linking to release notes from the npm package page
12
+ - `CHANGELOG.md` is now included in the published npm package
13
+
14
+ Detailed release notes: [docs/releases/1.1.3.md](docs/releases/1.1.3.md)
15
+
16
+ ## [1.1.2] - 2026-04-24
17
+
18
+ Patch release of `@sunflower0305/claude-proxy`.
19
+
20
+ ### Added
21
+
22
+ - README provider defaults table covering all supported providers and their default models
23
+
24
+ ### Changed
25
+
26
+ - default provider changed from `qwen` to `deepseek`
27
+ - default DeepSeek model changed from `deepseek-chat` to `deepseek-v4-pro`
28
+ - README now focuses on installation, configuration, runtime usage, and development setup
29
+
30
+ Detailed release notes: [docs/releases/1.1.2.md](docs/releases/1.1.2.md)
31
+
32
+ ## [1.1.1] - 2026-04-21
33
+
34
+ Patch release of `@sunflower0305/claude-proxy`.
35
+
36
+ ### Added
37
+
38
+ - GitHub Actions CD workflow for tag-driven npm publishing and GitHub Release creation
39
+
40
+ ### Changed
41
+
42
+ - release documentation and README publishing guidance now reflect the new CD workflow
43
+
44
+ ### Fixed
45
+
46
+ - Claude-facing model mappings now expose `claude-opus-4-7` instead of `claude-opus-4-6`
47
+ - local integration tests now validate the updated Claude model identifier
48
+
49
+ Detailed release notes: [docs/releases/1.1.1.md](/Users/joe/ai/claude-proxy/docs/releases/1.1.1.md)
50
+
51
+ ## [1.1.0] - 2026-04-21
52
+
53
+ Second public npm release of `@sunflower0305/claude-proxy`.
54
+
55
+ ### Added
56
+
57
+ - GitHub Actions CI workflow for build, local integration tests, and coverage reporting
58
+ - broader local integration coverage for `qwen`, `glm`, and `minimax`
59
+
60
+ ### Changed
61
+
62
+ - proxy runtime state is now isolated per `createApp()` instance to support multiple app instances safely
63
+ - model and provider inference logic was refactored to better handle dynamic provider identification
64
+ - startup banner formatting and release documentation were polished
65
+ - Kimi documentation and default model references were updated to `kimi-k2.6`
66
+
67
+ ### Fixed
68
+
69
+ - test cleanup now avoids duplicate resource shutdowns
70
+ - redundant proxy console logging was removed to reduce noise and overhead
71
+
72
+ Detailed release notes: [docs/releases/1.1.0.md](/Users/joe/ai/claude-proxy/docs/releases/1.1.0.md)
73
+
74
+ ## [1.0.0] - 2026-04-15
75
+
76
+ First public npm release of `@sunflower0305/claude-proxy`.
77
+
78
+ ### Added
79
+
80
+ - public scoped npm package: `@sunflower0305/claude-proxy`
81
+ - executable `claude-proxy` CLI entrypoint
82
+ - programmatic `createApp()` export for Express-based usage
83
+ - packaged TypeScript declarations in `dist/`
84
+ - bundled publish assets: `README.md`, `LICENSE`, and `.env.example`
85
+ - Anthropic-compatible proxy support for `qwen`, `deepseek`, `glm`, `minimax`, and `kimi`
86
+ - support for both non-streaming JSON and streaming SSE proxy responses
87
+ - runtime provider switching via `GET/POST /api/provider`
88
+
89
+ ### Verified
90
+
91
+ - npm installation from the published registry artifact
92
+ - installed CLI startup from the published package
93
+ - `GET /health` and `GET /v1/models`
94
+ - end-to-end non-streaming and streaming proxying against a local mock upstream
95
+ - end-to-end non-streaming and streaming proxying against the real Qwen upstream
96
+
97
+ Detailed release notes: [docs/releases/1.0.0.md](/Users/joe/ai/claude-proxy/docs/releases/1.0.0.md)
package/README.md CHANGED
@@ -141,6 +141,10 @@ npm install
141
141
  npm run dev
142
142
  ```
143
143
 
144
+ ## Changelog
145
+
146
+ See [CHANGELOG.md](https://github.com/sunflower0305/claude-proxy/blob/master/CHANGELOG.md) and [GitHub Releases](https://github.com/sunflower0305/claude-proxy/releases) for release notes.
147
+
144
148
  ## License
145
149
 
146
150
  MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sunflower0305/claude-proxy",
3
- "version": "1.1.2",
3
+ "version": "1.1.3",
4
4
  "type": "module",
5
5
  "description": "A proxy that lets Claude Agent SDK use domestic Chinese LLMs (DeepSeek, Qwen, GLM, MiniMax) as backend",
6
6
  "license": "MIT",
@@ -18,6 +18,7 @@
18
18
  "files": [
19
19
  "dist/",
20
20
  "README.md",
21
+ "CHANGELOG.md",
21
22
  "LICENSE",
22
23
  ".env.example"
23
24
  ],