This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch
dependabot/github_actions/actions/upload-artifact-5
in repository https://gitbox.apache.org/repos/asf/hudi-rs.git
discard 27142fe build(deps): bump actions/upload-artifact from 4 to 5
add f27feb8 refactor: define avro model for parsing commit metadata (#477)
add 99d5dbb ci: reduce CI run time (#478)
add 3e9a101 build(deps): bump actions/upload-artifact from 4 to 5
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 (27142fe)
\
N -- N -- N
refs/heads/dependabot/github_actions/actions/upload-artifact-5 (3e9a101)
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/ci.yml | 56 +++-
Cargo.toml | 3 +-
crates/core/Cargo.toml | 1 +
crates/core/src/file_group/builder.rs | 178 ++++++------
crates/core/src/metadata/commit.rs | 435 +++++++++++++++++++++++++++++
crates/core/src/metadata/mod.rs | 2 +
crates/core/src/metadata/replace_commit.rs | 130 +++++++++
crates/core/src/schema/resolver.rs | 160 ++++++++---
demo/ci_run.sh | 10 +
demo/compose.yaml | 4 +
10 files changed, 848 insertions(+), 131 deletions(-)
create mode 100644 crates/core/src/metadata/commit.rs
create mode 100644 crates/core/src/metadata/replace_commit.rs