Skip to content

Commit 7ed6887

Browse files
authored
Prepare release v1.5.0 (#368)
1 parent 8f3f511 commit 7ed6887

File tree

8 files changed

+26
-7
lines changed

8 files changed

+26
-7
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
## 1.5.0 (Dec 16, 2022)
2+
3+
High level enhancements
4+
5+
- Introduced proxy support
6+
- Added support for rendering deprecated schema items/properties
7+
8+
Other enhancements and bug fixes
9+
10+
- Only create list of 2xx content types for request samples ([#365](https://github.com/PaloAltoNetworks/docusaurus-openapi-docs/pull/365))
11+
- [Enhancement] Add deprecated support to schema items ([#367](https://github.com/PaloAltoNetworks/docusaurus-openapi-docs/pull/367))
12+
- [Enhancement] Add proxy support ([#366](https://github.com/PaloAltoNetworks/docusaurus-openapi-docs/pull/366))
13+
- kebab case fix for info pages ([#363](https://github.com/PaloAltoNetworks/docusaurus-openapi-docs/pull/363))
14+
- Hide edit URL by default ([#364](https://github.com/PaloAltoNetworks/docusaurus-openapi-docs/pull/364))
15+
- Update index.ts ([#361](https://github.com/PaloAltoNetworks/docusaurus-openapi-docs/pull/361))
16+
117
## 1.4.7 (Dec 2, 2022)
218

319
High level enhancements

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,7 @@ The `docusaurus-plugin-openapi-docs` plugin can be configured with the following
132132
| ---------------- | -------- | ------- | --------------------------------------------------------------------------------------------------------------------------- |
133133
| `specPath` | `string` | `null` | Designated URL or path to the source of an OpenAPI specification file or directory of multiple OpenAPI specification files. |
134134
| `ouputDir` | `string` | `null` | Desired output path for generated MDX files. |
135+
| `proxy` | `string` | `null` | _Optional:_ Proxy URL to prepend to base URL when performing API requests from browser. |
135136
| `template` | `string` | `null` | _Optional:_ Customize MDX content with a desired template. |
136137
| `downloadUrl` | `string` | `null` | _Optional:_ Designated URL for downloading OpenAPI specification. (requires `info` section/doc) |
137138
| `sidebarOptions` | `object` | `null` | _Optional:_ Set of options for sidebar configuration. See below for a list of supported options. |

demo/docs/intro.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -294,6 +294,7 @@ The `docusaurus-plugin-openapi-docs` plugin can be configured with the following
294294
| ---------------- | -------- | ------- | --------------------------------------------------------------------------------------------------------------------------- |
295295
| `specPath` | `string` | `null` | Designated URL or path to the source of an OpenAPI specification file or directory of multiple OpenAPI specification files. |
296296
| `ouputDir` | `string` | `null` | Desired output path for generated MDX files. |
297+
| `proxy` | `string` | `null` | _Optional:_ Proxy URL to prepend to base URL when performing API requests from browser. |
297298
| `template` | `string` | `null` | _Optional:_ Customize MDX content with a desired template. |
298299
| `downloadUrl` | `string` | `null` | _Optional:_ Designated URL for downloading OpenAPI specification. (requires `info` section/doc) |
299300
| `sidebarOptions` | `object` | `null` | _Optional:_ Set of options for sidebar configuration. See below for a list of supported options. |

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": "1.4.7",
3+
"version": "1.5.0",
44
"private": true,
55
"scripts": {
66
"docusaurus": "docusaurus",
@@ -27,8 +27,8 @@
2727
"@docusaurus/preset-classic": "^2.0.1",
2828
"@mdx-js/react": "^1.6.22",
2929
"clsx": "^1.1.1",
30-
"docusaurus-plugin-openapi-docs": "^1.4.7",
31-
"docusaurus-theme-openapi-docs": "^1.4.7",
30+
"docusaurus-plugin-openapi-docs": "^1.5.0",
31+
"docusaurus-theme-openapi-docs": "^1.5.0",
3232
"prism-react-renderer": "^1.3.1",
3333
"react": "^17.0.2",
3434
"react-dom": "^17.0.2"

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.4.7",
2+
"version": "1.5.0",
33
"npmClient": "yarn",
44
"useWorkspaces": true
55
}

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,7 @@ The `docusaurus-plugin-openapi-docs` plugin can be configured with the following
121121
| ---------------- | -------- | ------- | --------------------------------------------------------------------------------------------------------------------------- |
122122
| `specPath` | `string` | `null` | Designated URL or path to the source of an OpenAPI specification file or directory of multiple OpenAPI specification files. |
123123
| `ouputDir` | `string` | `null` | Desired output path for generated MDX files. |
124+
| `proxy` | `string` | `null` | _Optional:_ Proxy URL to prepend to base URL when performing API requests from browser. |
124125
| `template` | `string` | `null` | _Optional:_ Customize MDX content with a desired template. |
125126
| `downloadUrl` | `string` | `null` | _Optional:_ Designated URL for downloading OpenAPI specification. (requires `info` section/doc) |
126127
| `sidebarOptions` | `object` | `null` | _Optional:_ Set of options for sidebar configuration. See below for a list of supported options. |

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": "1.4.7",
4+
"version": "1.5.0",
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": "1.4.7",
4+
"version": "1.5.0",
55
"license": "MIT",
66
"keywords": [
77
"openapi",
@@ -51,7 +51,7 @@
5151
"buffer": "^6.0.3",
5252
"clsx": "^1.1.1",
5353
"crypto-js": "^4.1.1",
54-
"docusaurus-plugin-openapi-docs": "^1.4.7",
54+
"docusaurus-plugin-openapi-docs": "^1.5.0",
5555
"file-saver": "^2.0.5",
5656
"immer": "^9.0.7",
5757
"lodash": "^4.17.20",

0 commit comments

Comments
 (0)