This is an automated email from the ASF dual-hosted git repository.
yunyd pushed a change to branch dependabot/npm_and_yarn/core/gui/prismjs-1.30.0
in repository https://gitbox.apache.org/repos/asf/texera.git
from 7df55abc3d Merge branch 'main' into
dependabot/npm_and_yarn/core/gui/prismjs-1.30.0
add 75c69ed015 fix: pin R arrow package to version 14.0.2.1 in
computing-unit-master (#3761)
add bc260178be chore(deps): bump torch from 2.4.1 to 2.8.0 and
typing_extensions from 4.9.0 to 4.10.0 (#3800)
add 89af4b9045 chore(deps): bump scikit-learn from 1.4.0 to 1.5.0 in
/core/amber (#3799)
add af453d7af3 chore: refactor user avatar component (#3790)
add cf3bb462a2 chore(deps): bump axios from 1.7.7 to 1.12.2 in /core/gui
(#3797)
add 637cfc9116 chore(deps): bump form-data from 3.0.2 to 3.0.4 in
/core/gui (#3793)
add bf4d2b9073 fix(debugger): do not truncate debug messages (#3786)
add b62632db52 feat(config): allow default.conf to be set using
environment variables (#3757)
add b0075f6350 feat: display datasets version creation timestamp (#3803)
add ab30bb1e80 chore: Upgrade checkout and setup actions to latest
versions (#3808)
add a0c1918358 feat: add save button for sidebar tabs on the admin
settings page (#3801)
add 989e4d0e8b feat(dataset): allow datasets to have the same name across
different users (#3715)
add 61bd59b08a ci: automatically label PRs (#3536)
add 98582dd153 ci: fix labeler.yml glob pattern syntax (#3813)
add 80160aab6d ci: fix labeler configuration for file glob patterns (#3814)
add d1313346d0 feat(gui): display the owner's avatar next to each CU
(#3784)
add 60c84bd175 fix(ci): explicitly load jdbc driver when accessing iceberg
postgres catalog (#3817)
add 4acb11901b fix(ci): update backend file patterns in labeler.yml (#3815)
add 6c89f40c26 fix: delete button only clickable from outer ring (#3809)
add 0d3bf4ce74 chore: add bug report template (#3812)
add 1ec8022a1e chore(deps): bump @babel/helpers from 7.25.7 to 7.28.4 in
/core/gui (#3795)
add 24ba25d3ce fix: conditionally show upload panels based on upload
activity (#3818)
add f7482d25ef fix(image): exec format error in pylsp Docker container
(#3811)
add 625a9afa36 fix(gui): keep words complete in the workspace' comment
boxes (#3597)
add 1c812a5e2d chore: Improve Bug Issue Template (#3826)
add 20a38d54d7 chore(deps): bump transformers from 4.44.2 to 4.53.0 in
/core/amber (#3635)
add 59a753ad86 Merge branch 'main' into
dependabot/npm_and_yarn/core/gui/prismjs-1.30.0
No new revisions were added by this update.
Summary of changes:
.github/ISSUE_TEMPLATE/bug-template.yaml | 84 ++++++++
.github/labeler.yml | 85 ++++++++
.github/workflows/github-action-build.yml | 14 +-
.../workflows/{check-header.yml => pr-labeler.yml} | 20 +-
core/amber/operator-requirements.txt | 4 +-
core/amber/requirements.txt | 4 +-
.../dashboard/DatasetSearchQueryBuilder.scala | 8 +-
.../resource/dashboard/UnifiedResourceSchema.scala | 4 +-
.../web/resource/dashboard/hub/HubResource.scala | 2 +-
.../web/service/ExecutionConsoleService.scala | 5 +
core/build.sbt | 2 +
.../resource/ComputingUnitManagingResource.scala | 42 +++-
core/config/src/main/resources/default.conf | 30 +++
.../edu/uci/ics/amber/config/StorageConfig.scala | 6 +-
core/file-service/build.sbt | 6 +-
.../texera/service/resource/DatasetResource.scala | 185 +++++++++++------
.../edu/uci/ics/texera/service/MockLakeFS.scala | 124 ++++++++++++
.../service/resource/DatasetResourceSpec.scala | 183 +++++++++++++++++
.../admin/settings/admin-settings.component.html | 39 ++--
.../admin/settings/admin-settings.component.scss | 6 +
.../admin/settings/admin-settings.component.ts | 20 +-
.../user/user-avatar/user-avatar.component.html | 28 ++-
.../user/user-avatar/user-avatar.component.scss | 35 +---
.../dataset-detail.component.html | 46 +++--
.../dataset-detail.component.ts | 10 +-
...user-dataset-staged-objects-list.component.html | 3 +-
...user-dataset-staged-objects-list.component.scss | 4 +
.../service/user/dataset/dataset.service.ts | 19 +-
.../computing-unit-selection.component.html | 16 ++
.../nz-modal-comment-box.component.scss | 5 +-
.../workflow-editor/workflow-editor.component.ts | 15 +-
.../app/workspace/types/workflow-computing-unit.ts | 2 +
core/gui/src/styles.scss | 6 +
core/gui/yarn.lock | 221 +++++++++++++++++++--
core/scripts/sql/texera_ddl.sql | 1 +
core/scripts/sql/updates/{04.sql => 15.sql} | 19 +-
.../uci/ics/amber/core/storage/FileResolver.scala | 8 +-
.../core/storage/model/DatasetFileDocument.scala | 18 +-
.../ics/amber/core/storage/model/OnDataset.scala | 2 +-
.../core/storage/util/LakeFSStorageClient.scala | 16 +-
.../scala/edu/uci/ics/amber/util/IcebergUtil.scala | 3 +
.../uci/ics/amber/storage/FileResolverSpec.scala | 5 +-
deployment/computing-unit-master.dockerfile | 11 +-
.../k8s/texera-helmchart/files/texera_ddl.sql | 1 +
deployment/pylsp/Dockerfile | 3 +-
45 files changed, 1098 insertions(+), 272 deletions(-)
create mode 100644 .github/ISSUE_TEMPLATE/bug-template.yaml
create mode 100644 .github/labeler.yml
copy .github/workflows/{check-header.yml => pr-labeler.yml} (77%)
create mode 100644
core/file-service/src/test/scala/edu/uci/ics/texera/service/MockLakeFS.scala
create mode 100644
core/file-service/src/test/scala/edu/uci/ics/texera/service/resource/DatasetResourceSpec.scala
copy core/scripts/sql/updates/{04.sql => 15.sql} (74%)