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
8 changes: 0 additions & 8 deletions .changeset/afraid-jobs-smell.md

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/export-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: Prepare pre-requisites
uses: ./.github/actions/prepare
with:
token: ${{ steps.gh-app-token.outputs.token }}'
token: ${{ steps.gh-app-token.outputs.token }}

- name: Configure npm authentication for npm registry
run: |
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/update-versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,14 @@ jobs:

- name: Commit and push changes
if: steps.check-changes.outputs.changed == 'true'
env:
HUSKY: 0 # Disable husky hooks for automated commits
run: |
git config --local user.email "github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
# Checkout the proper branch (handle both PR and push events)
BRANCH_NAME="${{ github.head_ref || github.ref_name }}"
git checkout "$BRANCH_NAME"
git add packages/builder/src/export/versions.ts
git commit -m "chore: update export versions"
git push
git push origin "$BRANCH_NAME"
Empty file added pack.json
Empty file.
12 changes: 12 additions & 0 deletions packages/adapter-evm/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# @openzeppelin/transaction-form-adapter-evm

## 0.4.0

### Minor Changes

- [#91](https://github.com/OpenZeppelin/contracts-ui-builder/pull/91) [`6ad118f`](https://github.com/OpenZeppelin/contracts-ui-builder/commit/6ad118fcac5aeb6c807bdcc9464de98791d2a20a) Thanks [@pasevin](https://github.com/pasevin)! - a better support for mobile screen sizes

### Patch Changes

- Updated dependencies [[`6ad118f`](https://github.com/OpenZeppelin/contracts-ui-builder/commit/6ad118fcac5aeb6c807bdcc9464de98791d2a20a)]:
- @openzeppelin/[email protected]
- @openzeppelin/[email protected]

## 0.3.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/adapter-evm/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@openzeppelin/contracts-ui-builder-adapter-evm",
"version": "0.3.2",
"version": "0.4.0",
"private": false,
"description": "EVM Adapter for Contracts UI Builder",
"keywords": [
Expand Down
8 changes: 8 additions & 0 deletions packages/adapter-midnight/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @openzeppelin/transaction-form-adapter-midnight

## 0.1.3

### Patch Changes

- Updated dependencies [[`6ad118f`](https://github.com/OpenZeppelin/contracts-ui-builder/commit/6ad118fcac5aeb6c807bdcc9464de98791d2a20a)]:
- @openzeppelin/[email protected]
- @openzeppelin/[email protected]

## 0.1.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/adapter-midnight/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@openzeppelin/contracts-ui-builder-adapter-midnight",
"version": "0.1.2",
"version": "0.1.3",
"description": "Midnight Adapter for Contracts UI Builder",
"keywords": [
"openzeppelin",
Expand Down
15 changes: 15 additions & 0 deletions packages/builder/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# @openzeppelin/transaction-form-builder-core

## 0.5.0

### Minor Changes

- [#91](https://github.com/OpenZeppelin/contracts-ui-builder/pull/91) [`6ad118f`](https://github.com/OpenZeppelin/contracts-ui-builder/commit/6ad118fcac5aeb6c807bdcc9464de98791d2a20a) Thanks [@pasevin](https://github.com/pasevin)! - a better support for mobile screen sizes

### Patch Changes

- Updated dependencies [[`6ad118f`](https://github.com/OpenZeppelin/contracts-ui-builder/commit/6ad118fcac5aeb6c807bdcc9464de98791d2a20a)]:
- @openzeppelin/[email protected]
- @openzeppelin/[email protected]
- @openzeppelin/[email protected]
- @openzeppelin/[email protected]
- @openzeppelin/[email protected]

## 0.4.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/builder/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@openzeppelin/contracts-ui-builder-app",
"private": true,
"version": "0.4.1",
"version": "0.5.0",
"type": "module",
"bin": {
"export-app": "src/export/cli/export-app.cjs"
Expand Down
5 changes: 5 additions & 0 deletions packages/builder/src/assets/icons/contracts-wizard-icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { FileJson2 } from 'lucide-react';

import { appConfigService } from '@openzeppelin/contracts-ui-builder-utils';

import ContractsWizardIconSvg from '../../../assets/icons/contracts-wizard-icon.svg';
import { DevToolsDropdown } from '../../Common/DevToolsDropdown';
import SidebarButton from './SidebarButton';

Expand All @@ -19,7 +18,7 @@ export default function OtherToolsSection() {
<div className="text-[#5e5e5e] text-xs font-semibold leading-4 mb-1">Other Tools</div>
<div className="flex flex-col">
<SidebarButton
icon={<FileJson2 className="size-4" />}
icon={<img src={ContractsWizardIconSvg} alt="Contract Wizard" className="size-4" />}
href="https://wizard.openzeppelin.com/"
target="_blank"
rel="noopener noreferrer"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -276,11 +276,11 @@ exports[`Export Snapshot Tests > EVM Export Snapshots > should match snapshot fo
exports[`Export Snapshot Tests > EVM Export Snapshots > should match snapshot for package.json structure > package-json-evm 1`] = `
{
"dependencies": {
"@openzeppelin/contracts-ui-builder-adapter-evm": "^0.3.2",
"@openzeppelin/contracts-ui-builder-react-core": "^0.2.3",
"@openzeppelin/contracts-ui-builder-renderer": "^0.2.3",
"@openzeppelin/contracts-ui-builder-adapter-evm": "^0.4.0",
"@openzeppelin/contracts-ui-builder-react-core": "^0.2.4",
"@openzeppelin/contracts-ui-builder-renderer": "^0.3.0",
"@openzeppelin/contracts-ui-builder-types": "^0.3.0",
"@openzeppelin/contracts-ui-builder-ui": "^0.4.1",
"@openzeppelin/contracts-ui-builder-ui": "^0.5.0",
"@openzeppelin/contracts-ui-builder-utils": "^0.4.0",
"@tanstack/react-query": "^5.0.0",
"@wagmi/core": "^2.17.0",
Expand Down Expand Up @@ -323,11 +323,11 @@ exports[`Export Snapshot Tests > Solana Export Snapshots > should match snapshot
exports[`Export Snapshot Tests > Solana Export Snapshots > should match snapshot for package.json with Solana dependencies > package-json-solana 1`] = `
{
"dependencies": {
"@openzeppelin/contracts-ui-builder-adapter-evm": "^0.3.2",
"@openzeppelin/contracts-ui-builder-react-core": "^0.2.3",
"@openzeppelin/contracts-ui-builder-renderer": "^0.2.3",
"@openzeppelin/contracts-ui-builder-adapter-evm": "^0.4.0",
"@openzeppelin/contracts-ui-builder-react-core": "^0.2.4",
"@openzeppelin/contracts-ui-builder-renderer": "^0.3.0",
"@openzeppelin/contracts-ui-builder-types": "^0.3.0",
"@openzeppelin/contracts-ui-builder-ui": "^0.4.1",
"@openzeppelin/contracts-ui-builder-ui": "^0.5.0",
"@openzeppelin/contracts-ui-builder-utils": "^0.4.0",
"@tanstack/react-query": "^5.0.0",
"@wagmi/core": "^2.17.0",
Expand Down
10 changes: 5 additions & 5 deletions packages/builder/src/export/versions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
*/

export const packageVersions = {
'@openzeppelin/contracts-ui-builder-adapter-evm': '0.3.2',
'@openzeppelin/contracts-ui-builder-adapter-midnight': '0.1.2',
'@openzeppelin/contracts-ui-builder-adapter-evm': '0.4.0',
'@openzeppelin/contracts-ui-builder-adapter-midnight': '0.1.3',
'@openzeppelin/contracts-ui-builder-adapter-solana': '0.0.8',
'@openzeppelin/contracts-ui-builder-adapter-stellar': '0.0.8',
'@openzeppelin/contracts-ui-builder-react-core': '0.2.3',
'@openzeppelin/contracts-ui-builder-renderer': '0.2.3',
'@openzeppelin/contracts-ui-builder-react-core': '0.2.4',
'@openzeppelin/contracts-ui-builder-renderer': '0.3.0',
'@openzeppelin/contracts-ui-builder-storage': '0.3.3',
'@openzeppelin/contracts-ui-builder-types': '0.3.0',
'@openzeppelin/contracts-ui-builder-ui': '0.4.1',
'@openzeppelin/contracts-ui-builder-ui': '0.5.0',
'@openzeppelin/contracts-ui-builder-utils': '0.4.0',
};
7 changes: 7 additions & 0 deletions packages/react-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @openzeppelin/transaction-form-react-core

## 0.2.4

### Patch Changes

- Updated dependencies [[`6ad118f`](https://github.com/OpenZeppelin/contracts-ui-builder/commit/6ad118fcac5aeb6c807bdcc9464de98791d2a20a)]:
- @openzeppelin/[email protected]

## 0.2.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/react-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@openzeppelin/contracts-ui-builder-react-core",
"version": "0.2.3",
"version": "0.2.4",
"private": false,
"description": "Core React context providers and hooks for the OpenZeppelin Contracts UI Builder.",
"type": "module",
Expand Down
11 changes: 11 additions & 0 deletions packages/renderer/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @openzeppelin/transaction-form-renderer

## 0.3.0

### Minor Changes

- [#91](https://github.com/OpenZeppelin/contracts-ui-builder/pull/91) [`6ad118f`](https://github.com/OpenZeppelin/contracts-ui-builder/commit/6ad118fcac5aeb6c807bdcc9464de98791d2a20a) Thanks [@pasevin](https://github.com/pasevin)! - a better support for mobile screen sizes

### Patch Changes

- Updated dependencies [[`6ad118f`](https://github.com/OpenZeppelin/contracts-ui-builder/commit/6ad118fcac5aeb6c807bdcc9464de98791d2a20a)]:
- @openzeppelin/[email protected]

## 0.2.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/renderer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@openzeppelin/contracts-ui-builder-renderer",
"version": "0.2.3",
"version": "0.3.0",
"private": false,
"description": "A specialized library for rendering customizable transaction forms for blockchain applications.",
"type": "module",
Expand Down
6 changes: 6 additions & 0 deletions packages/ui/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @openzeppelin/transaction-form-ui

## 0.5.0

### Minor Changes

- [#91](https://github.com/OpenZeppelin/contracts-ui-builder/pull/91) [`6ad118f`](https://github.com/OpenZeppelin/contracts-ui-builder/commit/6ad118fcac5aeb6c807bdcc9464de98791d2a20a) Thanks [@pasevin](https://github.com/pasevin)! - a better support for mobile screen sizes

## 0.4.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@openzeppelin/contracts-ui-builder-ui",
"version": "0.4.1",
"version": "0.5.0",
"private": false,
"description": "Shared React UI components for the OpenZeppelin Contracts UI Builder.",
"type": "module",
Expand Down
Loading