Skip to content

Commit a52b312

Browse files
committed
v5.5.0-beta.1
1 parent 6062514 commit a52b312

File tree

4 files changed

+14
-8
lines changed

4 files changed

+14
-8
lines changed

CONTRIBUTING.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,16 @@ Be [Create a Pull Request](#create-a-pull-request) once you've written you code.
3535

3636
```shell
3737
npm test
38+
39+
## Run tests against express@4 and express@latest
40+
npm run test:all
41+
42+
## Run tests against express@4 only
43+
## NOTE: remember to reinstall express@latest after the run (or run npm run test:express does it automatically)
44+
npm run test:with-express4
45+
46+
## To continue testing express@4 after running the preceding command, you may now simply run npm test as npm run test:with-express4 installs express@4
47+
npm test
3848
```
3949

4050
4. Update documentation

README.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
- 🎈 file upload
2323
- ✏️ OpenAPI 3.0.x and 3.1.x spec support
2424

25-
_[Express 5 support](https://github.com/cdimascio/express-openapi-validator/pull/1034): all tests now pass with v6.0.0-alpha.9!. Try it out and [provide feedback](https://github.com/cdimascio/express-openapi-validator/pull/1034))!_
25+
_Express 5 support available in `>=v5.5.0-beta.1`!_
2626

2727

2828
**Docs:**
@@ -39,10 +39,6 @@ _[Express 5 support](https://github.com/cdimascio/express-openapi-validator/pull
3939

4040
```shell
4141
npm install express-openapi-validator
42-
43-
# for v6.0.0-alpha (for express-5 support)
44-
npm install express-openapi-validator@alpha
45-
4642
```
4743

4844
## Usage

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "express-openapi-validator",
3-
"version": "5.5.0",
3+
"version": "5.5.0-beta.1",
44
"description": "Automatically validate API requests and responses with OpenAPI 3 and Express.",
55
"main": "dist/index.js",
66
"scripts": {

0 commit comments

Comments
 (0)