Version Packages (#2988)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
Samy Pessé
2025-03-24 17:43:16 +01:00
committed by GitHub
parent 48c18c03b9
commit 59a1863bcf
23 changed files with 69 additions and 96 deletions
-5
View File
@@ -1,5 +0,0 @@
---
'@gitbook/openapi-parser': patch
---
Add option to pass scalar plugins
-5
View File
@@ -1,5 +0,0 @@
---
'gitbook': patch
---
Fix OpenAPI path overflow on mobile
-5
View File
@@ -1,5 +0,0 @@
---
"gitbook": patch
---
Fix alignment of `prominent` search bar on full-width pages
-6
View File
@@ -1,6 +0,0 @@
---
"@gitbook/react-openapi": patch
"gitbook": patch
---
Support body examples
-6
View File
@@ -1,6 +0,0 @@
---
"gitbook-v2": patch
"gitbook": patch
---
Add initial support for loading custom fonts
-6
View File
@@ -1,6 +0,0 @@
---
"@gitbook/openapi-parser": patch
"@gitbook/react-openapi": patch
---
Update scalar
-6
View File
@@ -1,6 +0,0 @@
---
"@gitbook/react-openapi": patch
"gitbook": patch
---
Mark properties as optional if not required
-5
View File
@@ -1,5 +0,0 @@
---
'@gitbook/react-openapi': patch
---
Fix write only properties in request example
-5
View File
@@ -1,5 +0,0 @@
---
'@gitbook/react-openapi': patch
---
Stringify default value
-6
View File
@@ -1,6 +0,0 @@
---
"gitbook-v2": patch
"gitbook": patch
---
Fix site redirects when it includes a section/variant path
-5
View File
@@ -1,5 +0,0 @@
---
"gitbook": patch
---
Restyle section group dropdown
-5
View File
@@ -1,5 +0,0 @@
---
'@gitbook/react-openapi': patch
---
Remove default value in generateSchemaExample
-5
View File
@@ -1,5 +0,0 @@
---
"gitbook": patch
---
Fix `prominent` search bar width on `md` screens
-5
View File
@@ -1,5 +0,0 @@
---
'@gitbook/react-openapi': patch
---
Update resolveDescription and add minItems/maxItems
-5
View File
@@ -1,5 +0,0 @@
---
"gitbook": patch
---
Fix OpenAPI block overflow issue
+7
View File
@@ -1,5 +1,12 @@
# gitbook-v2
## 0.2.2
### Patch Changes
- 54ee014: Add initial support for loading custom fonts
- bba2e52: Fix site redirects when it includes a section/variant path
## 0.2.1
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "gitbook-v2",
"version": "0.2.1",
"version": "0.2.2",
"private": true,
"dependencies": {
"next": "^15.2.3",
+24
View File
@@ -1,5 +1,29 @@
# gitbook
## 0.8.2
### Patch Changes
- ed07206: Fix OpenAPI path overflow on mobile
- 4dab1c5: Fix alignment of `prominent` search bar on full-width pages
- 6eae764: Support body examples
- 54ee014: Add initial support for loading custom fonts
- d2facb2: Mark properties as optional if not required
- bba2e52: Fix site redirects when it includes a section/variant path
- 4723f03: Restyle section group dropdown
- 24b7808: Fix `prominent` search bar width on `md` screens
- 1fe3286: Fix OpenAPI block overflow issue
- Updated dependencies [48c18c0]
- Updated dependencies [6eae764]
- Updated dependencies [7212973]
- Updated dependencies [d2facb2]
- Updated dependencies [73e2b47]
- Updated dependencies [70be2c6]
- Updated dependencies [fc00b51]
- Updated dependencies [a84b06b]
- @gitbook/openapi-parser@2.1.1
- @gitbook/react-openapi@1.1.6
## 0.8.1
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "gitbook",
"version": "0.8.1",
"version": "0.8.2",
"private": true,
"scripts": {
"dev": "env-cmd --silent -f ../../.env.local next dev",
+19 -12
View File
@@ -1,52 +1,59 @@
# @gitbook/openapi-parser
## 2.1.1
### Patch Changes
- 48c18c0: Add option to pass scalar plugins
- 7212973: Update scalar
## 2.1.0
### Minor Changes
- bb3ca9c: Implement OpenAPI models blocks
- bb3ca9c: Implement OpenAPI models blocks
### Patch Changes
- 0278a14: Upgrade Scalar dependencies
- 052e07a: Support references pointing to invalid files
- 0278a14: Upgrade Scalar dependencies
- 052e07a: Support references pointing to invalid files
## 2.0.2
### Patch Changes
- 53f5dbe: Fix typing of `shouldIgnoreEntity`
- 53f5dbe: Fix typing of `shouldIgnoreEntity`
## 2.0.1
### Patch Changes
- 0924259: Expose helper `shouldIgnoreEntity`
- 0924259: Expose helper `shouldIgnoreEntity`
## 2.0.0
### Major Changes
- e24206e: Use Scalar parser to upgrade OpenAPI spec v2
- e24206e: Use Scalar parser to upgrade OpenAPI spec v2
### Patch Changes
- c808bb1: Fallback to untrusted validation in case JSON spec is invalid
- a054554: Implement a trusted mode to speed up OpenAPI spec validation
- da55fac: Render GitBook blocks in OpenAPI operation description
- c808bb1: Fallback to untrusted validation in case JSON spec is invalid
- a054554: Implement a trusted mode to speed up OpenAPI spec validation
- da55fac: Render GitBook blocks in OpenAPI operation description
## 1.0.1
### Patch Changes
- 6157583: Improve Markdown parsing
- 6157583: Improve Markdown parsing
## 1.0.0
### Major Changes
- 727bde2: Improve and split OpenAPI parser into its own package
- 727bde2: Improve and split OpenAPI parser into its own package
### Patch Changes
- 46edde9: Improve the OpenAPI package API
- 46edde9: Improve the OpenAPI package API
+1 -1
View File
@@ -9,7 +9,7 @@
"default": "./dist/index.js"
}
},
"version": "2.1.0",
"version": "2.1.1",
"sideEffects": false,
"dependencies": {
"@scalar/openapi-parser": "^0.10.10",
+15
View File
@@ -1,5 +1,20 @@
# @gitbook/react-openapi
## 1.1.6
### Patch Changes
- 6eae764: Support body examples
- 7212973: Update scalar
- d2facb2: Mark properties as optional if not required
- 73e2b47: Fix write only properties in request example
- 70be2c6: Stringify default value
- fc00b51: Remove default value in generateSchemaExample
- a84b06b: Update resolveDescription and add minItems/maxItems
- Updated dependencies [48c18c0]
- Updated dependencies [7212973]
- @gitbook/openapi-parser@2.1.1
## 1.1.5
### Patch Changes
+1 -1
View File
@@ -8,7 +8,7 @@
"default": "./dist/index.js"
}
},
"version": "1.1.5",
"version": "1.1.6",
"sideEffects": false,
"dependencies": {
"@gitbook/openapi-parser": "workspace:*",