@redocly/redoc-revel 0.131.0 → 0.131.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 CHANGED
@@ -1,5 +1,18 @@
1
1
  # @redocly/redoc-revel
2
2
 
3
+ ## 0.131.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 3ec346dba7: Fixed security vulnerability `CVE-2026-0540` by upgrading `dompurify` to version `3.3.3`.
8
+ - 3ec346dba7: Fixed security vulnerabilities `CVE-2026-29085`, `CVE-2026-29045`, and `GHSA-v8w9-8mx6-g223` by upgrading `hono` to version `4.12.8`.
9
+ - 3ec346dba7: Fixed security vulnerabilities `CVE-2026-27904` and `CVE-2026-27903` by upgrading `minimatch` to version `10.2.4`.
10
+ - 180aa06763: Fixed security vulnerability `CVE-2026-28292` by upgrading `simple-git` to version `3.32.3`.
11
+ - Updated dependencies [3ec346dba7]
12
+ - @redocly/openapi-docs@3.19.1
13
+ - @redocly/asyncapi-docs@1.8.1
14
+ - @redocly/portal-plugin-mock-server@0.16.1
15
+
3
16
  ## 0.131.0
4
17
 
5
18
  ### Minor Changes
@@ -16,7 +29,6 @@
16
29
  - 34ef22b17c: Added `code-snippet` Markdoc tag support for `llms.txt`.
17
30
  - e6944434c8: Added support for OpenAPI `allowReserved` query parameters in Replay.
18
31
 
19
-
20
32
  ### Patch Changes
21
33
 
22
34
  - 7f8301f1ed: Fixed an issue where the **Connect to MCP** button ignored the configured prefix path.
@@ -1,11 +1,12 @@
1
1
  import type { Context, Handler } from 'hono';
2
2
  import type { Store } from '../../store.js';
3
+ import { ServerRoutes } from '../../../constants/common.js';
3
4
  export declare function authorizeHandler(ctx: Context): Promise<Response>;
4
5
  export declare function redoclyLoginCallbackHandler(): Handler;
5
6
  export declare function oidcCallbackHandler(store: Store): Handler;
6
7
  export declare function logoutHandler(store: Store): (ctx: Context) => Promise<Response>;
7
8
  export declare function postLogoutHandler(store: Store): (ctx: Context) => Promise<Response>;
8
- export declare function inviteHandler(store: Store): (ctx: Context) => Promise<Response>;
9
+ export declare function inviteHandler(store: Store): (ctx: Context<Record<string, unknown>, typeof ServerRoutes.INVITE>) => Promise<Response>;
9
10
  export declare function idpLoginHandler(store: Store): (ctx: Context) => Promise<Response>;
10
11
  export declare function samlCallbackHandler(store: Store): Handler;
11
12
  export declare function redoclyTokenLoginHandler(store: Store): Handler;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@redocly/redoc-revel",
3
- "version": "0.131.0",
3
+ "version": "0.131.1",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "bin": {
@@ -53,13 +53,13 @@
53
53
  "flexsearch": "0.7.43",
54
54
  "graphql": "16.12.0",
55
55
  "gray-matter": "4.0.3",
56
- "hono": "4.11.10",
56
+ "hono": "4.12.8",
57
57
  "htmlparser2": "8.0.2",
58
58
  "i18next": "22.4.15",
59
59
  "is-glob": "4.0.3",
60
60
  "js-yaml": "4.1.1",
61
61
  "lru-cache": "11.1.0",
62
- "minimatch": "10.2.1",
62
+ "minimatch": "10.2.4",
63
63
  "mri": "1.2.0",
64
64
  "nanoid": "5.0.9",
65
65
  "node-fetch": "3.3.1",
@@ -77,7 +77,7 @@
77
77
  "reactjs-popup": "2.0.6",
78
78
  "semver": "7.7.3",
79
79
  "shiki": "3.21.0",
80
- "simple-git": "3.20.0",
80
+ "simple-git": "3.32.3",
81
81
  "sitemap": "7.1.1",
82
82
  "stream-http": "3.2.0",
83
83
  "styled-components": "5.3.11",
@@ -91,14 +91,14 @@
91
91
  "xpath": "0.0.34",
92
92
  "yaml-ast-parser": "0.0.43",
93
93
  "zod": "^3.25.76",
94
- "@redocly/openapi-docs": "3.19.0",
95
- "@redocly/portal-plugin-mock-server": "0.16.0",
96
- "@redocly/config": "0.44.1",
97
- "@redocly/realm-asyncapi-sdk": "0.9.0",
94
+ "@redocly/openapi-docs": "3.19.1",
95
+ "@redocly/graphql-docs": "1.8.0",
98
96
  "@redocly/portal-legacy-ui": "0.14.0",
97
+ "@redocly/portal-plugin-mock-server": "0.16.1",
98
+ "@redocly/realm-asyncapi-sdk": "0.9.0",
99
+ "@redocly/asyncapi-docs": "1.8.1",
99
100
  "@redocly/theme": "0.63.0",
100
- "@redocly/graphql-docs": "1.8.0",
101
- "@redocly/asyncapi-docs": "1.8.0"
101
+ "@redocly/config": "0.44.1"
102
102
  },
103
103
  "peerDependencies": {
104
104
  "react": "^19.2.4",