This is an automated email from the ASF dual-hosted git repository.
sxnan pushed a change to branch release-0.2
in repository https://gitbox.apache.org/repos/asf/flink-agents.git
discard 50434fd6 [AONE-80306915] Switch release-0.2 to internal version scheme
discard aa9ae88f [AONE-80306915] Add internal maintenance scripts
discard 4e7d32ce [AONE-80306915] Add internal fork workflow docs
add 71b49bce [infra] Download JARs from Maven Central during pip install
(#567)
add 2ace21f8 [infra] Update the script for sdist release (#574)
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 (50434fd6)
\
N -- N -- N refs/heads/release-0.2 (2ace21f8)
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 | 21 ++
.gitignore | 16 +-
INTERNAL_DEVELOPMENT.md | 364 ---------------------
README.md | 6 +-
api/pom.xml | 2 +-
dist/common/pom.xml | 11 +-
dist/flink-1.20/pom.xml | 6 +-
dist/flink-2.0/pom.xml | 6 +-
dist/flink-2.1/pom.xml | 7 +-
dist/flink-2.2/pom.xml | 7 +-
dist/pom.xml | 2 +-
docs/config.toml | 4 +-
docs/content/docs/get-started/installation.md | 9 +
.../pom.xml | 2 +-
.../pom.xml | 2 +-
.../pom.xml | 2 +-
e2e-test/pom.xml | 2 +-
examples/pom.xml | 2 +-
ide-support/pom.xml | 2 +-
integrations/chat-models/anthropic/pom.xml | 2 +-
integrations/chat-models/azureai/pom.xml | 2 +-
integrations/chat-models/ollama/pom.xml | 2 +-
integrations/chat-models/openai/pom.xml | 2 +-
integrations/chat-models/pom.xml | 2 +-
integrations/embedding-models/ollama/pom.xml | 2 +-
integrations/embedding-models/pom.xml | 2 +-
integrations/mcp/pom.xml | 2 +-
integrations/pom.xml | 2 +-
integrations/vector-stores/elasticsearch/pom.xml | 2 +-
integrations/vector-stores/pom.xml | 2 +-
plan/pom.xml | 2 +-
pom.xml | 2 +-
python/MANIFEST.in | 22 ++
python/_build_backend/backend.py | 183 +++++++++++
.../api => _build_backend/tests}/__init__.py | 0
python/_build_backend/tests/test_backend.py | 359 ++++++++++++++++++++
python/jar_manifest.json | 36 ++
python/pyproject.toml | 8 +-
runtime/pom.xml | 2 +-
tools/internal/README.md | 141 --------
tools/internal/create_release_branch.sh | 209 ------------
tools/internal/create_release_publish_branch.sh | 174 ----------
tools/internal/list_patches.sh | 128 --------
tools/internal/sync_upstream.sh | 246 --------------
tools/internal/update_version.sh | 127 -------
tools/releasing/create_binary_release.sh | 77 ++++-
tools/releasing/create_release_branch.sh | 2 +
tools/releasing/update_branch_version.sh | 2 +
tools/releasing/update_jar_manifest.sh | 95 ++++++
49 files changed, 843 insertions(+), 1467 deletions(-)
delete mode 100644 INTERNAL_DEVELOPMENT.md
create mode 100644 python/MANIFEST.in
create mode 100644 python/_build_backend/backend.py
copy python/{flink_agents/api => _build_backend/tests}/__init__.py (100%)
create mode 100644 python/_build_backend/tests/test_backend.py
create mode 100644 python/jar_manifest.json
delete mode 100644 tools/internal/README.md
delete mode 100755 tools/internal/create_release_branch.sh
delete mode 100755 tools/internal/create_release_publish_branch.sh
delete mode 100755 tools/internal/list_patches.sh
delete mode 100755 tools/internal/sync_upstream.sh
delete mode 100755 tools/internal/update_version.sh
create mode 100755 tools/releasing/update_jar_manifest.sh