From 96ffa48de033b9a20fd3f0dc544f0ed9092bc0d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jose=20Manuel=20Mari=C3=B1as=20Bascoy?= Date: Thu, 2 Nov 2023 12:41:44 +0100 Subject: [PATCH 1/3] fix plugin preeparations query --- modules/client/src/internal/client/methods.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/client/src/internal/client/methods.ts b/modules/client/src/internal/client/methods.ts index 59033caac..c24f83577 100644 --- a/modules/client/src/internal/client/methods.ts +++ b/modules/client/src/internal/client/methods.ts @@ -1566,7 +1566,7 @@ export class ClientMethods extends ClientCore implements IClientMethods { where = { ...where, pluginAddress: pluginAddress.toLowerCase() }; } if (pluginRepoAddress) { - where = { ...where, pluginRepoAddress: pluginRepoAddress.toLowerCase() }; + where = { ...where, pluginRepo: pluginRepoAddress.toLowerCase() }; } if (daoAddressOrEns) { where = { ...where, dao: daoAddressOrEns.toLowerCase() }; From d694506c8623cd8b7d63dddc3b5c7c994416b793 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jose=20Manuel=20Mari=C3=B1as=20Bascoy?= Date: Thu, 2 Nov 2023 12:42:43 +0100 Subject: [PATCH 2/3] update changelog and version --- modules/client/CHANGELOG.md | 5 +++++ modules/client/package.json | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/modules/client/CHANGELOG.md b/modules/client/CHANGELOG.md index 502f40538..0a4767c09 100644 --- a/modules/client/CHANGELOG.md +++ b/modules/client/CHANGELOG.md @@ -20,6 +20,11 @@ TEMPLATE: ## [UPCOMING] ### Fixed +- Plugin preparations query + +## [1.18.1] +### Fixed + - ERC20Transfers query missing decimals diff --git a/modules/client/package.json b/modules/client/package.json index 4c8e28678..04bc87469 100644 --- a/modules/client/package.json +++ b/modules/client/package.json @@ -1,7 +1,7 @@ { "name": "@aragon/sdk-client", "author": "Aragon Association", - "version": "1.18.1", + "version": "1.18.2", "license": "MIT", "main": "dist/index.js", "module": "dist/sdk-client.esm.js", From ad489dc2396f72de5233b66d27cb5489fa583c54 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jose=20Manuel=20Mari=C3=B1as=20Bascoy?= Date: Thu, 2 Nov 2023 17:04:01 +0100 Subject: [PATCH 3/3] fix tests --- modules/client/test/integration/client/methods.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/client/test/integration/client/methods.test.ts b/modules/client/test/integration/client/methods.test.ts index 21b8908e2..4f6417f32 100644 --- a/modules/client/test/integration/client/methods.test.ts +++ b/modules/client/test/integration/client/methods.test.ts @@ -1841,7 +1841,7 @@ describe("Client", () => { where: { dao: params.daoAddressOrEns, pluginAddress: params.pluginAddress, - pluginRepoAddress: params.pluginRepoAddress, + pluginRepo: params.pluginRepoAddress, }, limit: params.limit, skip: params.skip,