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
1 change: 1 addition & 0 deletions packages/connectors/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "@lobu/connectors",
"version": "9.2.0",
"private": true,
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🟠 Major

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Description: Check if bun.lock was modified in the same commit as package.json changes

# Get the commit SHA for this PR branch
COMMIT=$(git rev-parse HEAD)

# List files changed in the current commit
echo "Files changed in commit $COMMIT:"
git diff-tree --no-commit-id --name-only -r "$COMMIT" | grep -E '(bun\.lock|package\.json)'

# Check if bun.lock was modified
if git diff-tree --no-commit-id --name-only -r "$COMMIT" | grep -q "bun.lock"; then
  echo "✓ bun.lock was modified in this commit"
else
  echo "✗ WARNING: bun.lock was NOT modified in this commit"
  echo "  Coding guidelines require regenerating the lockfile alongside package.json changes"
fi

Repository: lobu-ai/lobu

Length of output: 259


Regenerate and commit bun.lock with the package.json change

packages/connectors/package.json was changed, but bun.lock was not modified in the same commit, so the required git submodule update --init packages/owletto && bun install --frozen-lockfile + lockfile commit step is missing.

Run git submodule update --init packages/owletto && bun install --frozen-lockfile and commit the regenerated bun.lock in the same change.

🤖 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 `@packages/connectors/package.json` at line 4, The package.json in
packages/connectors was modified (the "private": true change) but bun.lock was
not regenerated; run the required steps: update the submodule and regenerate the
lockfile with git submodule update --init packages/owletto && bun install
--frozen-lockfile, then stage and commit the updated bun.lock alongside the
package.json change so the lockfile matches the change to packages/connectors.

"license": "BUSL-1.1",
"type": "module",
"description": "Lobu memory connectors — third-party integration implementations built on @lobu/connector-sdk",
Expand Down
5 changes: 0 additions & 5 deletions release-please-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,6 @@
"path": "packages/openclaw-plugin/package.json",
"jsonpath": "$.version"
},
{
"type": "json",
"path": "packages/connectors/package.json",
"jsonpath": "$.version"
},
{
"type": "json",
"path": "packages/connector-worker/package.json",
Expand Down
1 change: 0 additions & 1 deletion scripts/bump-version.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ const PACKAGES = [
"packages/connector-sdk",
"packages/client",
"packages/openclaw-plugin",
"packages/connectors",
"packages/connector-worker",
"packages/embeddings",
];
Expand Down
1 change: 0 additions & 1 deletion scripts/publish-packages.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ const PACKAGES = [
transform: rewriteWorkspaceRefs,
clawhub: { slug: "lobu", displayName: "Lobu", family: "code-plugin" },
},
{ dir: "packages/connectors", transform: rewriteWorkspaceRefs },
{ dir: "packages/connector-worker", transform: rewriteWorkspaceRefs },
{ dir: "packages/promptfoo-provider", transform: rewriteWorkspaceRefs },
];
Expand Down
Loading