chore(deps): bump @swimlane/ngx-graph from 11.0.0 to 13.0.0 - #5878
Merged
norman-abramovitz merged 1 commit intoSep 2, 2026
Merged
Conversation
Supersedes the Dependabot PR (cloudfoundry#5874), whose build failed: ngx-graph 12 renamed the draggingEnabled input to enableDrag, and the Helm release resource graph binds it. Rename the binding, and swap the deprecated NgxGraphModule import for the standalone GraphComponent in the component and its spec. Fragment covers the rest of this Dependabot batch.
norman-abramovitz
approved these changes
Sep 2, 2026
norman-abramovitz
left a comment
Contributor
There was a problem hiding this comment.
LGTM - Will do live verify for helm endpoint testing
norman-abramovitz
approved these changes
Sep 2, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Supersedes #5874, whose Build Check failed:
ngx-graph 12 rewrote
GraphComponenton signal inputs and renameddraggingEnabled/panningEnabledtoenableDrag/enablePan(changelog).
The Helm release resource graph is the only consumer and binds only through
the template (
links,nodes,update$,zoomToFit$,layout, the nodeand link templates), all of which still exist under the same names in 13. So
the change is:
package.json/bun.lock: 11.0.0 to 13.0.0. The lockfile is byte-identicalto the one Dependabot generated.
[draggingEnabled]="false"to[enableDrag]="false"in the template.NgxGraphModuleis deprecated in 12; the component and its spec import thestandalone
GraphComponentinstead.[Chores]fragment covering this bump and the rest of today's Dependabotbatch (chore(deps): bump google.golang.org/grpc from 1.82.1 to 1.83.1 in /src/jetstream #5872, chore(deps-dev): bump mktemp from 2.0.3 to 2.0.4 #5873, chore(deps-dev): bump json-schema-to-typescript from 15.0.4 to 16.0.0 #5875, chore(deps-dev): bump eslint from 10.8.1 to 10.9.1 #5876, chore(deps-dev): bump copy-webpack-plugin from 13.0.1 to 14.0.0 #5877).
13.0.0 itself only widens the Angular peer range to
<23.Verified:
bun run build(the failing check) passes with no NG8002, thecomponent spec passes, and
make check gateis green. Not live-verified:the graph needs a Kubernetes endpoint with a Helm release, which the dev
stack does not have up right now.