Skip to content

Prepare release v2.2.2 #916

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
## 2.2.2 (Aug 14, 2024)

High level enhancements

- Various bug fixes and support for allOf, anyOf, oneOf.

Other enhancements and bug fixes

- Ensure same-level properties and allOf are rendered ([#904](https://github.com/PaloAltoNetworks/docusaurus-openapi-docs/pull/904))
- statically set generated date and date-time example value ([#901](https://github.com/PaloAltoNetworks/docusaurus-openapi-docs/pull/901))
- Fix support for example summaries ([#898](https://github.com/PaloAltoNetworks/docusaurus-openapi-docs/pull/898))
- Support anyOf/oneOf schema descriptions ([#897](https://github.com/PaloAltoNetworks/docusaurus-openapi-docs/pull/897))
- Check if the outputDir exists before attempting to create the versions.json file ([#892](https://github.com/PaloAltoNetworks/docusaurus-openapi-docs/pull/892))
- Add object primitive support to createAnyOneOf ([#895](https://github.com/PaloAltoNetworks/docusaurus-openapi-docs/pull/895))

## 2.2.1 (Jul 3, 2024)

High level enhancements
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ Key Features:
Run the following to bootstrap a Docsaurus v3 site (classic theme) with `docusaurus-openapi-docs`:

```bash
npx create-docusaurus@3.4.0 my-website --package-manager yarn
npx create-docusaurus@2.4.3 my-website --package-manager yarn
```

> When prompted to select a template choose `Git repository`.
Expand Down
6 changes: 3 additions & 3 deletions demo/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "demo",
"version": "2.2.1",
"version": "2.2.2",
"private": true,
"scripts": {
"docusaurus": "docusaurus",
Expand All @@ -26,8 +26,8 @@
"@docusaurus/preset-classic": "2.4.3",
"@mdx-js/react": "^1.6.22",
"clsx": "^1.1.1",
"docusaurus-plugin-openapi-docs": "^2.2.0",
"docusaurus-theme-openapi-docs": "^2.2.1",
"docusaurus-plugin-openapi-docs": "^2.2.2",
"docusaurus-theme-openapi-docs": "^2.2.2",
"prism-react-renderer": "^1.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "2.2.1",
"version": "2.2.2",
"npmClient": "yarn",
"useWorkspaces": true
}
2 changes: 1 addition & 1 deletion packages/docusaurus-plugin-openapi-docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ Key Features:
Run the following to bootstrap a Docsaurus v3 site (classic theme) with `docusaurus-openapi-docs`:

```bash
npx create-docusaurus@3.4.0 my-website --package-manager yarn
npx create-docusaurus@2.4.3 my-website --package-manager yarn
```

> When prompted to select a template choose `Git repository`.
Expand Down
2 changes: 1 addition & 1 deletion packages/docusaurus-plugin-openapi-docs/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "docusaurus-plugin-openapi-docs",
"description": "OpenAPI plugin for Docusaurus.",
"version": "2.2.1",
"version": "2.2.2",
"license": "MIT",
"keywords": [
"openapi",
Expand Down
4 changes: 2 additions & 2 deletions packages/docusaurus-theme-openapi-docs/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "docusaurus-theme-openapi-docs",
"description": "OpenAPI theme for Docusaurus.",
"version": "2.2.1",
"version": "2.2.2",
"license": "MIT",
"keywords": [
"openapi",
Expand Down Expand Up @@ -41,7 +41,7 @@
"clsx": "^1.1.1",
"copy-text-to-clipboard": "^3.1.0",
"crypto-js": "^4.1.1",
"docusaurus-plugin-openapi-docs": "^2.2.0",
"docusaurus-plugin-openapi-docs": "^2.2.2",
"docusaurus-plugin-sass": "^0.2.3",
"file-saver": "^2.0.5",
"lodash": "^4.17.20",
Expand Down
Loading