You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Major performance improvement: The new `externalJsonProps` option (enabled by default) dramatically reduces build times and bundle sizes by externalizing large JSON props from MDX files.
- New `externalJsonProps` plugin option significantly improves build performance
- Sticky positioning for the API Explorer right panel improves UX on long API pages
- Dynamic request body updates when switching anyOf/oneOf tabs
#### 🚀 New Feature
- feat(plugin): add externalJsonProps option (enabled by default) to improve build performance (#1279)
- feat(theme): add sticky positioning to API Explorer right panel (#1288)
- feat: dynamically update request body when anyOf/oneOf tab changes (#1287)
#### 🐛 Bug Fix
- fix: render inline enum values in anyOf schemas (#1286)
- fix: generate correct examples for different request content types (#1284)
#### 🏠 Refactoring
- refactor: change plugin and theme types.ts to types.d.ts (#1281)
- refactor: externalize using create() and drop size threshold requirement (#1280)
#### 📝 Documentation
- docs: sync README and intro.mdx with plugin docs
#### 🤖 Dependencies
- chore(deps): bump lodash from 4.17.21 to 4.17.23 (#1282)
#### Committers: 3
- dependabot[bot]
- Ollie Monk
- Steven Serrata
Copy file name to clipboardExpand all lines: AGENTS.md
+47-9Lines changed: 47 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -86,24 +86,62 @@ This outputs a changelog template comparing commits between the latest tag and `
86
86
87
87
**Changelog format:**
88
88
89
+
The changelog uses a categorized format inspired by [Docusaurus](https://github.com/facebook/docusaurus/blob/main/CHANGELOG.md). Each release includes a high-level summary followed by categorized changes with emoji headers.
90
+
89
91
```markdown
90
-
## X.Y.Z (Mon DD, YYYY)
92
+
## X.Y.Z (YYYY-MM-DD)
93
+
94
+
Brief summary of the most significant changes in this release (1-3 sentences).
95
+
96
+
- Bullet points highlighting major user-facing features or fixes
97
+
98
+
#### :rocket: New Feature
99
+
100
+
- feat: description of feature ([#123](https://github.com/PaloAltoNetworks/docusaurus-openapi-docs/pull/123))
101
+
102
+
#### :bug: Bug Fix
103
+
104
+
- fix: description of fix ([#124](https://github.com/PaloAltoNetworks/docusaurus-openapi-docs/pull/124))
Copy file name to clipboardExpand all lines: CHANGELOG.md
+38Lines changed: 38 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,41 @@
1
+
## 4.7.0 (2026-01-27)
2
+
3
+
Major performance improvement: The new `externalJsonProps` option (enabled by default) dramatically reduces build times and bundle sizes by externalizing large JSON props from MDX files.
4
+
5
+
- New `externalJsonProps` plugin option significantly improves build performance
6
+
- Sticky positioning for the API Explorer right panel improves UX on long API pages
7
+
- Dynamic request body updates when switching anyOf/oneOf tabs
8
+
9
+
#### :rocket: New Feature
10
+
11
+
- feat(plugin): add externalJsonProps option (enabled by default) to improve build performance ([#1279](https://github.com/PaloAltoNetworks/docusaurus-openapi-docs/pull/1279))
12
+
- feat(theme): add sticky positioning to API Explorer right panel ([#1288](https://github.com/PaloAltoNetworks/docusaurus-openapi-docs/pull/1288))
13
+
- feat: dynamically update request body when anyOf/oneOf tab changes ([#1287](https://github.com/PaloAltoNetworks/docusaurus-openapi-docs/pull/1287))
14
+
15
+
#### :bug: Bug Fix
16
+
17
+
- fix: render inline enum values in anyOf schemas ([#1286](https://github.com/PaloAltoNetworks/docusaurus-openapi-docs/pull/1286))
18
+
- fix: generate correct examples for different request content types ([#1284](https://github.com/PaloAltoNetworks/docusaurus-openapi-docs/pull/1284))
19
+
20
+
#### :house: Refactoring
21
+
22
+
- refactor: change plugin and theme types.ts to types.d.ts ([#1281](https://github.com/PaloAltoNetworks/docusaurus-openapi-docs/pull/1281))
23
+
- refactor: externalize using create() and drop size threshold requirement ([#1280](https://github.com/PaloAltoNetworks/docusaurus-openapi-docs/pull/1280))
24
+
25
+
#### :memo: Documentation
26
+
27
+
- docs: sync README and intro.mdx with plugin docs
28
+
29
+
#### :robot: Dependencies
30
+
31
+
- chore(deps): bump lodash from 4.17.21 to 4.17.23 ([#1282](https://github.com/PaloAltoNetworks/docusaurus-openapi-docs/pull/1282))
0 commit comments