Skip to content

Conversation

@GordonSmith
Copy link
Member

No description provided.

Signed-off-by: Gordon Smith <[email protected]>
@GordonSmith GordonSmith requested a review from Copilot October 20, 2025 07:28
Copy link

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

Purpose: Bump Graphviz, emsdk, and various dependency versions across the monorepo and synchronize associated test and documentation references.

  • Update Graphviz from 14.0.1 to 14.0.2 (vcpkg overlay, test expectation, README).
  • Update emsdk version from 4.0.15 to 4.0.17 (script and README).
  • Increment multiple devDependency versions across packages.

Reviewed Changes

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

Show a summary per file
File Description
vcpkg-overlays/graphviz/vcpkg.json Bumps Graphviz semver to 14.0.2 for vcpkg overlay.
vcpkg-overlays/graphviz/portfile.cmake Updates source SHA512 to match new Graphviz version.
tests/bundlers/package.json Updates bundler-related dependency versions.
scripts/cpp-install-emsdk.sh Bumps emsdk install version to 4.0.17.
packages/zstd/package.json Updates esbuild plugin devDependency version.
packages/wasm/package.json Updates esbuild plugin devDependency version.
packages/llama/package.json Updates esbuild plugin devDependency version.
packages/graphviz/tests/graphviz.spec.ts Adjusts test to expect new Graphviz version.
packages/graphviz/package.json Updates esbuild plugin devDependency version.
packages/expat/package.json Updates esbuild plugin devDependency version.
packages/duckdb/package.json Updates esbuild plugin devDependency version.
packages/base91/package.json Updates esbuild plugin devDependency version.
package.json Bumps multiple root-level devDependencies.
README.md Synchronizes displayed Graphviz and emsdk versions with bumps.

let v = graphviz.version();
expect(v).to.be.a.string;
expect(v).to.equal("14.0.1"); // Update README.md with the new version!!!
expect(v).to.equal("14.0.2"); // Update README.md with the new version!!!
Copy link

Copilot AI Oct 20, 2025

Choose a reason for hiding this comment

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

[nitpick] Hard-coding the exact version string makes this test require edits for every patch release. Consider deriving the expected value from a single source of truth (e.g., reading package.json's version or asserting a prefix like v.startsWith("14.0.")) to reduce churn.

Suggested change
expect(v).to.equal("14.0.2"); // Update README.md with the new version!!!
expect(v.startsWith("14.0.")).to.be.true; // Accept any patch version for 14.0.x

Copilot uses AI. Check for mistakes.
@GordonSmith GordonSmith merged commit 4ed68e3 into hpcc-systems:trunk Oct 20, 2025
4 of 8 checks passed
This was referenced Oct 20, 2025
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