Skip to content

Commit

Permalink
frontend: bump clutch core version (#2919)
Browse files Browse the repository at this point in the history
Given the update from #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
  • Loading branch information
jecr authored Feb 1, 2024
1 parent 1100d3c commit 4e800ce
Show file tree
Hide file tree
Showing 22 changed files with 71 additions and 71 deletions.
12 changes: 6 additions & 6 deletions docs/development/feature.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
},
Expand Down Expand Up @@ -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",
Expand Down
6 changes: 3 additions & 3 deletions examples/amiibo/frontend/workflows/amiibo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion frontend/lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"packages/*",
"workflows/*"
],
"version": "2.0.0-beta"
"version": "3.0.0-beta"
}
2 changes: 1 addition & 1 deletion frontend/packages/app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion frontend/packages/core/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
4 changes: 2 additions & 2 deletions frontend/packages/data-layout/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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",
Expand Down
6 changes: 3 additions & 3 deletions frontend/packages/wizard/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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",
Expand Down
4 changes: 2 additions & 2 deletions frontend/workflows/audit/package.json
Original file line number Diff line number Diff line change
@@ -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": "[email protected]",
Expand All @@ -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",
Expand Down
8 changes: 4 additions & 4 deletions frontend/workflows/dynamodb/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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",
Expand Down
8 changes: 4 additions & 4 deletions frontend/workflows/ec2/package.json
Original file line number Diff line number Diff line change
@@ -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": "[email protected]",
Expand All @@ -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",
Expand Down
8 changes: 4 additions & 4 deletions frontend/workflows/envoy/package.json
Original file line number Diff line number Diff line change
@@ -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": "[email protected]",
Expand All @@ -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",
Expand Down
6 changes: 3 additions & 3 deletions frontend/workflows/experimentation/package.json
Original file line number Diff line number Diff line change
@@ -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": "[email protected]",
Expand All @@ -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",
Expand Down
8 changes: 4 additions & 4 deletions frontend/workflows/k8s/package.json
Original file line number Diff line number Diff line change
@@ -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": "[email protected]",
Expand All @@ -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",
Expand Down
8 changes: 4 additions & 4 deletions frontend/workflows/kinesis/package.json
Original file line number Diff line number Diff line change
@@ -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": "[email protected]",
Expand All @@ -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",
Expand Down
10 changes: 5 additions & 5 deletions frontend/workflows/projectCatalog/package.json
Original file line number Diff line number Diff line change
@@ -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": "[email protected]",
Expand All @@ -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",
Expand Down
6 changes: 3 additions & 3 deletions frontend/workflows/projectSelector/package.json
Original file line number Diff line number Diff line change
@@ -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": "[email protected]",
Expand All @@ -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",
Expand Down
10 changes: 5 additions & 5 deletions frontend/workflows/redisexperimentation/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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",
Expand Down
10 changes: 5 additions & 5 deletions frontend/workflows/serverexperimentation/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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",
Expand Down
8 changes: 4 additions & 4 deletions frontend/workflows/sourcecontrol/package.json
Original file line number Diff line number Diff line change
@@ -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": "[email protected]",
Expand All @@ -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",
Expand Down
4 changes: 2 additions & 2 deletions tools/scaffolding/templates/frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
4 changes: 2 additions & 2 deletions tools/scaffolding/templates/gateway/frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 4e800ce

Please sign in to comment.