Skip to content

Commit

Permalink
implement as standard connect middleware (#351)
Browse files Browse the repository at this point in the history
* implement as standard express middleware

* conver to standard express middleware

* require options only

* update codacy

* update ncyrc

* update nyc

* update readme

* update README

* update README

* cleanup specs

* remove sync test

* update examples

* namspace errors and provide a default export

* alpha.2

* fix test

* publish changelog

* improve response type handling

* increment patch version

* improve async init with connect middleware

* update packages

* update deps

* fix operation handlers when installed as router middleware

* update README

* do not pass routes to path params

* update patch version

* add default resolver cache

* update alpha version

* update README

* fix for issue #369

* add test no query params

* increment alpha version

* increment alpha to beta

* update README

* Update README.md

* Update README.md

* increment beta version

* remove default export

* update import

* example lock

* update README

* ignore sav file

* add publish target

* add publish target

Co-authored-by: dystopiandev <[email protected]>
  • Loading branch information
cdimascio and starstechhub authored Sep 28, 2020
1 parent 2231a29 commit b806dd4
Show file tree
Hide file tree
Showing 61 changed files with 8,594 additions and 3,712 deletions.
1 change: 1 addition & 0 deletions .codacy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ exclude_paths:
- 'test/*'
- '**.md'
- src/framework/modded.express.mung.ts
- src/resolvers.ts
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,5 @@ secrets.zip
jest
junk
/a_reference
/sample2
/sample2
README.md.sav
7 changes: 3 additions & 4 deletions .nycrc
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@
"src/index.ts"
],
"exclude": [
"test/*"
"**/*.d.ts",
"test/*",
"src/resolvers.ts"
],
"ignore-class-method": "methodToIgnore",
"reporter": [
Expand All @@ -22,8 +24,5 @@
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/*.d.ts"
]
}
5 changes: 5 additions & 0 deletions CHANGE_HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
<<<<<<< HEAD:CHANGELOG.md
## 4.0.0-alpha.6 (2020-09-13)
=======
## <small>3.17.2 (2020-09-22)</small>

* (fix) #367 - handle negative floats ([a7e5d4d](https://github.com/cdimascio/express-openapi-validator/commit/a7e5d4d)), closes [#367](https://github.com/cdimascio/express-openapi-validator/issues/367)
Expand Down Expand Up @@ -41,6 +44,7 @@


## 3.17.0 (2020-09-13)
>>>>>>> master:CHANGE_HISTORY.md
* #356 test ([7a28d51](https://github.com/cdimascio/express-openapi-validator/commit/7a28d51)), closes [#356](https://github.com/cdimascio/express-openapi-validator/issues/356)
* add #356 test ([98ad9d8](https://github.com/cdimascio/express-openapi-validator/commit/98ad9d8)), closes [#356](https://github.com/cdimascio/express-openapi-validator/issues/356)
Expand Down Expand Up @@ -70,6 +74,7 @@


## <small>3.16.14 (2020-09-07)</small>
>>>>>>> master
* #356 test ([7a28d51](https://github.com/cdimascio/express-openapi-validator/commit/7a28d51)), closes [#356](https://github.com/cdimascio/express-openapi-validator/issues/356)
* add #356 test ([98ad9d8](https://github.com/cdimascio/express-openapi-validator/commit/98ad9d8)), closes [#356](https://github.com/cdimascio/express-openapi-validator/issues/356)
Expand Down
Loading

0 comments on commit b806dd4

Please sign in to comment.