Skip to content

Commit 7f194ce

Browse files
authored
Prepare release v4.3.2 (#1069)
1 parent b8d4f13 commit 7f194ce

File tree

7 files changed

+26
-11
lines changed

7 files changed

+26
-11
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
## 4.3.2 (Jan 24, 2025)
2+
3+
High level enhancements
4+
5+
- Add support for JSON Schema `null` type
6+
- Improve handling of required fields in request bodies
7+
- Normalize response body arrays to improve consistency
8+
9+
Other enhancements and bug fixes
10+
11+
- add support for json schema null type ([#1068](https://github.com/PaloAltoNetworks/docusaurus-openapi-docs/pull/1068))
12+
- allow default body to satisfy required ([#1067](https://github.com/PaloAltoNetworks/docusaurus-openapi-docs/pull/1067))
13+
- normalize body array instead of returning literal ([#1066](https://github.com/PaloAltoNetworks/docusaurus-openapi-docs/pull/1066))
14+
- Upgrade demo and packages to support 3.7.0 ([#1064](https://github.com/PaloAltoNetworks/docusaurus-openapi-docs/pull/1064))
15+
116
## 4.3.1 (Dec 17, 2024)
217

318
High level enhancements

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Key Features:
4141

4242
| Docusaurus OpenAPI Docs | Docusaurus |
4343
| ----------------------- | --------------- |
44-
| 4.x.x (current) | `3.5.0 - 3.6.x` |
44+
| 4.x.x (current) | `3.5.0 - 3.7.x` |
4545
| 3.0.x (end-of-support) | `3.0.1 - 3.4.0` |
4646
| 2.2.3 (legacy) | `2.4.1 - 2.4.3` |
4747
| 1.7.3 (end-of-support) | `2.0.1 - 2.2.0` |
@@ -51,7 +51,7 @@ Key Features:
5151
Run the following to bootstrap a Docsaurus v3 site (classic theme) with `docusaurus-openapi-docs`:
5252

5353
```bash
54-
npx create-docusaurus@3.6.3 my-website --package-manager yarn
54+
npx create-docusaurus@3.7.0 my-website --package-manager yarn
5555
```
5656

5757
> When prompted to select a template choose `Git repository`.

demo/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "demo",
3-
"version": "4.3.1",
3+
"version": "4.3.2",
44
"private": true,
55
"scripts": {
66
"docusaurus": "docusaurus",
@@ -26,8 +26,8 @@
2626
"@docusaurus/plugin-google-gtag": "3.7.0",
2727
"@docusaurus/preset-classic": "3.7.0",
2828
"clsx": "^1.1.1",
29-
"docusaurus-plugin-openapi-docs": "^4.3.1",
30-
"docusaurus-theme-openapi-docs": "^4.3.1",
29+
"docusaurus-plugin-openapi-docs": "^4.3.2",
30+
"docusaurus-theme-openapi-docs": "^4.3.2",
3131
"prism-react-renderer": "^2.3.0",
3232
"react": "^19.0.0",
3333
"react-dom": "^19.0.0"

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"version": "4.3.1",
2+
"version": "4.3.2",
33
"npmClient": "yarn"
44
}

packages/docusaurus-plugin-openapi-docs/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Key Features:
4141

4242
| Docusaurus OpenAPI Docs | Docusaurus |
4343
| ----------------------- | --------------- |
44-
| 4.0.x (current) | `3.5.0 - 3.6.x` |
44+
| 4.0.x (current) | `3.5.0 - 3.7.x` |
4545
| 3.0.x (end-of-support) | `3.0.1 - 3.4.0` |
4646
| 2.2.3 (legacy) | `2.4.1 - 2.4.3` |
4747
| 1.7.3 (end-of-support) | `2.0.1 - 2.2.0` |
@@ -51,7 +51,7 @@ Key Features:
5151
Run the following to bootstrap a Docsaurus v3 site (classic theme) with `docusaurus-openapi-docs`:
5252

5353
```bash
54-
npx create-docusaurus@3.6.3 my-website --package-manager yarn
54+
npx create-docusaurus@3.7.0 my-website --package-manager yarn
5555
```
5656

5757
> When prompted to select a template choose `Git repository`.

packages/docusaurus-plugin-openapi-docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "docusaurus-plugin-openapi-docs",
33
"description": "OpenAPI plugin for Docusaurus.",
4-
"version": "4.3.1",
4+
"version": "4.3.2",
55
"license": "MIT",
66
"keywords": [
77
"openapi",

packages/docusaurus-theme-openapi-docs/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "docusaurus-theme-openapi-docs",
33
"description": "OpenAPI theme for Docusaurus.",
4-
"version": "4.3.1",
4+
"version": "4.3.2",
55
"license": "MIT",
66
"keywords": [
77
"openapi",
@@ -34,7 +34,7 @@
3434
"@types/file-saver": "^2.0.5",
3535
"@types/lodash": "^4.14.176",
3636
"concurrently": "^5.2.0",
37-
"docusaurus-plugin-openapi-docs": "^4.3.1",
37+
"docusaurus-plugin-openapi-docs": "^4.3.2",
3838
"docusaurus-plugin-sass": "^0.2.3",
3939
"eslint-plugin-prettier": "^5.0.1"
4040
},

0 commit comments

Comments
 (0)