@visulima/api-platform 4.0.0-alpha.5 → 4.0.0-alpha.7
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 +45 -0
- package/package.json +22 -22
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,48 @@
|
|
|
1
|
+
## @visulima/api-platform [4.0.0-alpha.7](https://github.com/visulima/visulima/compare/@visulima/api-platform@4.0.0-alpha.6...@visulima/api-platform@4.0.0-alpha.7) (2026-03-26)
|
|
2
|
+
|
|
3
|
+
### Features
|
|
4
|
+
|
|
5
|
+
* **web:** auto-generate packages page from workspace metadata ([623e520](https://github.com/visulima/visulima/commit/623e5207693a7fe720f5f2f179593a3654c880e3))
|
|
6
|
+
|
|
7
|
+
### Miscellaneous Chores
|
|
8
|
+
|
|
9
|
+
* update homepage URLs to visulima.com/packages/ format ([be42968](https://github.com/visulima/visulima/commit/be42968129df85fb074224435e33135ff44cab91))
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Dependencies
|
|
13
|
+
|
|
14
|
+
* **@visulima/connect:** upgraded to 4.0.0-alpha.7
|
|
15
|
+
* **@visulima/fs:** upgraded to 5.0.0-alpha.6
|
|
16
|
+
* **@visulima/jsdoc-open-api:** upgraded to 3.0.0-alpha.6
|
|
17
|
+
* **@visulima/path:** upgraded to 3.0.0-alpha.7
|
|
18
|
+
* **@visulima/crud:** upgraded to 3.0.0-alpha.8
|
|
19
|
+
|
|
20
|
+
## @visulima/api-platform [4.0.0-alpha.6](https://github.com/visulima/visulima/compare/@visulima/api-platform@4.0.0-alpha.5...@visulima/api-platform@4.0.0-alpha.6) (2026-03-26)
|
|
21
|
+
|
|
22
|
+
### Bug Fixes
|
|
23
|
+
|
|
24
|
+
* **api-platform:** fixed wrong deps ([f211dbd](https://github.com/visulima/visulima/commit/f211dbd287677413cd18cba3f8ee50cf7fc5eb7f))
|
|
25
|
+
* **api-platform:** use workspace:* for internal [@visulima](https://github.com/visulima) deps ([daa2b0b](https://github.com/visulima/visulima/commit/daa2b0bfb491b42bc83c369fec2dcd7950f082b0))
|
|
26
|
+
* updated deps and migrated web app build deps to pnpm catalog ([dd4f515](https://github.com/visulima/visulima/commit/dd4f5153a07d0e46de0b3fc091878d66bb70f2d3))
|
|
27
|
+
* **web:** improve build setup with incremental stats caching and prod install ([fe33e75](https://github.com/visulima/visulima/commit/fe33e75827586779b4b3a0c6d57b39f889ee6207))
|
|
28
|
+
|
|
29
|
+
### Miscellaneous Chores
|
|
30
|
+
|
|
31
|
+
* **api-platform:** fix express dependency version ([96b02fa](https://github.com/visulima/visulima/commit/96b02fa5d8337d4016af8f38d44c85c39b62e7ee))
|
|
32
|
+
* **api-platform:** migrate deps to pnpm catalogs ([fc2f357](https://github.com/visulima/visulima/commit/fc2f357d29e707f98d373b94931277fa8a4527d5))
|
|
33
|
+
* **api-platform:** update dependencies ([015c8b6](https://github.com/visulima/visulima/commit/015c8b69930dde52443bdce50d034bc04b2c3986))
|
|
34
|
+
* **api:** remove empty peerDependencies and optionalDependencies ([85142fa](https://github.com/visulima/visulima/commit/85142fa76729c238a59ac48265b5e33e31183abb))
|
|
35
|
+
* visulima website ([#591](https://github.com/visulima/visulima/issues/591)) ([59ab2e2](https://github.com/visulima/visulima/commit/59ab2e2befb03e51cd2088956f83d9b87de6d033))
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
### Dependencies
|
|
39
|
+
|
|
40
|
+
* **@visulima/connect:** upgraded to 4.0.0-alpha.6
|
|
41
|
+
* **@visulima/fs:** upgraded to 5.0.0-alpha.5
|
|
42
|
+
* **@visulima/jsdoc-open-api:** upgraded to 3.0.0-alpha.5
|
|
43
|
+
* **@visulima/path:** upgraded to 3.0.0-alpha.6
|
|
44
|
+
* **@visulima/crud:** upgraded to 3.0.0-alpha.7
|
|
45
|
+
|
|
1
46
|
## @visulima/api-platform [4.0.0-alpha.5](https://github.com/visulima/visulima/compare/@visulima/api-platform@4.0.0-alpha.4...@visulima/api-platform@4.0.0-alpha.5) (2026-03-06)
|
|
2
47
|
|
|
3
48
|
### Miscellaneous Chores
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@visulima/api-platform",
|
|
3
|
-
"version": "4.0.0-alpha.
|
|
3
|
+
"version": "4.0.0-alpha.7",
|
|
4
4
|
"description": "Visulima API platform is a set of tools to build and consume web APIs",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"anolilab",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"swagger",
|
|
31
31
|
"openapi"
|
|
32
32
|
],
|
|
33
|
-
"homepage": "https://
|
|
33
|
+
"homepage": "https://visulima.com/packages/api-platform/",
|
|
34
34
|
"repository": {
|
|
35
35
|
"type": "git",
|
|
36
36
|
"url": "https://github.com/visulima/visulima.git",
|
|
@@ -125,10 +125,10 @@
|
|
|
125
125
|
"LICENSE.md"
|
|
126
126
|
],
|
|
127
127
|
"dependencies": {
|
|
128
|
-
"@visulima/connect": "4.0.0-alpha.
|
|
129
|
-
"@visulima/fs": "5.0.0-alpha.
|
|
130
|
-
"@visulima/jsdoc-open-api": "3.0.0-alpha.
|
|
131
|
-
"@visulima/path": "3.0.0-alpha.
|
|
128
|
+
"@visulima/connect": "4.0.0-alpha.7",
|
|
129
|
+
"@visulima/fs": "5.0.0-alpha.6",
|
|
130
|
+
"@visulima/jsdoc-open-api": "3.0.0-alpha.6",
|
|
131
|
+
"@visulima/path": "3.0.0-alpha.7",
|
|
132
132
|
"accepts": "^1.3.8",
|
|
133
133
|
"debug": "^4.4.3",
|
|
134
134
|
"http-errors": "^2.0.1",
|
|
@@ -136,29 +136,29 @@
|
|
|
136
136
|
"jstoxml": "^7.1.0",
|
|
137
137
|
"lodash.merge": "^4.6.2",
|
|
138
138
|
"schema-dts": "^1.1.5",
|
|
139
|
-
"ts-japi": "^1.12.
|
|
140
|
-
"yaml": "
|
|
139
|
+
"ts-japi": "^1.12.3",
|
|
140
|
+
"yaml": "2.8.3",
|
|
141
141
|
"zod-to-ts": "^1.2.0"
|
|
142
142
|
},
|
|
143
143
|
"peerDependencies": {
|
|
144
|
-
"@hapi/hapi": "
|
|
145
|
-
"@koa/router": "
|
|
146
|
-
"@visulima/crud": "3.0.0-alpha.
|
|
144
|
+
"@hapi/hapi": "21.4.7",
|
|
145
|
+
"@koa/router": "15.4.0",
|
|
146
|
+
"@visulima/crud": "3.0.0-alpha.8",
|
|
147
147
|
"chalk": "5.6.2",
|
|
148
|
-
"commander": "
|
|
149
|
-
"cors": "
|
|
148
|
+
"commander": "14.0.3",
|
|
149
|
+
"cors": "2.8.6",
|
|
150
150
|
"express": "^4.22.1",
|
|
151
|
-
"fastify": "^
|
|
152
|
-
"koa": "^
|
|
153
|
-
"next": "
|
|
154
|
-
"rate-limiter-flexible": "
|
|
155
|
-
"react": "
|
|
156
|
-
"react-dom": "
|
|
157
|
-
"redoc": "
|
|
151
|
+
"fastify": "^5.8.2",
|
|
152
|
+
"koa": "^3.1.2",
|
|
153
|
+
"next": "16.2.1",
|
|
154
|
+
"rate-limiter-flexible": "10.0.1",
|
|
155
|
+
"react": "19.2.4",
|
|
156
|
+
"react-dom": "19.2.4",
|
|
157
|
+
"redoc": "2.5.2",
|
|
158
158
|
"swagger-ui-dist": "^4.19.1",
|
|
159
159
|
"swagger-ui-react": "^4.19.1",
|
|
160
|
-
"webpack": "^5.
|
|
161
|
-
"zod": "^3
|
|
160
|
+
"webpack": "^5.105.4",
|
|
161
|
+
"zod": "^3"
|
|
162
162
|
},
|
|
163
163
|
"peerDependenciesMeta": {
|
|
164
164
|
"@hapi/hapi": {
|