@visulima/connect 3.0.3 → 3.0.5
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 +15 -0
- package/package.json +11 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
## @visulima/connect [3.0.5](https://github.com/visulima/visulima/compare/@visulima/connect@3.0.4...@visulima/connect@3.0.5) (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
|
+
## @visulima/connect [3.0.4](https://github.com/visulima/visulima/compare/@visulima/connect@3.0.3...@visulima/connect@3.0.4) (2024-03-22)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Dependencies
|
|
13
|
+
|
|
14
|
+
* **@visulima/nextra-theme-docs:** upgraded to 4.0.19
|
|
15
|
+
|
|
1
16
|
## @visulima/connect [3.0.3](https://github.com/visulima/visulima/compare/@visulima/connect@3.0.2...@visulima/connect@3.0.3) (2024-03-16)
|
|
2
17
|
|
|
3
18
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@visulima/connect",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.5",
|
|
4
4
|
"description": "The minimal router and middleware layer for Next.js, Micro, Vercel, or Node.js http/http2 with support for zod validation.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"javascript",
|
|
@@ -86,11 +86,11 @@
|
|
|
86
86
|
"@anolilab/eslint-config": "^15.0.3",
|
|
87
87
|
"@anolilab/prettier-config": "^5.0.14",
|
|
88
88
|
"@anolilab/semantic-release-preset": "^8.0.3",
|
|
89
|
-
"@babel/core": "^7.24.
|
|
89
|
+
"@babel/core": "^7.24.3",
|
|
90
90
|
"@rushstack/eslint-plugin-security": "^0.8.1",
|
|
91
91
|
"@types/http-errors": "^2.0.4",
|
|
92
92
|
"@types/node": "18.18.14",
|
|
93
|
-
"@visulima/nextra-theme-docs": "4.0.
|
|
93
|
+
"@visulima/nextra-theme-docs": "4.0.19",
|
|
94
94
|
"@vitest/coverage-v8": "^1.4.0",
|
|
95
95
|
"@vitest/ui": "^1.4.0",
|
|
96
96
|
"cross-env": "^7.0.3",
|
|
@@ -102,15 +102,15 @@
|
|
|
102
102
|
"eslint-plugin-vitest": "^0.3.26",
|
|
103
103
|
"eslint-plugin-vitest-globals": "^1.5.0",
|
|
104
104
|
"eslint-plugin-zod": "^1.4.0",
|
|
105
|
-
"express": "^4.
|
|
105
|
+
"express": "^4.19.1",
|
|
106
106
|
"fastify": "^4.26.2",
|
|
107
107
|
"isomorphic-fetch": "^3.0.0",
|
|
108
108
|
"prettier": "^3.2.5",
|
|
109
109
|
"rimraf": "^5.0.5",
|
|
110
|
-
"semantic-release": "^23.0.
|
|
110
|
+
"semantic-release": "^23.0.5",
|
|
111
111
|
"sort-package-json": "^2.8.0",
|
|
112
112
|
"tsup": "^8.0.2",
|
|
113
|
-
"typescript": "^5.4.
|
|
113
|
+
"typescript": "^5.4.3",
|
|
114
114
|
"vitest": "^1.4.0",
|
|
115
115
|
"zod": "^3.22.4"
|
|
116
116
|
},
|
|
@@ -120,6 +120,11 @@
|
|
|
120
120
|
"engines": {
|
|
121
121
|
"node": ">=18.* <=21.*"
|
|
122
122
|
},
|
|
123
|
+
"os": [
|
|
124
|
+
"darwin",
|
|
125
|
+
"linux",
|
|
126
|
+
"win32"
|
|
127
|
+
],
|
|
123
128
|
"publishConfig": {
|
|
124
129
|
"access": "public",
|
|
125
130
|
"provenance": true
|