Merged
Conversation
There was a problem hiding this comment.
1 issue found across 1 file
Prompt for AI agents (all issues)
Check if these issues are valid — if so, understand the root cause of each and fix them. If appropriate, use sub-agents to investigate and fix each issue separately.
<file name="lib/sync.ts">
<violation number="1" location="lib/sync.ts:299">
P2: Using `new Date(0)` sets ZIP entry timestamps to 1970, which is before the ZIP format’s minimum supported date (1980). Some ZIP tools reject or clamp these timestamps, so this can produce archives that aren’t portable. Consider normalizing to a supported deterministic date such as 1980-01-01.</violation>
</file>
Reply with feedback, questions, or to request a fix. Tag @cubic-dev-ai to re-run a review.
There was a problem hiding this comment.
1 issue found across 1 file (changes from recent commits).
Prompt for AI agents (all issues)
Check if these issues are valid — if so, understand the root cause of each and fix them. If appropriate, use sub-agents to investigate and fix each issue separately.
<file name="lib/sync.ts">
<violation number="1" location="lib/sync.ts:299">
P2: Using a timezone-less date string makes the ZIP entry timestamp depend on the local timezone, which breaks deterministic hashing across machines. Use an explicit UTC timestamp instead.</violation>
</file>
Reply with feedback, questions, or to request a fix. Tag @cubic-dev-ai to re-run a review.
There was a problem hiding this comment.
1 issue found across 1 file (changes from recent commits).
Prompt for AI agents (all issues)
Check if these issues are valid — if so, understand the root cause of each and fix them. If appropriate, use sub-agents to investigate and fix each issue separately.
<file name="tests/sync.test.ts">
<violation number="1" location="tests/sync.test.ts:340">
P3: The test depends on a transitive/internal module (`compress-commons/lib/archivers/zip/util`) without declaring `compress-commons` as a dependency. This is brittle and can break when dependency layouts change (e.g., pnpm or archiver updates). Consider adding `compress-commons` as a devDependency or using a supported public API.</violation>
</file>
Reply with feedback, questions, or to request a fix. Tag @cubic-dev-ai to re-run a review.
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.
Summary by cubic
Normalized zip entry dates to 1980-01-01 local midnight for deterministic archives and stable hashes. Files now use new Date('1980-01-01T00:00:00'); tests verify DOS timestamp consistency across timezones, confirm UTC-string drift, and were cleaned up.
Written for commit 17ff164. Summary will update on new commits.