Skip to content

Bump langsmith from 0.3.73 to 0.5.18 in /frontend/internal-packages/schema-bench#4077

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/frontend/internal-packages/schema-bench/langsmith-0.5.18
Closed

Bump langsmith from 0.3.73 to 0.5.18 in /frontend/internal-packages/schema-bench#4077
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/frontend/internal-packages/schema-bench/langsmith-0.5.18

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Apr 10, 2026

Bumps langsmith from 0.3.73 to 0.5.18.

Release notes

Sourced from langsmith's releases.

v0.5.2

What's Changed

Full Changelog: langchain-ai/langsmith-sdk@v0.5.1...v0.5.2

v0.5.1

What's Changed

New Contributors

Full Changelog: langchain-ai/langsmith-sdk@v0.5.0...v0.5.1

v0.5.0

What's Changed

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for langsmith since your current version.

Install script changes

This version modifies prepublish script that runs during installation. Review the package contents before updating.


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Open with Devin

Bumps [langsmith](https://github.com/langchain-ai/langsmith-sdk) from 0.3.73 to 0.5.18.
- [Release notes](https://github.com/langchain-ai/langsmith-sdk/releases)
- [Commits](https://github.com/langchain-ai/langsmith-sdk/commits)

---
updated-dependencies:
- dependency-name: langsmith
  dependency-version: 0.5.18
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Apr 10, 2026
@dependabot dependabot Bot requested a review from a team as a code owner April 10, 2026 20:32
@dependabot dependabot Bot requested review from NoritakaIkeda and sasamuku and removed request for a team April 10, 2026 20:32
@giselles-ai
Copy link
Copy Markdown

giselles-ai Bot commented Apr 10, 2026

Finished running flow.

Step 1
🟢
On Pull Request OpenedStatus: Success Updated: Apr 10, 2026 8:32pm
Step 2
🟢
gpt-5Status: Success Updated: Apr 10, 2026 8:33pm
Step 3
🟢
Create Pull Request CommentStatus: Success Updated: Apr 10, 2026 8:33pm

@vercel
Copy link
Copy Markdown

vercel Bot commented Apr 10, 2026

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

Project Deployment Actions Updated (UTC)
liam-app Error Error Apr 10, 2026 8:32pm
liam-assets Error Error Apr 10, 2026 8:32pm
liam-storybook Error Error Apr 10, 2026 8:32pm
2 Skipped Deployments
Project Deployment Actions Updated (UTC)
liam-docs Ignored Ignored Preview Apr 10, 2026 8:32pm
liam-erd-sample Skipped Skipped Apr 10, 2026 8:32pm

Request Review

@giselles-ai
Copy link
Copy Markdown

giselles-ai Bot commented Apr 10, 2026

Check changeset necessity

Status: NOT REQUIRED

Reason:

  • The only affected package is @liam-hq/schema-bench (path: frontend/internal-packages/schema-bench), which is explicitly listed in the ignored packages.
  • This PR only bumps a third-party dependency (langsmith 0.3.73 → 0.5.18) for an internal benchmarking tool.
  • No changes to target packages that require changesets: @liam-hq/cli, @liam-hq/erd-core, @liam-hq/schema, or @liam-hq/ui.
  • No user-facing behavior, API, or performance changes to published packages.

Changeset (copy & paste):

<!-- No changeset required: dependency update in ignored package @liam-hq/schema-bench -->

Copy link
Copy Markdown
Contributor

@devin-ai-integration devin-ai-integration Bot left a comment

Choose a reason for hiding this comment

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

Devin Review found 1 potential issue.

View 1 additional finding in Devin Review.

Open in Devin Review

"@liam-hq/schema": "workspace:*",
"dotenv": "16.5.0",
"langsmith": "0.3.73",
"langsmith": "0.5.18",
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

🔴 pnpm-lock.yaml not updated after langsmith version bump

The package.json bumps langsmith from 0.3.73 to 0.5.18, but the pnpm-lock.yaml was not updated — it still references specifier: 0.3.73 for both the schema-bench and agent packages. Running pnpm install --frozen-lockfile (as CI typically does) will fail because the lockfile is out of sync with package.json. This is a major semver jump (0.3 → 0.5) that also likely involves breaking API changes to imports like evaluate from langsmith/evaluation, Client from langsmith, EvaluatorT from langsmith/evaluation, and Run/Example from langsmith/schemas (used in frontend/internal-packages/schema-bench/src/langsmith/schemaEvaluator.ts:2-3 and frontend/internal-packages/schema-bench/src/cli/evaluateWithLangsmith.ts:6).

Prompt for agents
The pnpm-lock.yaml file was not regenerated after bumping langsmith from 0.3.73 to 0.5.18 in frontend/internal-packages/schema-bench/package.json. This will cause CI failures when running pnpm install --frozen-lockfile. Run pnpm install to regenerate the lockfile and commit the updated pnpm-lock.yaml. Additionally, since this is a major version jump (0.3 to 0.5), verify that the langsmith API is still compatible with the current usage: evaluate from langsmith/evaluation, Client from langsmith, EvaluatorT from langsmith/evaluation, and Run/Example from langsmith/schemas (used in schemaEvaluator.ts and evaluateWithLangsmith.ts and uploadDatasetToLangsmith.ts). Check the langsmith changelog for breaking changes between 0.3 and 0.5.
Open in Devin Review

Was this helpful? React with 👍 or 👎 to provide feedback.

@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Apr 16, 2026

Superseded by #4083.

@dependabot dependabot Bot closed this Apr 16, 2026
@dependabot dependabot Bot deleted the dependabot/npm_and_yarn/frontend/internal-packages/schema-bench/langsmith-0.5.18 branch April 16, 2026 01:54
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants