@stryke/path 0.26.4 → 0.26.6

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 +26 -0
  2. package/package.json +5 -5
package/CHANGELOG.md CHANGED
@@ -2,6 +2,32 @@
2
2
 
3
3
  # Changelog for Stryke - Path
4
4
 
5
+ ## [0.26.5](https://github.com/storm-software/stryke/releases/tag/path%400.26.5) (02/09/2026)
6
+
7
+ ### Updated Dependencies
8
+
9
+ - Updated **type-checks** to **v0.5.24**
10
+ - Updated **convert** to **v0.6.39**
11
+ - Updated **types** to **v0.10.38**
12
+
13
+ ## [0.26.4](https://github.com/storm-software/stryke/releases/tag/path%400.26.4) (01/29/2026)
14
+
15
+ ### Miscellaneous
16
+
17
+ - **path:** Simplify conditional in `joinPaths` utility ([00fae661](https://github.com/storm-software/stryke/commit/00fae661))
18
+ - **path:** Clean up the logic of the `joinPaths` utility function ([82306d70](https://github.com/storm-software/stryke/commit/82306d70))
19
+
20
+ ### Bug Fixes
21
+
22
+ - **path:** Update `joinPaths` utility to handle `.` segments ([ba7e0681](https://github.com/storm-software/stryke/commit/ba7e0681))
23
+ - **path:** Resolve issue with `..` parameter in `joinPaths` utility ([5ef0cdfc](https://github.com/storm-software/stryke/commit/5ef0cdfc))
24
+
25
+ ### Updated Dependencies
26
+
27
+ - Updated **type-checks** to **v0.5.23**
28
+ - Updated **convert** to **v0.6.38**
29
+ - Updated **types** to **v0.10.37**
30
+
5
31
  ## [0.26.3](https://github.com/storm-software/stryke/releases/tag/path%400.26.3) (01/27/2026)
6
32
 
7
33
  ### 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.6",
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": {
@@ -79,11 +79,11 @@
79
79
  "types": "./dist/index.d.cts",
80
80
  "devDependencies": {
81
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",
82
+ "@stryke/convert": "^0.6.40",
83
+ "@stryke/type-checks": "^0.5.25",
84
+ "@stryke/types": "^0.10.39",
85
85
  "tsdown": "^0.17.2"
86
86
  },
87
87
  "publishConfig": { "access": "public" },
88
- "gitHead": "ae55e5a440fb5738c0b76220f291c84b287ef643"
88
+ "gitHead": "6dde4aa98913fd92c253aff3b574cdd5e048b9dc"
89
89
  }