Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@redocly/openapi-core

Package Overview
Dependencies
Maintainers
6
Versions
624
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@redocly/openapi-core - npm Package Compare versions

Comparing version
1.34.14
to
1.34.15
+6
-0
CHANGELOG.md
# @redocly/openapi-core
## 1.34.15
### Patch Changes
- Applied NPM audit fix to prevent potential security vulnerabilities.
## 1.34.14

@@ -4,0 +10,0 @@

+3
-1

@@ -54,3 +54,5 @@ "use strict";

}
if (typeof root.openapi === 'string' && root.openapi.startsWith('3.1')) {
if (typeof root.openapi === 'string' &&
(root.openapi.startsWith('3.1') || root.openapi.startsWith('3.2')) // temporary support for 3.2
) {
return SpecVersion.OAS3_1;

@@ -57,0 +59,0 @@ }

{
"name": "@redocly/openapi-core",
"version": "1.34.14",
"version": "1.34.15",
"description": "",

@@ -5,0 +5,0 @@ "main": "lib/index.js",

@@ -125,3 +125,6 @@ import { Oas2Types } from './types/oas2';

if (typeof root.openapi === 'string' && root.openapi.startsWith('3.1')) {
if (
typeof root.openapi === 'string' &&
(root.openapi.startsWith('3.1') || root.openapi.startsWith('3.2')) // temporary support for 3.2
) {
return SpecVersion.OAS3_1;

@@ -128,0 +131,0 @@ }

Sorry, the diff of this file is not supported yet