@visulima/api-platform 2.1.1 → 2.1.2
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 +16 -0
- package/package.json +11 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
## @visulima/api-platform [2.1.2](https://github.com/visulima/visulima/compare/@visulima/api-platform@2.1.1...@visulima/api-platform@2.1.2) (2024-03-27)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* added missing os key to package.json ([4ad1268](https://github.com/visulima/visulima/commit/4ad1268ed12cbdcf60aeb46d4c052ed1696bc150))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Dependencies
|
|
11
|
+
|
|
12
|
+
* **@visulima/connect:** upgraded to 3.0.5
|
|
13
|
+
* **@visulima/jsdoc-open-api:** upgraded to 2.0.34
|
|
14
|
+
* **@visulima/crud:** upgraded to 2.0.18
|
|
15
|
+
* **@visulima/fs:** upgraded to 2.0.2
|
|
16
|
+
|
|
1
17
|
## @visulima/api-platform [2.1.1](https://github.com/visulima/visulima/compare/@visulima/api-platform@2.1.0...@visulima/api-platform@2.1.1) (2024-03-24)
|
|
2
18
|
|
|
3
19
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@visulima/api-platform",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.2",
|
|
4
4
|
"description": "Visulima API platform is a set of tools to build and consume web APIs",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"anolilab",
|
|
@@ -141,8 +141,8 @@
|
|
|
141
141
|
"test:watch": "vitest"
|
|
142
142
|
},
|
|
143
143
|
"dependencies": {
|
|
144
|
-
"@visulima/connect": "3.0.
|
|
145
|
-
"@visulima/jsdoc-open-api": "2.0.
|
|
144
|
+
"@visulima/connect": "3.0.5",
|
|
145
|
+
"@visulima/jsdoc-open-api": "2.0.34",
|
|
146
146
|
"accepts": "^1.3.8",
|
|
147
147
|
"debug": "^4.3.4",
|
|
148
148
|
"http-errors": "^2.0.0",
|
|
@@ -182,8 +182,8 @@
|
|
|
182
182
|
"@types/react-dom": "^18.2.22",
|
|
183
183
|
"@types/swagger-ui-react": "^4.18.3",
|
|
184
184
|
"@types/webpack": "^5.28.5",
|
|
185
|
-
"@visulima/crud": "2.0.
|
|
186
|
-
"@visulima/fs": "2.0.
|
|
185
|
+
"@visulima/crud": "2.0.18",
|
|
186
|
+
"@visulima/fs": "2.0.2",
|
|
187
187
|
"@vitest/coverage-v8": "^1.4.0",
|
|
188
188
|
"@vitest/ui": "^1.4.0",
|
|
189
189
|
"chalk": "5.3.0",
|
|
@@ -240,7 +240,7 @@
|
|
|
240
240
|
"optionalDependencies": {
|
|
241
241
|
"@hapi/hapi": "^21.3.7",
|
|
242
242
|
"@koa/router": "^12.0.1",
|
|
243
|
-
"@visulima/crud": "2.0.
|
|
243
|
+
"@visulima/crud": "2.0.18",
|
|
244
244
|
"@visulima/readdir": "2.0.12",
|
|
245
245
|
"chalk": "5.3.0",
|
|
246
246
|
"commander": "^12.0.0",
|
|
@@ -258,6 +258,11 @@
|
|
|
258
258
|
"engines": {
|
|
259
259
|
"node": ">=18.* <=21.*"
|
|
260
260
|
},
|
|
261
|
+
"os": [
|
|
262
|
+
"darwin",
|
|
263
|
+
"linux",
|
|
264
|
+
"win32"
|
|
265
|
+
],
|
|
261
266
|
"publishConfig": {
|
|
262
267
|
"access": "public",
|
|
263
268
|
"provenance": true
|