Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

openapi-format

Package Overview
Dependencies
Maintainers
1
Versions
71
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

openapi-format - npm Package Compare versions

Comparing version 1.22.0 to 1.22.1

4

CHANGELOG.md
## unreleased
## [1.22.1] - 2024-08-04
- Convert - Check node is not null in traverse (#123)
## [1.22.0] - 2024-08-04

@@ -4,0 +8,0 @@

4

openapi-format.js

@@ -60,3 +60,3 @@ #!/usr/bin/env node

if (typeof node === 'object') {
if (typeof node === 'object' && node !== null) {

@@ -889,3 +889,3 @@ // Components sorting by alphabet

traverse(jsonObj).forEach(function (node) {
if (typeof node === 'object') {
if (typeof node === 'object' && node !== null) {
// Change components/schemas - properties

@@ -892,0 +892,0 @@ if (node.type) {

{
"name": "openapi-format",
"version": "1.22.0",
"version": "1.22.1",
"description": "Format an OpenAPI document by ordering, formatting and filtering fields.",

@@ -5,0 +5,0 @@ "keywords": [

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc