@curviate/cli 0.23.2 → 0.23.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 +12 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -8,6 +8,18 @@ a new command or flag is a minor; a breaking command/flag/exit-code change is a
8
8
 
9
9
  ## [Unreleased]
10
10
 
11
+ ## [0.23.3] - 2026-08-17
12
+
13
+ ### Changed
14
+
15
+ - **`@curviate/sdk` dependency floor raised to `^0.22.0`** (was `^0.21.0`).
16
+ A caret range on a `0.x` version is locked to that minor, so without this
17
+ bump the CLI would have stayed on the previous SDK types. The new SDK minor
18
+ is a regeneration against the production API document: the Recruiter and
19
+ Sales Navigator profile section arrays now declare their item shapes, and
20
+ every paginated endpoint's 400 description names a malformed cursor. No CLI
21
+ behavior changes; typecheck, lint, and the full test suite are unaffected.
22
+
11
23
  ## [0.23.2] - 2026-08-13
12
24
 
13
25
  ### Changed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@curviate/cli",
3
- "version": "0.23.2",
3
+ "version": "0.23.3",
4
4
  "private": false,
5
5
  "description": "Official command-line interface for the Curviate API.",
6
6
  "license": "MIT",
@@ -42,7 +42,7 @@
42
42
  "clean": "rm -rf dist *.tsbuildinfo"
43
43
  },
44
44
  "dependencies": {
45
- "@curviate/sdk": "^0.21.0",
45
+ "@curviate/sdk": "^0.22.0",
46
46
  "citty": "^0.1.6",
47
47
  "open": "^10.1.0"
48
48
  },