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

Various Fixes #60

Merged
merged 8 commits into from
Mar 11, 2025
Merged

Various Fixes #60

merged 8 commits into from
Mar 11, 2025

Conversation

tjprescott
Copy link
Owner

@tjprescott tjprescott commented Mar 7, 2025

TODO

  • Make --lhs/rhs-root a temp folder instead of relying on the user to specify a correct path.
  • Consider ramifications of the array sorting rule

@tjprescott tjprescott marked this pull request as ready for review March 11, 2025 18:13
@tjprescott tjprescott requested a review from Copilot March 11, 2025 18:54
@tjprescott tjprescott merged commit 511a159 into main Mar 11, 2025
1 check passed
@tjprescott tjprescott deleted the Fixes branch March 11, 2025 18:55
Copy link

@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 fixes issues related to unresolved local references containing dashes, improves handling for compiling TypeSpec by introducing temporary root folders, and updates documentation and versioning accordingly.

  • Implements a new rule to ignore equivalent arrays by sorting string arrays before comparison.
  • Updates diff-client and util modules to support temporary root folder creation and proper reference resolution.
  • Revises documentation (CHANGELOG and README) and bumps version to 0.2.0.

Reviewed Changes

Copilot reviewed 17 out of 17 changed files in this pull request and generated 1 comment.

Show a summary per file
File Description
src/rules/ignore-equivalent-arrays.ts Introduces a rule to ignore array diffs affected by sorting differences.
src/diff-client.ts Adds temporary folder logic for compiling TypeSpec and cleans up after processing.
src/util.ts Adjusts utility functions to pass and use rootPath; improves regex for local refs.
CHANGELOG.md & README.md Updates documentation to reflect the fixes and new CLI options.
src/version.ts Bumps version to 0.2.0.
src/main.ts Adds command line options for lhs-root and rhs-root.
Test files Updates tests to pass rootPath parameter and cover new sorting behavior.
src/definitions.ts Enhances error message text for unsupported allOf scenarios.
src/parser.ts Updates parser creation to accommodate the new rootPath parameter.
src/rules/rules.ts Adds ignoreEquivalentArrays to the list of applicable rules.
Comments suppressed due to low confidence (1)

src/util.ts:207

  • The regex update now includes a dash in the character set. Please verify that this change correctly captures all valid local reference patterns without matching unintended strings.
const localRefRegex = /"\$ref": "(#\/\w+\/[\w\-\.]+)"/gm;

// delete the tempRhsRoot if used
if (this.tempRhsRoot) {
console.warn(`WARN: Cleaning up temporary folder '${this.tempRhsRoot}'`);
fs.rmdirSync(this.tempRhsRoot, { recursive: true });
Copy link
Preview

Copilot AI Mar 11, 2025

Choose a reason for hiding this comment

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

Consider wrapping the temporary folder deletion in a try-catch block to handle potential filesystem errors during cleanup, ensuring that an exception does not disrupt the rest of the process.

Suggested change
fs.rmdirSync(this.tempRhsRoot, { recursive: true });
try {
fs.rmdirSync(this.tempRhsRoot, { recursive: true });
} catch (error) {
console.error(`ERROR: Failed to delete temporary folder '${this.tempRhsRoot}':`, error);
}

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

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.

Elements in an array are the same but in a different order and this is marked as a diff
1 participant