Skip to content
Open
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
2 changes: 1 addition & 1 deletion components/github/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"author": "Pipedream <support@pipedream.com> (https://pipedream.com/)",
"dependencies": {
"@octokit/core": "^4.2.4",
"@octokit/plugin-paginate-rest": "^2.17.0",
"@octokit/plugin-paginate-rest": "^9.2.2",
Comment on lines 13 to +14
Copy link
Contributor

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🔴 Critical

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash

# Check the actual package.json file first
echo "=== Current package.json dependencies ==="
cat components/github/package.json | grep -A 2 "@octokit"

echo ""
echo "=== Fetching peerDependencies for @octokit/plugin-paginate-rest v9.2.2 ==="
npm view "@octokit/plugin-paginate-rest@9.2.2" peerDependencies --json 2>/dev/null || echo "npm view failed, trying alternative method"

echo ""
echo "=== Package info for @octokit/plugin-paginate-rest v9.2.2 ==="
npm view "@octokit/plugin-paginate-rest@9.2.2" --json 2>/dev/null | jq '.peerDependencies // .peerDeps // "No peerDependencies field"'

Repository: PipedreamHQ/pipedream

Length of output: 466


Update @octokit/core to v5 to resolve peer dependency conflict.

@octokit/plugin-paginate-rest v9.2.2 has a peer dependency requirement of @octokit/core v5, but package.json currently specifies @octokit/core ^4.2.4. This version mismatch will cause peer dependency conflicts during installation. Update line 13 to "@octokit/core": "^5.0.0" or later to satisfy the peer dependency constraint.

🤖 Prompt for AI Agents
In components/github/package.json around lines 13 to 14, the @octokit/core
dependency is pinned to ^4.2.4 which conflicts with
@octokit/plugin-paginate-rest v9.2.2's peer requirement of @octokit/core v5;
update the @octokit/core entry to a v5-compatible range such as "^5.0.0" (or
later) in package.json and run npm/yarn install to verify the peer dependency
conflict is resolved.

"@octokit/webhooks-definitions": "^3.29.0",
"@pipedream/platform": "^3.1.1"
},
Expand Down
150 changes: 106 additions & 44 deletions pnpm-lock.yaml

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

Loading