This is an automated email from the ASF dual-hosted git repository.
xuang7 pushed a change to branch
backport/8494-update-dependency-angular-core-to-v21-2-v1.2
in repository https://gitbox.apache.org/repos/asf/texera.git
omit bab73f2707 fix(deps, frontend): update dependency @angular/core to
v21.2.20 (#8494)
add ba12d74392 feat(deploy, v1.2): replace MinIO with RustFS as the
default object store (#8555)
add 67ace7ca9a fix(pyamber, test, v1.2): stabilize flaky AtomicInteger
get_and_set deadlock test (#7402)
add 5a5ff9a3ca fix(deploy, v1.2): enable CORS on RustFS so browsers can
fetch presigned URLs (#8585)
add 51d8ff2d98 fix(workflow-operator, v1.2): MAX aggregation checks the
wrong empty-group sentinel (#7985)
add 549b2db793 fix(WorkflowExecutionService, v1.2): shutdown console
writer thread on unsubscribe (#8063)
add 5c0edbf41e fix(v1.2): raise default WebSocket payload limit to avoid
dropping large result frames (#7811)
add 83317c1d98 fix(agent-service, v1.2): delete links targeting removed
input ports when shrinking input ports (#7637)
add 7737945d39 fix(deps, frontend, v1.2): update dependency
@angular/compiler to v21.2.20 (#8650)
add ad5ba6bd70 fix(deps, pyamber, v1.2): update dependency transformers to
v5.10.1 (#8656)
add 441d9393c4 fix(deps, frontend): update dependency @angular/core to
v21.2.20 (#8494)
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (bab73f2707)
\
N -- N -- N
refs/heads/backport/8494-update-dependency-angular-core-to-v21-2-v1.2
(441d9393c4)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
.github/workflows/build.yml | 28 +-
agent-service/src/agent/workflow-state.spec.ts | 401 +++++++++++++++++++++
agent-service/src/agent/workflow-state.ts | 9 +
amber/LICENSE-binary-python | 5 +-
amber/operator-requirements.txt | 2 +-
.../web/resource/WebsocketPayloadSizeTuner.scala | 2 +-
.../web/service/ExecutionConsoleService.scala | 25 ++
.../texera/web/service/WorkflowService.scala | 2 +-
.../packaging/test_state_materialization_e2e.py | 2 +-
.../core/storage/iceberg/test_iceberg_document.py | 4 +-
amber/src/test/python/core/util/test_atomic.py | 7 +-
.../pytexera/storage/test_large_binary_manager.py | 4 +-
bin/bootstrap-lakekeeper.sh | 2 +-
bin/k8s/Chart.yaml | 6 +-
bin/k8s/templates/external-names.yaml | 6 +-
bin/k8s/templates/file-service-deployment.yaml | 10 +-
bin/k8s/templates/gateway-routes.yaml | 10 +-
bin/k8s/templates/gateway.yaml | 12 +-
bin/k8s/templates/lakekeeper-init-job.yaml | 63 +++-
...io-persistence.yaml => rustfs-persistence.yaml} | 8 +-
...workflow-computing-unit-manager-deployment.yaml | 10 +-
bin/k8s/values-development.yaml | 54 ++-
bin/k8s/values.yaml | 72 +++-
bin/local-dev/README.md | 2 +-
bin/single-node/.env | 10 +-
bin/single-node/README.md | 4 +-
bin/single-node/docker-compose.yml | 66 ++--
build.sbt | 1 +
common/config/src/main/resources/application.conf | 2 +-
common/config/src/main/resources/storage.conf | 2 +-
common/workflow-core/build.sbt | 5 +-
.../texera/service/util/S3StorageClient.scala | 8 +-
.../texera/service/util/RustFSContainer.scala | 80 ++++
.../texera/service/util/S3StorageTestBase.scala | 21 +-
.../operator/aggregate/AggregationOperation.scala | 2 +-
.../amber/operator/aggregate/AggregateOpSpec.scala | 63 ++++
.../aggregate/AggregationOperationSpec.scala | 40 ++
.../guide-for-developers.md | 6 +-
docs/getting-started/installing-using-docker.md | 4 +-
docs/getting-started/run-on-kubernetes.md | 4 +-
docs/overview.md | 2 +-
docs/tutorials/guide-to-launch-lakekeeper.md | 6 +-
file-service/build.sbt | 3 +-
file-service/src/main/resources/docker-compose.yml | 26 +-
.../{minio-config.yml => rustfs-config.yml} | 23 +-
.../org/apache/texera/service/MockLakeFS.scala | 60 +--
frontend/LICENSE-binary | 9 +-
frontend/package.json | 13 +-
frontend/yarn.lock | 22 +-
49 files changed, 965 insertions(+), 263 deletions(-)
create mode 100644 agent-service/src/agent/workflow-state.spec.ts
rename bin/k8s/templates/{minio-persistence.yaml => rustfs-persistence.yaml}
(92%)
create mode 100644
common/workflow-core/src/test/scala/org/apache/texera/service/util/RustFSContainer.scala
rename file-service/src/main/resources/{minio-config.yml => rustfs-config.yml}
(69%)