Skip to content
Merged
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
5 changes: 0 additions & 5 deletions .changeset/avoid-shell-github-token.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fix-codex-skill-install.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fix-proxy-node26.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changeset/giant-numbers-divide.md

This file was deleted.

8 changes: 8 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.5.6

### Patch Changes

- 23843e9: Read the GitHub CLI auth token by invoking `gh` directly instead of through a shell. The shell wrapper (`cmd.exe /d /s /c` on Windows) caused endpoint protection tools such as Microsoft Defender for Endpoint to raise a "Suspicious Node.js process behavior" alert during `ctx7 setup`.
- c82cc8a: Fix `ctx7 setup` skill install failing with "fetch failed" when the GitHub git tree API (`api.github.com`) is blocked or unreachable. Skill download now falls back to fetching the single `SKILL.md` directly from `raw.githubusercontent.com` — the URL the docs API already resolves — so setup succeeds in environments where only the docs/raw hosts are reachable.
- 1c081df: Improve query prompts so agents request relevant library documentation instead of passing the task to complete.

## 0.5.5

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ctx7",
"version": "0.5.5",
"version": "0.5.6",
"description": "Context7 CLI - Fetch documentation context and configure Context7",
"type": "module",
"bin": {
Expand Down
7 changes: 7 additions & 0 deletions packages/mcp/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @upstash/context7-mcp

## 3.2.5

### Patch Changes

- beded6c: Bump `undici` to 7 and require Node.js >= 20.18.1. On Node 26+ (internal undici 8) the bundled undici 6 `setGlobalDispatcher` wrote a global-dispatcher symbol the built-in `fetch` no longer reads, so `HTTPS_PROXY` and custom-CA settings were silently ignored and requests failed with `ENOTFOUND` behind CONNECT proxies. undici 7 writes both symbols, restoring proxy and CA support. Node 18 is no longer supported (EOL; undici 7 requires Node >= 20.18.1).
- 1c081df: Improve query prompts so agents request relevant library documentation instead of passing the task to complete.

## 3.2.4

### Patch Changes
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": "@upstash/context7-mcp",
"version": "3.2.4",
"version": "3.2.5",
"mcpName": "io.github.upstash/context7",
"description": "MCP server for Context7",
"scripts": {
Expand Down
6 changes: 6 additions & 0 deletions packages/pi/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @upstash/context7-pi

## 0.1.2

### Patch Changes

- 1c081df: Improve query prompts so agents request relevant library documentation instead of passing the task to complete.

## 0.1.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/pi/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@upstash/context7-pi",
"version": "0.1.1",
"version": "0.1.2",
"description": "Official Context7 extension for pi.dev — adds resolve-library-id and query-docs tools to the pi coding agent",
"type": "module",
"pi": {
Expand Down
6 changes: 6 additions & 0 deletions packages/tools-ai-sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @upstash/context7-tools-ai-sdk

## 0.2.5

### Patch Changes

- 1c081df: Improve query prompts so agents request relevant library documentation instead of passing the task to complete.

## 0.2.4

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/tools-ai-sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@upstash/context7-tools-ai-sdk",
"version": "0.2.4",
"version": "0.2.5",
"description": "Context7 tools for Vercel AI SDK",
"type": "module",
"main": "./dist/index.cjs",
Expand Down