@visulima/api-platform 3.0.51 → 3.0.52
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 +19 -0
- package/package.json +14 -14
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,22 @@
|
|
|
1
|
+
## @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)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* **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))
|
|
6
|
+
* **deps:** update minor updates ([#455](https://github.com/visulima/visulima/issues/455)) ([cebf7dc](https://github.com/visulima/visulima/commit/cebf7dcdc7f6ca423ad141f90f6c30279f5fa392))
|
|
7
|
+
* **deps:** update patch updates ([#452](https://github.com/visulima/visulima/issues/452)) ([4da5cbd](https://github.com/visulima/visulima/commit/4da5cbd411ccd961be7fd6f454aaec841e220b5e))
|
|
8
|
+
|
|
9
|
+
### Miscellaneous Chores
|
|
10
|
+
|
|
11
|
+
* **deps:** update package versions and dependencies ([88d8d32](https://github.com/visulima/visulima/commit/88d8d32c4629a7a06c8770369191da2cc81087cc))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Dependencies
|
|
15
|
+
|
|
16
|
+
* **@visulima/connect:** upgraded to 3.0.22
|
|
17
|
+
* **@visulima/jsdoc-open-api:** upgraded to 2.0.88
|
|
18
|
+
* **@visulima/fs:** upgraded to 4.0.1
|
|
19
|
+
|
|
1
20
|
## @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
21
|
|
|
3
22
|
### Bug Fixes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@visulima/api-platform",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.52",
|
|
4
4
|
"description": "Visulima API platform is a set of tools to build and consume web APIs",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"anolilab",
|
|
@@ -125,9 +125,9 @@
|
|
|
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.
|
|
128
|
+
"@visulima/connect": "3.0.22",
|
|
129
|
+
"@visulima/jsdoc-open-api": "2.0.88",
|
|
130
|
+
"@visulima/fs": "4.0.1",
|
|
131
131
|
"@visulima/path": "2.0.0",
|
|
132
132
|
"accepts": "^1.3.8",
|
|
133
133
|
"debug": "^4.4.3",
|
|
@@ -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
146
|
"@visulima/crud": "2.0.41",
|
|
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": {
|