-
Notifications
You must be signed in to change notification settings - Fork 296
fix(RHOAIENG-55746): rename odh-u-spin to ai-u-spin #7362
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -102,7 +102,7 @@ | |
| "@patternfly/react-templates": "^6.3.1", | ||
| "immer": "^11.1.3", | ||
| "mod-arch-core": "^1.2.0", | ||
| "mod-arch-shared": "^1.2.0", | ||
| "mod-arch-shared": "^1.15.4", | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chain🏁 Script executed: #!/bin/bash
set -euo pipefail
echo "== Published metadata for mod-arch-shared@1.15.4 =="
npm view mod-arch-shared@1.15.4 version peerDependencies dependencies --json
echo
echo "== Local gen-ai imports from mod-arch-shared =="
rg -n -C2 --type=ts --type=tsx "from ['\"]mod-arch-shared['\"]|import\\(['\"]mod-arch-shared['\"]\\)" packages/gen-ai/frontend/src || true
echo
echo "== Lockfile/package references to mod-arch-shared =="
fd -t f 'package-lock\.json$|npm-shrinkwrap\.json$|package\.json$' | while read -r file; do
if rg -q '"mod-arch-shared"|node_modules/mod-arch-shared' "$file"; then
echo ">>> $file"
rg -n -C2 '"mod-arch-shared"|node_modules/mod-arch-shared' "$file"
fi
done
echo
echo "== Inspect published package declarations for expected exports =="
tmpdir="$(mktemp -d)"
trap 'rm -rf "$tmpdir"' EXIT
tarball="$(npm pack --silent mod-arch-shared@1.15.4 --pack-destination "$tmpdir")"
tar -xzf "$tmpdir/$tarball" -C "$tmpdir"
rg -n -C2 \
"DashboardEmptyTableView|useCheckboxTableBase|K8sResourceCommon|ApplicationsPage|EmptyStateErrorMessage|\\bTable\\b" \
"$tmpdir/package" \
--glob '*.d.ts' \
--glob '*.ts' \
--glob '*.tsx' \
--glob '*.js' \
--glob '*.mjs' \
--glob '*.cjs' || trueRepository: opendatahub-io/odh-dashboard Length of output: 30740 Peer dependency mismatch will cause install failure. Line 105 declares 🤖 Prompt for AI Agents |
||
| "react": "^18.3.1", | ||
| "react-dom": "^18.3.1", | ||
| "react-router": "^7.12.0", | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🏁 Script executed:
Repository: opendatahub-io/odh-dashboard
Length of output: 492
🌐 Web query:
mod-arch-shared changelog 1.6.0 through 1.15.4 breaking changes💡 Result:
No breaking changes identified in mod-arch-shared from versions 1.6.0 through the latest available (1.10.1 as of 2026-03-04). The project uses semantic versioning with automated minor and patch releases via semantic-release. Major versions (breaking changes) require manual release and are blocked from automation; no major versions in this range. Key changes observed: - Dependency updates (e.g., lodash-es 4.17.21 -> 4.17.23, ajv 6.12.6 -> 6.14.0) - typically non-breaking. - New components added (e.g., FieldGroupHelpLabelIcon, manage columns abstraction). - Bug fixes (e.g., cross-work dependencies, theming scopes). - Release process improvements. Major architectural shift: Split from monolithic 'mod-arch-shared' to separate packages mod-arch-core, mod-arch-shared, mod-arch-kubeflow. Previously: npm install mod-arch-shared. Now: npm install mod-arch-core mod-arch-shared mod-arch-kubeflow. Update imports accordingly (e.g., core providers from mod-arch-core, components from mod-arch-shared). Review individual release notes and compare views for full details: - https://github.com/opendatahub-io/mod-arch-library/releases - opendatahub-io/mod-arch-library@1.6.0...1.8.0 - opendatahub-io/mod-arch-library@1.10.0...1.10.1 No evidence of version 1.15.4; highest found is 1.10.1. Packages published to npm as monorepo.
Citations:
🏁 Script executed:
Repository: opendatahub-io/odh-dashboard
Length of output: 2361
🏁 Script executed:
Repository: opendatahub-io/odh-dashboard
Length of output: 1583
🏁 Script executed:
Repository: opendatahub-io/odh-dashboard
Length of output: 12501
Fix mod-arch-shared version specification — 1.15.4 does not exist.
The caret constraint
^1.15.4points to a non-existent version. The latest released version is 1.10.1 (as of March 2026), with 1.11.0 available in some lock files. npm silently falls back to 1.9.1, creating a mismatch between package.json intent and actual installations. Lock files across packages (automl: 1.9.1, autorag: 1.11.0) confirm inconsistent resolution. Update to a valid version that exists on npm.🤖 Prompt for AI Agents