You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
All notable changes to this project will be documented in this file.
4
+
5
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+
## [1.1.1] - 2024-06-01
9
+
10
+
## Added
11
+
12
+
### Now, support for OpenAPI 3.1 is included. These are some of the new changes:
13
+
14
+
- Introduces support for webhooks, allowing you to describe asynchronous notifications that your API can send to users' systems.
15
+
- Replaces the nullable keyword with type arrays, aligning with JSON Schema by allowing multiple types in the type keyword.
16
+
- ExclusiveMinimum and ExclusiveMaximum now take distinct values instead of boolean, simplifying their use.
17
+
- Replace example with examples inside schema objects, allowing multiple examples in a YAML array format, aligning with JSON Schema.
18
+
- Binary file uploads in POST requests no longer require a schema definition, simplifying the process.
19
+
- For base64 encoded file uploads, OpenAPI 3.1 uses contentEncoding to specify the encoding.
20
+
- For multipart file uploads with binary files, OpenAPI 3.1 uses contentMediaType to specify the media type.
21
+
- The $schema keyword is now allowed in OpenAPI 3.1, enabling the definition of the JSON Schema dialect a model uses, which can be different drafts or custom dialects.
22
+
- Introduces support for mutual TLS (mTLS), providing two-way authentication between the client and server for enhanced security.
23
+
- General improvements in the alignment and clarity of the specification, including enhancements to OAuth 2.0 support.
24
+
- Added support for the identifier keyword in the License Object, allowing the definition of an SPDX license expression for the API.
25
+
- Added compatibility with the dosonarapi plugin(now, renamed to SonarOpenAPI-Rules), which now provides many rule definitions for OpenAPI 3.1
0 commit comments