Skip to content

Commit 8c320f5

Browse files
committed
v0.5.1 release
1 parent 4b2d0b1 commit 8c320f5

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

CHANGELOG

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
mkdocs-swagger-ui-tag 0.5.1 (2022-12-13)
2+
3+
* Fixed extra CSS files in Swagger UI iframe bug (#7)
4+
15
mkdocs-swagger-ui-tag 0.5.0 (2022-12-03)
26

37
* Supported extra CSS files in Swagger UI iframe (#7)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ A MkDocs plugin supports for add [Swagger UI](https://github.com/swagger-api/swa
2525
1. Python Package
2626
1. beautifulsoup4>=4.11.1
2727
2. [Swagger UI dist](https://www.npmjs.com/package/swagger-ui-dist) javascript file and css file
28-
1. swagger-ui-dist==4.14.0
28+
1. swagger-ui-dist==4.15.5
2929

3030
## Usage
3131

@@ -72,7 +72,7 @@ A MkDocs plugin supports for add [Swagger UI](https://github.com/swagger-api/swa
7272
| oauth2RedirectUrl | String | Default: Absolute URL of "/assets/swagger-ui/oauth2-redirect.html" relative with site_url in mkdocs.yml or document root path on site without site_url, e.g. "[https://blueswen.github.io/mkdocs-swagger-ui-tag/assets/swagger-ui/oauth2-redirect.html](https://blueswen.github.io/mkdocs-swagger-ui-tag/assets/swagger-ui/oauth2-redirect.html)". OAuth redirect URL. |
7373
| supportedSubmitMethods | Array | Default: All Http Methods. Array=["get", "put", "post", "delete", "options", "head", "patch", "trace"]. List of HTTP methods that have the "Try it out" feature enabled. An empty array disables "Try it out" for all operations. This does not filter the operations from the display. |
7474
| validatorUrl | String | Default: "none". By default, the validation is disabled. When setting with "https://validator.swagger.io/validator", Swagger UI attempts to validate specs against swagger.io's online validator in multiple OAS Swagger UI. You can use this parameter to set a different validator URL, for example for locally deployed validators ([Validator Badge](https://github.com/swagger-api/validator-badge)). |
75-
| extra_css | Array | Default: []. Extra CSS files included in Swagger UI iframe target html file. |
75+
| extra_css | Array | Default: []. Extra CSS files in your `docs_dir` included in Swagger UI iframe target html file. |
7676
7777
## How it works
7878

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"dependencies": {
3-
"swagger-ui-dist": "4.14.0"
3+
"swagger-ui-dist": "4.15.5"
44
}
55
}

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
long_description = f.read()
55

66
setup(name="mkdocs-swagger-ui-tag",
7-
version="0.5.0",
7+
version="0.5.1",
88
author="Blueswen",
99
author_email="blueswen.tw@gmail.com",
1010
url="https://blueswen.github.io/mkdocs-swagger-ui-tag",

0 commit comments

Comments
 (0)