Skip to content

Commit fbe030f

Browse files
mathis-marcotteMathis Marcotte
and
Mathis Marcotte
authored
Upgrade angular version v12 to v17 (#308)
* updated to angular v13 * update to angular v14 * migrated to new mdc angular components for common lib * migrated jupyter to mdc components * updated to angular v15 * updated to angular 16 * updated to angular 17 * fixed TODOs from mdc migration * package overrides * updated node version in github actions * fixed build operation * fixed styling with existing volumes dropdown * fixed the subscriptsizing * fixed issue with some inputs being too large * magin bottom fix * fixed popovers * fixed table text align --------- Co-authored-by: Mathis Marcotte <[email protected]>
1 parent 130659f commit fbe030f

File tree

165 files changed

+64209
-63348
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

165 files changed

+64209
-63348
lines changed

.github/workflows/common_frontend_tests.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Setup Node
1919
uses: actions/setup-node@v3
2020
with:
21-
node-version: 16
21+
node-version: 18
2222

2323
- name: Check frontend code formatting
2424
run: |
@@ -37,10 +37,10 @@ jobs:
3737
steps:
3838
- name: Checkout
3939
uses: actions/checkout@v3
40-
- name: Setup node version to 12
40+
- name: Setup node version to 18
4141
uses: actions/setup-node@v3
4242
with:
43-
node-version: 16
43+
node-version: 18
4444

4545
- name: Install Kubeflow common library dependecies
4646
run: |

.github/workflows/jwa_frontend_tests.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Setup Node
1919
uses: actions/setup-node@v3
2020
with:
21-
node-version: 16
21+
node-version: 18
2222

2323
- name: Check frontend formatting
2424
run: |
@@ -38,10 +38,10 @@ jobs:
3838
steps:
3939
- name: Checkout
4040
uses: actions/checkout@v3
41-
- name: Setup node version to 16
41+
- name: Setup node version to 18
4242
uses: actions/setup-node@v3
4343
with:
44-
node-version: 16
44+
node-version: 18
4545

4646
- name: Install Kubeflow common library dependecies
4747
run: |
@@ -65,10 +65,10 @@ jobs:
6565
steps:
6666
- name: Checkout
6767
uses: actions/checkout@v3
68-
- name: Setup node version to 16
68+
- name: Setup node version to 18
6969
uses: actions/setup-node@v3
7070
with:
71-
node-version: 16
71+
node-version: 18
7272

7373
- name: Install Kubeflow common library dependecies
7474
run: |

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Stage 0: UI Build Stage
2-
FROM node:16-alpine as frontend
2+
FROM node:18-alpine as frontend
33
WORKDIR /src
44
ENV NG_CLI_ANALYTICS "ci"
55
RUN apk add --no-cache --virtual .gyp python3 make g++

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ The front-end is configured to proxy requests to the local API server. It
5959
requires an environment variable (`KF_USER_ID`) to specify the current user –
6060
this is passed to the API server as an HTTP header.
6161

62-
The following can be pasted in a script and executed. This uses the latest node lts/gallium version(v16.20.0) with npm v8(8.19.4).
62+
The following can be pasted in a script and executed. This uses the latest node lts/hydrogen version(v18.19.0) with npm v8(10.2.3).
6363
**NOTE**: `user` is when using vagrant. Use the email adress if it is the dev cluser (please never connect to prod directly)
6464

6565
```

frontend/common/kubeflow-common-lib/.eslintrc.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,7 @@
1616
"createDefaultProgram": true
1717
},
1818
"extends": [
19-
"plugin:@angular-eslint/ng-cli-compat",
20-
"plugin:@angular-eslint/ng-cli-compat--formatting-add-on",
19+
"plugin:@angular-eslint/recommended",
2120
"plugin:@angular-eslint/template/process-inline-templates"
2221
],
2322
"rules": {

frontend/common/kubeflow-common-lib/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ npm-debug.log
4040
yarn-error.log
4141
testem.log
4242
/typings
43+
.angular
4344

4445
# System Files
4546
.DS_Store

frontend/common/kubeflow-common-lib/angular.json

+14-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
{
22
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
33
"cli": {
4-
"analytics": false
4+
"schematicCollections": [
5+
"@angular-eslint/schematics"
6+
],
7+
"analytics": false,
8+
"cache": {
9+
"enabled": false
10+
}
511
},
612
"version": 1,
713
"newProjectRoot": "projects",
@@ -44,8 +50,12 @@
4450
}
4551
}
4652
},
47-
"defaultProject": "kubeflow",
48-
"cli": {
49-
"defaultCollection": "@angular-eslint/schematics"
53+
"schematics": {
54+
"@angular-eslint/schematics:application": {
55+
"setParserOptionsProject": true
56+
},
57+
"@angular-eslint/schematics:library": {
58+
"setParserOptionsProject": true
59+
}
5060
}
5161
}

0 commit comments

Comments
 (0)