Release v26.4.0#190
Merged
Merged
Conversation
Agent-Logs-Url: https://github.com/jgphilpott/polyslice/sessions/79635702-0828-4078-8f0c-6371321e946d Co-authored-by: jgphilpott <4128208+jgphilpott@users.noreply.github.com>
Copilot created this pull request from a session on behalf of
jgphilpott
April 19, 2026 04:56
View session
jgphilpott
approved these changes
Apr 19, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
Release prep for v26.4.0, capturing the merged support-configuration work from PR #189 and updating dependency versions accordingly.
Changes:
- Bump package version to
26.4.0. - Update dependencies/devDependencies (
@jgphilpott/polytreeandeslint) and refresh lockfile. - Add
26.4.0release notes toCHANGELOG.md.
Reviewed changes
Copilot reviewed 2 out of 3 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| package.json | Version bump and dependency updates for the v26.4.0 release. |
| package-lock.json | Lockfile updated to reflect new package/dependency versions. |
| CHANGELOG.md | Adds the v26.4.0 entry describing the new support configuration options. |
Comment on lines
67
to
71
| "@jgphilpott/polyconvert": "^1.0.7", | ||
| "@jgphilpott/polytree": "^0.1.8", | ||
| "@jgphilpott/polytree": "^0.1.9", | ||
| "polygon-clipping": "^0.15.7", | ||
| "three": "^0.184.0", | ||
| "three-subdivide": "^1.1.5" |
There was a problem hiding this comment.
three is listed as a dependency at ^0.184.0, but peerDependencies.three is still ^0.183.2 (which excludes 0.184.x). This will trigger peer dependency conflicts for consumers (and can fail installs with strict peer dep resolution). Update the peerDependencies range for three to include 0.184.x (e.g., align it with the dependency), and regenerate package-lock.json accordingly.
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.
First release of April 2026, covering PR #189 merged since v26.3.1.
Version
package.json:26.3.1→26.4.0CHANGELOG highlights
Added
supportGap(PR Add support configuration options: supportGap, supportDensity, and tree support settings #189) — shared by normal and tree support; replaces the previously hardcodednozzleDiameter / 2lateral gap. Default0.2mm preserves existing behaviour.supportDensity(PR Add support configuration options: supportGap, supportDensity, and tree support settings #189) — normal support grid density as a percentage (0–100). Default50matches the previously hardcoded spacing equivalent;0short-circuits to no support lines.supportRootsEnabled(PR Add support configuration options: supportGap, supportDensity, and tree support settings #189) — boolean toggle for tree-support root structures. Defaulttrue.supportRootCount(PR Add support configuration options: supportGap, supportDensity, and tree support settings #189) — number of radial roots at the trunk base (1–8). Default4.supportBranchAngle(PR Add support configuration options: supportGap, supportDensity, and tree support settings #189) — angle (degrees, (0°, 90°)) of branches rising from the trunk. Default45.supportTwigAngle(PR Add support configuration options: supportGap, supportDensity, and tree support settings #189) — angle (degrees, (0°, 90°)) of twigs rising from branch nodes to contact tips. Default45.All six options default to the values previously hardcoded, so no existing behaviour is affected.