@outputai/output 0.2.1-next.f1502fb.0 → 0.3.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.
- package/CHANGELOG.md +63 -0
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,68 @@
|
|
|
1
1
|
# @outputai/output
|
|
2
2
|
|
|
3
|
+
## 0.3.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- b87b58f: ## Dependencies updates
|
|
8
|
+
|
|
9
|
+
### Vulnerabilities fixed:
|
|
10
|
+
|
|
11
|
+
- uuid: Missing buffer bounds check in v3/v5/v6 when buf: (bump to `>=14.0.0`)
|
|
12
|
+
- postcss: PostCSS has XSS via Unescaped </style> in its CSS Stringify Output (bump to `>=8.5.10`)
|
|
13
|
+
- @anthropic-ai/sdk: Claude SDK for TypeScript has Insecure Default File Permissions in Local Filesystem Memory Tool (bump to `>=0.91.1`)
|
|
14
|
+
|
|
15
|
+
### Root package.json updates
|
|
16
|
+
|
|
17
|
+
- @changesets/cli: `2.30.0` -> `2.31.0`
|
|
18
|
+
- eslint: `10.2.0` -> `10.2.1`
|
|
19
|
+
- mintlify: `4.2.520` -> `4.2.536`
|
|
20
|
+
- typescript-eslint: `8.58.2` -> `8.59.1`
|
|
21
|
+
- vitest: `4.1.4` -> `4.1.5`
|
|
22
|
+
|
|
23
|
+
### pnpm-workspace.yaml (catalog) updates
|
|
24
|
+
|
|
25
|
+
- @aws-sdk/client-s3: `3.1031.0` -> `3.1038.0`
|
|
26
|
+
|
|
27
|
+
### sdk/cli/package.json updates
|
|
28
|
+
|
|
29
|
+
- @inquirer/prompts: `8.4.1` -> `8.4.2`
|
|
30
|
+
- @oclif/core: `4.10.5` -> `4.10.6`
|
|
31
|
+
- @oclif/plugin-help: `6.2.44` -> `6.2.45`
|
|
32
|
+
- undici: `8.0.2` -> `catalog:`
|
|
33
|
+
- orval: `8.8.0` -> `8.9.0`
|
|
34
|
+
|
|
35
|
+
### sdk/llm/package.json updates
|
|
36
|
+
|
|
37
|
+
- @ai-sdk/amazon-bedrock: `4.0.95` -> `4.0.96`
|
|
38
|
+
- liquidjs: `10.25.5` -> `10.25.7`
|
|
39
|
+
|
|
40
|
+
- Updated dependencies [8836247]
|
|
41
|
+
- Updated dependencies [2809e50]
|
|
42
|
+
- Updated dependencies [b87b58f]
|
|
43
|
+
- Updated dependencies [bc8ccee]
|
|
44
|
+
- Updated dependencies [05462f4]
|
|
45
|
+
- Updated dependencies [2ddcc3e]
|
|
46
|
+
- Updated dependencies [6cd5716]
|
|
47
|
+
- Updated dependencies [899ddaf]
|
|
48
|
+
- Updated dependencies [756d32d]
|
|
49
|
+
- Updated dependencies [7fd86e7]
|
|
50
|
+
- Updated dependencies [7e1c76d]
|
|
51
|
+
- Updated dependencies [52e960c]
|
|
52
|
+
- Updated dependencies [0cbee89]
|
|
53
|
+
- Updated dependencies [6499038]
|
|
54
|
+
- Updated dependencies [bd54540]
|
|
55
|
+
- Updated dependencies [23c3ed0]
|
|
56
|
+
- Updated dependencies [815b3a9]
|
|
57
|
+
- Updated dependencies [fd72d95]
|
|
58
|
+
- Updated dependencies [f1502fb]
|
|
59
|
+
- @outputai/cli@0.3.0
|
|
60
|
+
- @outputai/core@0.3.0
|
|
61
|
+
- @outputai/llm@0.3.0
|
|
62
|
+
- @outputai/credentials@0.3.0
|
|
63
|
+
- @outputai/evals@0.3.0
|
|
64
|
+
- @outputai/http@0.3.0
|
|
65
|
+
|
|
3
66
|
## 0.2.0
|
|
4
67
|
|
|
5
68
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@outputai/output",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "The Output.ai Framework",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"dependencies": {
|
|
7
|
-
"@outputai/cli": "0.
|
|
8
|
-
"@outputai/core": "0.
|
|
9
|
-
"@outputai/
|
|
10
|
-
"@outputai/
|
|
11
|
-
"@outputai/
|
|
12
|
-
"@outputai/
|
|
7
|
+
"@outputai/cli": "0.3.0",
|
|
8
|
+
"@outputai/core": "0.3.0",
|
|
9
|
+
"@outputai/llm": "0.3.0",
|
|
10
|
+
"@outputai/http": "0.3.0",
|
|
11
|
+
"@outputai/credentials": "0.3.0",
|
|
12
|
+
"@outputai/evals": "0.3.0"
|
|
13
13
|
},
|
|
14
14
|
"license": "Apache-2.0",
|
|
15
15
|
"publishConfig": {
|