Skip to content

Commit 2cdc593

Browse files
Merge pull request #608 from zenml-io/future
2 parents 9b310a4 + e254da9 commit 2cdc593

File tree

33 files changed

+4772
-3713
lines changed

33 files changed

+4772
-3713
lines changed

.env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
VITE_API_BASE_URL=
22
VITE_FRONTEND_VERSION=
3-
VITE_FEATURE_OS_KEY=
3+
VITE_FEATURE_OS_KEY=

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ To get started with the ZenML Dashboard, follow these steps:
103103
104104
- Access the dashboard at `http://localhost:8080`
105105
106-
For detailed deployment instructions and additional options, refer to the [deployment guide](https://docs.zenml.io/user-guide/starter-guide/switch-to-production).
106+
For detailed deployment instructions and additional options, refer to the [deployment guide](https://docs.zenml.io/user-guide/production-guide/deploying-zenml).
107107
108108
Now you're ready to explore and visualize your ML pipelines, stacks, and artifacts with the ZenML Dashboard!
109109

legacy/src/constants/constantCommands.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
export const constantCommandsToCreateStack = {
22
title: 'Stack Cheatsheet',
33
documentation:
4-
'https://docs.zenml.io/user-guide/starter-guide/understand-stacks',
4+
'https://docs.zenml.io/user-guide/production-guide/understand-stacks',
55
body: [
66
{
77
text: 'Register a stack',
@@ -32,12 +32,12 @@ export const constantCommandsToCreateStack = {
3232
export const constantCommandsToCreateSecret = {
3333
title: 'Stack Cheatsheet',
3434
documentation:
35-
'https://docs.zenml.io/user-guide/advanced-guide/secret-management',
35+
'https://docs.zenml.io/getting-started/deploying-zenml/manage-the-deployed-services/secret-management',
3636
};
3737

3838
export const constantCommandsToCreateRepository = {
3939
documentation:
40-
'https://docs.zenml.io/user-guide/advanced-guide/environment-management/connect-your-git-repository',
40+
'https://docs.zenml.io/how-to/setting-up-a-project-repository/connect-your-git-repository',
4141
};
4242

4343
export const constantCommandsToCreatePipeline = {
@@ -105,7 +105,7 @@ export const constantCommandsToCreateRuns = {
105105

106106
export const constantCommandsToCreateComponent = {
107107
documentation:
108-
'https://docs.zenml.io/user-guide/starter-guide/understand-stacks',
108+
'https://docs.zenml.io/user-guide/production-guide/understand-stacks',
109109
componentCommand: {
110110
type: 'alerter',
111111
body: [

legacy/src/ui/components/lineage/sidebarTabsSwitchers/ArtifactVisualization.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ const ArtifactVisualization = ({
219219
<a
220220
rel="noopener noreferrer"
221221
target="_blank"
222-
href="https://docs.zenml.io/stacks-and-components/component-guide/artifact-stores/custom"
222+
href="https://docs.zenml.io/stack-components/artifact-stores/custom"
223223
>
224224
docs
225225
</a>

legacy/src/ui/layouts/common/layouts/AuthenticatedLayout/DeploymentBanner/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ function DeploymentBanner() {
1010
<a
1111
target="_blank"
1212
rel="noopener noreferrer"
13-
href="https://docs.zenml.io/user-guide/starter-guide/switch-to-production"
13+
href="https://docs.zenml.io/getting-started/deploying-zenml"
1414
>
1515
deploy ZenML yourself
1616
</a>
1717
, or get a hosted version with{' '}
1818
<a
1919
target="_blank"
2020
rel="noopener noreferrer"
21-
href="https://docs.zenml.io/deploying-zenml/zenml-cloud"
21+
href="https://docs.zenml.io/getting-started/zenml-pro"
2222
>
2323
{' '}
2424
ZenML Cloud

legacy/src/ui/layouts/plugins/shared/Layout.tsx

Lines changed: 1 addition & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React from 'react';
22

3-
import { FlexBox, H2, Paragraph } from '../../../components';
3+
import { FlexBox, H2 } from '../../../components';
44

55
export const PluginsLayout: React.FC<{
66
title: string;
@@ -11,46 +11,6 @@ export const PluginsLayout: React.FC<{
1111
<FlexBox flexDirection="row" style={{ gap: '8px' }}>
1212
<FlexBox flexDirection="column">
1313
<H2 style={{ fontWeight: 500 }}>{title}</H2>
14-
15-
<Paragraph style={{ marginTop: '8px' }}>
16-
The ZenML Hub is a{' '}
17-
<a
18-
target="_blank"
19-
rel="noopener noreferrer"
20-
href="https://blog.zenml.io/zenml-hub-launch/"
21-
>
22-
plugin system
23-
</a>{' '}
24-
that allows users to contribute and consume stack component flavors,
25-
pipelines, steps, materializers, and other pieces of code seamlessly
26-
in their ML pipelines. Below are a list of community contributed
27-
plugins. If you would like to create your own plugin, click{' '}
28-
<a
29-
target="_blank"
30-
rel="noopener noreferrer"
31-
href="https://docs.zenml.io/user-guide/advanced-guide/environment-management/use-the-hub"
32-
>
33-
here
34-
</a>
35-
.
36-
</Paragraph>
37-
</FlexBox>
38-
<FlexBox
39-
fullWidth
40-
flexDirection="column"
41-
alignItems="end"
42-
justifyContent="flex-end"
43-
>
44-
<Paragraph color="grey" style={{ fontSize: '14px', flexShrink: 0 }}>
45-
Check out our easy to read{' '}
46-
<a
47-
href="https://docs.zenml.io/user-guide/advanced-guide/environment-management/use-the-hub"
48-
target="__blank"
49-
rel="noopener noreferrer"
50-
>
51-
docs
52-
</a>
53-
</Paragraph>
5414
</FlexBox>
5515
</FlexBox>
5616

legacy/src/ui/layouts/session/UserEmail/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ const UserEmail: React.FC = () => {
9191
<InnerTextLink
9292
text={'Click Here'}
9393
href={
94-
'https://docs.zenml.io/user-guide/advanced-guide/environment-management/global-settings-of-zenml#usage-analytics'
94+
'https://docs.zenml.io/reference/global-settings#usage-analytics'
9595
}
9696
/>
9797
&nbsp;{translate('subtitle2-2')}

legacy/src/ui/layouts/stacks/Header/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ const HeaderWithButtons: React.FC<{
7676
<a
7777
target="_blank"
7878
rel="noopener noreferrer"
79-
href="https://docs.zenml.io/stacks-and-components/stack-deployment"
79+
href="https://docs.zenml.io/how-to/stack-deployment"
8080
>
8181
deploy a MLOps stack
8282
</a>{' '}

package.json

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@
2323
]
2424
},
2525
"dependencies": {
26-
"@dagrejs/dagre": "^1.1.1",
26+
"@dagrejs/dagre": "^1.1.2",
2727
"@fontsource/inter": "^5.0.18",
28-
"@hookform/resolvers": "^3.3.4",
29-
"@tanstack/react-query": "^5.28.6",
30-
"@tanstack/react-table": "^8.15.3",
28+
"@hookform/resolvers": "^3.5.0",
29+
"@tanstack/react-query": "^5.40.1",
30+
"@tanstack/react-table": "^8.17.3",
3131
"@tisoap/react-flow-smart-edge": "^3.0.0",
3232
"@zenml-io/react-component-library": "^0.15.0",
3333
"class-variance-authority": "^0.7.0",
@@ -36,43 +36,43 @@
3636
"prismjs": "^1.29.0",
3737
"react": "^18.2.0",
3838
"react-dom": "^18.2.0",
39-
"react-hook-form": "^7.51.1",
40-
"react-joyride": "^2.8.1",
39+
"react-hook-form": "^7.51.5",
40+
"react-joyride": "^2.8.2",
4141
"react-markdown": "^9.0.1",
42-
"react-router-dom": "^6.22.3",
43-
"reactflow": "^11.11.0",
42+
"react-router-dom": "^6.23.1",
43+
"reactflow": "^11.11.3",
4444
"unique-names-generator": "^4.7.1",
45-
"zod": "^3.22.4"
45+
"zod": "^3.23.8"
4646
},
4747
"devDependencies": {
48-
"@playwright/test": "^1.42.1",
48+
"@playwright/test": "^1.44.1",
4949
"@tailwindcss/forms": "^0.5.7",
5050
"@tailwindcss/typography": "^0.5.10",
5151
"@types/lodash.debounce": "^4.0.9",
52-
"@types/node": "^20.11.30",
52+
"@types/node": "^20.14.2",
5353
"@types/papaparse": "^5.3.14",
54-
"@types/prismjs": "^1.26.3",
55-
"@types/react": "^18.2.64",
56-
"@types/react-dom": "^18.2.21",
57-
"@typescript-eslint/eslint-plugin": "^7.1.1",
58-
"@typescript-eslint/parser": "^7.1.1",
59-
"@vitejs/plugin-react-swc": "^3.5.0",
60-
"autoprefixer": "^10.4.18",
54+
"@types/prismjs": "^1.26.4",
55+
"@types/react": "^18.3.3",
56+
"@types/react-dom": "^18.3.0",
57+
"@typescript-eslint/eslint-plugin": "^7.12.0",
58+
"@typescript-eslint/parser": "^7.12.0",
59+
"@vitejs/plugin-react-swc": "^3.7.0",
60+
"autoprefixer": "^10.4.19",
6161
"eslint": "^8.57.0",
62-
"eslint-plugin-react-hooks": "^4.6.0",
62+
"eslint-plugin-react-hooks": "^4.6.2",
6363
"eslint-plugin-react-refresh": "^0.4.5",
6464
"husky": "^9.0.11",
65-
"lint-staged": "^15.2.2",
66-
"openapi-typescript": "^6.7.5",
67-
"postcss": "^8.4.37",
68-
"prettier": "^3.2.5",
65+
"lint-staged": "^15.2.5",
66+
"openapi-typescript": "^6.7.6",
67+
"postcss": "^8.4.38",
68+
"prettier": "^3.3.0",
6969
"prettier-plugin-tailwindcss": "^0.5.12",
70-
"tailwindcss": "^3.4.1",
70+
"tailwindcss": "^3.4.3",
7171
"tailwindcss-animate": "^1.0.7",
72-
"typescript": "^5.2.2",
73-
"vite": "^5.1.6",
72+
"typescript": "^5.4.5",
73+
"vite": "^5.2.12",
7474
"vite-plugin-bundle-prefetch": "^0.0.4",
7575
"vite-plugin-svgr": "^4.2.0",
76-
"vitest": "^1.5.0"
76+
"vitest": "^1.6.0"
7777
}
7878
}

0 commit comments

Comments
 (0)