-
Notifications
You must be signed in to change notification settings - Fork 619
Version Packages #7990
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Version Packages #7990
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
WalkthroughRemoves a changeset file, bumps the @thirdweb-dev/api package version from 0.0.2 to 0.0.3, and adds a corresponding 0.0.3 entry to the API package changelog. No code or API surface changes. Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes Suggested labels
✨ Finishing Touches🧪 Generate unit tests
🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. CodeRabbit Commands (Invoked using PR/Issue comments)Type Other keywords and placeholders
CodeRabbit Configuration File (
|
How to use the Graphite Merge QueueAdd either label to this PR to merge it via the merge queue:
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. |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #7990 +/- ##
=======================================
Coverage 56.63% 56.63%
=======================================
Files 904 904
Lines 58677 58677
Branches 4161 4161
=======================================
Hits 33231 33231
Misses 25340 25340
Partials 106 106
🚀 New features to boost your workflow:
|
There was a problem hiding this 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 (3)
packages/api/package.json (2)
50-61: Consider adding a size-limit budget in package.json (repo guideline).Helps track bundle regressions for the ESM entry; purely optional for this release PR.
Apply near the end of the file:
"scripts": { "build": "pnpm clean && pnpm build:cjs && pnpm build:esm && pnpm build:types", "build:cjs": "tsc --project ./tsconfig.build.json --module commonjs --outDir ./dist/cjs --verbatimModuleSyntax false && printf '{\"type\":\"commonjs\"}' > ./dist/cjs/package.json", "build:esm": "tsc --project ./tsconfig.build.json --module es2020 --outDir ./dist/esm && printf '{\"type\": \"module\",\"sideEffects\":false}' > ./dist/esm/package.json", "build:generate": "openapi-ts && pnpm format && pnpm fix", "build:types": "tsc --project ./tsconfig.build.json --module esnext --declarationDir ./dist/types --emitDeclarationOnly --declaration --declarationMap", "clean": "rimraf dist", "fix": "biome check --write ./src", "format": "biome format --write ./src", "lint": "biome check ./src" - } + }, + "size-limit": [ + { + "name": "esm entry", + "path": "dist/esm/exports/thirdweb.js", + "limit": "10 kB" + } + ] }
3-3: Version bump verified and release hygiene confirmed
- packages/api/package.json version 0.0.3 matches the top entry in CHANGELOG.md
- No remaining .changeset files reference @thirdweb-dev/api
- Advisory-only: package.json is missing a size-limit config; consider adding it per repo guidelines
packages/api/CHANGELOG.md (1)
3-8: Changelog entry reads well; consider stamping the release date for traceability.Optional: append the date to the version heading.
-## 0.0.3 +## 0.0.3 - 2025-09-05
📜 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.
📒 Files selected for processing (3)
.changeset/odd-rockets-sink.md(0 hunks)packages/api/CHANGELOG.md(1 hunks)packages/api/package.json(1 hunks)
💤 Files with no reviewable changes (1)
- .changeset/odd-rockets-sink.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/api/package.json
🧠 Learnings (2)
📓 Common learnings
Learnt from: CR
PR: thirdweb-dev/js#0
File: AGENTS.md:0-0
Timestamp: 2025-08-29T15:37:38.513Z
Learning: Applies to .changeset/*.md : Version bump rules: patch for non‑API changes; minor for new/modified public API
Learnt from: CR
PR: thirdweb-dev/js#0
File: AGENTS.md:0-0
Timestamp: 2025-08-29T15:37:38.513Z
Learning: Applies to .changeset/*.md : Each change in `packages/*` must include a changeset for the appropriate package
📚 Learning: 2025-08-29T15:37:38.513Z
Learnt from: CR
PR: thirdweb-dev/js#0
File: AGENTS.md:0-0
Timestamp: 2025-08-29T15:37:38.513Z
Learning: Applies to .changeset/*.md : Version bump rules: patch for non‑API changes; minor for new/modified public API
Applied to files:
packages/api/CHANGELOG.md
🪛 LanguageTool
packages/api/CHANGELOG.md
[grammar] ~7-~7: There might be a mistake here.
Context: ...://github.com/joaquim-verges)! - Update to latest API ## 0.0.2 ### Patch Changes...
(QB_NEW_EN)
⏰ 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: E2E Tests (pnpm, webpack)
- GitHub Check: Unit Tests
- GitHub Check: Lint Packages
- GitHub Check: E2E Tests (pnpm, esbuild)
- GitHub Check: Size
- GitHub Check: Analyze (javascript)
size-limit report 📦
|
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/[email protected]
Patch Changes
acbbf20Thanks @joaquim-verges! - Update to latest APIPR-Codex overview
This PR focuses on updating the version of the
@thirdweb-dev/apipackage from0.0.2to0.0.3and includes a new entry in theCHANGELOG.mdto document this change.Detailed summary
versionof@thirdweb-dev/apifrom0.0.2to0.0.3inpackage.json.CHANGELOG.mdfor version0.0.3with a patch change.#7470and commitacbbf20.Summary by CodeRabbit