@veloxts/web 0.6.82 → 0.6.83

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 (3) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/GUIDE.md +1 -1
  3. package/package.json +9 -9
package/CHANGELOG.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # @veloxts/web
2
2
 
3
+ ## 0.6.83
4
+
5
+ ### Patch Changes
6
+
7
+ - docs(templates): add /veloxts skill to CLAUDE.md files and links to online documentation
8
+ - Updated dependencies
9
+ - @veloxts/auth@0.6.83
10
+ - @veloxts/client@0.6.83
11
+ - @veloxts/core@0.6.83
12
+ - @veloxts/router@0.6.83
13
+
3
14
  ## 0.6.82
4
15
 
5
16
  ### Patch Changes
package/GUIDE.md CHANGED
@@ -110,7 +110,7 @@ interface PageProps {
110
110
  }
111
111
 
112
112
  export default async function UserPage({ params }: PageProps) {
113
- const user = await db.user.findUnique({ where: { id: params.id } });
113
+ const user = await db.user.findUniqueOrThrow({ where: { id: params.id } });
114
114
  return <h1>{user.name}</h1>;
115
115
  }
116
116
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veloxts/web",
3
- "version": "0.6.82",
3
+ "version": "0.6.83",
4
4
  "description": "React Server Components integration for VeloxTS framework using Vinxi",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -72,10 +72,10 @@
72
72
  "peerDependencies": {
73
73
  "react": ">=19.2.0",
74
74
  "react-dom": ">=19.2.0",
75
- "@veloxts/auth": "0.6.82",
76
- "@veloxts/client": "0.6.82",
77
- "@veloxts/router": "0.6.82",
78
- "@veloxts/core": "0.6.82"
75
+ "@veloxts/core": "0.6.83",
76
+ "@veloxts/router": "0.6.83",
77
+ "@veloxts/auth": "0.6.83",
78
+ "@veloxts/client": "0.6.83"
79
79
  },
80
80
  "peerDependenciesMeta": {
81
81
  "@veloxts/auth": {
@@ -98,10 +98,10 @@
98
98
  "react-server-dom-webpack": "19.2.3",
99
99
  "typescript": "5.9.3",
100
100
  "vitest": "4.0.16",
101
- "@veloxts/auth": "0.6.82",
102
- "@veloxts/client": "0.6.82",
103
- "@veloxts/core": "0.6.82",
104
- "@veloxts/router": "0.6.82"
101
+ "@veloxts/core": "0.6.83",
102
+ "@veloxts/auth": "0.6.83",
103
+ "@veloxts/client": "0.6.83",
104
+ "@veloxts/router": "0.6.83"
105
105
  },
106
106
  "keywords": [
107
107
  "velox",