@dataplan/json 1.0.0-rc.2 → 1.0.0-rc.3

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 +4 -4
package/CHANGELOG.md CHANGED
@@ -1,5 +1,31 @@
1
1
  # @dataplan/json
2
2
 
3
+ ## 1.0.0-rc.3
4
+
5
+ ### Patch Changes
6
+
7
+ - [#2873](https://github.com/graphile/crystal/pull/2873)
8
+ [`0772086`](https://github.com/graphile/crystal/commit/0772086411a55d56b4e345cff1eef133eee31b36)
9
+ Thanks [@benjie](https://github.com/benjie)! - Update TypeScript configuration
10
+ to support Node 22 minimum
11
+
12
+ - [#2888](https://github.com/graphile/crystal/pull/2888)
13
+ [`1a56db2`](https://github.com/graphile/crystal/commit/1a56db2f53bc455a3d3ba6555a2cd777b27b271c)
14
+ Thanks [@benjaie](https://github.com/benjaie)! - Node v22+ is required for
15
+ this module.
16
+
17
+ - Updated dependencies
18
+ [[`44555c7`](https://github.com/graphile/crystal/commit/44555c7f479d531d6aef100f99859c3bcbf06c93),
19
+ [`1e45a3d`](https://github.com/graphile/crystal/commit/1e45a3d6495cfea45bfdde95af889a453b82def3),
20
+ [`0772086`](https://github.com/graphile/crystal/commit/0772086411a55d56b4e345cff1eef133eee31b36),
21
+ [`a565503`](https://github.com/graphile/crystal/commit/a5655035dfee7000c1d37e4791354d7a2ba35792),
22
+ [`d9ccc82`](https://github.com/graphile/crystal/commit/d9ccc82a30ca6167f480e5c8bc15d17df51c0d1c),
23
+ [`1a56db2`](https://github.com/graphile/crystal/commit/1a56db2f53bc455a3d3ba6555a2cd777b27b271c),
24
+ [`eafa3f0`](https://github.com/graphile/crystal/commit/eafa3f036ce68e6ffb65935f0a78edee2fa6bdf8),
25
+ [`b27c562`](https://github.com/graphile/crystal/commit/b27c562409f7a2fd8a0eeaca96cd2c6b935efe4c),
26
+ [`f23f0cf`](https://github.com/graphile/crystal/commit/f23f0cf8812eddff7c91c529499a4f20f1f2978c)]:
27
+ - grafast@1.0.0-rc.4
28
+
3
29
  ## 1.0.0-rc.2
4
30
 
5
31
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dataplan/json",
3
- "version": "1.0.0-rc.2",
3
+ "version": "1.0.0-rc.3",
4
4
  "description": "JSON step classes for Grafast",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -30,10 +30,10 @@
30
30
  "tslib": "^2.8.1"
31
31
  },
32
32
  "engines": {
33
- "node": ">=14.17"
33
+ "node": ">=22"
34
34
  },
35
35
  "peerDependencies": {
36
- "grafast": "^1.0.0-rc.2"
36
+ "grafast": "^1.0.0-rc.4"
37
37
  },
38
38
  "files": [
39
39
  "dist"
@@ -41,7 +41,7 @@
41
41
  "devDependencies": {
42
42
  "@types/jest": "^30.0.0",
43
43
  "jest": "^30.2.0",
44
- "jest-serializer-simple": "^5.0.0-rc.2",
44
+ "jest-serializer-simple": "^5.0.0-rc.3",
45
45
  "typescript": "^5.9.3"
46
46
  }
47
47
  }