@redocly/revel-reef 0.123.0-next.0 → 0.123.0-next.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +40 -4
- package/dist/.tsbuildinfo +1 -1
- package/dist/client/app/Link.d.ts +1 -1
- package/dist/client/app/Link.d.ts.map +1 -1
- package/dist/client/app/Link.js +1 -1
- package/dist/client/app/Link.js.map +1 -1
- package/dist/server/plugins/asyncapi-docs/index.d.ts.map +1 -1
- package/dist/server/plugins/asyncapi-docs/index.js +1 -1
- package/dist/server/plugins/asyncapi-docs/index.js.map +1 -1
- package/dist/server/plugins/asyncapi-docs/utils/normalize-routing-path.d.ts +2 -0
- package/dist/server/plugins/asyncapi-docs/utils/normalize-routing-path.d.ts.map +1 -0
- package/dist/server/plugins/asyncapi-docs/utils/normalize-routing-path.js +1 -0
- package/dist/server/plugins/asyncapi-docs/utils/normalize-routing-path.js.map +1 -0
- package/dist/server/plugins/markdown/markdoc/resolve-raw-partials.d.ts.map +1 -1
- package/dist/server/plugins/markdown/markdoc/resolve-raw-partials.js +2 -2
- package/dist/server/plugins/markdown/markdoc/resolve-raw-partials.js.map +1 -1
- package/dist/server/plugins/openapi-docs/load-definition.d.ts.map +1 -1
- package/dist/server/plugins/openapi-docs/load-definition.js +3 -3
- package/dist/server/plugins/openapi-docs/load-definition.js.map +1 -1
- package/dist/server/ssr/index.d.ts.map +1 -1
- package/dist/server/ssr/index.js +1 -1
- package/dist/server/ssr/index.js.map +1 -1
- package/dist/server/ssr/render.d.ts.map +1 -1
- package/dist/server/ssr/render.js +1 -1
- package/dist/server/ssr/render.js.map +1 -1
- package/dist/server/web-server/http.d.ts.map +1 -1
- package/dist/server/web-server/http.js +2 -2
- package/dist/server/web-server/http.js.map +1 -1
- package/dist/server/web-server/utils.d.ts +6 -0
- package/dist/server/web-server/utils.d.ts.map +1 -1
- package/dist/server/web-server/utils.js +1 -1
- package/dist/server/web-server/utils.js.map +1 -1
- package/dist/shared/l10n/default-translations.js +1 -1
- package/dist/shared/l10n/default-translations.js.map +1 -1
- package/dist/types/ssr.d.ts +1 -0
- package/dist/types/ssr.d.ts.map +1 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,41 @@
|
|
|
1
1
|
# @redocly/revel-reef
|
|
2
2
|
|
|
3
|
+
## 0.123.0-next.1
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 9d0e11015e: Exposed `usePageVersions` and `usePageActiveVersion` hooks to access the current page version in React pages.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 55e2e23cbf: Fixed detection of changes in partial folders.
|
|
12
|
+
- 3c64ba3fcb: Changed the default keyboard shortcut to open Search to `Cmd+K`/`Ctrl+K`.
|
|
13
|
+
- 9503b3f5a2: Improved accessibility by adding descriptive `alt` text to footer icons.
|
|
14
|
+
- d67ef5d556: Fixed relative link issues in frontmatter for `Markdoc` tags.
|
|
15
|
+
- 675c330acd: Fixed an issue where the Markdoc variable `$remoteAddr` returned incorrect values.
|
|
16
|
+
- Updated dependencies [be38cc0eaa]
|
|
17
|
+
- Updated dependencies [3c64ba3fcb]
|
|
18
|
+
- Updated dependencies [9503b3f5a2]
|
|
19
|
+
- Updated dependencies [9d0e11015e]
|
|
20
|
+
- @redocly/graphql-docs@0.12.0-next.1
|
|
21
|
+
- @redocly/theme@0.55.0-next.1
|
|
22
|
+
- @redocly/asyncapi-docs@0.4.0-next.1
|
|
23
|
+
- @redocly/openapi-docs@3.11.0-next.1
|
|
24
|
+
- @redocly/portal-plugin-mock-server@0.8.0-next.1
|
|
25
|
+
|
|
26
|
+
## 0.122.1
|
|
27
|
+
|
|
28
|
+
### Patch Changes
|
|
29
|
+
|
|
30
|
+
- 534408676f: Fixed performance issue in the `Tabs` component.
|
|
31
|
+
- 4f1e7786c4: Fixed false positive errors for unclosed quotes in `markdoc` attributes.
|
|
32
|
+
- Updated dependencies [534408676f]
|
|
33
|
+
- @redocly/theme@0.54.1
|
|
34
|
+
- @redocly/asyncapi-docs@0.3.1
|
|
35
|
+
- @redocly/graphql-docs@0.11.0
|
|
36
|
+
- @redocly/openapi-docs@3.10.1
|
|
37
|
+
- @redocly/portal-plugin-mock-server@0.7.1
|
|
38
|
+
|
|
3
39
|
## 0.123.0-next.0
|
|
4
40
|
|
|
5
41
|
### Patch Changes
|
|
@@ -31,7 +67,7 @@
|
|
|
31
67
|
- 849287f8b1: Renamed configuration option `catalog` to `catalogClassic` and theme component `Catalog` to `CatalogClassic`. Deprecated the previous properties and components for future compatibility.
|
|
32
68
|
- 8b64036af9: Added support for closing the image lightbox using the Escape key.
|
|
33
69
|
- df0f3c5c85: Added a possibility to override icon colors for "Search with AI" stars.
|
|
34
|
-
- 3074dd4755: Improved AI Search
|
|
70
|
+
- 3074dd4755: Improved AI Search chunk content.
|
|
35
71
|
- 729d5d3fde: Added `llms.txt` file generation.
|
|
36
72
|
- 2d7f9eb75e: Improved `Tabs` styles and added options to disable tabs and set their size to `small` or `medium`.
|
|
37
73
|
|
|
@@ -52,7 +88,7 @@
|
|
|
52
88
|
- 171e8073e6: Fixed search history behavior to prevent frequent or redundant query entries.
|
|
53
89
|
- d0eefb30a8: Fixed incorrect paths in Markdoc tags with `REDOCLY_PREFIX_PATHS` when paths were relative or included file extensions.
|
|
54
90
|
- e8b1452c24: Fixed header display issue in files starting with a byte order mark (`BOM`).
|
|
55
|
-
- 5098a968ca:
|
|
91
|
+
- 5098a968ca: Fixed false positive errors for unclosed quotes in `markdoc` attributes.
|
|
56
92
|
- f7a73904b8: Fixed redirect handling for complex preview URLs.
|
|
57
93
|
- b2a05d83ab: Removed duplicate teams from `$rbac` variable.
|
|
58
94
|
- 083c0868d5: Fixed 403 error when previewing RBAC-hidden pages in visual pull request review for projects using SSO. This error occurred when previewing pages that were hidden by RBAC.
|
|
@@ -82,7 +118,7 @@
|
|
|
82
118
|
### Patch Changes
|
|
83
119
|
|
|
84
120
|
- 60695b00e5: Updated the `dompurify` library to patch the `CVE-2025-48050` security vulnerability.
|
|
85
|
-
- 5098a968ca:
|
|
121
|
+
- 5098a968ca: Fixed false positive errors for unclosed quotes in `markdoc` attributes.
|
|
86
122
|
- 3b21d8a849: Fixed RBAC conditional content visibility in search by restricting `Markdoc` conditional tags based on team permissions to prevent unauthorized access.
|
|
87
123
|
- Updated dependencies [60695b00e5]
|
|
88
124
|
- @redocly/openapi-docs@3.10.0-next.9
|
|
@@ -118,7 +154,7 @@
|
|
|
118
154
|
|
|
119
155
|
### Patch Changes
|
|
120
156
|
|
|
121
|
-
- 3074dd4755: Improved AI Search
|
|
157
|
+
- 3074dd4755: Improved AI Search chunk content.
|
|
122
158
|
- dc35e6b6d1: Fixed breadcrumbs appearing on pages not nested in the sidebar.
|
|
123
159
|
|
|
124
160
|
## 0.122.0-next.8
|