This is an automated email from the ASF dual-hosted git repository.
XiaoHongbo-Hope pushed a change to branch release-0.1.0
in repository https://gitbox.apache.org/repos/asf/paimon-full-text.git
from ba268f6 fix(core): stream full-text index writes #13
new 23820d2 Check Rust advisories and update crossbeam-epoch (#18)
new e1afe48 Fix release artifact licensing blockers (#17)
new 02e41d1 Refresh license reports for crossbeam-epoch 0.9.20 (#21)
The 3 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:
.github/workflows/ci.yml | 29 +
.github/workflows/release-java.yml | 15 +
.github/workflows/release-python-publish.yml | 41 +-
.github/workflows/release-python.yml | 6 +
.github/workflows/release-rust.yml | 10 +-
.gitignore | 7 +
Cargo.lock | 4 +-
DEPENDENCIES.rust.tsv | 2 +-
about.hbs | 87 +
deny.toml => about.toml | 16 +-
LICENSE => core/LICENSE | 0
NOTICE => core/NOTICE | 0
deny.toml | 7 +
java/pom.xml | 80 +-
.../src/main/binary-resources/META-INF/LICENSE | 13 +
.../aarch64-apple-darwin/THIRD-PARTY-LICENSES.html | 4213 +++++++++++++++++++
.../THIRD-PARTY-LICENSES.html | 4213 +++++++++++++++++++
.../THIRD-PARTY-LICENSES.html | 4426 ++++++++++++++++++++
.../THIRD-PARTY-LICENSES.html | 4213 +++++++++++++++++++
.../licenses/aarch64-apple-darwin/LICENSE | 10 +
.../licenses/aarch64-apple-darwin/NOTICE | 0
.../aarch64-apple-darwin/THIRD-PARTY-LICENSES.html | 4145 ++++++++++++++++++
.../licenses/aarch64-unknown-linux-gnu/LICENSE | 10 +
.../licenses/aarch64-unknown-linux-gnu/NOTICE | 0
.../THIRD-PARTY-LICENSES.html | 4145 ++++++++++++++++++
.../licenses/x86_64-pc-windows-msvc/LICENSE | 10 +
.../licenses/x86_64-pc-windows-msvc/NOTICE | 0
.../THIRD-PARTY-LICENSES.html | 4355 +++++++++++++++++++
.../licenses/x86_64-unknown-linux-gnu/LICENSE | 10 +
.../licenses/x86_64-unknown-linux-gnu/NOTICE | 0
.../THIRD-PARTY-LICENSES.html | 4145 ++++++++++++++++++
python/pyproject.toml | 13 +-
python/setup.py | 71 +-
third-party-licenses/README.md | 34 +
third-party-licenses/jieba-rs-v0.10.1.LICENSE | 22 +
third-party-licenses/python-jieba-v0.39.LICENSE | 20 +
tools/README.md | 43 +-
tools/check_license_headers.py | 23 +-
tools/deploy_java_staging.sh | 6 +
tools/generate_license_reports.py | 544 +++
tools/verify_java_jars.py | 194 +
tools/verify_python_wheels.py | 231 +
42 files changed, 35329 insertions(+), 84 deletions(-)
create mode 100644 about.hbs
copy deny.toml => about.toml (68%)
copy LICENSE => core/LICENSE (100%)
copy NOTICE => core/NOTICE (100%)
copy LICENSE => java/src/main/binary-resources/META-INF/LICENSE (94%)
create mode 100644
java/src/main/binary-resources/META-INF/licenses/aarch64-apple-darwin/THIRD-PARTY-LICENSES.html
create mode 100644
java/src/main/binary-resources/META-INF/licenses/aarch64-unknown-linux-gnu/THIRD-PARTY-LICENSES.html
create mode 100644
java/src/main/binary-resources/META-INF/licenses/x86_64-pc-windows-msvc/THIRD-PARTY-LICENSES.html
create mode 100644
java/src/main/binary-resources/META-INF/licenses/x86_64-unknown-linux-gnu/THIRD-PARTY-LICENSES.html
copy LICENSE => python/licenses/aarch64-apple-darwin/LICENSE (96%)
copy NOTICE => python/licenses/aarch64-apple-darwin/NOTICE (100%)
create mode 100644
python/licenses/aarch64-apple-darwin/THIRD-PARTY-LICENSES.html
copy LICENSE => python/licenses/aarch64-unknown-linux-gnu/LICENSE (96%)
copy NOTICE => python/licenses/aarch64-unknown-linux-gnu/NOTICE (100%)
create mode 100644
python/licenses/aarch64-unknown-linux-gnu/THIRD-PARTY-LICENSES.html
copy LICENSE => python/licenses/x86_64-pc-windows-msvc/LICENSE (96%)
copy NOTICE => python/licenses/x86_64-pc-windows-msvc/NOTICE (100%)
create mode 100644
python/licenses/x86_64-pc-windows-msvc/THIRD-PARTY-LICENSES.html
copy LICENSE => python/licenses/x86_64-unknown-linux-gnu/LICENSE (96%)
copy NOTICE => python/licenses/x86_64-unknown-linux-gnu/NOTICE (100%)
create mode 100644
python/licenses/x86_64-unknown-linux-gnu/THIRD-PARTY-LICENSES.html
create mode 100644 third-party-licenses/README.md
create mode 100644 third-party-licenses/jieba-rs-v0.10.1.LICENSE
create mode 100644 third-party-licenses/python-jieba-v0.39.LICENSE
create mode 100644 tools/generate_license_reports.py
create mode 100644 tools/verify_java_jars.py
create mode 100644 tools/verify_python_wheels.py