@redis/json 5.8.2 → 5.9.0-beta.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 +2 -2
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @redis/json
2
2
 
3
- This package provides support for the [RedisJSON](https://redis.io/docs/data-types/json/) module, which adds JSON as a native data type to Redis.
3
+ This package provides support for the [RedisJSON](https://redis.io/docs/latest/develop/data-types/json/) module, which adds JSON as a native data type to Redis.
4
4
 
5
5
  Should be used with [`redis`/`@redis/client`](https://github.com/redis/node-redis).
6
6
 
@@ -33,7 +33,7 @@ await client.json.set('noderedis:jsondata', '$', {
33
33
  });
34
34
  ```
35
35
 
36
- For more information about RedisJSON's path syntax, [check out the documentation](https://redis.io/docs/data-types/json/path/).
36
+ For more information about RedisJSON's path syntax, [check out the documentation](https://redis.io/docs/latest/develop/data-types/json/path).
37
37
 
38
38
  ### Retrieving JSON Documents from Redis
39
39
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@redis/json",
3
- "version": "5.8.2",
3
+ "version": "5.9.0-beta.1",
4
4
  "license": "MIT",
5
5
  "main": "./dist/lib/index.js",
6
6
  "types": "./dist/lib/index.d.ts",
@@ -13,7 +13,7 @@
13
13
  "release": "release-it"
14
14
  },
15
15
  "peerDependencies": {
16
- "@redis/client": "^5.8.2"
16
+ "@redis/client": "^5.9.0-beta.1"
17
17
  },
18
18
  "devDependencies": {
19
19
  "@redis/test-utils": "*"