Version Packages (canary)#3082
Open
github-actions[bot] wants to merge 1 commit into
Open
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Contributor
Author
Bundle Size ReportComparing against baseline from No bundle size changes detected. |
Contributor
Author
Unlighthouse Performance Comparison — VercelComparing PR preview deployment Unlighthouse scores vs production Unlighthouse scores. Summary ScoreAggregate score across all categories as reported by Unlighthouse.
Category Scores
Core Web Vitals
|
2e19863 to
865ae79
Compare
865ae79 to
9ffa584
Compare
9ffa584 to
d4383c6
Compare
d4383c6 to
52ed33e
Compare
52ed33e to
0bc942b
Compare
0bc942b to
0cb6daa
Compare
0cb6daa to
384150c
Compare
384150c to
9581854
Compare
9581854 to
ee90862
Compare
ee90862 to
254efb9
Compare
254efb9 to
72a10d2
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
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 canary, this PR will be updated.
Releases
@bigcommerce/catalyst@1.1.0
Minor Changes
#3084
aadaf27Thanks @jorgemoya! - Add thecatalyst domains claimcommand, which claims ownership of a custom domain that is already in use on another store. When you try to add a domain bound to a different store,catalyst domains addnow prints the ownership-verification TXT record to publish; after publishing it, runcatalyst domains claim <domain>to release the domain from the other store and bind it to your project.#3089
8d9f9a9Thanks @jorgemoya! - Add thecatalyst domains transfercommand, which moves a custom domain from one project to another project in the same store (the same-store counterpart todomains claim). Pass--to-project-uuid <uuid>to target a specific project, or omit it to pick the destination interactively from your store's projects. Whencatalyst domains addfails because the domain is already bound to another project in the store, it now points you at the exactdomains transfercommand to move it instead of surfacing the raw API error.Patch Changes
ce03afbThanks @jorgemoya! - Stop framing clear, user-actionable CLI errors as bugs to report. Validation errors, not-found and not-enabled responses, conflicts, and bad command input now print just the message and exit, instead of appending a Correlation ID and a "share this with BigCommerce support" prompt. That framing is now reserved for genuine server-side (5xx) failures and unexpected errors. Applies across thedomains,project,channel,logs, andauthcommands via a sharedUserActionableErrortype.@bigcommerce/create-catalyst@2.0.1
Patch Changes
aadaf27,8d9f9a9,ce03afb]:@bigcommerce/catalyst-core@1.9.0
Minor Changes
#3083
2b7f2ccThanks @jorgemoya! - Display product videos (YouTube) on the PDP in a dedicated section below the primary product content, mirroring the Stencil/Cornerstone layout. The Storefront GraphQL API exposes product videos as a{ title, url }pair (Product.videos); Catalyst now fetches them and renders a featured player with a thumbnail strip (clicking a thumbnail swaps the featured video) usinglite-youtube-embed— a lightweight facade that loads the YouTube player only when a shopper clicks. A smallgetYouTubeId()helper extracts the video id from the watch URL the API returns.Migration
Additive — no breaking changes; existing PDP markup, the image gallery, and image pagination are unchanged. Forks adopting this manually need to:
lite-youtube-embeddependency;videos(first: 25) { edges { node { title url } } }on the PDP product query (product/[slug]/page-data.ts);ProductVideossection belowProductDetail(product/[slug]/page.tsx);i.ytimg.com/vi/**innext.config.tsimages.remotePatternsfor poster thumbnails.#3057
a763accThanks @bc-vivekaggarwal! - Wire promotion callouts into PDP and PLP pages using live data from the Storefront GraphQL API (featuredPromotionson theProducttype).Patch Changes
#3076
c6b3b07Thanks @chanceaclark! - Fix Account Settings failing to save for customers when a merchant-defined required custom customer field exists. BigCommerce revalidates required custom fields on everyupdateCustomercall, so Account Settings now renders and resubmits those fields (mirroring the existing Register/Address form-field support) instead of only supporting first name, last name, email, and company.#3087
cb7d025Thanks @jairo-bc! - Respect the Blog visibility setting (Control Panel > Storefront > Blogs) in the footer navigation. The Blog link no longer appears in the footer's "Navigate" section when Blog visibility is turned off.