| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Sorry, something went wrong.
WalkthroughThe version tag in the codebase was updated from "v4.5.7" to "v4.5.8". Additionally, the logic for updating the rollup_status field in the database was modified to use a conditional SQL statement, ensuring certain statuses are not overwritten, and removing the previous early exit check. The related test was updated to reflect the new expected commit transaction hash. Changes
Sequence Diagram(s)sequenceDiagram
participant Caller
participant ORM
participant Database
Caller->>ORM: UpdateCommitTxHashAndRollupStatus(batchID, txHash, status)
ORM->>Database: Execute SQL UPDATE with CASE on rollup_status
Database-->>ORM: Update result
ORM-->>Caller: Return result
Possibly related PRs
Suggested labelsbump-version Suggested reviewers
Poem
📜 Recent review details Configuration used: CodeRabbit UI Reviewing files that changed from the base of the PR and between f831e30 and 5ae47ec. 📒 Files selected for processing (1)
rollup/internal/orm/orm_test.go (1)✨ Finishing Touches
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. ❤️ Share 🪧 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 (.coderabbit.yaml)
Documentation and Community
|
Sorry, something went wrong.
Codecov Report✅ All modified and coverable lines are covered by tests. @@ Coverage Diff @@
## develop #1656 +/- ##
========================================
Coverage 40.67% 40.68%
========================================
Files 225 225
Lines 18417 18415 -2
========================================
+ Hits 7492 7493 +1
+ Misses 10193 10191 -2
+ Partials 732 731 -1
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry.
|
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
Purpose or design rationale of this PR
When the status is "finalizing" or "finalized", other info fields of the commit status should still be updated.
PR title
Your PR title must follow conventional commits (as we are doing squash merge for each PR), so it must start with one of the following types:
Deployment tag versioning
Has tag in common/version.go been updated or have you added bump-version label to this PR?
Breaking change label
Does this PR have the breaking-change label?
Summary by CodeRabbit
Chores
Bug Fixes