Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions CHANGELIST.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
# v0.1.7 February 13th, 2026

## Bug Fixes

- [#273](https://github.com/nevware21/tripwire/pull/273) Fix deepStrictEqual to perform deep value comparison
- Changed `deepStrictEqual` to use deep value comparison instead of strict instance comparison
- Now properly compares nested object values, arrays, and complex structures
- Aligns behavior with Node.js assert.deepStrictEqual semantics
- Maintains strict type checking while performing recursive value comparison

For full details see [v0.1.6...v0.1.7](https://github.com/nevware21/tripwire/compare/v0.1.6...v0.1.7)

# v0.1.6 February 7th, 2026

## Changelog
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ Install the npm package: `npm install @nevware21/tripwire --save-dev`
> Recommended: Use the following definition in your `package.json` to stay compatible with future releases.
> We do not intend to make runtime / environment breaking changes until at least v2.x
> ```json
> "@nevware21/tripwire": ">= 0.1.6 < 2.x"
> "@nevware21/tripwire": ">= 0.1.7 < 2.x"
> ```

## Usage
Expand Down
8 changes: 4 additions & 4 deletions common/config/rush/npm-shrinkwrap.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ npm install @nevware21/tripwire --save-dev
```json
{
"devDependencies": {
"@nevware21/tripwire": ">= 0.1.6 < 2.x"
"@nevware21/tripwire": ">= 0.1.7 < 2.x"
}
}
```
Expand Down
2 changes: 1 addition & 1 deletion core/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@nevware21/tripwire",
"description": "Test Support utilities, helpers, tools for testing in JavaScript and TypeScript.",
"version": "0.1.6",
"version": "0.1.7",
"homepage": "https://github.com/nevware21/tripwire",
"license": "MIT",
"author": {
Expand Down
4 changes: 2 additions & 2 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ npm install @nevware21/tripwire --save-dev
```json
{
"devDependencies": {
"@nevware21/tripwire": ">= 0.1.4 < 2.x"
"@nevware21/tripwire": ">= 0.1.7 < 2.x"
}
}
```
Expand Down Expand Up @@ -100,7 +100,7 @@ npm install @nevware21/tripwire-chai --save-dev
```json
{
"devDependencies": {
"@nevware21/tripwire-chai": ">= 0.1.4 < 2.x"
"@nevware21/tripwire-chai": ">= 0.1.7 < 2.x"
}
}
```
Expand Down
2 changes: 1 addition & 1 deletion docs/migration/migrating-from-node-assert.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ npm install @nevware21/tripwire --save-dev
```json
{
"devDependencies": {
"@nevware21/tripwire": ">= 0.1.6 < 2.x"
"@nevware21/tripwire": ">= 0.1.7 < 2.x"
}
}
```
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@nevware21/tripwire",
"description": "Test support utilities, helpers assertions",
"version": "0.1.6",
"version": "0.1.7",
"homepage": "https://github.com/nevware21/tripwire",
"license": "MIT",
"author": {
Expand Down
2 changes: 1 addition & 1 deletion shim/chai/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ npm install @nevware21/tripwire-chai --save-dev
```json
{
"devDependencies": {
"@nevware21/tripwire-chai": ">= 0.1.6 < 2.x"
"@nevware21/tripwire-chai": ">= 0.1.7 < 2.x"
}
}
```
Expand Down
4 changes: 2 additions & 2 deletions shim/chai/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@nevware21/tripwire-chai",
"description": "Tripwire Chai Extension",
"version": "0.1.6",
"version": "0.1.7",
"homepage": "https://github.com/nevware21/tripwire",
"license": "MIT",
"author": {
Expand Down Expand Up @@ -61,7 +61,7 @@
"dependencies": {
"@nevware21/ts-utils": ">= 0.12.6 < 2.x",
"@nevware21/ts-async": ">= 0.5.4 < 2.x",
"@nevware21/tripwire": "0.1.6"
"@nevware21/tripwire": "0.1.7"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.34.4",
Expand Down