Skip to content

build: web bundle for app v1.9.7#21

Merged
kilbot merged 1 commit into
mainfrom
release/1.9.10
Jul 15, 2026
Merged

build: web bundle for app v1.9.7#21
kilbot merged 1 commit into
mainfrom
release/1.9.10

Conversation

@kilbot

@kilbot kilbot commented Jul 15, 2026

Copy link
Copy Markdown
Contributor

Summary

Rebuilt web bundle from monorepo main at app version 1.9.7.

Ships since v1.9.9 (app 1.9.6): Receipt Data v1.1 savings fields (regular prices / per-line savings / total saved), receipt preview + printer fixes (thermal full-size printing, stale preview measurements), cashier-first coupon form with usage limits, segmented FormToggleGroup control, barcode first-keystroke fix.

Bundle: entry-c2227d0cbfc7e2fc95ee618499069ad1.js — verified embeds version":"1.9.7".

After merge: tag v1.9.10 manually (auto-tag workflow disabled) and purge jsDelivr @1.9 + @main.

@coderabbitai

coderabbitai Bot commented Jul 15, 2026

Copy link
Copy Markdown

Warning

Review limit reached

You’ve reached a temporary PR review limit under our Fair Usage Limits Policy.

Your recent review volume is higher than typical usage, so adaptive limits are currently applied.

Next review available in: 8 minutes

Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available.
You're only billed for reviews past your plan's rate limits ($0.25/file).

How can I continue?

After more reviews become available, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews.

How do review limits work?

CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability.

For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window.

Please refer docs for additional details.

Review details
⚙️ Run configuration

Configuration used: Repository: wcpos/coderabbit/.coderabbit.yaml

Review profile: CHILL

Plan: Pro Plus

Run ID: 866e48b4-bd28-4ddc-9e2b-ce06ad891744

📥 Commits

Reviewing files that changed from the base of the PR and between fc80d7a and a45c610.

📒 Files selected for processing (11)
  • build/_expo/static/css/global-2869660705b8c61d9ae37f1a0acba8c2.css
  • build/_expo/static/css/global-80cf08ff6ba4fedc139ba69a56a1f82f.css
  • build/_expo/static/js/web/chart-f5fe3fe6d37a898d86f831c2330e344d.js
  • build/_expo/static/js/web/device-adapter-af5d0b6ffeef49f6f95fc9582e8a0b92.js
  • build/_expo/static/js/web/entry-c2227d0cbfc7e2fc95ee618499069ad1.js
  • build/_expo/static/js/web/network-adapter-0879479aed50e75fc7c742490a426351.js
  • build/_expo/static/js/web/network-sweep-b029e0f81c00946f6f9ca8e8e58bead4.js
  • build/_expo/static/js/web/run-storage-migration-296e27edb8873760d7e0a41edfc03a38.js
  • build/_expo/static/js/web/verify-migration-d02c78dd097f5d1b2afa438c6bbf3b06.js
  • build/index.html
  • build/metadata.json
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch release/1.9.10

Comment @coderabbitai help to get the list of available commands.

@kilbot
kilbot merged commit 33224aa into main Jul 15, 2026
6 checks passed
@kilbot
kilbot deleted the release/1.9.10 branch July 15, 2026 17:52
@greptile-apps

greptile-apps Bot commented Jul 15, 2026

Copy link
Copy Markdown

Greptile Summary

This PR rebuilds the Expo web bundle for app version 1.9.7. The main changes are:

  • New hashed entry, CSS, and lazy-loaded bundles.
  • Receipt savings and printing updates.
  • Coupon form and usage-limit support.
  • Toggle-group and barcode input changes.
  • Updated HTML and Metro metadata references.

Confidence Score: 4/5

The startup asset reference and three changed input paths need fixes before merging.

  • A fresh deployment can request a common bundle that is absent from the committed output.
  • Single-select form controls cannot clear their current value.
  • Coupons can be saved without a usable discount amount.
  • Scanner framing characters can bypass the configured minimum payload length.

