This is an automated email from the ASF dual-hosted git repository.
manirajv06 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/yunikorn-release.git
The following commit(s) were added to refs/heads/master by this push:
new 86c1e86 [YUNIKORN-3328] Fix repository order in release-configs.json
(#232)
86c1e86 is described below
commit 86c1e86b8f90b970fc8f48969e19e36c03caf0f6
Author: PoiBlackTea <[email protected]>
AuthorDate: Tue Jul 21 20:52:42 2026 +0530
[YUNIKORN-3328] Fix repository order in release-configs.json (#232)
Fix the repository order in release-configs.json to correctly resolve
dependencies during the release build process. The scheduler-interface must be
loaded first because core and k8shim depend on it. This fixes the dependency
update failure during build-release.py.
Closes: #232
Signed-off-by: Manikandan R <[email protected]>
---
release-tools/release-configs.json | 21 ++++++++++++---------
1 file changed, 12 insertions(+), 9 deletions(-)
diff --git a/release-tools/release-configs.json
b/release-tools/release-configs.json
index c4d790b..c5c6b58 100644
--- a/release-tools/release-configs.json
+++ b/release-tools/release-configs.json
@@ -3,25 +3,28 @@
"version": "1.6.1"
},
"repositories": [
+ {
+ "name": "yunikorn-scheduler-interface",
+ "alias": "scheduler-interface",
+ "description": "the common scheduler interface that defines common
messages and protocols",
+ "tag": "v1.6.1",
+ "repository": "https://github.com/apache/yunikorn-scheduler-interface"
+ },
{
"name": "yunikorn-core",
"alias": "core",
"description": "scheduler core library",
"tag": "v1.6.1",
"repository": "https://github.com/apache/yunikorn-core"
- }, {
+ },
+ {
"name": "yunikorn-k8shim",
"alias": "k8shim",
"description": "the scheduler shim for K8s",
"tag": "v1.6.1",
"repository": "https://github.com/apache/yunikorn-k8shim"
- }, {
- "name": "yunikorn-scheduler-interface",
- "alias": "scheduler-interface",
- "description": "the common scheduler interface that defines common
messages and protocols",
- "tag": "v1.6.1",
- "repository": "https://github.com/apache/yunikorn-scheduler-interface"
- }, {
+ },
+ {
"name": "yunikorn-web",
"alias": "web",
"description": "the scheduler web UI",
@@ -29,4 +32,4 @@
"repository": "https://github.com/apache/yunikorn-web"
}
]
-}
+}
\ No newline at end of file
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]