@aigne/ideogram 0.4.0-beta.1 → 0.4.0-beta.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 +28 -0
  2. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -1,5 +1,33 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.4.0-beta.3](https://github.com/AIGNE-io/aigne-framework/compare/ideogram-v0.4.0-beta.2...ideogram-v0.4.0-beta.3) (2025-09-24)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * move zod from devDependencies to dependencies in ideogram model ([#539](https://github.com/AIGNE-io/aigne-framework/issues/539)) ([9a08529](https://github.com/AIGNE-io/aigne-framework/commit/9a08529c53a40817acc831fb9b1925e200671f40))
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * The following workspace dependencies were updated
14
+ * dependencies
15
+ * @aigne/core bumped to 1.61.0-beta.3
16
+
17
+ ## [0.4.0-beta.2](https://github.com/AIGNE-io/aigne-framework/compare/ideogram-v0.4.0-beta.1...ideogram-v0.4.0-beta.2) (2025-09-23)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * add prefer input file type option for image model ([#536](https://github.com/AIGNE-io/aigne-framework/issues/536)) ([3cba8a5](https://github.com/AIGNE-io/aigne-framework/commit/3cba8a5562233a1567b49b6dd5c446c0760f5c4c))
23
+
24
+
25
+ ### Dependencies
26
+
27
+ * The following workspace dependencies were updated
28
+ * dependencies
29
+ * @aigne/core bumped to 1.61.0-beta.2
30
+
3
31
  ## [0.4.0-beta.1](https://github.com/AIGNE-io/aigne-framework/compare/ideogram-v0.4.0-beta...ideogram-v0.4.0-beta.1) (2025-09-23)
4
32
 
5
33
 
package/package.json CHANGED
@@ -35,7 +35,8 @@
35
35
  },
36
36
  "dependencies": {
37
37
  "ufo": "^1.6.1",
38
- "@aigne/core": "1.61.0-beta.1"
38
+ "zod": "3.25.67",
39
+ "@aigne/core": "1.61.0-beta.3"
39
40
  },
40
41
  "devDependencies": {
41
42
  "@types/bun": "^1.2.22",
@@ -44,10 +45,9 @@
44
45
  "hono": "^4.9.7",
45
46
  "npm-run-all": "^4.1.5",
46
47
  "rimraf": "^6.0.1",
47
- "typescript": "^5.9.2",
48
- "zod": "3.25.67"
48
+ "typescript": "^5.9.2"
49
49
  },
50
- "version": "0.4.0-beta.1",
50
+ "version": "0.4.0-beta.3",
51
51
  "scripts": {
52
52
  "lint": "tsc --noEmit",
53
53
  "build": "tsc --build scripts/tsconfig.build.json",