From 771a0c495f9c9ff224af6ec43b9e28ca1a8290f9 Mon Sep 17 00:00:00 2001 From: Chia Automation Date: Tue, 27 Feb 2024 19:47:57 +0000 Subject: [PATCH 1/4] Updating changelog for 1.2.13 --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2ffc8bd2..b3b492e8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## [1.2.13](https://github.com/Chia-Network/cadt-ui/compare/1.2.12...1.2.13) (2024-02-27) + + + ## [1.2.12](https://github.com/Chia-Network/cadt-ui/compare/1.2.11...1.2.12) (2024-02-26) From f0f07c70524b22f9bd499d4885e9db3615e62c47 Mon Sep 17 00:00:00 2001 From: Michael Taylor Date: Wed, 6 Mar 2024 14:28:54 -0500 Subject: [PATCH 2/4] fix: pagination for myprojects action --- package.json | 2 +- src/store/actions/climateWarehouseActions.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index e43a4786..74fcad01 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cadt-ui", - "version": "1.2.10", + "version": "1.2.11", "private": true, "author": "Chia Network Inc. ", "homepage": "./", diff --git a/src/store/actions/climateWarehouseActions.js b/src/store/actions/climateWarehouseActions.js index bd0e17af..b733805f 100644 --- a/src/store/actions/climateWarehouseActions.js +++ b/src/store/actions/climateWarehouseActions.js @@ -305,7 +305,7 @@ export const getMyProjects = myOrgUid => { try { const response = await fetchWrapper( - `${constants.API_HOST}/projects?orgUid=${myOrgUid}`, + `${constants.API_HOST}/projects?orgUid=${myOrgUid}&page=1&limit=500`, ); if (response.ok) { From 5dc31d6e916df25976a70d9eea275bb0f140b845 Mon Sep 17 00:00:00 2001 From: Chia Automation Date: Wed, 6 Mar 2024 19:32:40 +0000 Subject: [PATCH 3/4] Updating changelog for 1.2.14 --- CHANGELOG.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index b3b492e8..96b598a9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +## [1.2.14](https://github.com/Chia-Network/cadt-ui/compare/1.2.13...1.2.14) (2024-03-06) + + +### Bug Fixes + +* pagination for myprojects action ([f0f07c7](https://github.com/Chia-Network/cadt-ui/commit/f0f07c70524b22f9bd499d4885e9db3615e62c47)) + + + ## [1.2.13](https://github.com/Chia-Network/cadt-ui/compare/1.2.12...1.2.13) (2024-02-27) From 108f18238bee539853be590d511a41f6f0393c9a Mon Sep 17 00:00:00 2001 From: Zachary Brown Date: Tue, 2 Apr 2024 14:31:23 -0700 Subject: [PATCH 4/4] ci: fix macos notarization --- .github/workflows/build-installers.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build-installers.yaml b/.github/workflows/build-installers.yaml index efac53e1..aa79292a 100644 --- a/.github/workflows/build-installers.yaml +++ b/.github/workflows/build-installers.yaml @@ -56,12 +56,12 @@ jobs: - name: Notarize run: | DMG_FILE=$(find ${{ github.workspace }}/dist/ -type f -name '*.dmg') - npm install -g notarize-cli - notarize-cli \ - --file="$DMG_FILE" \ - --bundle-id net.chia.cadt-ui \ - --username "${{ secrets.APPLE_NOTARIZE_USERNAME }}" \ - --password "${{ secrets.APPLE_NOTARIZE_PASSWORD }}" + xcrun notarytool submit \ + --wait \ + --apple-id "${{ secrets.APPLE_NOTARIZE_USERNAME }}" \ + --password "${{ secrets.APPLE_NOTARIZE_PASSWORD }}" \ + --team-id "${{ secrets.APPLE_TEAM_ID }}" \ + "$DMG_FILE" - name: Upload Mac Installer uses: actions/upload-artifact@v3