Skip to content

Commit d0a422a

Browse files
authored
Prepare release v0.2.1 (#75)
1 parent 6edb4a8 commit d0a422a

File tree

6 files changed

+21
-9
lines changed

6 files changed

+21
-9
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## 0.2.1 (Dec 5, 2021)
2+
3+
High level enhancements
4+
5+
- The demo panel now allows you to choose the security scheme from a dropdown that is populated by the OpenAPI definition (only showing the dropdown if more than one is listed)
6+
- Adds support for using multiple auth modes simultaneously (Eg: `(BearerAuth) OR (ApiKeyAuth AND BasicAuth)`)
7+
- Adds an `authPersistence` option to `themeConfig.api`. Defaults to `"localStorage"`, can be set to `false` to disable or `sessionStorage` to only persist while the window is open.
8+
9+
Other enhancements and bug fixes
10+
11+
- Add better auth support ([#74](https://github.com/cloud-annotations/docusaurus-plugin-openapi/pull/74))
12+
113
## 0.2.0 (Dec 4, 2021)
214

315
### 💥 Breaking Changes

demo/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "demo",
3-
"version": "0.2.0",
3+
"version": "0.2.1",
44
"private": true,
55
"scripts": {
66
"docusaurus": "docusaurus",
@@ -18,7 +18,7 @@
1818
"@mdx-js/react": "^1.6.21",
1919
"@svgr/webpack": "^5.5.0",
2020
"clsx": "^1.1.1",
21-
"docusaurus-preset-openapi": "^0.2.0",
21+
"docusaurus-preset-openapi": "^0.2.1",
2222
"file-loader": "^6.2.0",
2323
"prism-react-renderer": "^1.2.1",
2424
"react": "^17.0.1",

lerna.json

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

packages/docusaurus-plugin-openapi/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",
33
"description": "OpenAPI plugin for Docusaurus.",
4-
"version": "0.2.0",
4+
"version": "0.2.1",
55
"license": "MIT",
66
"publishConfig": {
77
"access": "public"

packages/docusaurus-preset-openapi/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "docusaurus-preset-openapi",
33
"description": "OpenAPI preset for Docusaurus.",
4-
"version": "0.2.0",
4+
"version": "0.2.1",
55
"license": "MIT",
66
"publishConfig": {
77
"access": "public"
@@ -32,8 +32,8 @@
3232
"@docusaurus/preset-classic": "2.0.0-beta.9",
3333
"@docusaurus/theme-classic": "2.0.0-beta.9",
3434
"@docusaurus/theme-search-algolia": "2.0.0-beta.9",
35-
"docusaurus-plugin-openapi": "^0.2.0",
36-
"docusaurus-theme-openapi": "^0.2.0"
35+
"docusaurus-plugin-openapi": "^0.2.1",
36+
"docusaurus-theme-openapi": "^0.2.1"
3737
},
3838
"peerDependencies": {
3939
"react": "^16.8.4 || ^17.0.0",

packages/docusaurus-theme-openapi/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",
33
"description": "OpenAPI theme for Docusaurus.",
4-
"version": "0.2.0",
4+
"version": "0.2.1",
55
"license": "MIT",
66
"publishConfig": {
77
"access": "public"
@@ -40,7 +40,7 @@
4040
"@monaco-editor/react": "^4.3.1",
4141
"buffer": "^6.0.3",
4242
"clsx": "^1.1.1",
43-
"docusaurus-plugin-openapi": "^0.2.0",
43+
"docusaurus-plugin-openapi": "^0.2.1",
4444
"immer": "^9.0.6",
4545
"lodash": "^4.17.20",
4646
"postman-code-generators": "^1.0.0",

0 commit comments

Comments
 (0)