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
10 changes: 0 additions & 10 deletions .changeset/zod-v4-migration.md

This file was deleted.

15 changes: 15 additions & 0 deletions modelcontextprotocol/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# @commercetools/mcp-essentials

## 3.0.0

### Major Changes

- [#70](https://github.com/commercetools/mcp-essentials/pull/70) [`90b4318`](https://github.com/commercetools/mcp-essentials/commit/90b43183b3ca50bf673b94af013dc8d3ae6bca81) Thanks [@hajoeichler](https://github.com/hajoeichler)! - Upgrade `zod` from v3 to v4 (`^4.0.0`).

Consumers that define custom tools or extend the SDK with their own zod schemas will need to migrate to zod v4 as well. The `ZodObject` generic now takes two type parameters instead of four/five, and `ZodError.issues` replaces the deprecated `.errors` / `.formErrors` accessors. See the [zod v4 migration guide](https://zod.dev/v4/changelog) for details.

The unused `zod-to-json-schema` dependency has been removed; if you used it transitively, switch to the native `z.toJSONSchema()` in zod v4.

### Patch Changes

- Updated dependencies [[`90b4318`](https://github.com/commercetools/mcp-essentials/commit/90b43183b3ca50bf673b94af013dc8d3ae6bca81)]:
- @commercetools/agent-essentials@4.0.0

## 2.4.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion modelcontextprotocol/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@commercetools/mcp-essentials",
"version": "2.4.2",
"version": "3.0.0",
"homepage": "https://github.com/commercetools/mcp-essentials",
"description": "A command line tool for setting up commercetools MCP server",
"bin": "dist/index.js",
Expand Down
10 changes: 10 additions & 0 deletions typescript/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @commercetools/agent-essentials

## 4.0.0

### Major Changes

- [#70](https://github.com/commercetools/mcp-essentials/pull/70) [`90b4318`](https://github.com/commercetools/mcp-essentials/commit/90b43183b3ca50bf673b94af013dc8d3ae6bca81) Thanks [@hajoeichler](https://github.com/hajoeichler)! - Upgrade `zod` from v3 to v4 (`^4.0.0`).

Consumers that define custom tools or extend the SDK with their own zod schemas will need to migrate to zod v4 as well. The `ZodObject` generic now takes two type parameters instead of four/five, and `ZodError.issues` replaces the deprecated `.errors` / `.formErrors` accessors. See the [zod v4 migration guide](https://zod.dev/v4/changelog) for details.

The unused `zod-to-json-schema` dependency has been removed; if you used it transitively, switch to the native `z.toJSONSchema()` in zod v4.

## 3.5.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion typescript/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@commercetools/agent-essentials",
"version": "3.5.1",
"version": "4.0.0",
"homepage": "https://github.com/commercetools/mcp-essentials",
"scripts": {
"preinstall": "npx only-allow pnpm",
Expand Down
Loading