Skip to content

TRAC-934: feat - implement pagination for catalyst logs query command#3124

Open
parthshahp wants to merge 1 commit into
canaryfrom
trac-934-catalyst-query-command
Open

TRAC-934: feat - implement pagination for catalyst logs query command#3124
parthshahp wants to merge 1 commit into
canaryfrom
trac-934-catalyst-query-command

Conversation

@parthshahp

@parthshahp parthshahp commented Jul 21, 2026

Copy link
Copy Markdown
Contributor

What/Why?

Adding the ability to paginate for the catalyst logs query command.

Testing

Tested via manually deploying a site and using the Catalyst CLI.

Screen.Recording.2026-07-22.at.8.40.14.AM.mov

Migration

No migration needed.

@changeset-bot

changeset-bot Bot commented Jul 21, 2026

Copy link
Copy Markdown

🦋 Changeset detected

Latest commit: e7ca7bb

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 2 packages
Name Type
@bigcommerce/catalyst-core Patch
@bigcommerce/catalyst Minor

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

@vercel

vercel Bot commented Jul 21, 2026

Copy link
Copy Markdown

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

Project Deployment Actions Updated (UTC)
catalyst Ready Ready Preview, Comment Jul 22, 2026 3:26pm

Request Review

@github-actions

Copy link
Copy Markdown
Contributor

Bundle Size Report

Comparing against baseline from b80584d (2026-07-21).

Metric Baseline Current Delta
Total JS 447.8 kB 435.4 kB -12.4 kB (-2.8%)

Per-Route First Load JS

Route Baseline Current Delta
/(default)/(auth)/change-password/page 332.5 kB 318.8 kB -13.7 kB (-4.1%)
/(default)/(auth)/login/forgot-password/page 331.6 kB 318 kB -13.6 kB (-4.1%)
/(default)/(auth)/login/page 332.1 kB 318.4 kB -13.7 kB (-4.1%)
/(default)/(auth)/register/page 368.3 kB 354.6 kB -13.7 kB (-3.7%)
/(default)/(faceted)/brand/[slug]/page 344.2 kB 330.5 kB -13.7 kB (-4%)
/(default)/(faceted)/category/[slug]/page 352.7 kB 339 kB -13.7 kB (-3.9%)
/(default)/(faceted)/search/page 344.2 kB 330.5 kB -13.7 kB (-4%)
/(default)/[...rest]/page 327.2 kB 313.5 kB -13.7 kB (-4.2%)
/(default)/account/addresses/page 371.7 kB 358 kB -13.7 kB (-3.7%)
/(default)/account/orders/[id]/page 335.3 kB 321.6 kB -13.7 kB (-4.1%)
/(default)/account/orders/page 336.3 kB 322.6 kB -13.7 kB (-4.1%)
/(default)/account/settings/page 373.2 kB 329.2 kB -44 kB (-11.8%)
/(default)/account/wishlists/[id]/page 350.1 kB 336.4 kB -13.7 kB (-3.9%)
/(default)/account/wishlists/page 345.1 kB 331.5 kB -13.6 kB (-3.9%)
/(default)/blog/[blogId]/page 327.2 kB 313.5 kB -13.7 kB (-4.2%)
/(default)/blog/page 328.2 kB 314.5 kB -13.7 kB (-4.2%)
/(default)/cart/page 348.9 kB 334.3 kB -14.6 kB (-4.2%)
/(default)/compare/page 339.3 kB 325.7 kB -13.6 kB (-4%)
/(default)/gift-certificates/balance/page 331.1 kB 317.5 kB -13.6 kB (-4.1%)
/(default)/gift-certificates/page 327.2 kB 313.5 kB -13.7 kB (-4.2%)
/(default)/gift-certificates/purchase/page 370.8 kB 357.1 kB -13.7 kB (-3.7%)
/(default)/page 344.3 kB 330.7 kB -13.6 kB (-4%)
/(default)/product/[slug]/page 400.2 kB 385.4 kB -14.8 kB (-3.7%)
/(default)/webpages/[id]/contact/page 369.2 kB 355.5 kB -13.7 kB (-3.7%)
/(default)/webpages/[id]/normal/page 335.3 kB 321.6 kB -13.7 kB (-4.1%)
/(default)/wishlist/[token]/page 340 kB 326.3 kB -13.7 kB (-4%)
/maintenance/page 316.5 kB 307.1 kB -9.4 kB (-3%)

Threshold: 5% increase. Routes with ⚠️ exceed the threshold.

@github-actions

github-actions Bot commented Jul 21, 2026

Copy link
Copy Markdown
Contributor

Unlighthouse Performance Comparison — Vercel

Comparing PR preview deployment Unlighthouse scores vs production Unlighthouse scores.

Summary Score

Aggregate score across all categories as reported by Unlighthouse.

Prod Desktop Prod Mobile Preview Desktop Preview Mobile
Score 90 93 92 95

Category Scores

Category Prod Desktop Prod Mobile Preview Desktop Preview Mobile
Performance 74 86 76 85
Accessibility 95 92 95 92
Best Practices 100 100 100 100
SEO 88 100 100 100

Core Web Vitals

Metric Prod Desktop Prod Mobile Preview Desktop Preview Mobile
LCP 3.6 s 4.2 s 3.7 s 4.3 s
CLS 0.05 0 0.001 0
FCP 1.2 s 1.2 s 1.2 s 1.2 s
TBT 20 ms 0 ms 0 ms 0 ms
Max Potential FID 70 ms 40 ms 40 ms 40 ms
Time to Interactive 3.7 s 4.2 s 3.7 s 4.3 s

Full Unlighthouse report →

@parthshahp
parthshahp marked this pull request as ready for review July 22, 2026 12:42
@parthshahp
parthshahp requested a review from a team as a code owner July 22, 2026 12:42
const TELEMETRY_KEY_ENABLED = 'telemetry.enabled';
const TELEMETRY_KEY_ID = `telemetry.anonymousId`;

// CLI telemetry is best-effort: command completion must never be delayed by a

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

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

This was causing problems when testing, let me know if I should remove this.

@parthshahp
parthshahp force-pushed the trac-934-catalyst-query-command branch from 88f6dd2 to e7ca7bb Compare July 22, 2026 15:25
@parthshahp
parthshahp changed the base branch from alpha to canary July 22, 2026 15:25
}

function projectsUrl(storeHash: string, apiHost: string) {
console.log(`https://${apiHost}/stores/${storeHash}/v3/infrastructure/projects`);

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

@parthshahp Should this be removed? Looks like it was for debugging?

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

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants