@copilotkitnext/agent 1.54.0-next.8 → 1.54.0

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 +20 -0
  2. package/package.json +5 -4
package/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # @copilotkitnext/agent
2
2
 
3
+ ## 1.54.0
4
+
5
+ ### Minor Changes
6
+
7
+ - fa0d1cd: Add support for Standard Schema (instead of just Zod)
8
+
9
+ ### Patch Changes
10
+
11
+ - 3780c6a: deprecate: mark all @copilotkitnext/_ packages as deprecated in favor of @copilotkit/_ equivalents
12
+ - Updated dependencies [3780c6a]
13
+ - @copilotkitnext/shared@1.54.0
14
+
15
+ ## 1.54.0-next.9
16
+
17
+ ### Patch Changes
18
+
19
+ - 3780c6a: deprecate: mark all @copilotkitnext/_ packages as deprecated in favor of @copilotkit/_ equivalents
20
+ - Updated dependencies [3780c6a]
21
+ - @copilotkitnext/shared@1.54.0-next.9
22
+
3
23
  ## 1.54.0-next.8
4
24
 
5
25
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "@copilotkitnext/agent",
3
- "version": "1.54.0-next.8",
3
+ "version": "1.54.0",
4
+ "deprecated": "This package is deprecated. Use @copilotkit/agent instead. V2 features are being integrated into the main @copilotkit exports and will be available under the /v2 subpath.",
4
5
  "description": "Basic Agent for CopilotKit",
5
6
  "main": "./dist/index.cjs",
6
7
  "types": "./dist/index.d.cts",
@@ -25,8 +26,8 @@
25
26
  "typescript": "5.8.2",
26
27
  "valibot": "^1.2.0",
27
28
  "vitest": "^3.0.5",
28
- "@copilotkitnext/eslint-config": "1.54.0-next.8",
29
- "@copilotkitnext/typescript-config": "1.54.0-next.8"
29
+ "@copilotkitnext/eslint-config": "1.54.0",
30
+ "@copilotkitnext/typescript-config": "1.54.0"
30
31
  },
31
32
  "dependencies": {
32
33
  "@ag-ui/client": "0.0.47",
@@ -38,7 +39,7 @@
38
39
  "ai": "^6.0.104",
39
40
  "rxjs": "7.8.1",
40
41
  "zod": "^3.25.75",
41
- "@copilotkitnext/shared": "1.54.0-next.8"
42
+ "@copilotkitnext/shared": "1.54.0"
42
43
  },
43
44
  "engines": {
44
45
  "node": ">=18"