Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Nov 1, 2025

This PR contains the following updates:

Package Change Age Confidence
@langchain/openai (source) 0.6.9 -> 0.6.16 age confidence

Release Notes

langchain-ai/langchainjs (@​langchain/openai)

v0.6.16

Compare Source

v0.6.15

Compare Source

v0.6.14

Compare Source

v0.6.13

Compare Source

v0.6.12

Compare Source

v0.6.11

Compare Source

v0.6.10

Compare Source


Configuration

📅 Schedule: Branch creation - Only on Sunday and Saturday ( * * * * 0,6 ) (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot requested a review from a team as a code owner November 1, 2025 16:34
@renovate renovate bot requested review from MH4GF, NoritakaIkeda, junkisai and sasamuku and removed request for a team November 1, 2025 16:34
@vercel
Copy link

vercel bot commented Nov 1, 2025

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Preview Comments Updated (UTC)
liam-app Ready Ready Preview Comment Nov 1, 2025 4:40pm
liam-assets Ready Ready Preview Comment Nov 1, 2025 4:40pm
liam-docs Ready Ready Preview Comment Nov 1, 2025 4:40pm
liam-storybook Ready Ready Preview Comment Nov 1, 2025 4:40pm
1 Skipped Deployment
Project Deployment Preview Comments Updated (UTC)
liam-erd-sample Skipped Skipped Nov 1, 2025 4:40pm

@giselles-ai
Copy link

giselles-ai bot commented Nov 1, 2025

Finished running flow.

Step 1
🟢
On Pull Request OpenedStatus: Success Updated: Nov 1, 2025 4:34pm
Step 2
🟢
gpt-5Status: Success Updated: Nov 1, 2025 4:35pm
Step 3
🟢
Create Pull Request CommentStatus: Success Updated: Nov 1, 2025 4:35pm

@vercel vercel bot temporarily deployed to Preview – liam-erd-sample November 1, 2025 16:34 Inactive
@coderabbitai
Copy link
Contributor

coderabbitai bot commented Nov 1, 2025

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


Comment @coderabbitai help to get the list of available commands and usage tips.

@giselles-ai
Copy link

giselles-ai bot commented Nov 1, 2025

Check changeset necessity

Status: NOT REQUIRED

Reason:

  • The PR only updates a dependency (@langchain/openai) in the internal package frontend/internal-packages/agent.
  • @liam-hq/agent is explicitly listed in the ignore list; changes to it do not require a changeset.
  • No target, published packages are affected: @liam-hq/cli, @liam-hq/erd-core, @liam-hq/schema, @liam-hq/ui remain unchanged.
  • The changes are not user-facing (dependency bump + lockfile updates only).

Changeset (copy & paste):

# No changeset required for this PR (changes only affect ignored package @liam-hq/agent).

@github-actions
Copy link
Contributor

github-actions bot commented Nov 1, 2025

🤖 Agent Deep Modeling Execution

Started at: 2025-11-01 16:38:34 UTC

View Details

Command Output

@liam-hq/[email protected] execute-deep-modeling /home/runner/work/liam/liam/frontend/internal-packages/agent
pnpm test:integration src/createGraph.integration.test.ts

@liam-hq/[email protected] test:integration /home/runner/work/liam/liam/frontend/internal-packages/agent
vitest --watch=false --passWithNoTests --config vitest.config.integration.ts src/createGraph.integration.test.ts

RUN v3.2.4 /home/runner/work/liam/liam/frontend/internal-packages/agent

(node:7742) ExperimentalWarning: WASI is an experimental feature and might change at any time
(Use node --trace-warnings ... to show where the warning was created)

✅ [INFO] 2025-11-01T16:38:37.464Z
LangSmith Trace URL: https://smith.langchain.com/o/eed4d2d8-0bd8-4ca4-a452-4da88ef63fd6/projects/p/9324fe51-27a4-4604-a52b-c6cc240f6dcc?searchModel=%7B%22filter%22%3A%22and(eq(is_root%2C%20true)%2C%20and(eq(metadata_key%2C%20%5C%22thread_id%5C%22)%2C%20eq(metadata_value%2C%20%5C%22531f09a1-bd3a-4534-8463-dfda355abfb2%5C%22)))%22%7D

⏺ (pm):

Purpose: Save analyzed requirements; Inputs: goal summary + categorized SQL test cases to validate the simple user management system.

🔧 processAnalyzedRequirementsTool() ⎿ processAnalyzedRequirementsTool: Requirements processed and streamed successfully

⏺ (db):

Purpose: Create schema for user management (extensions, enums, and tables for users, roles, user_roles, email_verifications, password_resets, audit_logs) with keys, FKs, checks, and uniqueness rules. Minimal inputs: extension name (citext), enum values, and full table definitions (columns, constraints, indexes).

Proceeding to apply migration operations now.

🔧 createMigrationTool()

⏺ (db):

Purpose: Re-create the user management schema fixing invalid CHECK/constraint SQL and implementing token uniqueness via (user_id, consumed) and partial-unique style indexes as index type strings. Minimal inputs: extension name, enum values, table definitions with valid checks and FKs. Proceeding to apply corrected migration.

🔧 createMigrationTool()

⏺ (db):

Purpose: Create corrected user management schema with is_active flag to support soft-delete uniqueness, valid CHECK constraints, and necessary FKs. Minimal inputs: extension 'citext', enum values for user_status, and full table definitions (users with is_active, roles, user_roles with cross-table check, email_verifications, password_resets, audit_logs).

🔧 createMigrationTool()

⏺ (db):

Purpose: Create corrected schema implementing DB-level prevention of assigning roles to soft-deleted users via composite FK (user_id, user_is_active) referencing users(id, is_active). Minimal inputs: citext extension, user_status enum, and tables users, roles, user_roles (with user_is_active), email_verifications, password_resets, audit_logs with valid checks and FKs.

🔧 createMigrationTool()

⏺ (db):

Purpose: Apply final corrected migration — create citext extension, user_status enum, and tables users, roles, user_roles (with composite unique on users(id,is_active) to allow composite FK), email_verifications, password_resets, and audit_logs. Minimal inputs: extension name, enum values, table definitions with valid constraints. Proceeding to apply migration.

🔧 createMigrationTool() ⎿ createMigrationTool: Schema successfully updated. The operations have been applied to the database schema, DDL validation successful (77/77 statements executed successfully), and new version created.x

⎯⎯⎯⎯⎯⎯⎯ Failed Tests 1 ⎯⎯⎯⎯⎯⎯⎯

FAIL src/createGraph.integration.test.ts > createGraph Integration > should execute complete workflow
GraphRecursionError: Recursion limit of 10 reached without hitting a stop condition. You can increase the limit by setting the "recursionLimit" config key.

Troubleshooting URL: https://langchain-ai.github.io/langgraphjs/troubleshooting/errors/GRAPH_RECURSION_LIMIT/

❯ CompiledStateGraph.runLoop ../../../node_modules/.pnpm/@langchain[email protected]@langchain+core@0.3.78_@opentelemetry+api@1.9.0_@opentelemet_d9329f4f45859f41058d0d025673ba3d/node_modules/@langchain/langgraph/src/pregel/index.ts:2250:15
❯ createAndRunLoop ../../../node_modules/.pnpm/@langchain+langgraph@0.4.9_@langchain+core@0.3.78_@opentelemetry+api@1.9.0_@opentelemet_d9329f4f45859f41058d0d025673ba3d/node_modules/@langchain/langgraph/src/pregel/index.ts:2092:9

⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯[1/1]⎯

Test Files 1 failed (1)
Tests 1 failed (1)
Start at 16:38:35
Duration 392.79s (transform 467ms, setup 0ms, collect 1.45s, tests 391.04s, environment 0ms, prepare 82ms)

 ELIFECYCLE  Command failed with exit code 1.
/home/runner/work/liam/liam/frontend/internal-packages/agent:
 ERR_PNPM_RECURSIVE_RUN_FIRST_FAIL  @liam-hq/[email protected] execute-deep-modeling: pnpm test:integration src/createGraph.integration.test.ts
Exit status 1

@junkisai junkisai closed this Nov 4, 2025
@junkisai junkisai deleted the renovate/langchain-openai-0.x branch November 4, 2025 02:20
@renovate
Copy link
Contributor Author

renovate bot commented Nov 4, 2025

Renovate Ignore Notification

Because you closed this PR without merging, Renovate will ignore this update (0.6.16). You will get a PR once a newer version is released. To ignore this dependency forever, add it to the ignoreDeps array of your Renovate config.

If you accidentally closed this PR, or if you changed your mind: rename this PR to get a fresh replacement PR.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants