express-zod-api 14.2.2 → 14.2.3

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +4 -0
  2. package/package.json +6 -5
package/CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  ## Version 14
4
4
 
5
+ ### v14.2.3
6
+
7
+ - `express-fileupload` version is 1.4.3.
8
+
5
9
  ### v14.2.2
6
10
 
7
11
  - Hotfix: exporting `AppConfig` and `ServerConfig` types to in order to prevent the issue #952.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "express-zod-api",
3
- "version": "14.2.2",
3
+ "version": "14.2.3",
4
4
  "description": "A Typescript library to help you get an API server up and running with I/O schema validation and custom middlewares in minutes.",
5
5
  "license": "MIT",
6
6
  "scripts": {
@@ -17,6 +17,7 @@
17
17
  "build:logo": "yarn tsnode tools/startup-logo.ts",
18
18
  "test": "yarn test:types && yarn test:jest && yarn test:badge",
19
19
  "test:int": "jest ./tests/integration",
20
+ "test:952": "yarn --cwd tests/integration tsc -p tsconfig.issue952.json && rm tests/integration/issue952.d.ts",
20
21
  "test:esm": "jest ./tests/esm",
21
22
  "test:u": "yarn test:jest -u && yarn test:badge",
22
23
  "test:types": "tsc --noEmit",
@@ -46,10 +47,10 @@
46
47
  }
47
48
  },
48
49
  "dependencies": {
49
- "@types/compression": "^1.7.3",
50
- "@types/express-fileupload": "^1.4.2",
50
+ "@types/compression": "^1.7.5",
51
+ "@types/express-fileupload": "^1.4.4",
51
52
  "compression": "~1.7.4",
52
- "express-fileupload": "~1.4.2",
53
+ "express-fileupload": "~1.4.3",
53
54
  "openapi3-ts": "^4.1.2",
54
55
  "ramda": "~0.29.1"
55
56
  },
@@ -118,7 +119,7 @@
118
119
  "prettier": "3.1.0",
119
120
  "strip-ansi": "^6.0.1",
120
121
  "tsd": "^0.29.0",
121
- "tsup": "^7.2.0",
122
+ "tsup": "^8.0.0",
122
123
  "typescript": "^5.2.2",
123
124
  "winston": "^3.10.0",
124
125
  "zod": "^3.22.3"