@visulima/api-platform 3.0.51 → 3.0.53
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 +39 -0
- package/LICENSE.md +1 -1
- package/package.json +17 -17
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,42 @@
|
|
|
1
|
+
## @visulima/api-platform [3.0.53](https://github.com/visulima/visulima/compare/@visulima/api-platform@3.0.52...@visulima/api-platform@3.0.53) (2025-10-21)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* allow node v25 and updated dev deps ([8158cc5](https://github.com/visulima/visulima/commit/8158cc53ec92bd0331e8c6bd0fcbc8ab61b9320f))
|
|
6
|
+
* update error handling for Node.js versions ([e0a12f4](https://github.com/visulima/visulima/commit/e0a12f4d56af3814ce1f5325e632a794b0894882))
|
|
7
|
+
|
|
8
|
+
### Miscellaneous Chores
|
|
9
|
+
|
|
10
|
+
* update license years and add validation rules ([b97811e](https://github.com/visulima/visulima/commit/b97811ed2d253d908c0d86b4579a0a6bc33673a8))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Dependencies
|
|
14
|
+
|
|
15
|
+
* **@visulima/connect:** upgraded to 3.0.23
|
|
16
|
+
* **@visulima/jsdoc-open-api:** upgraded to 2.0.89
|
|
17
|
+
* **@visulima/fs:** upgraded to 4.0.2
|
|
18
|
+
* **@visulima/path:** upgraded to 2.0.1
|
|
19
|
+
* **@visulima/crud:** upgraded to 2.0.42
|
|
20
|
+
|
|
21
|
+
## @visulima/api-platform [3.0.52](https://github.com/visulima/visulima/compare/@visulima/api-platform@3.0.51...@visulima/api-platform@3.0.52) (2025-10-20)
|
|
22
|
+
|
|
23
|
+
### Bug Fixes
|
|
24
|
+
|
|
25
|
+
* **deps:** update dependency @hapi/hapi to ^21.4.3 ([#551](https://github.com/visulima/visulima/issues/551)) ([11c1471](https://github.com/visulima/visulima/commit/11c147138fd15c69c3f20f5be07c6cf412c836bf))
|
|
26
|
+
* **deps:** update minor updates ([#455](https://github.com/visulima/visulima/issues/455)) ([cebf7dc](https://github.com/visulima/visulima/commit/cebf7dcdc7f6ca423ad141f90f6c30279f5fa392))
|
|
27
|
+
* **deps:** update patch updates ([#452](https://github.com/visulima/visulima/issues/452)) ([4da5cbd](https://github.com/visulima/visulima/commit/4da5cbd411ccd961be7fd6f454aaec841e220b5e))
|
|
28
|
+
|
|
29
|
+
### Miscellaneous Chores
|
|
30
|
+
|
|
31
|
+
* **deps:** update package versions and dependencies ([88d8d32](https://github.com/visulima/visulima/commit/88d8d32c4629a7a06c8770369191da2cc81087cc))
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
### Dependencies
|
|
35
|
+
|
|
36
|
+
* **@visulima/connect:** upgraded to 3.0.22
|
|
37
|
+
* **@visulima/jsdoc-open-api:** upgraded to 2.0.88
|
|
38
|
+
* **@visulima/fs:** upgraded to 4.0.1
|
|
39
|
+
|
|
1
40
|
## @visulima/api-platform [3.0.51](https://github.com/visulima/visulima/compare/@visulima/api-platform@3.0.50...@visulima/api-platform@3.0.51) (2025-10-15)
|
|
2
41
|
|
|
3
42
|
### Bug Fixes
|
package/LICENSE.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@visulima/api-platform",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.53",
|
|
4
4
|
"description": "Visulima API platform is a set of tools to build and consume web APIs",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"anolilab",
|
|
@@ -125,10 +125,10 @@
|
|
|
125
125
|
"LICENSE.md"
|
|
126
126
|
],
|
|
127
127
|
"dependencies": {
|
|
128
|
-
"@visulima/connect": "3.0.
|
|
129
|
-
"@visulima/jsdoc-open-api": "2.0.
|
|
130
|
-
"@visulima/fs": "4.0.
|
|
131
|
-
"@visulima/path": "2.0.
|
|
128
|
+
"@visulima/connect": "3.0.23",
|
|
129
|
+
"@visulima/jsdoc-open-api": "2.0.89",
|
|
130
|
+
"@visulima/fs": "4.0.2",
|
|
131
|
+
"@visulima/path": "2.0.1",
|
|
132
132
|
"accepts": "^1.3.8",
|
|
133
133
|
"debug": "^4.4.3",
|
|
134
134
|
"http-errors": "^2.0.0",
|
|
@@ -141,25 +141,25 @@
|
|
|
141
141
|
"zod-to-ts": "^1.2.0"
|
|
142
142
|
},
|
|
143
143
|
"peerDependencies": {
|
|
144
|
-
"@hapi/hapi": "^21.3
|
|
144
|
+
"@hapi/hapi": "^21.4.3",
|
|
145
145
|
"@koa/router": "^12.0.1",
|
|
146
|
-
"@visulima/crud": "2.0.
|
|
146
|
+
"@visulima/crud": "2.0.42",
|
|
147
147
|
"@visulima/readdir": "2.0.12",
|
|
148
|
-
"chalk": "5.
|
|
149
|
-
"commander": "^12.
|
|
148
|
+
"chalk": "5.6.2",
|
|
149
|
+
"commander": "^12.1.0",
|
|
150
150
|
"cors": "^2.8.5",
|
|
151
|
-
"express": "^4.
|
|
152
|
-
"fastify": "^4.
|
|
153
|
-
"koa": "^2.15.
|
|
151
|
+
"express": "^4.21.2",
|
|
152
|
+
"fastify": "^4.29.1",
|
|
153
|
+
"koa": "^2.15.4",
|
|
154
154
|
"next": "^13.5.6",
|
|
155
|
-
"rate-limiter-flexible": "^5.0.
|
|
155
|
+
"rate-limiter-flexible": "^5.0.5",
|
|
156
156
|
"react": "^18.2.0",
|
|
157
157
|
"react-dom": "^18.2.0",
|
|
158
|
-
"redoc": "^2.1.
|
|
158
|
+
"redoc": "^2.1.5",
|
|
159
159
|
"swagger-ui-dist": "^4.19.1",
|
|
160
160
|
"swagger-ui-react": "^4.19.1",
|
|
161
|
-
"webpack": "^5.
|
|
162
|
-
"zod": "^3.22.
|
|
161
|
+
"webpack": "^5.102.1",
|
|
162
|
+
"zod": "^3.22.5"
|
|
163
163
|
},
|
|
164
164
|
"peerDependenciesMeta": {
|
|
165
165
|
"@hapi/hapi": {
|
|
@@ -221,7 +221,7 @@
|
|
|
221
221
|
}
|
|
222
222
|
},
|
|
223
223
|
"engines": {
|
|
224
|
-
"node": ">=18.0.0 <=
|
|
224
|
+
"node": ">=18.0.0 <=25.x"
|
|
225
225
|
},
|
|
226
226
|
"os": [
|
|
227
227
|
"darwin",
|