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/add-cli-package.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/mcp-use-common-schemas.md

This file was deleted.

10 changes: 0 additions & 10 deletions .changeset/move-schemas-to-common.md

This file was deleted.

10 changes: 0 additions & 10 deletions .changeset/remix-remappings-api.md

This file was deleted.

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


## 0.1.0 (2026-04-07)

- Add CLI. ([#785](https://github.com/OpenZeppelin/contracts-wizard/pull/785) [`c405aeb`](https://github.com/OpenZeppelin/contracts-wizard/commit/c405aeb5df1013e08f5762942f111a494f88c58e))
- Updated dependencies [[`c405aeb`](https://github.com/OpenZeppelin/contracts-wizard/commit/c405aeb5df1013e08f5762942f111a494f88c58e), [`234ab40`](https://github.com/OpenZeppelin/contracts-wizard/commit/234ab409114d81f9d6c429b7dc70c130cf72b5d1)]:
- @openzeppelin/wizard-common@0.5.0
- @openzeppelin/wizard@0.10.8
- @openzeppelin/wizard-confidential@0.1.1
- @openzeppelin/wizard-uniswap-hooks@0.1.1
10 changes: 5 additions & 5 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@openzeppelin/contracts-cli",
"version": "0.0.1",
"version": "0.1.0",
"description": "CLI for generating smart contracts using OpenZeppelin Contracts Wizard",
"license": "AGPL-3.0-only",
"repository": "https://github.com/OpenZeppelin/contracts-wizard",
Expand All @@ -27,13 +27,13 @@
},
"dependencies": {
"zod": "^4.0",
"@openzeppelin/wizard-common": "^0.4.4",
"@openzeppelin/wizard": "^0.10.7",
"@openzeppelin/wizard-common": "^0.5.0",
"@openzeppelin/wizard": "^0.10.8",
"@openzeppelin/wizard-cairo": "^3.0.0",
"@openzeppelin/wizard-stellar": "^0.5.0",
"@openzeppelin/wizard-stylus": "^0.3.0",
"@openzeppelin/wizard-confidential": "^0.1.0",
"@openzeppelin/wizard-uniswap-hooks": "^0.1.0"
"@openzeppelin/wizard-confidential": "^0.1.1",
"@openzeppelin/wizard-uniswap-hooks": "^0.1.1"
},
"devDependencies": {
"@types/node": "^20.0.0",
Expand Down
9 changes: 9 additions & 0 deletions packages/common/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
# Changelog


## 0.5.0 (2026-04-07)

- Move Zod schemas from MCP to common package, add `@openzeppelin/wizard-common/schemas` subpath export. ([#785](https://github.com/OpenZeppelin/contracts-wizard/pull/785))
- Uniswap hooks: shorten prompt, move hook descriptions to field-level `describe()` on `--hook` parameter.
- Cairo `access` schema field changed from required to optional (loosens validation).
- Added `zod` as a dependency.
- Add format examples and defaults to duration and date descriptions.
- **Breaking change**: Added `exports` field to package.json, restricting imports to declared subpaths (`.` and `./schemas`).

## 0.4.4 (2026-02-26)

- Solidity `erc20`, `stablecoin`, `realWorldAsset`: Support 'erc7786native' option for `crossChainBridging`. ([#747](https://github.com/OpenZeppelin/contracts-wizard/pull/747))
Expand Down
12 changes: 7 additions & 5 deletions packages/common/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@openzeppelin/wizard-common",
"version": "0.4.4",
"version": "0.5.0",
"description": "Common library for OpenZeppelin Contracts Wizard components. Used internally.",
"license": "AGPL-3.0-only",
"repository": "https://github.com/OpenZeppelin/contracts-wizard",
Expand All @@ -12,7 +12,9 @@
},
"typesVersions": {
"*": {
"schemas": ["dist/ai/schemas/index.d.ts"]
"schemas": [
"dist/ai/schemas/index.d.ts"
]
}
},
"files": [
Expand All @@ -32,12 +34,12 @@
"zod": "^4.0"
},
"devDependencies": {
"@openzeppelin/wizard": "^0.10.7",
"@openzeppelin/wizard": "^0.10.8",
"@openzeppelin/wizard-cairo": "^3.0.0",
"@openzeppelin/wizard-stellar": "^0.5.0",
"@openzeppelin/wizard-stylus": "^0.3.0",
"@openzeppelin/wizard-confidential": "^0.1.0",
"@openzeppelin/wizard-uniswap-hooks": "^0.1.0",
"@openzeppelin/wizard-confidential": "^0.1.1",
"@openzeppelin/wizard-uniswap-hooks": "^0.1.1",
"@types/node": "^20.0.0",
"ava": "^6.0.0",
"ts-node": "^10.4.0",
Expand Down
9 changes: 9 additions & 0 deletions packages/core/confidential/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
# Changelog


## 0.1.1 (2026-04-07)

- Add package APIs for getting versioned remappings. ([#786](https://github.com/OpenZeppelin/contracts-wizard/pull/786))
- Export `getVersionedRemappings` from the Solidity, Confidential, and Uniswap Hooks package roots for internal use by other Wizard packages.
- Add `getVersionedRemappings` to the Confidential `erc7984` API and the Uniswap Hooks `hooks` API for consistency with the Solidity contract APIs.
- **Internal breaking change**: Removed the internal `print-versioned` entrypoints; internal consumers should use `getVersionedRemappings` instead.
- Updated dependencies [[`234ab40`](https://github.com/OpenZeppelin/contracts-wizard/commit/234ab409114d81f9d6c429b7dc70c130cf72b5d1)]:
- @openzeppelin/wizard@0.10.8

## 0.1.0 (2026-02-17)

- Add support for Confidential Contracts Wizard ([#652](https://github.com/OpenZeppelin/contracts-wizard/pull/652))
Expand Down
4 changes: 2 additions & 2 deletions packages/core/confidential/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@openzeppelin/wizard-confidential",
"version": "0.1.0",
"version": "0.1.1",
"description": "A boilerplate generator to get started with OpenZeppelin Confidential Contracts",
"license": "AGPL-3.0-only",
"repository": "https://github.com/OpenZeppelin/contracts-wizard",
Expand All @@ -24,7 +24,7 @@
"update-env": "rm ./src/environments/hardhat/package-lock.json && npm install --package-lock-only --prefix ./src/environments/hardhat"
},
"dependencies": {
"@openzeppelin/wizard": "^0.10.6"
"@openzeppelin/wizard": "^0.10.8"
},
"devDependencies": {
"@fhevm/hardhat-plugin": "^0.3.0-1",
Expand Down
7 changes: 7 additions & 0 deletions packages/core/solidity/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# Changelog


## 0.10.8 (2026-04-07)

- Add package APIs for getting versioned remappings. ([#786](https://github.com/OpenZeppelin/contracts-wizard/pull/786))
- Export `getVersionedRemappings` from the Solidity, Confidential, and Uniswap Hooks package roots for internal use by other Wizard packages.
- Add `getVersionedRemappings` to the Confidential `erc7984` API and the Uniswap Hooks `hooks` API for consistency with the Solidity contract APIs.
- **Internal breaking change**: Removed the internal `print-versioned` entrypoints; internal consumers should use `getVersionedRemappings` instead.

## 0.10.7 (2026-02-26)

- Make ERC20Permit optional when ERC20Votes is enabled ([#778](https://github.com/OpenZeppelin/contracts-wizard/pull/778))
Expand Down
2 changes: 1 addition & 1 deletion packages/core/solidity/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@openzeppelin/wizard",
"version": "0.10.7",
"version": "0.10.8",
"description": "A boilerplate generator to get started with OpenZeppelin Contracts",
"license": "AGPL-3.0-only",
"repository": "https://github.com/OpenZeppelin/contracts-wizard",
Expand Down
9 changes: 9 additions & 0 deletions packages/core/uniswap-hooks/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
# Changelog


## 0.1.1 (2026-04-07)

- Add package APIs for getting versioned remappings. ([#786](https://github.com/OpenZeppelin/contracts-wizard/pull/786))
- Export `getVersionedRemappings` from the Solidity, Confidential, and Uniswap Hooks package roots for internal use by other Wizard packages.
- Add `getVersionedRemappings` to the Confidential `erc7984` API and the Uniswap Hooks `hooks` API for consistency with the Solidity contract APIs.
- **Internal breaking change**: Removed the internal `print-versioned` entrypoints; internal consumers should use `getVersionedRemappings` instead.
- Updated dependencies [[`234ab40`](https://github.com/OpenZeppelin/contracts-wizard/commit/234ab409114d81f9d6c429b7dc70c130cf72b5d1)]:
- @openzeppelin/wizard@0.10.8

## 0.1.0 (2025-11-28)

- Add support for Uniswap Hooks Wizard ([#628](https://github.com/OpenZeppelin/contracts-wizard/pull/628))
Expand Down
4 changes: 2 additions & 2 deletions packages/core/uniswap-hooks/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@openzeppelin/wizard-uniswap-hooks",
"version": "0.1.0",
"version": "0.1.1",
"description": "A boilerplate generator to get started with OpenZeppelin Contracts for Uniswap Hooks",
"license": "AGPL-3.0-only",
"repository": "https://github.com/OpenZeppelin/contracts-wizard",
Expand All @@ -24,7 +24,7 @@
"test:watch": "ava --watch"
},
"dependencies": {
"@openzeppelin/wizard": "^0.10.4"
"@openzeppelin/wizard": "^0.10.8"
},
"devDependencies": {
"@openzeppelin/contracts": "^5.6.0",
Expand Down
9 changes: 9 additions & 0 deletions packages/mcp/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
# Changelog


## 0.5.7 (2026-04-07)

- Use shared Zod schemas from `@openzeppelin/wizard-common/schemas` instead of local schema definitions. ([#785](https://github.com/OpenZeppelin/contracts-wizard/pull/785))
- Updated dependencies [[`c405aeb`](https://github.com/OpenZeppelin/contracts-wizard/commit/c405aeb5df1013e08f5762942f111a494f88c58e), [`234ab40`](https://github.com/OpenZeppelin/contracts-wizard/commit/234ab409114d81f9d6c429b7dc70c130cf72b5d1)]:
- @openzeppelin/wizard-common@0.5.0
- @openzeppelin/wizard@0.10.8
- @openzeppelin/wizard-confidential@0.1.1
- @openzeppelin/wizard-uniswap-hooks@0.1.1

## 0.5.6 (2026-03-30)

- Update `@modelcontextprotocol/sdk` to ^1.29.0 to address security advisories. ([#789](https://github.com/OpenZeppelin/contracts-wizard/pull/789))
Expand Down
10 changes: 5 additions & 5 deletions packages/mcp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@openzeppelin/contracts-mcp",
"version": "0.5.6",
"version": "0.5.7",
"description": "OpenZeppelin Contracts MCP Server",
"license": "AGPL-3.0-only",
"repository": "https://github.com/OpenZeppelin/contracts-wizard",
Expand All @@ -24,13 +24,13 @@
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"@openzeppelin/wizard-common": "^0.4.4",
"@openzeppelin/wizard": "^0.10.7",
"@openzeppelin/wizard-common": "^0.5.0",
"@openzeppelin/wizard": "^0.10.8",
"@openzeppelin/wizard-stylus": "^0.3.0",
"@openzeppelin/wizard-stellar": "^0.5.0",
"@openzeppelin/wizard-cairo": "^3.0.0",
"@openzeppelin/wizard-confidential": "^0.1.0",
"@openzeppelin/wizard-uniswap-hooks": "^0.1.0"
"@openzeppelin/wizard-confidential": "^0.1.1",
"@openzeppelin/wizard-uniswap-hooks": "^0.1.1"
},
"devDependencies": {
"@types/node": "^20.0.0",
Expand Down
Loading