@valbuild/next 0.72.0 → 0.72.1

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/README.md +2 -2
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -195,8 +195,8 @@ Once your project is set up in [app.val.build](https://app.val.build), configure
195
195
 
196
196
  ### Environment Variables
197
197
 
198
- - **`VAL_API_KEY`**: Obtain this from your project's configuration page.
199
- - **`VAL_SECRET`**: Generate a random secret to secure communication between the UX client and your Next.js application.
198
+ - **`VAL_API_KEY`**: This is the API key used to authenticate server side API requests. You can find it under Settings in your project on [app.val.build](https://app.val.build).
199
+ - **`VAL_SECRET`**: In addition to the VAL_API_KEY, you need to generate a random secret to secure communication between the UX client and your Next.js application. You can use any random string for this, but if you have openssl installed you can run the following command: `openssl rand -hex 16`
200
200
 
201
201
  ### `val.config` Properties
202
202
 
package/package.json CHANGED
@@ -8,7 +8,7 @@
8
8
  "next",
9
9
  "react"
10
10
  ],
11
- "version": "0.72.0",
11
+ "version": "0.72.1",
12
12
  "scripts": {
13
13
  "typecheck": "tsc --noEmit",
14
14
  "test": "jest"
@@ -45,11 +45,11 @@
45
45
  "exports": true
46
46
  },
47
47
  "dependencies": {
48
- "@valbuild/core": "~0.72.0",
49
- "@valbuild/react": "~0.72.0",
50
- "@valbuild/server": "~0.72.0",
51
- "@valbuild/shared": "~0.72.0",
52
- "@valbuild/ui": "~0.72.0",
48
+ "@valbuild/core": "~0.72.1",
49
+ "@valbuild/react": "~0.72.1",
50
+ "@valbuild/server": "~0.72.1",
51
+ "@valbuild/shared": "~0.72.1",
52
+ "@valbuild/ui": "~0.72.1",
53
53
  "client-only": "^0.0.1",
54
54
  "server-only": "^0.0.1"
55
55
  },