-
Notifications
You must be signed in to change notification settings - Fork 619
Version Packages #7304
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 #7304
Conversation
|
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
WalkthroughThis update increments version numbers and changelogs for the Changes
Sequence Diagram(s)sequenceDiagram
participant Client
participant ServiceUtils
participant AuthServer
Client->>ServiceUtils: Request authentication (with allowImpersonation flag)
ServiceUtils->>AuthServer: Forward authentication request (include allowImpersonation flag)
AuthServer-->>ServiceUtils: Authentication response
ServiceUtils-->>Client: Return authentication result
🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
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 ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #7304 +/- ##
=======================================
Coverage 55.58% 55.58%
=======================================
Files 909 909
Lines 58683 58683
Branches 4163 4160 -3
=======================================
Hits 32617 32617
- Misses 25959 25960 +1
+ Partials 107 106 -1
🚀 New features to boost your workflow:
|
size-limit report 📦
|
d2f67be to
b1e5baa
Compare
b1e5baa to
f04d9a1
Compare
f04d9a1 to
e93030a
Compare
1a53fd4 to
b7ee87a
Compare
b7ee87a to
fa4bc25
Compare
fa4bc25 to
1fd16cb
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: 0
🧹 Nitpick comments (2)
packages/thirdweb/CHANGELOG.md (2)
13-13: Remove trailing punctuation in example headings
The headings “### Example:” at lines 13, 35, and 63 trigger markdownlint’s MD026 rule. Please remove the trailing colons for consistency with the project’s Markdown style.Also applies to: 35-35, 63-63
90-94: Correct nested bullet formatting under Patch Changes
The entry for PR #7315 currently reads- - Add support…, introducing an extra hyphen, and the fix forclassNameis shown as a separate top-level bullet. It’s clearer to group both changes under a single PR entry. Consider the following refactor:- - [#7315](https://github.com/thirdweb-dev/js/pull/7315) [`99d6b3b`](https://github.com/thirdweb-dev/js/commit/99d6b3b151c2af6f0df41513eff44931362d6b11) Thanks [@MananTank](https://github.com/MananTank)! - - Add support for blob urls in `MediaRenderer` component - - Fix `className` prop not set in loading state of `MediaRenderer` component + - [#7315](https://github.com/thirdweb-dev/js/pull/7315) [`99d6b3b`](https://github.com/thirdweb-dev/js/commit/99d6b3b151c2af6f0df41513eff44931362d6b11) Thanks [@MananTank](https://github.com/MananTank)! + - Add support for blob URLs in `MediaRenderer` component + - Fix `className` prop not set in loading state of `MediaRenderer` component
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (9)
.changeset/better-owls-flash.md(0 hunks).changeset/red-cooks-juggle.md(0 hunks).changeset/whole-ends-like.md(0 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(2 hunks)packages/wagmi-adapter/CHANGELOG.md(1 hunks)packages/wagmi-adapter/package.json(1 hunks)
💤 Files with no reviewable changes (3)
- .changeset/whole-ends-like.md
- .changeset/better-owls-flash.md
- .changeset/red-cooks-juggle.md
🚧 Files skipped from review as they are similar to previous changes (5)
- packages/wagmi-adapter/CHANGELOG.md
- packages/service-utils/package.json
- packages/service-utils/CHANGELOG.md
- packages/wagmi-adapter/package.json
- packages/thirdweb/package.json
🧰 Additional context used
🪛 markdownlint-cli2 (0.17.2)
packages/thirdweb/CHANGELOG.md
13-13: Trailing punctuation in heading
Punctuation: ':'
(MD026, no-trailing-punctuation)
35-35: Trailing punctuation in heading
Punctuation: ':'
(MD026, no-trailing-punctuation)
63-63: Trailing punctuation in heading
Punctuation: ':'
(MD026, no-trailing-punctuation)
⏰ Context from checks skipped due to timeout of 90000ms (8)
- GitHub Check: E2E Tests (pnpm, vite)
- GitHub Check: E2E Tests (pnpm, esbuild)
- GitHub Check: Size
- GitHub Check: Unit Tests
- GitHub Check: E2E Tests (pnpm, webpack)
- GitHub Check: Lint Packages
- GitHub Check: Build Packages
- GitHub Check: Analyze (javascript)
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
[email protected]
Minor Changes
#7354
ed81006Thanks @gregfromstl! - Adds new components BuyWidget, CheckoutWidget, and TransactionWidgetBuyWidget
A component that allows users to purchase tokens or NFTs directly within your application.
Example:
CheckoutWidget
A comprehensive checkout experience for purchasing digital assets with multiple payment options.
Example:
TransactionWidget
A widget for executing arbitrary blockchain transactions with a user-friendly interface.
Example:
Patch Changes
#7315
99d6b3bThanks @MananTank! - - Add support for blob urls inMediaRenderercomponentclassNameprop not set in loading state ofMediaRenderercomponent#7332
913ea98Thanks @MananTank! - FixNFTMetadatatype@thirdweb-dev/[email protected]
Patch Changes
6378f37Thanks @arcoraven! - chore: pass allowImpersonation to auth server@thirdweb-dev/[email protected]
PR-Codex overview
This PR primarily focuses on version updates and enhancements across several packages, including
@thirdweb-dev/service-utils,@thirdweb-dev/wagmi-adapter, andthirdweb. It introduces new widgets and improves existing components.Detailed summary
@thirdweb-dev/service-utilsto version0.9.13.@thirdweb-dev/wagmi-adapterto version0.2.93.thirdwebto version5.103.0.BuyWidget,CheckoutWidget, andTransactionWidgetcomponents.MediaRenderercomponent to support blob URLs and fixed loading state issues.NFTMetadatatype.Summary by CodeRabbit
New Features
Bug Fixes
Chores