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

hongze pushed a change to tag v1.6.0-rc1
in repository https://gitbox.apache.org/repos/asf/incubator-gluten.git


*** WARNING: tag v1.6.0-rc1 was modified! ***

    from 11ac0287a8 (commit)
      to 4dc6172335 (commit)
 discard 11ac0287a8 [CORE] Bump version to 1.6.0 (rc1)
 discard 0774d7efce Remove unwanted files for release
     new 4dc6172335 [CORE] Bump version to 1.6.0 (rc1)

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
tag 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   (11ac0287a8)
            \
             N -- N -- N   refs/tags/v1.6.0-rc1 (4dc6172335)

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.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .gitattributes                                     |    1 +
 .github/ISSUE_TEMPLATE/bug.yml                     |   96 ++
 .github/ISSUE_TEMPLATE/build.yml                   |   46 +
 .../ISSUE_TEMPLATE/config.yml                      |    7 +-
 .github/ISSUE_TEMPLATE/enhancement.yml             |   43 +
 .github/PULL_REQUEST_TEMPLATE                      |   36 +
 .github/labeler.yml                                |  101 ++
 .github/workflows/build_bundle_package.yml         |  112 ++
 .../workflows/build_release.yml                    |   35 +-
 .github/workflows/ch_code_style.yml                |   71 +
 .../workflows/check_license.yml                    |   28 +-
 .github/workflows/clickhouse_be_trigger.yml        |   69 +
 .github/workflows/code_format.yml                  |   66 +
 .github/workflows/cpp_clang_tidy.yml               |   79 +
 .github/workflows/dev_cron/pr_issue_linker.js      |   68 +
 .github/workflows/docker_image.yml                 |  518 +++++++
 .github/workflows/flink.yml                        |   79 +
 .github/workflows/nightly_sync.yml                 |   41 +
 .github/workflows/pr_bot.yml                       |   54 +
 .github/workflows/scala_code_format.yml            |   55 +
 .github/workflows/stale.yml                        |   36 +
 .github/workflows/take.yml                         |   41 +
 .github/workflows/test_report.yml                  |   47 +
 .github/workflows/util/check.py                    |  139 ++
 .../clean.sh => .github/workflows/util/check.sh    |   18 +-
 .../workflows/util/excluded_copyright_files.txt    |    3 +
 .github/workflows/util/install-flink-resources.sh  |  101 ++
 .github/workflows/util/install-resources.sh        |  263 ++++
 .github/workflows/util/license-header.py           |  292 ++++
 .github/workflows/util/license.header              |   14 +
 {dev => .github/workflows/util}/util.py            |   14 +-
 .github/workflows/velox_backend_arm.yml            |  197 +++
 .github/workflows/velox_backend_cache.yml          |  190 +++
 .github/workflows/velox_backend_enhanced.yml       |  257 ++++
 .github/workflows/velox_backend_x86.yml            | 1553 ++++++++++++++++++++
 .github/workflows/velox_nightly.yml                |  418 ++++++
 .github/workflows/velox_weekly.yml                 |  225 +++
 .gitignore                                         |   88 ++
 ...luten.component.CHDeltaComponent => .gitmodules |    0
 .idea/icon.svg                                     |    7 +
 gluten-ras/common/pom.xml => .idea/vcs.xml         |   27 +-
 41 files changed, 5491 insertions(+), 44 deletions(-)
 create mode 100644 .gitattributes
 create mode 100644 .github/ISSUE_TEMPLATE/bug.yml
 create mode 100644 .github/ISSUE_TEMPLATE/build.yml
 copy cpp/core/tests/CMakeLists.txt => .github/ISSUE_TEMPLATE/config.yml (79%)
 create mode 100644 .github/ISSUE_TEMPLATE/enhancement.yml
 create mode 100644 .github/PULL_REQUEST_TEMPLATE
 create mode 100644 .github/labeler.yml
 create mode 100644 .github/workflows/build_bundle_package.yml
 copy cpp-ch/local-engine/Storages/Parquet/CMakeLists.txt => 
.github/workflows/build_release.yml (51%)
 create mode 100644 .github/workflows/ch_code_style.yml
 copy cpp-ch/local-engine/Storages/Parquet/CMakeLists.txt => 
.github/workflows/check_license.yml (60%)
 create mode 100644 .github/workflows/clickhouse_be_trigger.yml
 create mode 100644 .github/workflows/code_format.yml
 create mode 100644 .github/workflows/cpp_clang_tidy.yml
 create mode 100644 .github/workflows/dev_cron/pr_issue_linker.js
 create mode 100644 .github/workflows/docker_image.yml
 create mode 100644 .github/workflows/flink.yml
 create mode 100644 .github/workflows/nightly_sync.yml
 create mode 100644 .github/workflows/pr_bot.yml
 create mode 100644 .github/workflows/scala_code_format.yml
 create mode 100644 .github/workflows/stale.yml
 create mode 100644 .github/workflows/take.yml
 create mode 100644 .github/workflows/test_report.yml
 create mode 100755 .github/workflows/util/check.py
 copy tools/gluten-te/centos/gha/gha-checkout/clean.sh => 
.github/workflows/util/check.sh (74%)
 create mode 100644 .github/workflows/util/excluded_copyright_files.txt
 create mode 100755 .github/workflows/util/install-flink-resources.sh
 create mode 100755 .github/workflows/util/install-resources.sh
 create mode 100755 .github/workflows/util/license-header.py
 create mode 100644 .github/workflows/util/license.header
 copy {dev => .github/workflows/util}/util.py (78%)
 create mode 100644 .github/workflows/velox_backend_arm.yml
 create mode 100644 .github/workflows/velox_backend_cache.yml
 create mode 100644 .github/workflows/velox_backend_enhanced.yml
 create mode 100644 .github/workflows/velox_backend_x86.yml
 create mode 100644 .github/workflows/velox_nightly.yml
 create mode 100644 .github/workflows/velox_weekly.yml
 create mode 100644 .gitignore
 copy 
backends-clickhouse/src-delta/main/resources/META-INF/gluten-components/org.apache.gluten.component.CHDeltaComponent
 => .gitmodules (100%)
 create mode 100644 .idea/icon.svg
 copy gluten-ras/common/pom.xml => .idea/vcs.xml (55%)


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to