@johngw/stream-assert 0.0.0 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +49 -0
  2. package/package.json +6 -3
package/CHANGELOG.md ADDED
@@ -0,0 +1,49 @@
1
+ # Changelog
2
+
3
+ ## [1.0.2](https://github.com/jg-wright/stream/compare/stream-assert-v1.0.1...stream-assert-v1.0.2) (2026-05-27)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * correct peer dependency ([9256934](https://github.com/jg-wright/stream/commit/92569340e51c17caa4c33215b773c49b1ee111ee))
9
+
10
+ ## [1.0.1](https://github.com/jg-wright/stream/compare/stream-assert-v1.0.0...stream-assert-v1.0.1) (2026-05-27)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * **release:** add required provenance property ([ca55c15](https://github.com/jg-wright/stream/commit/ca55c150419279e0b55fe061903ae200b64a5ae8))
16
+
17
+
18
+ ### Dependencies
19
+
20
+ * The following workspace dependencies were updated
21
+ * devDependencies
22
+ * @johngw/stream-test bumped from 2.0.0 to 2.0.1
23
+ * peerDependencies
24
+ * @johngw/stream-test bumped from ^1.3.1 to ^2.0.1
25
+
26
+ ## 1.0.0 (2026-05-27)
27
+
28
+
29
+ ### ⚠ BREAKING CHANGES
30
+
31
+ * Dropping bun support including stream-test-bun
32
+
33
+ ### Features
34
+
35
+ * add stream-assert library ([ad89d94](https://github.com/jg-wright/stream/commit/ad89d94a9a5bb973ca3ba7afe6e0ccab1f56e5d3))
36
+
37
+
38
+ ### Miscellaneous Chores
39
+
40
+ * move to node.js ([6c9aca5](https://github.com/jg-wright/stream/commit/6c9aca5eadc743553e104218ca146658244cd0b8))
41
+
42
+
43
+ ### Dependencies
44
+
45
+ * The following workspace dependencies were updated
46
+ * devDependencies
47
+ * @johngw/stream-test bumped from 1.3.1 to 2.0.0
48
+ * peerDependencies
49
+ * @johngw/stream-test bumped from ^1.3.1 to ^2.0.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@johngw/stream-assert",
3
- "version": "0.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "Add expectation library compatible with node:assert",
5
5
  "type": "module",
6
6
  "main": "./dist/es/index.js",
@@ -17,9 +17,12 @@
17
17
  "bugs": {
18
18
  "url": "https://github.com/johngeorgewright/stream/issues"
19
19
  },
20
+ "repository": {
21
+ "url": "https://github.com/jg-wright/stream"
22
+ },
20
23
  "homepage": "https://github.com/johngeorgewright/stream#readme",
21
24
  "devDependencies": {
22
- "@johngw/stream-test": "1.3.1",
25
+ "@johngw/stream-test": "2.0.1",
23
26
  "@types/node": "25.9.1",
24
27
  "rimraf": "6.1.3",
25
28
  "typescript": "6.0.3"
@@ -28,6 +31,6 @@
28
31
  "tslib": "2.8.1"
29
32
  },
30
33
  "peerDependencies": {
31
- "@johngw/stream-test": "^1.3.1"
34
+ "@johngw/stream-test": "^2.0.1"
32
35
  }
33
36
  }