diff --git a/.changeset/fix-spp-executed-stage-expired.md b/.changeset/fix-spp-executed-stage-expired.md deleted file mode 100644 index 9d82228f67..0000000000 --- a/.changeset/fix-spp-executed-stage-expired.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@aragon/app": patch ---- - -Fix an executed SPP proposal showing its final stage as "expired" / "Proposal not executed in time". The per-stage status was derived from the clock alone (`now > maxAdvanceDate`) without checking whether the proposal had already been executed, so a proposal executed on time would flip to expired once viewed after its max-advance date. Executed proposals are now treated as accepted regardless of the max-advance date. diff --git a/.changeset/live-statuses-lie.md b/.changeset/live-statuses-lie.md deleted file mode 100644 index e84b76bf61..0000000000 --- a/.changeset/live-statuses-lie.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@aragon/app": patch ---- - -Refresh proposal cards in transaction dialogs after transaction indexing so proposal transaction flows show live proposal data. diff --git a/.changeset/monorepo-skeleton.md b/.changeset/monorepo-skeleton.md deleted file mode 100644 index c44c03655a..0000000000 --- a/.changeset/monorepo-skeleton.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@aragon/app': patch ---- - -Restructure the repository into a pnpm monorepo: the app now lives in `apps/app`, shared tooling (turbo, biome, husky, changesets) stays at the workspace root. No runtime changes. diff --git a/apps/app/CHANGELOG.md b/apps/app/CHANGELOG.md index f8de46412e..180ee4ae90 100644 --- a/apps/app/CHANGELOG.md +++ b/apps/app/CHANGELOG.md @@ -1,5 +1,15 @@ # @aragon/app +## 1.33.2 + +### Patch Changes + +- [#1212](https://github.com/aragon/app/pull/1212) [`d3ba5f7`](https://github.com/aragon/app/commit/d3ba5f7736c2c9a7a0515488c7d5a6c52c7e77f2) Thanks [@harryburger](https://github.com/harryburger)! - Fix an executed SPP proposal showing its final stage as "expired" / "Proposal not executed in time". The per-stage status was derived from the clock alone (`now > maxAdvanceDate`) without checking whether the proposal had already been executed, so a proposal executed on time would flip to expired once viewed after its max-advance date. Executed proposals are now treated as accepted regardless of the max-advance date. + +- [#1206](https://github.com/aragon/app/pull/1206) [`ca7b26e`](https://github.com/aragon/app/commit/ca7b26eb1c20288e972dd997342806326c46ac9a) Thanks [@evanaronson](https://github.com/evanaronson)! - Refresh proposal cards in transaction dialogs after transaction indexing so proposal transaction flows show live proposal data. + +- [#1211](https://github.com/aragon/app/pull/1211) [`e827f05`](https://github.com/aragon/app/commit/e827f05f30e5889eedce1d468849a91031947cbe) Thanks [@tyhonchik](https://github.com/tyhonchik)! - Restructure the repository into a pnpm monorepo: the app now lives in `apps/app`, shared tooling (turbo, biome, husky, changesets) stays at the workspace root. No runtime changes. + ## 1.33.1 ### Patch Changes diff --git a/apps/app/package.json b/apps/app/package.json index 3a755818c9..64718d945a 100644 --- a/apps/app/package.json +++ b/apps/app/package.json @@ -1,6 +1,6 @@ { "name": "@aragon/app", - "version": "1.33.1", + "version": "1.33.2", "description": "Human-centered DAO infrastructure", "author": "Aragon Association", "homepage": "https://github.com/aragon/app#readme",