This is an automated email from the ASF dual-hosted git repository.

aglinxinyuan pushed a change to branch xinyuan-loop-feb
in repository https://gitbox.apache.org/repos/asf/texera.git


    from 39a1d45a07 fix fmt
     add fee6f8caa2 feat: add a new wind rose chart operator (#4224)
     add 2b6253909c fix: only run workflow build and deploy image action if 
scheduled or auto run if on… (#4214)
     add d868b85225 feat: add Radar Plot Visualization Operator (#3500)
     add 8cd1570dd2 feat: add a new webgl polar chart operator (#4221)
     add 41e7339f1b fix(operator): convert booleans to Python-compatible values 
in BubbleChart/ContourPlot/TernaryPlot (#4238)
     add 4be9baeaa2 chore(build): add customized LICENSE to jar META-INF and 
dist zips (#4367)
     add 7b2b017042 fix: the URL typo in the workflow-sharing notification 
email (#4200)
     add 03a675d44c chore(ci): enforce both scalafmtAll and scalafixAll in 
format checks (#4411)
     add 8fb8ec05e2 fix: restore `../../sql` mount path in single-node 
docker-compose so Postgres init scripts run (#4391)
     add 00e78f88e7 Merge branch 'main' into xiaozhen-sync-region-kill
     add ec01fdddca Merge branch 'xiaozhen-sync-region-kill' into 
xinyuan-loop-feb

No new revisions were added by this update.

Summary of changes:
 .github/workflows/build-and-push-images.yml        |   1 +
 .github/workflows/github-action-build.yml          |   2 +
 .licenserc.yaml                                    |   1 -
 bin/access-control-service.dockerfile              |   3 -
 bin/computing-unit-master.dockerfile               |   3 -
 bin/computing-unit-worker.dockerfile               |   3 -
 bin/config-service.dockerfile                      |   3 -
 bin/file-service.dockerfile                        |   3 -
 bin/fix-format.sh                                  |   4 +-
 bin/single-node/docker-compose.yml                 |   2 +-
 bin/texera-web-application.dockerfile              |   3 -
 bin/workflow-compiling-service.dockerfile          |   3 -
 ...flow-computing-unit-managing-service.dockerfile |   3 -
 build.sbt                                          |  31 ++-
 .../apache/texera/amber/operator/LogicalOp.scala   |   6 +
 .../operator/source/scan/file/FileScanOpDesc.scala |   7 +-
 .../texera/amber/operator/union/UnionOpDesc.scala  |   2 +-
 .../visualization/DotPlot/DotPlotOpDesc.scala      |   3 +-
 .../IcicleChart/IcicleChartOpDesc.scala            |   3 +-
 .../ImageViz/ImageVisualizerOpDesc.scala           |   3 +-
 .../ScatterMatrixChartOpDesc.scala                 |   3 +-
 .../visualization/barChart/BarChartOpDesc.scala    |   3 +-
 .../boxViolinPlot/BoxViolinPlotOpDesc.scala        |   3 +-
 .../bubbleChart/BubbleChartOpDesc.scala            |   5 +-
 .../bulletChart/BulletChartOpDesc.scala            |   5 +-
 .../candlestickChart/CandlestickChartOpDesc.scala  |   3 +-
 .../choroplethMap/ChoroplethMapOpDesc.scala        |   3 +-
 .../ContinuousErrorBandsOpDesc.scala               |   3 +-
 .../contourPlot/ContourPlotOpDesc.scala            |   5 +-
 .../dendrogram/DendrogramOpDesc.scala              |   3 +-
 .../dumbbellPlot/DumbbellPlotOpDesc.scala          |   3 +-
 .../FigureFactoryTableOpDesc.scala                 |   3 +-
 .../filledAreaPlot/FilledAreaPlotOpDesc.scala      |   3 +-
 .../funnelPlot/FunnelPlotOpDesc.scala              |   3 +-
 .../ganttChart/GanttChartOpDesc.scala              |   3 +-
 .../gaugeChart/GaugeChartOpDesc.scala              |   3 +-
 .../visualization/heatMap/HeatMapOpDesc.scala      |   3 +-
 .../hierarchychart/HierarchyChartOpDesc.scala      |   3 +-
 .../histogram/HistogramChartOpDesc.scala           |   3 +-
 .../histogram2d/Histogram2DOpDesc.scala            |   3 +-
 .../visualization/htmlviz/HtmlVizOpDesc.scala      |   8 +-
 .../visualization/lineChart/LineChartOpDesc.scala  |   3 +-
 .../nestedTable/NestedTableOpDesc.scala            |   3 +-
 .../networkGraph/NetworkGraphOpDesc.scala          |   3 +-
 .../visualization/pieChart/PieChartOpDesc.scala    |   3 +-
 .../PolarChartOpDesc.scala}                        | 110 +++++-----
 .../quiverPlot/QuiverPlotOpDesc.scala              |   3 +-
 .../radarChart/RadarChartOpDesc.scala              |   3 +-
 .../RadarPlotLinePattern.java}                     |  23 +--
 .../visualization/radarPlot/RadarPlotOpDesc.scala  | 230 +++++++++++++++++++++
 .../rangeSlider/RangeSliderOpDesc.scala            |   3 +-
 .../sankeyDiagram/SankeyDiagramOpDesc.scala        |   3 +-
 .../scatter3DChart/Scatter3dChartOpDesc.scala      |   3 +-
 .../scatterplot/ScatterplotOpDesc.scala            |   3 +-
 .../stripChart/StripChartOpDesc.scala              |   3 +-
 .../tablesChart/TablesPlotOpDesc.scala             |   3 +-
 .../ternaryPlot/TernaryPlotOpDesc.scala            |   5 +-
 .../timeSeriesplot/TimeSeriesOpDesc.scala          |   3 +-
 .../visualization/treeplot/TreePlotOpDesc.scala    |   3 +-
 .../visualization/urlviz/UrlVizOpDesc.scala        |   8 +-
 .../volcanoPlot/VolcanoPlotOpDesc.scala            |   3 +-
 .../waterfallChart/WaterfallChartOpDesc.scala      |   3 +-
 .../WindRoseChartOpDesc.scala}                     |  85 +++++---
 .../visualization/wordCloud/WordCloudOpDesc.scala  |   3 +-
 .../user/share-access/share-access.component.ts    |   2 +-
 frontend/src/assets/operator_images/PolarChart.png | Bin 0 -> 133686 bytes
 frontend/src/assets/operator_images/RadarPlot.png  | Bin 0 -> 48432 bytes
 .../src/assets/operator_images/WindRoseChart.png   | Bin 0 -> 24191 bytes
 project/AddMetaInfLicenseFiles.scala               | 142 +++++++++++++
 69 files changed, 565 insertions(+), 254 deletions(-)
 copy 
common/workflow-operator/src/main/scala/org/apache/texera/amber/operator/visualization/{candlestickChart/CandlestickChartOpDesc.scala
 => polarChart/PolarChartOpDesc.scala} (51%)
 copy 
common/workflow-operator/src/main/scala/org/apache/texera/amber/operator/visualization/{histogram2d/NormalizationType.java
 => radarPlot/RadarPlotLinePattern.java} (71%)
 create mode 100644 
common/workflow-operator/src/main/scala/org/apache/texera/amber/operator/visualization/radarPlot/RadarPlotOpDesc.scala
 copy 
common/workflow-operator/src/main/scala/org/apache/texera/amber/operator/visualization/{waterfallChart/WaterfallChartOpDesc.scala
 => windRoseChart/WindRoseChartOpDesc.scala} (59%)
 create mode 100644 frontend/src/assets/operator_images/PolarChart.png
 create mode 100644 frontend/src/assets/operator_images/RadarPlot.png
 create mode 100644 frontend/src/assets/operator_images/WindRoseChart.png
 create mode 100644 project/AddMetaInfLicenseFiles.scala

Reply via email to