diff --git a/.changeset/afraid-stars-camp.md b/.changeset/afraid-stars-camp.md deleted file mode 100644 index 0041063275..0000000000 --- a/.changeset/afraid-stars-camp.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@aragon/app": patch ---- - -Fix updateGaugeMetadata form initialization diff --git a/.changeset/nine-bees-poke.md b/.changeset/nine-bees-poke.md deleted file mode 100644 index 336b022732..0000000000 --- a/.changeset/nine-bees-poke.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@aragon/app": minor ---- - -Implement debounced IPFS background pinning on metadata actions in composer diff --git a/.changeset/public-otters-itch.md b/.changeset/public-otters-itch.md deleted file mode 100644 index b85c7319bd..0000000000 --- a/.changeset/public-otters-itch.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@aragon/app": minor ---- - -Implement decoding of uploaded actions diff --git a/.changeset/smart-carrots-tan.md b/.changeset/smart-carrots-tan.md deleted file mode 100644 index be934a93ab..0000000000 --- a/.changeset/smart-carrots-tan.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@aragon/app": patch ---- - -Fix infinite loop issue on create proposal page reload diff --git a/.changeset/spotty-carrots-raise.md b/.changeset/spotty-carrots-raise.md deleted file mode 100644 index d8b60adcb1..0000000000 --- a/.changeset/spotty-carrots-raise.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@aragon/app": patch ---- - -Dependency update diff --git a/.changeset/tidy-doors-pick.md b/.changeset/tidy-doors-pick.md deleted file mode 100644 index 1384a77f2b..0000000000 --- a/.changeset/tidy-doors-pick.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@aragon/app": patch ---- - -Allow for spaces when typing on ActionComposer input diff --git a/.changeset/violet-cameras-wait.md b/.changeset/violet-cameras-wait.md deleted file mode 100644 index 9560f8adc0..0000000000 --- a/.changeset/violet-cameras-wait.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@aragon/app": minor ---- - -Improve multi-dispatch router UX diff --git a/.github/actions/pr-check-ready/action.yml b/.github/actions/pr-check-ready/action.yml index 4387c69e78..3d2accdbc0 100644 --- a/.github/actions/pr-check-ready/action.yml +++ b/.github/actions/pr-check-ready/action.yml @@ -23,6 +23,10 @@ runs: steps: - id: check uses: actions/github-script@v8.0.0 + env: + INPUT_PR_NUMBER: ${{ inputs.pr_number }} + INPUT_REQUIRED_LABELS: ${{ inputs.required_labels }} + INPUT_REQUIRE_APPROVAL: ${{ inputs.require_approval }} with: script: | const owner = context.repo.owner; diff --git a/CHANGELOG.md b/CHANGELOG.md index 226ddeee67..8691df81d6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,25 @@ # @aragon/app +## 1.19.0 + +### Minor Changes + +- [#931](https://github.com/aragon/app/pull/931) [`fc28a5c`](https://github.com/aragon/app/commit/fc28a5ccb4d5028466226ed771e537e340aaf7e2) Thanks [@thekidnamedkd](https://github.com/thekidnamedkd)! - Implement debounced IPFS background pinning on metadata actions in composer + +- [#932](https://github.com/aragon/app/pull/932) [`10f9f05`](https://github.com/aragon/app/commit/10f9f055c5a5f0bb1741c788d10089fb5dd49567) Thanks [@milosh86](https://github.com/milosh86)! - Implement decoding of uploaded actions + +- [#942](https://github.com/aragon/app/pull/942) [`c2af304`](https://github.com/aragon/app/commit/c2af30440b7e6000505c0cbefd6c21e00bdd6c95) Thanks [@milosh86](https://github.com/milosh86)! - Improve multi-dispatch router UX + +### Patch Changes + +- [#946](https://github.com/aragon/app/pull/946) [`a9c9f32`](https://github.com/aragon/app/commit/a9c9f324a81c8f1a20a34d0e48bbe4efd33b59ab) Thanks [@milosh86](https://github.com/milosh86)! - Fix updateGaugeMetadata form initialization + +- [#943](https://github.com/aragon/app/pull/943) [`a4b3942`](https://github.com/aragon/app/commit/a4b3942b3a84b4aacba94be8a9741fb8af9b7356) Thanks [@milosh86](https://github.com/milosh86)! - Fix infinite loop issue on create proposal page reload + +- [#929](https://github.com/aragon/app/pull/929) [`ea5464c`](https://github.com/aragon/app/commit/ea5464c9b31ea89428dcf4422a33ebeefab1c977) Thanks [@dependabot](https://github.com/apps/dependabot)! - Dependency update + +- [#939](https://github.com/aragon/app/pull/939) [`1cada4e`](https://github.com/aragon/app/commit/1cada4e3dd1bdae43917d07b93b2e54289825d39) Thanks [@thekidnamedkd](https://github.com/thekidnamedkd)! - Allow for spaces when typing on ActionComposer input + ## 1.18.0 ### Minor Changes diff --git a/package.json b/package.json index 9420a0ce52..1fcf0e97f4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@aragon/app", - "version": "1.18.0", + "version": "1.19.0", "description": "Human-centered DAO infrastructure", "author": "Aragon Association", "homepage": "https://github.com/aragon/app#readme",