@stryke/path 0.26.4 → 0.26.7

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 +34 -0
  2. package/package.json +6 -6
package/CHANGELOG.md CHANGED
@@ -2,6 +2,40 @@
2
2
 
3
3
  # Changelog for Stryke - Path
4
4
 
5
+ ## [0.26.6](https://github.com/storm-software/stryke/releases/tag/path%400.26.6) (02/09/2026)
6
+
7
+ ### Updated Dependencies
8
+
9
+ - Updated **type-checks** to **v0.5.25**
10
+ - Updated **convert** to **v0.6.40**
11
+ - Updated **types** to **v0.10.39**
12
+
13
+ ## [0.26.5](https://github.com/storm-software/stryke/releases/tag/path%400.26.5) (02/09/2026)
14
+
15
+ ### Updated Dependencies
16
+
17
+ - Updated **type-checks** to **v0.5.24**
18
+ - Updated **convert** to **v0.6.39**
19
+ - Updated **types** to **v0.10.38**
20
+
21
+ ## [0.26.4](https://github.com/storm-software/stryke/releases/tag/path%400.26.4) (01/29/2026)
22
+
23
+ ### Miscellaneous
24
+
25
+ - **path:** Simplify conditional in `joinPaths` utility ([00fae661](https://github.com/storm-software/stryke/commit/00fae661))
26
+ - **path:** Clean up the logic of the `joinPaths` utility function ([82306d70](https://github.com/storm-software/stryke/commit/82306d70))
27
+
28
+ ### Bug Fixes
29
+
30
+ - **path:** Update `joinPaths` utility to handle `.` segments ([ba7e0681](https://github.com/storm-software/stryke/commit/ba7e0681))
31
+ - **path:** Resolve issue with `..` parameter in `joinPaths` utility ([5ef0cdfc](https://github.com/storm-software/stryke/commit/5ef0cdfc))
32
+
33
+ ### Updated Dependencies
34
+
35
+ - Updated **type-checks** to **v0.5.23**
36
+ - Updated **convert** to **v0.6.38**
37
+ - Updated **types** to **v0.10.37**
38
+
5
39
  ## [0.26.3](https://github.com/storm-software/stryke/releases/tag/path%400.26.3) (01/27/2026)
6
40
 
7
41
  ### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stryke/path",
3
- "version": "0.26.4",
3
+ "version": "0.26.7",
4
4
  "type": "module",
5
5
  "description": "A package containing various utilities that expand the functionality of NodeJs's built-in `path` module",
6
6
  "repository": {
@@ -78,12 +78,12 @@
78
78
  },
79
79
  "types": "./dist/index.d.cts",
80
80
  "devDependencies": {
81
- "@storm-software/testing-tools": "^1.119.75",
82
- "@stryke/convert": "^0.6.38",
83
- "@stryke/type-checks": "^0.5.23",
84
- "@stryke/types": "^0.10.37",
81
+ "@storm-software/testing-tools": "^1.119.86",
82
+ "@stryke/convert": "^0.6.41",
83
+ "@stryke/type-checks": "^0.5.26",
84
+ "@stryke/types": "^0.10.40",
85
85
  "tsdown": "^0.17.2"
86
86
  },
87
87
  "publishConfig": { "access": "public" },
88
- "gitHead": "ae55e5a440fb5738c0b76220f291c84b287ef643"
88
+ "gitHead": "e569c1db49bd29cef0513170e5490a61a61578cf"
89
89
  }