openapi-format
Advanced tools
Comparing version 1.10.2 to 1.10.3
## unreleased | ||
## [1.10.3] - 2022-06-21 | ||
- Bugfix for handling null values with inverse filtering (#56) | ||
## [1.10.2] - 2022-06-07 | ||
@@ -4,0 +8,0 @@ |
@@ -362,3 +362,3 @@ #!/usr/bin/env node | ||
// Filter out fields without operationIds, when Inverse operationIds is set | ||
if (inverseFilterProps.length > 0 && this.path[0] === 'paths' && node.operationId === undefined | ||
if (node !== null && inverseFilterProps.length > 0 && this.path[0] === 'paths' && node.operationId === undefined | ||
&& httpVerbs.includes(this.key) | ||
@@ -365,0 +365,0 @@ ) { |
{ | ||
"name": "openapi-format", | ||
"version": "1.10.2", | ||
"version": "1.10.3", | ||
"description": "Format an OpenAPI document by ordering, formatting and filtering fields.", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
104821