Conversation
Performance-focused release with critical optimizations to hot paths, array operations, circular reference detection, and test execution. Changes: - Update all package versions to 0.1.8 - Add v0.1.8 entry to CHANGELIST.md with full details - Update recommended version in all README and documentation files (0.1.7 → 0.1.8) Key performance improvements include: - Remove objDefine getters from hot path properties - Replace O(n²) splice operations with O(n) boolean tracking - Optimize circular reference detection - Add configurable depth limits (maxFormatDepth, maxCompareDepth, maxProtoDepth) - Fix worker test execution delay - Test coverage improvements: formatters (10% → 90.85%), equal.ts (45% → 89.03%)
Contributor
There was a problem hiding this comment.
Pull request overview
Release prep PR for tripwire that bumps the monorepo to v0.1.8, updates user-facing documentation to reference the new recommended version range, and records the release notes for the performance-focused release.
Changes:
- Bump package versions (root, core, chai shim) to
0.1.8and align shim’s dependency on core. - Add
v0.1.8release notes toCHANGELIST.md. - Update README/docs install snippets to recommend
>= 0.1.8 < 2.xand refresh the Rush shrinkwrap.
Reviewed changes
Copilot reviewed 9 out of 10 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| shim/chai/package.json | Bumps chai shim version and updates dependency on @nevware21/tripwire to 0.1.8. |
| shim/chai/README.md | Updates recommended install range to >= 0.1.8 < 2.x. |
| package.json | Bumps repo/root package version to 0.1.8. |
| docs/migration/migrating-from-node-assert.md | Updates the quick-start install snippet to reference 0.1.8. |
| docs/README.md | Updates documentation install snippets to reference 0.1.8. |
| core/package.json | Bumps core package version to 0.1.8. |
| core/README.md | Updates recommended install range to >= 0.1.8 < 2.x. |
| common/config/rush/npm-shrinkwrap.json | Updates shrinkwrap integrity and transitive resolutions after version/dependency updates. |
| README.md | Updates top-level recommended dependency range to >= 0.1.8 < 2.x. |
| CHANGELIST.md | Adds the v0.1.8 release entry and comparison link. |
Files not reviewed (1)
- common/config/rush/npm-shrinkwrap.json: Language not supported
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #288 +/- ##
=======================================
Coverage 95.30% 95.30%
=======================================
Files 137 137
Lines 6388 6388
Branches 1679 1640 -39
=======================================
Hits 6088 6088
Misses 300 300 🚀 New features to boost your workflow:
|
nevware21-bot
approved these changes
Feb 22, 2026
Contributor
nevware21-bot
left a comment
There was a problem hiding this comment.
Approved by nevware21-bot
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.
Performance-focused release with critical optimizations to hot paths, array operations, circular reference detection, and test execution.
Changes:
Key performance improvements include: