-
Notifications
You must be signed in to change notification settings - Fork 574
Version Packages #7932
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
base: main
Are you sure you want to change the base?
Version Packages #7932
Conversation
The latest updates on your projects. Learn more about Vercel for GitHub.
|
WalkthroughRemoved a changeset entry and added changelog entries plus version bumps for several packages; no source code or public API changes were introduced. Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~3 minutes Possibly related PRs
Suggested labels
📜 Recent review detailsConfiguration used: CodeRabbit UI Review profile: CHILL Plan: Pro 💡 Knowledge Base configuration:
You can enable these sources in your CodeRabbit configuration. 📒 Files selected for processing (10)
💤 Files with no reviewable changes (2)
✅ Files skipped from review due to trivial changes (4)
🚧 Files skipped from review as they are similar to previous changes (3)
🧰 Additional context used🪛 LanguageToolpackages/nebula/CHANGELOG.md[grammar] ~7-~7: There might be a mistake here. (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). (8)
🔇 Additional comments (1)
✨ 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 #7932 +/- ##
==========================================
- Coverage 56.55% 56.54% -0.01%
==========================================
Files 904 904
Lines 58581 58581
Branches 4142 4139 -3
==========================================
- Hits 33128 33123 -5
- Misses 25347 25352 +5
Partials 106 106
🚀 New features to boost your workflow:
|
size-limit report 📦
|
0d8644d
to
4d0ede4
Compare
4d0ede4
to
ddf4485
Compare
ab0360f
to
9e21548
Compare
9e21548
to
02e938c
Compare
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: 1
📜 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 (9)
.changeset/fuzzy-bars-wish.md
(0 hunks)packages/nebula/CHANGELOG.md
(1 hunks)packages/nebula/package.json
(1 hunks)packages/service-utils/CHANGELOG.md
(1 hunks)packages/service-utils/package.json
(1 hunks)packages/thirdweb/CHANGELOG.md
(1 hunks)packages/thirdweb/package.json
(1 hunks)packages/wagmi-adapter/CHANGELOG.md
(1 hunks)packages/wagmi-adapter/package.json
(1 hunks)
💤 Files with no reviewable changes (1)
- .changeset/fuzzy-bars-wish.md
✅ Files skipped from review due to trivial changes (6)
- packages/wagmi-adapter/package.json
- packages/thirdweb/package.json
- packages/thirdweb/CHANGELOG.md
- packages/nebula/package.json
- packages/wagmi-adapter/CHANGELOG.md
- packages/service-utils/CHANGELOG.md
🚧 Files skipped from review as they are similar to previous changes (1)
- packages/service-utils/package.json
🧰 Additional context used
🪛 LanguageTool
packages/nebula/CHANGELOG.md
[grammar] ~7-~7: There might be a mistake here.
Context: ...fecb3054c03d952980a38842607300824a3bd)]: - [email protected] ## 0.2.37 ### Patch ...
(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). (7)
- GitHub Check: E2E Tests (pnpm, esbuild)
- GitHub Check: E2E Tests (pnpm, vite)
- GitHub Check: Unit Tests
- GitHub Check: Size
- GitHub Check: Lint Packages
- GitHub Check: E2E Tests (pnpm, webpack)
- GitHub Check: Analyze (javascript)
🔇 Additional comments (1)
packages/nebula/CHANGELOG.md (1)
3-9
: LGTM: Entry is consistent and scoped to a dependency bump.Version header, spacing, and bullet formatting match prior sections; no user-facing notes needed beyond the dependency update.
packages/nebula/CHANGELOG.md
Outdated
- Updated dependencies [[`76cfecb`](https://github.com/thirdweb-dev/js/commit/76cfecb3054c03d952980a38842607300824a3bd)]: | ||
- [email protected] |
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.
💡 Verification agent
🧩 Analysis chain
Double-check nebula’s thirdweb version across deps/peerDeps/devDeps.
Ensure all relevant fields align with 5.105.38 to avoid peer resolution warnings during installs.
Run:
🏁 Script executed:
#!/usr/bin/env bash
set -euo pipefail
file="packages/nebula/package.json"
echo "thirdweb in dependencies:"
jq -r '.dependencies.thirdweb // "<absent>"' "$file"
echo "thirdweb in peerDependencies:"
jq -r '.peerDependencies.thirdweb // "<absent>"' "$file"
echo "thirdweb in devDependencies:"
jq -r '.devDependencies.thirdweb // "<absent>"' "$file"
echo
echo "If nebula expects consumers to bring thirdweb, prefer pin in peerDependencies and matching devDependencies for local tests."
Length of output: 782
Pin thirdweb to v5.105.38 in peerDependencies and devDependencies
packages/nebula/package.json currently has thirdweb only as workspace:*
. Add:
"peerDependencies": { "thirdweb": "5.105.38" }
"devDependencies": { "thirdweb": "5.105.38" }
to match the CHANGELOG and prevent install‐time resolution warnings.
🧰 Tools
🪛 LanguageTool
[grammar] ~7-~7: There might be a mistake here.
Context: ...fecb3054c03d952980a38842607300824a3bd)]: - [email protected] ## 0.2.37 ### Patch ...
(QB_NEW_EN)
🤖 Prompt for AI Agents
In packages/nebula/package.json (lines ~1-200), package.json currently lists
thirdweb only as "workspace:*"; add explicit pinned entries to avoid resolution
warnings by adding "peerDependencies": { "thirdweb": "5.105.38" } and
"devDependencies": { "thirdweb": "5.105.38" } at the root of the JSON, ensuring
proper comma placement and preserving existing fields, then run a quick npm/yarn
install to verify no peer resolution warnings.
02e938c
to
4ab7a1f
Compare
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
76cfecb
,44e6e11
]:@thirdweb-dev/[email protected]
Patch Changes
d4a44f5
Thanks @jnsdls! - add reason code type into team capabilities response[email protected]
Patch Changes
#7936
76cfecb
Thanks @gregfromstl! - Updates copy on the payment widgets#7937
44e6e11
Thanks @gregfromstl! - Allows using the checkout widget without a wallet connected@thirdweb-dev/[email protected]
PR-Codex overview
This PR focuses on updating version numbers across several packages and providing changelogs for new releases, including dependency updates and bug fixes.
Detailed summary
version
inpackages/service-utils/package.json
from0.10.7
to0.10.8
.version
inpackages/thirdweb/package.json
from5.105.37
to5.105.38
.version
inpackages/nebula/package.json
from0.2.37
to0.2.38
.version
inpackages/wagmi-adapter/package.json
from0.2.134
to0.2.135
.packages/nebula/CHANGELOG.md
for version0.2.38
.packages/service-utils/CHANGELOG.md
for version0.10.8
.packages/thirdweb/CHANGELOG.md
for version5.105.38
.Summary by CodeRabbit