Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version bumps for Tea #481

Merged
merged 5 commits into from
Mar 21, 2024
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
8 changes: 6 additions & 2 deletions libs/abis/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
{
"name": "@daohaus/abis",
"version": "0.4.2",
"type": "commonjs"
"version": "0.4.3",
"type": "commonjs",
"repository": {
"type": "git",
"url": "https://github.com/HausDAO/monorepo"
}
}
6 changes: 5 additions & 1 deletion libs/connect-context/package.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
{
"name": "@daohaus/connect-context",
"version": "0.4.2"
"version": "0.4.3",
"repository": {
"type": "git",
"url": "https://github.com/HausDAO/monorepo"
}
}
6 changes: 5 additions & 1 deletion libs/connect/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
{
"name": "@daohaus/connect",
"version": "0.4.2",
"version": "0.4.3",
"peerDependencies": {
"react-router-dom": "^6.4.3"
},
"repository": {
"type": "git",
"url": "https://github.com/HausDAO/monorepo"
}
}
8 changes: 6 additions & 2 deletions libs/contract-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
{
"name": "@daohaus/contract-utils",
"version": "0.4.2",
"type": "commonjs"
"version": "0.4.3",
"type": "commonjs",
"repository": {
"type": "git",
"url": "https://github.com/HausDAO/monorepo"
}
}
8 changes: 6 additions & 2 deletions libs/data-fetch-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
{
"name": "@daohaus/data-fetch-utils",
"version": "0.4.2",
"type": "commonjs"
"version": "0.4.3",
"type": "commonjs",
"repository": {
"type": "git",
"url": "https://github.com/HausDAO/monorepo"
}
}
6 changes: 5 additions & 1 deletion libs/form-builder-base/package.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
{
"name": "@daohaus/form-builder-base",
"version": "0.4.2"
"version": "0.4.3",
"repository": {
"type": "git",
"url": "https://github.com/HausDAO/monorepo"
}
}
6 changes: 5 additions & 1 deletion libs/form-builder/package.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
{
"name": "@daohaus/form-builder",
"version": "0.4.2"
"version": "0.4.3",
"repository": {
"type": "git",
"url": "https://github.com/HausDAO/monorepo"
}
}
6 changes: 5 additions & 1 deletion libs/keychain-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
{
"name": "@daohaus/keychain-utils",
"version": "0.4.2"
"version": "0.4.3",
"repository": {
"type": "git",
"url": "https://github.com/HausDAO/monorepo"
}
}
8 changes: 6 additions & 2 deletions libs/moloch-v3-data/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
{
"name": "@daohaus/moloch-v3-data",
"version": "0.4.2",
"type": "commonjs"
"version": "0.4.3",
"type": "commonjs",
"repository": {
"type": "git",
"url": "https://github.com/HausDAO/monorepo"
}
}
6 changes: 5 additions & 1 deletion libs/moloch-v3-fields/package.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
{
"name": "@daohaus/moloch-v3-fields",
"version": "0.4.2"
"version": "0.4.3",
"repository": {
"type": "git",
"url": "https://github.com/HausDAO/monorepo"
}
}
12 changes: 12 additions & 0 deletions libs/moloch-v3-fields/src/fields/MultisendActions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -296,6 +296,17 @@
'Contract not verified. You can manually paste the ABI but proceed with extreme caution!',
});
}
// allow ABI to be overridden by the user
if (
contractAbi &&
contractAbi !== '' &&
contractAbi !== JSON.stringify(fetchedAbi)
) {
setValue(abiFieldId, contractAbi);
extractContractMethods(JSON.parse(contractAbi));
setLoading(false);
return;
}
if (!fetchedAbi && fallbackAbi) {
cacheABI({
address,
Expand All @@ -313,6 +324,7 @@
},
[
abiFieldId,
contractAbi,
contractMethodFieldId,
daoChain,
extractContractMethods,
Expand Down Expand Up @@ -436,7 +448,7 @@
setValue(dataFieldId, customData);
setValue(`tx.${actionId}.operation`, 0);
}
}, [customDataToggle, customData]);

Check warning on line 451 in libs/moloch-v3-fields/src/fields/MultisendActions.tsx

View workflow job for this annotation

GitHub Actions / build

React Hook useEffect has missing dependencies: 'actionId', 'dataFieldId', and 'setValue'. Either include them or remove the dependency array

Check warning on line 451 in libs/moloch-v3-fields/src/fields/MultisendActions.tsx

View workflow job for this annotation

GitHub Actions / build

React Hook useEffect has missing dependencies: 'actionId', 'dataFieldId', and 'setValue'. Either include them or remove the dependency array

useEffect(() => {
if (noArgs) {
Expand Down
6 changes: 5 additions & 1 deletion libs/moloch-v3-hooks/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
{
"name": "@daohaus/moloch-v3-hooks",
"version": "0.4.2",
"version": "0.4.3",
"peerDependencies": {
"react-query": "^3.39.3"
},
"repository": {
"type": "git",
"url": "https://github.com/HausDAO/monorepo"
}
}
8 changes: 6 additions & 2 deletions libs/moloch-v3-legos/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
{
"name": "@daohaus/moloch-v3-legos",
"version": "0.4.2",
"type": "commonjs"
"version": "0.4.3",
"type": "commonjs",
"repository": {
"type": "git",
"url": "https://github.com/HausDAO/monorepo"
}
}
6 changes: 5 additions & 1 deletion libs/moloch-v3-macro-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
{
"name": "@daohaus/moloch-v3-macro-ui",
"version": "0.4.2",
"version": "0.4.3",
"peerDependencies": {
"react-router-dom": "^6.4.3"
},
"repository": {
"type": "git",
"url": "https://github.com/HausDAO/monorepo"
}
}
8 changes: 6 additions & 2 deletions libs/profile-data/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
{
"name": "@daohaus/profile-data",
"version": "0.4.2",
"type": "commonjs"
"version": "0.4.3",
"type": "commonjs",
"repository": {
"type": "git",
"url": "https://github.com/HausDAO/monorepo"
}
}
6 changes: 5 additions & 1 deletion libs/tx-builder/package.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
{
"name": "@daohaus/tx-builder",
"version": "0.4.2"
"version": "0.4.3",
"repository": {
"type": "git",
"url": "https://github.com/HausDAO/monorepo"
}
}
6 changes: 5 additions & 1 deletion libs/ui/package.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
{
"name": "@daohaus/ui",
"version": "0.4.2"
"version": "0.4.3",
"repository": {
"type": "git",
"url": "https://github.com/HausDAO/monorepo"
}
}
6 changes: 5 additions & 1 deletion libs/utils/package.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
{
"name": "@daohaus/utils",
"version": "0.4.2"
"version": "0.4.3",
"repository": {
"type": "git",
"url": "https://github.com/HausDAO/monorepo"
}
}
6 changes: 5 additions & 1 deletion libs/wizard-form-builder/package.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
{
"name": "@daohaus/wizard-form-builder",
"version": "0.1.2"
"version": "0.1.3",
"repository": {
"type": "git",
"url": "https://github.com/HausDAO/monorepo"
}
}
4 changes: 4 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
"name": "daohaus",
"version": "0.0.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/HausDAO/monorepo"
},
"scripts": {
"postinstall": "husky install",
"bumpversion": "node tools/scripts/incrementVersion.js",
Expand Down
Loading