@stryke/trpc-next 0.5.98 → 0.5.100

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 +48 -0
  2. package/package.json +10 -10
package/CHANGELOG.md CHANGED
@@ -2,6 +2,54 @@
2
2
 
3
3
  # Changelog for Stryke - TRPC Next
4
4
 
5
+ ## [0.5.100](https://github.com/storm-software/stryke/releases/tag/trpc-next%400.5.100) (05/30/2026)
6
+
7
+ ### Miscellaneous
8
+
9
+ - **monorepo:** Remove remaining `jest` configuration ([1fd3d7d2](https://github.com/storm-software/stryke/commit/1fd3d7d2))
10
+
11
+ ### Bug Fixes
12
+
13
+ - **monorepo:** Resolve issue with `.test.ts` exports in `package.json` file ([31d85e19](https://github.com/storm-software/stryke/commit/31d85e19))
14
+
15
+ ### Updated Dependencies
16
+
17
+ - Updated **env** to **v0.20.98**
18
+ - Updated **fs** to **v0.33.81**
19
+ - Updated **path** to **v0.29.8**
20
+ - Updated **string-format** to **v0.17.23**
21
+ - Updated **type-checks** to **v0.6.14**
22
+ - Updated **types** to **v0.12.9**
23
+ - Updated **url** to **v0.4.32**
24
+
25
+ ## [0.5.99](https://github.com/storm-software/stryke/releases/tag/trpc-next%400.5.99) (05/30/2026)
26
+
27
+ ### Miscellaneous
28
+
29
+ - **monorepo:** Update config file specified in `tsconfig.json` exludes ([359c616a](https://github.com/storm-software/stryke/commit/359c616a))
30
+
31
+ ### Updated Dependencies
32
+
33
+ - Updated **env** to **v0.20.97**
34
+ - Updated **fs** to **v0.33.80**
35
+ - Updated **path** to **v0.29.7**
36
+ - Updated **string-format** to **v0.17.22**
37
+ - Updated **type-checks** to **v0.6.13**
38
+ - Updated **types** to **v0.12.8**
39
+ - Updated **url** to **v0.4.31**
40
+
41
+ ## [0.5.98](https://github.com/storm-software/stryke/releases/tag/trpc-next%400.5.98) (05/27/2026)
42
+
43
+ ### Updated Dependencies
44
+
45
+ - Updated **env** to **v0.20.96**
46
+ - Updated **fs** to **v0.33.79**
47
+ - Updated **path** to **v0.29.6**
48
+ - Updated **string-format** to **v0.17.21**
49
+ - Updated **type-checks** to **v0.6.12**
50
+ - Updated **types** to **v0.12.7**
51
+ - Updated **url** to **v0.4.30**
52
+
5
53
  ## [0.5.97](https://github.com/storm-software/stryke/releases/tag/trpc-next%400.5.97) (05/27/2026)
6
54
 
7
55
  ### Updated Dependencies
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stryke/trpc-next",
3
- "version": "0.5.98",
3
+ "version": "0.5.100",
4
4
  "private": false,
5
5
  "description": "A package to help in using tRPC in modern NextJs applications.",
6
6
  "repository": {
@@ -68,20 +68,20 @@
68
68
  "require": "./dist/tanstack-query/server.cjs"
69
69
  },
70
70
  "./types": { "import": "./dist/types.mjs", "require": "./dist/types.cjs" },
71
- "./*": "./*"
71
+ "./package.json": "./package.json"
72
72
  },
73
73
  "main": "./dist/index.cjs",
74
74
  "module": "./dist/index.mjs",
75
75
  "types": "./dist/index.d.cts",
76
76
  "dependencies": {
77
77
  "@js-temporal/polyfill": "^0.5.1",
78
- "@stryke/env": "^0.20.96",
79
- "@stryke/fs": "^0.33.79",
80
- "@stryke/path": "^0.29.6",
81
- "@stryke/string-format": "^0.17.21",
82
- "@stryke/type-checks": "^0.6.12",
83
- "@stryke/types": "^0.12.7",
84
- "@stryke/url": "^0.4.30",
78
+ "@stryke/env": "^0.20.98",
79
+ "@stryke/fs": "^0.33.81",
80
+ "@stryke/path": "^0.29.8",
81
+ "@stryke/string-format": "^0.17.23",
82
+ "@stryke/type-checks": "^0.6.14",
83
+ "@stryke/types": "^0.12.9",
84
+ "@stryke/url": "^0.4.32",
85
85
  "@tanstack/react-query": "^5.100.14",
86
86
  "@trpc/client": "^11.17.0",
87
87
  "@trpc/next": "^11.17.0",
@@ -108,5 +108,5 @@
108
108
  "react-native": { "optional": true }
109
109
  },
110
110
  "publishConfig": { "access": "public" },
111
- "gitHead": "cbaf8374918fb105ab59ad0af4635de069052e4c"
111
+ "gitHead": "166741e285a7112dfc6dd34206b43578dc4d19ec"
112
112
  }