@maiyunnet/kebab 9.3.0 → 9.3.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/doc/kebab-rag.md +1 -1
- package/index.d.ts +1 -1
- package/index.js +1 -1
- package/lib/undici.js +2 -2
- package/package.json +1 -1
package/doc/kebab-rag.md
CHANGED
|
@@ -1360,7 +1360,7 @@ index/variables/VER.md
|
|
|
1360
1360
|
|
|
1361
1361
|
# Variable: VER
|
|
1362
1362
|
|
|
1363
|
-
> `const` **VER**: `"9.3.
|
|
1363
|
+
> `const` **VER**: `"9.3.1"` = `'9.3.1'`
|
|
1364
1364
|
|
|
1365
1365
|
Defined in: [index.ts:10](https://github.com/maiyunnet/kebab/blob/master/index.ts#L10)
|
|
1366
1366
|
|
package/index.d.ts
CHANGED
package/index.js
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
* --- 本文件用来定义每个目录实体地址的常量 ---
|
|
7
7
|
*/
|
|
8
8
|
/** --- 当前系统版本号 --- */
|
|
9
|
-
export const VER = '9.3.
|
|
9
|
+
export const VER = '9.3.1';
|
|
10
10
|
// --- 服务端用的路径 ---
|
|
11
11
|
const imu = decodeURIComponent(import.meta.url).replace('file://', '').replace(/^\/(\w:)/, '$1');
|
|
12
12
|
/** --- /xxx/xxx --- */
|
package/lib/undici.js
CHANGED
|
@@ -460,8 +460,8 @@ export function getFormData() {
|
|
|
460
460
|
}
|
|
461
461
|
/** --- proxy 要剔除的基础头部 --- */
|
|
462
462
|
const proxyContinueHeaders = [
|
|
463
|
-
'host', 'connection', 'http-code', 'http-url',
|
|
464
|
-
'transfer-encoding'
|
|
463
|
+
'host', 'connection', 'keep-alive', 'http-code', 'http-url',
|
|
464
|
+
'transfer-encoding', 'upgrade', 'proxy-connection'
|
|
465
465
|
];
|
|
466
466
|
/**
|
|
467
467
|
* --- 剔除不代理的 header,返回新的 header ---
|