Skip to content

Conversation

@joaquim-verges
Copy link
Member

@joaquim-verges joaquim-verges commented Sep 1, 2025

This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.

Releases

@thirdweb-dev/ai-sdk-provider@0.1.2

Patch Changes


PR-Codex overview

This PR updates the version of the ai-sdk-provider package from 0.1.1 to 0.1.2 and adds a new entry in the CHANGELOG.md to reflect the changes made in this version, specifically highlighting a fix related to automatic handling of session IDs.

Detailed summary

✨ Ask PR-Codex anything about this PR by commenting with /codex {your question}

Summary by CodeRabbit

  • Documentation

    • Added a changelog entry for version 0.1.2 of the AI SDK Provider, noting a patch update regarding automatic session ID handling.
  • Chores

    • Bumped AI SDK Provider package version from 0.1.1 to 0.1.2.
    • Removed an outdated changeset entry related to the patch release.

No functional or API changes were introduced in this PR.

@vercel
Copy link

vercel bot commented Sep 1, 2025

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

Project Deployment Preview Comments Updated (UTC)
docs-v2 Ready Ready Preview Comment Sep 1, 2025 5:53am
nebula Ready Ready Preview Comment Sep 1, 2025 5:53am
thirdweb_playground Ready Ready Preview Comment Sep 1, 2025 5:53am
thirdweb-www Ready Ready Preview Comment Sep 1, 2025 5:53am
wallet-ui Ready Ready Preview Comment Sep 1, 2025 5:53am

@graphite-app
Copy link
Contributor

graphite-app bot commented Sep 1, 2025

How to use the Graphite Merge Queue

Add either label to this PR to merge it via the merge queue:

  • merge-queue - adds this PR to the back of the merge queue
  • hotfix - for urgent hot fixes, skip the queue and merge this PR next

You must have a Graphite account in order to use the merge queue. Sign up using this link.

An organization admin has enabled the Graphite Merge Queue in this repository.

Please do not merge from GitHub as this will restart CI on PRs being processed by the merge queue.

@coderabbitai
Copy link
Contributor

coderabbitai bot commented Sep 1, 2025

Walkthrough

Removed a changeset entry, bumped packages/ai-sdk-provider version to 0.1.2, and added a corresponding 0.1.2 changelog entry. No source code or public API changes.

Changes

Cohort / File(s) Summary of changes
Changeset cleanup
\.changeset/pink-hands-find.md
Removed release-note metadata entry for a patch release; no code touched.
ai-sdk-provider release bump
packages/ai-sdk-provider/CHANGELOG.md, packages/ai-sdk-provider/package.json
Added 0.1.2 changelog entry noting "Auto handle session ids"; updated package version from 0.1.1 to 0.1.2.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~2 minutes

Suggested labels

packages, SDK

✨ Finishing Touches
🧪 Generate unit tests
  • Create PR with unit tests
  • Post copyable unit tests in a comment
  • Commit unit tests in branch changeset-release/main

🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.

Support

Need help? Create a ticket on our support page for assistance with any issues or questions.

CodeRabbit Commands (Invoked using PR/Issue comments)

Type @coderabbitai help to get the list of available commands.

Other keywords and placeholders

  • Add @coderabbitai ignore or @coderabbit ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Status, Documentation and Community

  • Visit our Status Page to check the current availability of CodeRabbit.
  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@codecov
Copy link

codecov bot commented Sep 1, 2025

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 56.52%. Comparing base (6ef2f3b) to head (a111fbe).
⚠️ Report is 1 commits behind head on main.

Additional details and impacted files
@@           Coverage Diff           @@
##             main    #7957   +/-   ##
=======================================
  Coverage   56.52%   56.52%           
=======================================
  Files         904      904           
  Lines       58623    58623           
  Branches     4146     4146           
=======================================
  Hits        33138    33138           
  Misses      25380    25380           
  Partials      105      105           
Flag Coverage Δ
packages 56.52% <ø> (ø)
🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 0

🧹 Nitpick comments (1)
packages/ai-sdk-provider/package.json (1)

59-59: Add a size-limit budget in package.json to track bundle size.

Per guidelines, please wire up size-limit for this package. Non-blocking for this release PR.

Apply something like:

 {
   "name": "@thirdweb-dev/ai-sdk-provider",
+  "size-limit": [
+    { "path": "dist/esm/exports/thirdweb.js", "limit": "5 KB" }
+  ],
   "scripts": {
     "build": "pnpm clean && pnpm build:cjs && pnpm build:esm && pnpm build:types",
+    "size": "size-limit"
   },
   "devDependencies": {
     "@ai-sdk/provider": "2.0.0",
     "@ai-sdk/provider-utils": "3.0.7",
     "@biomejs/biome": "2.0.6",
-    "rimraf": "6.0.1"
+    "rimraf": "6.0.1",
+    "size-limit": "^11.1.0",
+    "esbuild": "^0.21.0"
   }
 }
📜 Review details

Configuration used: CodeRabbit UI

Review profile: CHILL

Plan: Pro

💡 Knowledge Base configuration:

  • MCP integration is disabled by default for public repositories
  • Jira integration is disabled by default for public repositories
  • Linear integration is disabled by default for public repositories

You can enable these sources in your CodeRabbit configuration.

📥 Commits

Reviewing files that changed from the base of the PR and between 6ef2f3b and a111fbe.

📒 Files selected for processing (3)
  • .changeset/pink-hands-find.md (0 hunks)
  • packages/ai-sdk-provider/CHANGELOG.md (1 hunks)
  • packages/ai-sdk-provider/package.json (1 hunks)
💤 Files with no reviewable changes (1)
  • .changeset/pink-hands-find.md
🧰 Additional context used
📓 Path-based instructions (1)
**/package.json

📄 CodeRabbit inference engine (AGENTS.md)

Track bundle budgets via package.json#size-limit

Files:

  • packages/ai-sdk-provider/package.json
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (6)
  • GitHub Check: Unit Tests
  • GitHub Check: E2E Tests (pnpm, esbuild)
  • GitHub Check: E2E Tests (pnpm, vite)
  • GitHub Check: Lint Packages
  • GitHub Check: Size
  • GitHub Check: Analyze (javascript)
🔇 Additional comments (2)
packages/ai-sdk-provider/package.json (1)

59-59: Version bump looks good for release automation.

Patch release to 0.1.2 aligns with the changelog entry. No other manifest changes observed.

packages/ai-sdk-provider/CHANGELOG.md (1)

3-8: Changelog entry is clear and correctly references PR and commit.

No action needed.

@github-actions
Copy link
Contributor

github-actions bot commented Sep 1, 2025

size-limit report 📦

Path Size Loading time (3g) Running time (snapdragon) Total time
thirdweb (esm) 64.01 KB (0%) 1.3 s (0%) 394 ms (+66.88% 🔺) 1.7 s
thirdweb (cjs) 357.32 KB (0%) 7.2 s (0%) 1.9 s (+1.73% 🔺) 9 s
thirdweb (minimal + tree-shaking) 5.73 KB (0%) 115 ms (0%) 127 ms (+932.36% 🔺) 242 ms
thirdweb/chains (tree-shaking) 526 B (0%) 11 ms (0%) 64 ms (+1190.33% 🔺) 75 ms
thirdweb/react (minimal + tree-shaking) 19.15 KB (0%) 383 ms (0%) 118 ms (+220.37% 🔺) 501 ms

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

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants