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/fifty-cups-dance.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/flat-curves-hide.md

This file was deleted.

13 changes: 0 additions & 13 deletions .changeset/giant-items-take.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/long-cougars-yell.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/lucky-cameras-allow.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/missing-names-triumph.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/pretty-crews-search.md

This file was deleted.

27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,32 @@
# @aragon/app

## 1.22.0

### Minor Changes

- [#986](https://github.com/aragon/app/pull/986) [`fb29e63`](https://github.com/aragon/app/commit/fb29e63531257a90e55800799e7dadbd3544183b) Thanks [@milosh86](https://github.com/milosh86)! - Add campaign creation basic view

- [#994](https://github.com/aragon/app/pull/994) [`75259e0`](https://github.com/aragon/app/commit/75259e0b5b71e6126811c2343a2c225f830d0500) Thanks [@tyhonchik](https://github.com/tyhonchik)! - Upgrade wagmi from v2.19.5 to v3.4.2, update viem to 2.45.2, and remove all v3 deprecations
- **wagmi v3**: Connector dependencies are now optional peer dependencies, giving more control over the dependency tree
- **Removed overrides**: Eliminated `@reown/appkit` version override and `@wagmi/connectors` pin that are no longer needed
- **useBalance migration**: Replaced deprecated `useBalance({ token })` with `useReadContract({ abi: erc20Abi, functionName: 'balanceOf' })` for ERC20 token balance fetching
- **Import path optimization**: Moved chain definitions from `wagmi/chains` to `viem/chains` (the canonical source)
- **useAccount → useConnection**: Migrated all `useAccount` hook usage to the new `useConnection` hook across ~60 files
- **mutateFn rename**: Replaced deprecated `sendTransaction`/`switchChain` destructured names with `mutate` in `useSendTransaction` and `useSwitchChain` hooks
- **Test updates**: Updated all test mocks and type references to use `useConnection` and `UseConnectionReturnType`

- [#992](https://github.com/aragon/app/pull/992) [`eb316ae`](https://github.com/aragon/app/commit/eb316ae369f5eb927d3ff33efbb39d3e59d118a3) Thanks [@tyhonchik](https://github.com/tyhonchik)! - Fix vote history for SPP

### Patch Changes

- [#989](https://github.com/aragon/app/pull/989) [`70f14e8`](https://github.com/aragon/app/commit/70f14e8aa79f9348995f230234953feedb18b6b0) Thanks [@evanaronson](https://github.com/evanaronson)! - Hide veLocker chart when the slope is flat

- [#993](https://github.com/aragon/app/pull/993) [`b63b40e`](https://github.com/aragon/app/commit/b63b40e91710d7368fba1c59dd375829461435f8) Thanks [@tyhonchik](https://github.com/tyhonchik)! - Fix ENS name rendering in the token delegation transaction dialog by resolving and passing the delegate ENS to the member list item.

- [#991](https://github.com/aragon/app/pull/991) [`7a346d5`](https://github.com/aragon/app/commit/7a346d5240502e7408ae28ed4cbc6107e454912a) Thanks [@evanaronson](https://github.com/evanaronson)! - Fall back on DAO address in places where DAO name is missing

- [#984](https://github.com/aragon/app/pull/984) [`17a413f`](https://github.com/aragon/app/commit/17a413fd00f9dca324b694b5a997d4d38d02b9c6) Thanks [@milosh86](https://github.com/milosh86)! - Remove empty avatar definition list items when no avatar is set

## 1.21.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aragon/app",
"version": "1.21.0",
"version": "1.22.0",
"description": "Human-centered DAO infrastructure",
"author": "Aragon Association",
"homepage": "https://github.com/aragon/app#readme",
Expand Down
18 changes: 9 additions & 9 deletions src/assets/locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -191,11 +191,11 @@
},
"capitalDistributorCreateCampaignActionCreateForm": {
"asset": {
"helpText": "Choose the token to distribute.",
"helpText": "Select the token to distributed in this campaign.",
"label": "Asset"
},
"description": {
"helpText": "Describe the campaign in a few sentences.",
"helpText": "This will be shown on the rewards page to the eligible recipients.",
"label": "Description"
},
"jsonUpload": {
Expand All @@ -206,13 +206,13 @@
},
"button": "Upload JSON",
"buttonAlt": "Replace JSON",
"helpText": "Upload a JSON file with addresses and amounts to distribute.",
"helpText": "Upload a JSON file with addresses and the amounts to distribute.",
"label": "Distribution file",
"merkleRoot": "Merkle root: {{merkleRoot}}",
"totalMembers": "{{totalMembers}} addresses imported"
},
"resources": {
"helpText": "Links to campaign resources, documentation, or socials.",
"helpText": "Add any additional external resources that help recipients understand the campaign.",
"label": "Links"
},
"title": {
Expand All @@ -222,20 +222,20 @@
"label": "Campaign schedule",
"helpText": "Choose whether the campaign runs indefinitely or within a scheduled window.",
"openEnded": {
"label": "Open-ended",
"description": "Starts immediately with no end date"
"label": "Ongoing",
"description": "Starts immediately and has no end date"
},
"scheduled": {
"label": "Scheduled",
"description": "Define start and end times"
},
"startTime": {
"label": "Start time",
"helpText": "When the campaign becomes active."
"helpText": "Before this time recipients will not be able to claim."
},
"endTime": {
"label": "End time",
"helpText": "When the campaign expires."
"helpText": "After this time recipients will not be able to claim."
}
}
}
Expand Down Expand Up @@ -1389,7 +1389,7 @@
"import": {
"accept": "Import actions",
"cancel": "Cancel",
"chooseFile": "Choose File",
"chooseFile": "Choose file",
"description": "Upload a JSON file containing actions to add to the proposal.",
"fileInputHelpText": "Must contain actions formatted: [{\"to\":\"\",\"value\": 0,\"data\": \"\"}]",
"fileInputLabel": "Select JSON file",
Expand Down