From 4e800ce1b85bc7027560dfaa9b710b62584b8650 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jorge=20Cort=C3=A9s?= Date: Thu, 1 Feb 2024 09:32:08 -0600 Subject: [PATCH] frontend: bump clutch core version (#2919) Given the update from https://github.com/lyft/clutch/pull/2851 and since it is a major update to clutch, this PR updates the current version of clutch-sh/core (2.0.0-beta) to 3.0.0-beta to better represent the changes. Additionally updates the dependency versions in packages within the current repo. ### Testing Performed manual --- docs/development/feature.md | 12 ++++++------ .../amiibo/frontend/workflows/amiibo/package.json | 6 +++--- frontend/lerna.json | 2 +- frontend/packages/app/package.json | 2 +- frontend/packages/core/package.json | 2 +- frontend/packages/data-layout/package.json | 4 ++-- frontend/packages/wizard/package.json | 6 +++--- frontend/workflows/audit/package.json | 4 ++-- frontend/workflows/dynamodb/package.json | 8 ++++---- frontend/workflows/ec2/package.json | 8 ++++---- frontend/workflows/envoy/package.json | 8 ++++---- frontend/workflows/experimentation/package.json | 6 +++--- frontend/workflows/k8s/package.json | 8 ++++---- frontend/workflows/kinesis/package.json | 8 ++++---- frontend/workflows/projectCatalog/package.json | 10 +++++----- frontend/workflows/projectSelector/package.json | 6 +++--- frontend/workflows/redisexperimentation/package.json | 10 +++++----- .../workflows/serverexperimentation/package.json | 10 +++++----- frontend/workflows/sourcecontrol/package.json | 8 ++++---- tools/scaffolding/templates/frontend/package.json | 4 ++-- .../templates/gateway/frontend/package.json | 4 ++-- .../gateway/frontend/workflows/echo/package.json | 6 +++--- 22 files changed, 71 insertions(+), 71 deletions(-) diff --git a/docs/development/feature.md b/docs/development/feature.md index 5b152cac0e..1a0ba2dec2 100644 --- a/docs/development/feature.md +++ b/docs/development/feature.md @@ -511,10 +511,10 @@ There are two new imports (`@clutch-sh/core` and `@clutch-sh/data-layout`) added }, "dependencies": { // highlight-start - "@clutch-sh/core": "^2.0.0-beta", - "@clutch-sh/data-layout": "^2.0.0-beta", + "@clutch-sh/core": "^3.0.0-beta", + "@clutch-sh/data-layout": "^3.0.0-beta", // highlight-end - "@clutch-sh/wizard": "^2.0.0-beta", + "@clutch-sh/wizard": "^3.0.0-beta", "react": "^17.0.2", "react-dom": "^17.0.2" }, @@ -629,9 +629,9 @@ There is another new import (`lodash`) added in the code above. Let's also add t "test:watch": "yarn run test --watch" }, "dependencies": { - "@clutch-sh/core": "^2.0.0-beta", - "@clutch-sh/data-layout": "^2.0.0-beta", - "@clutch-sh/wizard": "^2.0.0-beta", + "@clutch-sh/core": "^3.0.0-beta", + "@clutch-sh/data-layout": "^3.0.0-beta", + "@clutch-sh/wizard": "^3.0.0-beta", // highlight-next-line "lodash": "^4.17.21", "react": "^17.0.2", diff --git a/examples/amiibo/frontend/workflows/amiibo/package.json b/examples/amiibo/frontend/workflows/amiibo/package.json index eadb631351..b40063a180 100644 --- a/examples/amiibo/frontend/workflows/amiibo/package.json +++ b/examples/amiibo/frontend/workflows/amiibo/package.json @@ -18,9 +18,9 @@ "test:watch": "yarn run test --watch" }, "dependencies": { - "@clutch-sh/core": "^2.0.0-beta", - "@clutch-sh/data-layout": "^2.0.0-beta", - "@clutch-sh/wizard": "^2.0.0-beta", + "@clutch-sh/core": "^3.0.0-beta", + "@clutch-sh/data-layout": "^3.0.0-beta", + "@clutch-sh/wizard": "^3.0.0-beta", "lodash": "^4.17.21", "react": "^17.0.2", "react-dom": "^17.0.2" diff --git a/frontend/lerna.json b/frontend/lerna.json index 35d40319f9..323894700f 100644 --- a/frontend/lerna.json +++ b/frontend/lerna.json @@ -6,5 +6,5 @@ "packages/*", "workflows/*" ], - "version": "2.0.0-beta" + "version": "3.0.0-beta" } diff --git a/frontend/packages/app/package.json b/frontend/packages/app/package.json index fa329c8226..f3fb35f779 100644 --- a/frontend/packages/app/package.json +++ b/frontend/packages/app/package.json @@ -18,7 +18,7 @@ "test:e2e": "cypress run" }, "dependencies": { - "@clutch-sh/core": "^2.0.0-beta", + "@clutch-sh/core": "^3.0.0-beta", "react": "^17.0.2", "react-app-rewired": "^2.1.8", "react-dom": "^17.0.2" diff --git a/frontend/packages/core/package.json b/frontend/packages/core/package.json index 6f7f4b1c3f..23db25e230 100644 --- a/frontend/packages/core/package.json +++ b/frontend/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@clutch-sh/core", - "version": "2.0.0-beta", + "version": "3.0.0-beta", "description": "Clutch Core Components", "homepage": "https://clutch.sh/docs/development/frontend/overview#clutch-shcore", "license": "Apache-2.0", diff --git a/frontend/packages/data-layout/package.json b/frontend/packages/data-layout/package.json index e6ffe991cd..3503efefd0 100644 --- a/frontend/packages/data-layout/package.json +++ b/frontend/packages/data-layout/package.json @@ -1,6 +1,6 @@ { "name": "@clutch-sh/data-layout", - "version": "2.0.0-beta", + "version": "3.0.0-beta", "description": "Data Layout manager for clutch", "homepage": "https://clutch.sh/docs/development/frontend/overview#clutch-shdata-layout", "license": "Apache-2.0", @@ -25,7 +25,7 @@ "test:watch": "yarn run test --watch" }, "dependencies": { - "@clutch-sh/core": "^2.0.0-beta", + "@clutch-sh/core": "^3.0.0-beta", "lodash": "^4.17.15", "react": "^17.0.2", "react-dom": "^17.0.2", diff --git a/frontend/packages/wizard/package.json b/frontend/packages/wizard/package.json index 0bbb02dbd4..3d29a0db88 100644 --- a/frontend/packages/wizard/package.json +++ b/frontend/packages/wizard/package.json @@ -1,6 +1,6 @@ { "name": "@clutch-sh/wizard", - "version": "2.0.0-beta", + "version": "3.0.0-beta", "description": "Wizard Components to drive frontend workflows", "homepage": "https://clutch.sh/docs/development/frontend/overview#clutch-shwizard", "license": "Apache-2.0", @@ -25,8 +25,8 @@ "test:watch": "yarn run test --watch" }, "dependencies": { - "@clutch-sh/core": "^2.0.0-beta", - "@clutch-sh/data-layout": "^2.0.0-beta", + "@clutch-sh/core": "^3.0.0-beta", + "@clutch-sh/data-layout": "^3.0.0-beta", "@mui/icons-material": "^5.8.4", "@mui/material": "^5.8.5", "clsx": "^1.1.1", diff --git a/frontend/workflows/audit/package.json b/frontend/workflows/audit/package.json index d523dc0118..bc12715bf7 100644 --- a/frontend/workflows/audit/package.json +++ b/frontend/workflows/audit/package.json @@ -1,6 +1,6 @@ { "name": "@clutch-sh/audit", - "version": "2.0.0-beta", + "version": "3.0.0-beta", "description": " Clutch Audit Workflows", "license": "Apache-2.0", "author": "clutch@lyft.com", @@ -20,7 +20,7 @@ }, "dependencies": { "@clutch-sh/api": "^2.0.0-beta", - "@clutch-sh/core": "^2.0.0-beta", + "@clutch-sh/core": "^3.0.0-beta", "@mui/icons-material": "^5.8.4", "@mui/material": "^5.8.5", "file-saver": "^2.0.5", diff --git a/frontend/workflows/dynamodb/package.json b/frontend/workflows/dynamodb/package.json index 40dceab4fd..e6dfd2e714 100644 --- a/frontend/workflows/dynamodb/package.json +++ b/frontend/workflows/dynamodb/package.json @@ -1,6 +1,6 @@ { "name": "@clutch-sh/dynamodb", - "version": "2.0.0-beta", + "version": "3.0.0-beta", "private": true, "description": "Manage Dynamodb resources", "license": "Apache-2.0", @@ -22,9 +22,9 @@ }, "dependencies": { "@clutch-sh/api": "^2.0.0-beta", - "@clutch-sh/core": "^2.0.0-beta", - "@clutch-sh/data-layout": "^2.0.0-beta", - "@clutch-sh/wizard": "^2.0.0-beta", + "@clutch-sh/core": "^3.0.0-beta", + "@clutch-sh/data-layout": "^3.0.0-beta", + "@clutch-sh/wizard": "^3.0.0-beta", "@emotion/styled": "^11.1.5", "@mui/material": "^5.8.5", "lodash": "4.17.21", diff --git a/frontend/workflows/ec2/package.json b/frontend/workflows/ec2/package.json index 32d7bbb9d6..d7e4f591bc 100644 --- a/frontend/workflows/ec2/package.json +++ b/frontend/workflows/ec2/package.json @@ -1,6 +1,6 @@ { "name": "@clutch-sh/ec2", - "version": "2.0.0-beta", + "version": "3.0.0-beta", "description": "Clutch EC2 Workflows", "license": "Apache-2.0", "author": "clutch@lyft.com", @@ -23,9 +23,9 @@ "test:watch": "yarn run test --watch" }, "dependencies": { - "@clutch-sh/core": "^2.0.0-beta", - "@clutch-sh/data-layout": "^2.0.0-beta", - "@clutch-sh/wizard": "^2.0.0-beta", + "@clutch-sh/core": "^3.0.0-beta", + "@clutch-sh/data-layout": "^3.0.0-beta", + "@clutch-sh/wizard": "^3.0.0-beta", "@mui/material": "^5.8.5", "react": "^17.0.2", "react-dom": "^17.0.2", diff --git a/frontend/workflows/envoy/package.json b/frontend/workflows/envoy/package.json index 4ee0752826..dd8682608a 100644 --- a/frontend/workflows/envoy/package.json +++ b/frontend/workflows/envoy/package.json @@ -1,6 +1,6 @@ { "name": "@clutch-sh/envoy", - "version": "2.0.0-beta", + "version": "3.0.0-beta", "description": "Clutch Envoy Workflows", "license": "Apache-2.0", "author": "clutch@lyft.com", @@ -23,9 +23,9 @@ }, "dependencies": { "@clutch-sh/api": "^2.0.0-beta", - "@clutch-sh/core": "^2.0.0-beta", - "@clutch-sh/data-layout": "^2.0.0-beta", - "@clutch-sh/wizard": "^2.0.0-beta", + "@clutch-sh/core": "^3.0.0-beta", + "@clutch-sh/data-layout": "^3.0.0-beta", + "@clutch-sh/wizard": "^3.0.0-beta", "@mui/material": "^5.8.5", "file-saver": "^2.0.5", "lodash": "^4.17.15", diff --git a/frontend/workflows/experimentation/package.json b/frontend/workflows/experimentation/package.json index 2dd0c09424..f41ffdbbbf 100644 --- a/frontend/workflows/experimentation/package.json +++ b/frontend/workflows/experimentation/package.json @@ -1,6 +1,6 @@ { "name": "@clutch-sh/experimentation", - "version": "2.0.0-beta", + "version": "3.0.0-beta", "description": "Clutch Experimentation Workflows", "license": "Apache-2.0", "author": "clutch@lyft.com", @@ -20,8 +20,8 @@ }, "dependencies": { "@clutch-sh/api": "^2.0.0-beta", - "@clutch-sh/core": "^2.0.0-beta", - "@clutch-sh/data-layout": "^2.0.0-beta", + "@clutch-sh/core": "^3.0.0-beta", + "@clutch-sh/data-layout": "^3.0.0-beta", "@emotion/styled": "^11.0.0", "@mui/material": "^5.8.5", "@mui/styles": "^5.8.4", diff --git a/frontend/workflows/k8s/package.json b/frontend/workflows/k8s/package.json index 691f1a6c65..9b6c9be2d3 100644 --- a/frontend/workflows/k8s/package.json +++ b/frontend/workflows/k8s/package.json @@ -1,6 +1,6 @@ { "name": "@clutch-sh/k8s", - "version": "2.0.0-beta", + "version": "3.0.0-beta", "description": "Clutch K8s Workflows", "license": "Apache-2.0", "author": "clutch@lyft.com", @@ -23,9 +23,9 @@ }, "dependencies": { "@clutch-sh/api": "^2.0.0-beta", - "@clutch-sh/core": "^2.0.0-beta", - "@clutch-sh/data-layout": "^2.0.0-beta", - "@clutch-sh/wizard": "^2.0.0-beta", + "@clutch-sh/core": "^3.0.0-beta", + "@clutch-sh/data-layout": "^3.0.0-beta", + "@clutch-sh/wizard": "^3.0.0-beta", "@emotion/styled": "^11.1.5", "@hookform/resolvers": "2.8.8", "@mui/icons-material": "^5.8.4", diff --git a/frontend/workflows/kinesis/package.json b/frontend/workflows/kinesis/package.json index 916b3acc47..1ffdfcd176 100644 --- a/frontend/workflows/kinesis/package.json +++ b/frontend/workflows/kinesis/package.json @@ -1,6 +1,6 @@ { "name": "@clutch-sh/kinesis", - "version": "2.0.0-beta", + "version": "3.0.0-beta", "description": "Clutch Kinesis Workflows", "license": "Apache-2.0", "author": "clutch@lyft.com", @@ -23,9 +23,9 @@ "test:watch": "yarn run test --watch" }, "dependencies": { - "@clutch-sh/core": "^2.0.0-beta", - "@clutch-sh/data-layout": "^2.0.0-beta", - "@clutch-sh/wizard": "^2.0.0-beta", + "@clutch-sh/core": "^3.0.0-beta", + "@clutch-sh/data-layout": "^3.0.0-beta", + "@clutch-sh/wizard": "^3.0.0-beta", "@emotion/styled": "^11.0.0", "@mui/material": "^5.8.5", "lodash": "^4.17.21", diff --git a/frontend/workflows/projectCatalog/package.json b/frontend/workflows/projectCatalog/package.json index 7bad2fdbe0..8ef30dddd1 100644 --- a/frontend/workflows/projectCatalog/package.json +++ b/frontend/workflows/projectCatalog/package.json @@ -1,6 +1,6 @@ { "name": "@clutch-sh/project-catalog", - "version": "2.0.0-beta", + "version": "3.0.0-beta", "description": "Clutch Project Catalog", "license": "Apache-2.0", "author": "clutch@lyft.com", @@ -22,10 +22,10 @@ }, "dependencies": { "@clutch-sh/api": "^2.0.0-beta", - "@clutch-sh/core": "^2.0.0-beta", - "@clutch-sh/data-layout": "^2.0.0-beta", - "@clutch-sh/project-selector": "^2.0.0-beta", - "@clutch-sh/wizard": "^2.0.0-beta", + "@clutch-sh/core": "^3.0.0-beta", + "@clutch-sh/data-layout": "^3.0.0-beta", + "@clutch-sh/project-selector": "^3.0.0-beta", + "@clutch-sh/wizard": "^3.0.0-beta", "@emotion/styled": "^11.3.0", "@fortawesome/fontawesome-svg-core": "^6.1.1", "@fortawesome/free-brands-svg-icons": "^6.1.1", diff --git a/frontend/workflows/projectSelector/package.json b/frontend/workflows/projectSelector/package.json index 2faf8bd44e..56ee3f4729 100644 --- a/frontend/workflows/projectSelector/package.json +++ b/frontend/workflows/projectSelector/package.json @@ -1,6 +1,6 @@ { "name": "@clutch-sh/project-selector", - "version": "2.0.0-beta", + "version": "3.0.0-beta", "description": " Filter your projects", "license": "Apache-2.0", "author": "hello@example.com", @@ -17,8 +17,8 @@ "test:watch": "yarn run test --watch" }, "dependencies": { - "@clutch-sh/core": "^2.0.0-beta", - "@clutch-sh/wizard": "^2.0.0-beta", + "@clutch-sh/core": "^3.0.0-beta", + "@clutch-sh/wizard": "^3.0.0-beta", "@emotion/styled": "^11.3.0", "@mui/icons-material": "^5.8.4", "@mui/material": "^5.8.5", diff --git a/frontend/workflows/redisexperimentation/package.json b/frontend/workflows/redisexperimentation/package.json index c50f6c8a52..5d027a32be 100644 --- a/frontend/workflows/redisexperimentation/package.json +++ b/frontend/workflows/redisexperimentation/package.json @@ -1,6 +1,6 @@ { "name": "@clutch-sh/redis-experimentation", - "version": "2.0.0-beta", + "version": "3.0.0-beta", "private": true, "description": "Redis Fault Experimentation Workflows", "license": "Apache-2.0", @@ -18,10 +18,10 @@ "test:watch": "yarn run test --watch" }, "dependencies": { - "@clutch-sh/core": "^2.0.0-beta", - "@clutch-sh/data-layout": "^2.0.0-beta", - "@clutch-sh/experimentation": "^2.0.0-beta", - "@clutch-sh/wizard": "^2.0.0-beta", + "@clutch-sh/core": "^3.0.0-beta", + "@clutch-sh/data-layout": "^3.0.0-beta", + "@clutch-sh/experimentation": "^3.0.0-beta", + "@clutch-sh/wizard": "^3.0.0-beta", "@hookform/resolvers": "2.8.8", "@mui/material": "^5.8.5", "history": "^5.0.0", diff --git a/frontend/workflows/serverexperimentation/package.json b/frontend/workflows/serverexperimentation/package.json index 10530b31f9..26996b0a2b 100644 --- a/frontend/workflows/serverexperimentation/package.json +++ b/frontend/workflows/serverexperimentation/package.json @@ -1,6 +1,6 @@ { "name": "@clutch-sh/server-experimentation", - "version": "2.0.0-beta", + "version": "3.0.0-beta", "private": true, "description": "Clutch Server Experimentation Workflows", "license": "Apache-2.0", @@ -19,10 +19,10 @@ }, "dependencies": { "@clutch-sh/api": "^2.0.0-beta", - "@clutch-sh/core": "^2.0.0-beta", - "@clutch-sh/data-layout": "^2.0.0-beta", - "@clutch-sh/experimentation": "^2.0.0-beta", - "@clutch-sh/wizard": "^2.0.0-beta", + "@clutch-sh/core": "^3.0.0-beta", + "@clutch-sh/data-layout": "^3.0.0-beta", + "@clutch-sh/experimentation": "^3.0.0-beta", + "@clutch-sh/wizard": "^3.0.0-beta", "@emotion/styled": "^11.0.0", "@hookform/resolvers": "2.8.8", "@mui/material": "^5.8.5", diff --git a/frontend/workflows/sourcecontrol/package.json b/frontend/workflows/sourcecontrol/package.json index 5e4c458a05..e5679b69a9 100644 --- a/frontend/workflows/sourcecontrol/package.json +++ b/frontend/workflows/sourcecontrol/package.json @@ -1,6 +1,6 @@ { "name": "@clutch-sh/sourcecontrol", - "version": "2.0.0-beta", + "version": "3.0.0-beta", "description": "Clutch Source Control Workflows", "license": "Apache-2.0", "author": "clutch@lyft.com", @@ -22,9 +22,9 @@ "test:watch": "yarn run test --watch" }, "dependencies": { - "@clutch-sh/core": "^2.0.0-beta", - "@clutch-sh/data-layout": "^2.0.0-beta", - "@clutch-sh/wizard": "^2.0.0-beta", + "@clutch-sh/core": "^3.0.0-beta", + "@clutch-sh/data-layout": "^3.0.0-beta", + "@clutch-sh/wizard": "^3.0.0-beta", "@emotion/styled": "^11.0.0", "@hookform/resolvers": "2.8.8", "@mui/icons-material": "^5.8.4", diff --git a/tools/scaffolding/templates/frontend/package.json b/tools/scaffolding/templates/frontend/package.json index 8749e23421..1319a1439a 100644 --- a/tools/scaffolding/templates/frontend/package.json +++ b/tools/scaffolding/templates/frontend/package.json @@ -19,9 +19,9 @@ }, "dependencies": { {{- if .IsWizardTemplate}} - "@clutch-sh/wizard": "^2.0.0-beta", + "@clutch-sh/wizard": "^3.0.0-beta", {{- else}} - "@clutch-sh/core": "^2.0.0-beta", + "@clutch-sh/core": "^3.0.0-beta", {{- end}} "react": "^17.0.2", "react-dom": "^17.0.2", diff --git a/tools/scaffolding/templates/gateway/frontend/package.json b/tools/scaffolding/templates/gateway/frontend/package.json index d91f2ab53a..57df56ea58 100644 --- a/tools/scaffolding/templates/gateway/frontend/package.json +++ b/tools/scaffolding/templates/gateway/frontend/package.json @@ -22,9 +22,9 @@ }, "devDependencies": { "lerna": "^4.0.0", - "@clutch-sh/ec2": "^2.0.0-beta", + "@clutch-sh/ec2": "^3.0.0-beta", "@{{ .RepoName }}/echo": "^0.0.0", - "@clutch-sh/core": "^2.0.0-beta", + "@clutch-sh/core": "^3.0.0-beta", "@clutch-sh/tools": "^2.0.0-beta", "history": "^5.0.0", "react": "^17.0.2", diff --git a/tools/scaffolding/templates/gateway/frontend/workflows/echo/package.json b/tools/scaffolding/templates/gateway/frontend/workflows/echo/package.json index 6da402e12e..056c76660b 100644 --- a/tools/scaffolding/templates/gateway/frontend/workflows/echo/package.json +++ b/tools/scaffolding/templates/gateway/frontend/workflows/echo/package.json @@ -17,9 +17,9 @@ "upgrade": "yarn upgrade" }, "dependencies": { - "@clutch-sh/core": "^2.0.0-beta", - "@clutch-sh/data-layout": "^2.0.0-beta", - "@clutch-sh/wizard": "^2.0.0-beta", + "@clutch-sh/core": "^3.0.0-beta", + "@clutch-sh/data-layout": "^3.0.0-beta", + "@clutch-sh/wizard": "^3.0.0-beta", "@mui/material": "^5.8.5", "react": "^17.0.2", "react-dom": "^17.0.2",