Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"watch": "esbuild src/main/resources/javascript/main.ts --bundle --outfile=target/classes/static/bundle.js --format=iife --platform=browser --target=es2015 --watch --alias:app-transport=./src/main/resources/javascript/connect.ts"
},
"dependencies": {
"@forge/bridge": "^6.1.1",
"@forge/bridge": "^6.2.0",
"react": "19.2.6",
"react-dom": "19.2.6",
"styled-components": "6.4.4"
Expand All @@ -23,7 +23,7 @@
"@types/react": "19.2.15",
"@types/react-dom": "19.2.3",
"esbuild": "^0.28.1",
"npm-check-updates": "^23.0.0",
"npm-check-updates": "^23.0.1",

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🩺 Stability & Availability | 🟡 Minor | ⚡ Quick win

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
set -euo pipefail

fd -H -t f . | rg '(^|/)(package\.json|package-lock\.json|\.nvmrc|\.node-version|\.tool-versions|Dockerfile.*|.*\.(yml|yaml))$' |
while IFS= read -r file; do
  rg -n -C2 'engines|node-version|setup-node|NODE_VERSION|22\.22\.2|24\.15\.0|>=26' "$file" || true
done

Repository: forge-sql-orm/atlassian-runtime-bridge

Length of output: 18077


🏁 Script executed:

#!/bin/bash
set -euo pipefail

echo "Tracked Node version files and frontend package.json engines/scripts:"
for f in .nvmrc .node-version .tool-versions; do
  if [ -f "$f" ]; then
    echo "--- $f"
    cat -n "$f"
  fi
done

echo "--- examples/atlassian-connect-forge-spring-boot-sample/frontend/package.json"
sed -n '1,80p' examples/atlassian-connect-forge-spring-boot-sample/frontend/package.json | cat -n

echo "--- Workflow YAML Node actions/Node versions"
fd -H -t f . | rg '(^|/)\.github/workflows/.*\.(yml|yaml)$' | while IFS= read -r file; do
  echo "--- $file"
  rg -n -C3 'setup-node|node-version|node-version-file|npm-check-updates|npm|node|20|22|24|26' "$file" || true
done

echo "--- Any npm-check-updates commands in workflows/package scripts"
rg -n 'npm-check-updates|ncu' Examples examples .github package.json examples/atlassian-connect-forge-spring-boot-sample/frontend/package.json || true

echo "--- git diff stat/name (if available)"
git diff --stat -- examples/atlassian-connect-forge-spring-boot-sample/frontend/package.json examples/atlassian-connect-forge-spring-boot-sample/frontend/package-lock.json 2>/dev/null || true
git diff -- examples/atlassian-connect-forge-spring-boot-sample/frontend/package.json 2>/dev/null | sed -n '1,120p' || true

Repository: forge-sql-orm/atlassian-runtime-bridge

Length of output: 6266


Raise the frontend Node baseline to match npm-check-updates@23.

examples/atlassian-connect-forge-spring-boot-sample/frontend/package-lock.json requires node: "^22.22.2 || ^24.15.0 || >=26.0.0" for npm-check-updates@23.0.1, but examples/atlassian-connect-forge-spring-boot-sample/frontend/package.json has no engines.node field and no tracked .nvmrc/.node-version. If older Node versions are supported, set the frontend Node baseline accordingly or keep a compatible NCU version.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@examples/atlassian-connect-forge-spring-boot-sample/frontend/package.json` at
line 26, Update the frontend package metadata to declare a Node.js baseline
compatible with npm-check-updates@23.0.1, using the engines.node field in
package.json or an equivalent tracked version file. If the project must support
older Node versions, instead pin npm-check-updates to a compatible release and
keep package.json and package-lock.json consistent.

"shx": "^0.4.0",
"typescript": "^7.0.2"
}
Expand Down
Loading