Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Raise the file limit for debug artifacts by producing zip64 files where necessary #2842

Open
wants to merge 3 commits into
base: main
Choose a base branch
from

Conversation

henrymercer
Copy link
Contributor

The previous library only supported the original zip format, which is limited to 65535 files. This caused issues producing debug artifacts for codebases with large numbers of files.

Merge / deployment checklist

  • Confirm this change is backwards compatible with existing workflows.
  • Confirm the readme has been updated if necessary.
  • Confirm the changelog has been updated if necessary.

@Copilot Copilot bot review requested due to automatic review settings April 4, 2025 13:44
@henrymercer henrymercer requested a review from a team as a code owner April 4, 2025 13:44
Copy link
Contributor

@Copilot Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull Request Overview

This PR updates the debug artifacts creation process by replacing the AdmZip library with archiver to accommodate zip64 files for large debug artifacts.

  • Replaces AdmZip with archiver in both TypeScript and JavaScript files
  • Implements asynchronous zip creation through archiver to support a higher file limit

Reviewed Changes

Copilot reviewed 36 out of 37 changed files in this pull request and generated 2 comments.

File Description
src/debug-artifacts.ts Replaces AdmZip with archiver and sets up error/warning event handlers
lib/debug-artifacts.js Mirrors the change in the TypeScript file for JavaScript usage
Files not reviewed (1)
  • package.json: Language not supported

Tip: Copilot only keeps its highest confidence comments to reduce noise and keep you focused. Learn more

zip.addLocalFolder(databasePath);
zip.writeZip(databaseBundlePath);
const output = fs.createWriteStream(databaseBundlePath);
const zip = (0, archiver_1.default)("zip");
Copy link
Preview

Copilot AI Apr 4, 2025

Choose a reason for hiding this comment

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

The PR title indicates support for large numbers of files with zip64; consider enabling zip64 explicitly by passing {forceZip64: true} to archiver to ensure the archive correctly supports large file sets.

Suggested change
const zip = (0, archiver_1.default)("zip");
const zip = (0, archiver_1.default)("zip", { zlib: { level: 9 }, forceZip64: true });

Copilot is powered by AI, so mistakes are possible. Review output carefully before use.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Suggestion in compiled code.

@henrymercer henrymercer added the Update dependencies Trigger PR workflow to update dependencies label Apr 4, 2025
@github-actions github-actions bot removed the Update dependencies Trigger PR workflow to update dependencies label Apr 4, 2025
Copy link
Contributor

github-actions bot commented Apr 4, 2025

Pushed a commit to update the checked-in dependencies. Please mark the PR as ready for review to trigger PR checks.

@github-actions github-actions bot marked this pull request as draft April 4, 2025 13:46
@henrymercer henrymercer marked this pull request as ready for review April 4, 2025 13:47
Comment on lines 354 to 356
zip.on("warning", (err) => {
throw err;
});
Copy link
Contributor

Choose a reason for hiding this comment

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

Two questions:

  1. In what cases will there be a warning and is this really something we want to raise an error on?
  2. What will happen if an error is thrown? Where will it be caught and will it be properly handled?

Copy link
Contributor

Choose a reason for hiding this comment

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

Looking at the sample code in the packge, the recommendation is something like this:

  if (err.code === "ENOENT") {
    // log warning
  } else {
    // throw error
    throw err;
  }

I'll update.

Comment on lines 354 to 356
zip.on("warning", (err) => {
throw err;
});
Copy link
Contributor

Choose a reason for hiding this comment

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

Looking at the sample code in the packge, the recommendation is something like this:

  if (err.code === "ENOENT") {
    // log warning
  } else {
    // throw error
    throw err;
  }

I'll update.

});

zip.on("warning", (err) => {
throw err;
Copy link
Contributor

Choose a reason for hiding this comment

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

Suggested change
throw err;
// Ignore ENOENT warnings. There's nothing anyone can do about it.
if (err.code !== "ENOENT") {
throw err;
}

@aeisenberg
Copy link
Contributor

I pushed the change since Henry is on vacation now.

Copy link
Contributor

@angelapwen angelapwen left a comment

Choose a reason for hiding this comment

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

:shipit:

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.

4 participants