Skip to content

Commit 888a258

Browse files
Merge branch 'main' into column-lineage-point-in-time
2 parents 7ba6cc5 + f3b1cbd commit 888a258

21 files changed

Lines changed: 752 additions & 29 deletions

File tree

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ subprojects {
6060
junit5Version = '5.9.1'
6161
lombokVersion = '1.18.24'
6262
mockitoVersion = '4.8.1'
63-
openlineageVersion = '0.16.1'
63+
openlineageVersion = '0.17.0'
6464
slf4jVersion = '1.7.36'
6565
postgresqlVersion = '42.5.0'
6666
isReleaseVersion = !version.endsWith('SNAPSHOT')

web/package-lock.json

Lines changed: 170 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

web/package.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,14 @@
1717
"node": ">12.22.7"
1818
},
1919
"dependencies": {
20+
"@date-io/moment": "^1.3.13",
2021
"@fortawesome/fontawesome-svg-core": "^1.2.32",
2122
"@fortawesome/free-solid-svg-icons": "^5.14.0",
2223
"@fortawesome/react-fontawesome": "^0.1.12",
2324
"@material-ui/core": "^4.12.3",
2425
"@material-ui/icons": "^4.11.2",
2526
"@material-ui/lab": "^4.0.0-alpha.56",
27+
"@material-ui/pickers": "^3.3.10",
2628
"@material-ui/styles": "^4.11.4",
2729
"@types/react-router-dom": "^5.1.2",
2830
"@types/react-syntax-highlighter": "^13.5.2",
@@ -45,6 +47,7 @@
4547
"d3-scale": "^3.2.1",
4648
"d3-selection": "^1.4.1",
4749
"dagre": "^0.8.5",
50+
"file-saver": "^2.0.5",
4851
"http-proxy-middleware": "^0.20.0",
4952
"lodash": "^4.17.21",
5053
"moment": "^2.29.4",
@@ -53,6 +56,7 @@
5356
"react": "^16.8.0",
5457
"react-dom": "^16.8.0",
5558
"react-helmet-async": "^1.3.0",
59+
"react-inlinesvg": "^3.0.1",
5660
"react-redux": "^6.0.1",
5761
"react-router-dom": "^5.1.2",
5862
"react-syntax-highlighter": "^15.4.4",
@@ -71,6 +75,7 @@
7175
"@types/dagre": "^0.7.44",
7276
"@types/enzyme": "^3.1.16",
7377
"@types/enzyme-adapter-react-16": "^1.0.3",
78+
"@types/file-saver": "^2.0.5",
7479
"@types/jest": "^27.5.2",
7580
"@types/lodash": "^4.14.123",
7681
"@types/material-ui": "^0.21.7",

web/setupProxy.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ const path = __dirname + '/dist'
1010

1111
app.use('/', express.static(path))
1212
app.use('/datasets', express.static(path))
13+
app.use('/events', express.static(path))
1314
app.use('/lineage/:type/:namespace/:name', express.static(path))
1415
app.use(proxy('/api/v1', apiOptions))
1516

0 commit comments

Comments
 (0)