Skip to content

Commit 060b577

Browse files
authored
Prepare release v2.2.0 (#866)
1 parent 9208166 commit 060b577

File tree

5 files changed

+39
-12
lines changed

5 files changed

+39
-12
lines changed

CHANGELOG.md

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,31 @@
1-
- preventing to send form onClick left/right arrows in SchemaTabs component
1+
## 2.2.0 (Jul 3, 2024)
2+
3+
High level enhancements
4+
5+
- Improved support for customizing code snippets
6+
- Switched back to canonical postman depdendencies
7+
- Improved support for OpenAPI readOnly/writeOnly
8+
- Added support for OpenAPI `x-tags`
9+
10+
Other enhancements and bug fixes
11+
12+
- fix typo in attribute ([#864](https://github.com/PaloAltoNetworks/docusaurus-openapi-docs/pull/864))
13+
- uncomment version dropdown styles ([#863](https://github.com/PaloAltoNetworks/docusaurus-openapi-docs/pull/863))
14+
- revert to canonical postman libraries ([#861](https://github.com/PaloAltoNetworks/docusaurus-openapi-docs/pull/861))
15+
- Fix tagGroup display when showSchemas is configured ([#851](https://github.com/PaloAltoNetworks/docusaurus-openapi-docs/pull/851))
16+
- check to avoid tagGroup config before concat operation, api, schemas ([#854](https://github.com/PaloAltoNetworks/docusaurus-openapi-docs/pull/854))
17+
- support empty object schema type ([#849](https://github.com/PaloAltoNetworks/docusaurus-openapi-docs/pull/849))
18+
- ensure readOnly/writeOnly are evaluated first ([#848](https://github.com/PaloAltoNetworks/docusaurus-openapi-docs/pull/848))
19+
- fix: markdown table within the description attribute cannot be rendered correctly ([#831](https://github.com/PaloAltoNetworks/docusaurus-openapi-docs/pull/831))
20+
- Implement the `x-tags` extension for schema objects ([#837](https://github.com/PaloAltoNetworks/docusaurus-openapi-docs/pull/837))
21+
- fix col row padding footer&pagination ([#810](https://github.com/PaloAltoNetworks/docusaurus-openapi-docs/pull/810))
22+
- Update index.tsx ([#839](https://github.com/PaloAltoNetworks/docusaurus-openapi-docs/pull/839))
23+
- Fix clean-api-docs not deleting sidebar.ts ([#829](https://github.com/PaloAltoNetworks/docusaurus-openapi-docs/pull/829))
24+
- Add option to disable frontmatter api prop compression ([#800](https://github.com/PaloAltoNetworks/docusaurus-openapi-docs/pull/800))
25+
- preventing to send form onClick left/right arrows in SchemaTabs component ([#796](https://github.com/PaloAltoNetworks/docusaurus-openapi-docs/pull/796))
26+
- changed theme and plugin to headings ([#786](https://github.com/PaloAltoNetworks/docusaurus-openapi-docs/pull/786))
27+
- Allow custom plugin to render ([#784](https://github.com/PaloAltoNetworks/docusaurus-openapi-docs/pull/784))
28+
- Remove scrollbar width for Tab components ([#785](https://github.com/PaloAltoNetworks/docusaurus-openapi-docs/pull/785))
229

330
## 2.1.3 (Mar 22, 2024)
431

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": "2.1.3",
3+
"version": "2.2.0",
44
"private": true,
55
"scripts": {
66
"docusaurus": "docusaurus",
@@ -26,8 +26,8 @@
2626
"@docusaurus/preset-classic": "2.4.3",
2727
"@mdx-js/react": "^1.6.22",
2828
"clsx": "^1.1.1",
29-
"docusaurus-plugin-openapi-docs": "^2.1.3",
30-
"docusaurus-theme-openapi-docs": "^2.1.3",
29+
"docusaurus-plugin-openapi-docs": "^2.2.0",
30+
"docusaurus-theme-openapi-docs": "^2.2.0",
3131
"prism-react-renderer": "^1.3.1",
3232
"react": "^18.2.0",
3333
"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": "2.1.3",
2+
"version": "2.2.0",
33
"npmClient": "yarn",
44
"useWorkspaces": true
55
}

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

Lines changed: 3 additions & 3 deletions
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": "2.1.3",
4+
"version": "2.2.0",
55
"license": "MIT",
66
"keywords": [
77
"openapi",
@@ -40,8 +40,6 @@
4040
"@docusaurus/plugin-content-docs": ">=2.4.1 <=2.4.3",
4141
"@docusaurus/utils": ">=2.4.1 <=2.4.3",
4242
"@docusaurus/utils-validation": ">=2.4.1 <=2.4.3",
43-
"openapi-to-postmanv2": "^4.21.0",
44-
"postman-collection": "^4.4.0",
4543
"@redocly/openapi-core": "^1.10.5",
4644
"chalk": "^4.1.2",
4745
"clsx": "^1.1.1",
@@ -50,6 +48,8 @@
5048
"json-schema-merge-allof": "^0.8.1",
5149
"lodash": "^4.17.20",
5250
"mustache": "^4.2.0",
51+
"openapi-to-postmanv2": "^4.21.0",
52+
"postman-collection": "^4.4.0",
5353
"slugify": "^1.6.5",
5454
"swagger2openapi": "^7.0.8",
5555
"xml-formatter": "^2.6.1"

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

Lines changed: 4 additions & 4 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": "2.1.3",
4+
"version": "2.2.0",
55
"license": "MIT",
66
"keywords": [
77
"openapi",
@@ -37,17 +37,17 @@
3737
"dependencies": {
3838
"@docusaurus/theme-common": ">=2.4.1 <=2.4.3",
3939
"@hookform/error-message": "^2.0.1",
40-
"postman-code-generators": "^1.10.1",
41-
"postman-collection": "^4.4.0",
4240
"@reduxjs/toolkit": "^1.7.1",
4341
"clsx": "^1.1.1",
4442
"copy-text-to-clipboard": "^3.1.0",
4543
"crypto-js": "^4.1.1",
46-
"docusaurus-plugin-openapi-docs": "^2.1.3",
44+
"docusaurus-plugin-openapi-docs": "^2.2.0",
4745
"docusaurus-plugin-sass": "^0.2.3",
4846
"file-saver": "^2.0.5",
4947
"lodash": "^4.17.20",
5048
"node-polyfill-webpack-plugin": "^2.0.1",
49+
"postman-code-generators": "^1.10.1",
50+
"postman-collection": "^4.4.0",
5151
"prism-react-renderer": "^1.3.5",
5252
"react-hook-form": "^7.43.8",
5353
"react-live": "^4.0.0",

0 commit comments

Comments
 (0)