Skip to content

Commit ab5f392

Browse files
authored
Prepare release v3.0.0-beta.9 (#773)
* Prepare release v3.0.0-beta.9 * fix formatting issue
1 parent 530d2c8 commit ab5f392

File tree

6 files changed

+19
-9
lines changed

6 files changed

+19
-9
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## 3.0.0-beta.9 (Mar 22, 2024)
2+
3+
High level enhancements
4+
5+
- bugfix
6+
7+
Other enhancements and bug fixes
8+
9+
- ensure correct eval of required properties with allOf ([#771](https://github.com/PaloAltoNetworks/docusaurus-openapi-docs/pull/771))
10+
111
## 3.0.0-beta.8 (Mar 21, 2024)
212

313
High level enhancements

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": "3.0.0-beta.8",
3+
"version": "3.0.0-beta.9",
44
"private": true,
55
"scripts": {
66
"docusaurus": "docusaurus",
@@ -25,8 +25,8 @@
2525
"@docusaurus/plugin-google-gtag": "3.1.1",
2626
"@docusaurus/preset-classic": "3.1.1",
2727
"clsx": "^1.1.1",
28-
"docusaurus-plugin-openapi-docs": "^3.0.0-beta.8",
29-
"docusaurus-theme-openapi-docs": "^3.0.0-beta.8",
28+
"docusaurus-plugin-openapi-docs": "^3.0.0-beta.9",
29+
"docusaurus-theme-openapi-docs": "^3.0.0-beta.9",
3030
"prism-react-renderer": "^2.3.0",
3131
"react": "^18.2.0",
3232
"react-dom": "^18.2.0"

lerna.json

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

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": "3.0.0-beta.8",
4+
"version": "3.0.0-beta.9",
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": "3.0.0-beta.8",
4+
"version": "3.0.0-beta.9",
55
"license": "MIT",
66
"keywords": [
77
"openapi",
@@ -44,7 +44,7 @@
4444
"clsx": "^1.1.1",
4545
"copy-text-to-clipboard": "^3.1.0",
4646
"crypto-js": "^4.1.1",
47-
"docusaurus-plugin-openapi-docs": "^3.0.0-beta.8",
47+
"docusaurus-plugin-openapi-docs": "^3.0.0-beta.9",
4848
"docusaurus-plugin-sass": "^0.2.3",
4949
"file-saver": "^2.0.5",
5050
"lodash": "^4.17.20",

packages/docusaurus-theme-openapi-docs/src/theme/ApiTabs/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,8 +161,8 @@ function TabList({
161161
parseInt(value) >= 400
162162
? "danger"
163163
: parseInt(value) >= 200 && parseInt(value) < 300
164-
? "success"
165-
: "info",
164+
? "success"
165+
: "info",
166166
{
167167
active: selectedValue === value,
168168
}

0 commit comments

Comments
 (0)