build/index.html and build/_expo/static/js/web/entry-c2227d0cbfc7e2fc95ee618499069ad1.js

Important Files Changed

Filename Overview
build/index.html Updates generated asset references but points to a common startup chunk absent from the committed output.
build/metadata.json Updates the primary bundle and stylesheet hashes consistently with committed files.
build/_expo/static/js/web/entry-c2227d0cbfc7e2fc95ee618499069ad1.js Adds the application changes, including reachable toggle, coupon validation, and barcode-length regressions.
build/_expo/static/css/global-80cf08ff6ba4fedc139ba69a56a1f82f.css Replaces the previous hashed global stylesheet and matches the generated references.

Comments Outside Diff (3)

  1. build/_expo/static/js/web/entry-c2227d0cbfc7e2fc95ee618499069ad1.js, line 4520 (link)

    P1 Empty Selection Is Discarded

    When a user presses the selected item in this single-select toggle group, the underlying control reports an empty value. The e && onChange?.(e) gate discards that transition, so controlled forms cannot clear the selection and continue to hold the previous value.

    Fix in Claude Code Fix in Codex

  2. build/_expo/static/js/web/entry-c2227d0cbfc7e2fc95ee618499069ad1.js, line 5414 (link)

    P1 Empty Coupon Amount Passes Validation

    The add-coupon form permits an empty amount and defaults it to an empty string. A cashier can therefore save a percentage or fixed-value coupon after entering only its code; discount calculation parses that amount as no usable value, leaving a coupon that applies a zero discount.

    Fix in Claude Code Fix in Codex

  3. build/_expo/static/js/web/entry-c2227d0cbfc7e2fc95ee618499069ad1.js, line 4982 (link)

    P1 Length Check Precedes Affix Removal

    With scanner prefixes or suffixes configured, the minimum-length check counts those framing characters before removing them. A scan whose payload is shorter than barcode_scanning_min_chars can pass validation and be searched as a shortened barcode, bypassing the configured guard and potentially selecting an unintended product.

    Fix in Claude Code Fix in Codex

Fix All in Claude Code Fix All in Codex

Reviews (1): Last reviewed commit: "build: web bundle for app v1.9.7" | Re-trigger Greptile

Comment thread build/index.html
<!-- The root element for your Expo app. -->
<div id="root"></div>
<script src="/__WCPOS_BASEURL_PLACEHOLDER_1781694192407_ngs0pw889l__/_expo/static/js/web/__expo-metro-runtime-1f8f5d3ca6b7f58204d51e14506d73fb.js" defer></script><script src="/__WCPOS_BASEURL_PLACEHOLDER_1781694192407_ngs0pw889l__/_expo/static/js/web/__common-31aaa17e0ef2d2ce9d9c0c517428925a.js" defer></script><script src="/__WCPOS_BASEURL_PLACEHOLDER_1781694192407_ngs0pw889l__/_expo/static/js/web/entry-07c700570e1139845e8a1da0751c3fe1.js" defer></script>
<script src="/__WCPOS_BASEURL_PLACEHOLDER_1784137810444_yclucfaur7n__/_expo/static/js/web/__expo-metro-runtime-1f8f5d3ca6b7f58204d51e14506d73fb.js" defer></script><script src="/__WCPOS_BASEURL_PLACEHOLDER_1784137810444_yclucfaur7n__/_expo/static/js/web/__common-a449943ff9002da3383e3c026fb95371.js" defer></script><script src="/__WCPOS_BASEURL_PLACEHOLDER_1784137810444_yclucfaur7n__/_expo/static/js/web/entry-c2227d0cbfc7e2fc95ee618499069ad1.js" defer></script>

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P1 Common Startup Chunk Is Missing

The new HTML requests __common-a449943ff9002da3383e3c026fb95371.js, but that hash is not included in the committed build output. Unless deployment supplies this exact file separately, a fresh load returns 404 for the common modules and the entry bundle cannot start.

Context Used: AGENTS.md (source)

Fix in Claude Code Fix in Codex

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.

1 participant