meta-json-schema 1.19.26 → 1.19.28
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,3 +1,49 @@
|
|
|
1
|
+
## v1.19.28
|
|
2
|
+
|
|
3
|
+
### Changes
|
|
4
|
+
|
|
5
|
+
- 新增: vless `xhttp-opts` 新增配置项 `session-table`、`session-length`
|
|
6
|
+
- 调整: `empty-fallback` 严禁填写代理组名称
|
|
7
|
+
- 新增: listener 新增配置项 `routing-mark`(仅支持linux)
|
|
8
|
+
- 新增: 新增配置项 `external-controller-routing-mark`(仅支持linux)
|
|
9
|
+
- 新增: dns 新增配置项 `listen-routing-mark`(仅支持linux)
|
|
10
|
+
- 新增: proxy 新增 `rematch` 出站
|
|
11
|
+
- 新增: rules 新增 `REMATCH-NAME` 规则类型
|
|
12
|
+
- 新增: masque 出站支持 `network: h3-l4proxy`
|
|
13
|
+
- 新增: selector 代理组新增配置项 `default-selected`
|
|
14
|
+
- 新增: TUN 新增配置项 `icmp-timeout`
|
|
15
|
+
- 新增: dns 新增配置项 `fallback-lazy-query`
|
|
16
|
+
- 新增: openvpn 新增配置项 `peer-info`
|
|
17
|
+
- 新增: snell 出站和 listener 支持 `shadow-tls`
|
|
18
|
+
- 新增: openvpn 新增配置项 `handshake-timeout`
|
|
19
|
+
- 新增: masque 新增配置项 `handshake-timeout`
|
|
20
|
+
- 新增: listener shadowsocks 新增配置项 `res-tls`
|
|
21
|
+
- 调整: listener snell 支持版本 1/2/3/4/5
|
|
22
|
+
- 新增: vmess 出站 `tlsmirror-opts` 和 listener `tlsmirror-config` 支持 `TLSMirror`
|
|
23
|
+
- 新增: vmess 出站和 listener 支持 `mKCP`、`Mekya`
|
|
24
|
+
|
|
25
|
+
### Bug Fixes
|
|
26
|
+
|
|
27
|
+
- 修复: 补充 tuic server 缺失 `client-auth-type`、`client-auth-cert`、`ech-key` 配置项
|
|
28
|
+
- 修复: 补充 listener reality 缺失 `limit-fallback-upload`、`limit-fallback-download` 配置项
|
|
29
|
+
- 修复: 修补部分配置项 类型/描述 错误
|
|
30
|
+
|
|
31
|
+
---
|
|
32
|
+
|
|
33
|
+
## v1.19.27
|
|
34
|
+
|
|
35
|
+
### Changes
|
|
36
|
+
|
|
37
|
+
- 新增: listener anytls/trojan/vless 新增配置项 `allow-insecure`
|
|
38
|
+
- 移除: 弃用 `global-client-fingerprint`
|
|
39
|
+
- 新增: openvpn 新增配置项 `ping`、`ping-restart`
|
|
40
|
+
- 新增: proxy-provider 新增配置项 `age-secret-key`
|
|
41
|
+
- 新增: proxy-group 新增配置项 `empty-fallback` ,支持设置当代理组为空时的回退proxy
|
|
42
|
+
- 新增: 内置 proxy 新增 `PASS-RULE`
|
|
43
|
+
- 新增: rule-provider 新增配置项 `path-in-bundle`
|
|
44
|
+
|
|
45
|
+
---
|
|
46
|
+
|
|
1
47
|
## v1.19.26
|
|
2
48
|
|
|
3
49
|
### Changes
|
|
@@ -454,9 +500,9 @@
|
|
|
454
500
|
|
|
455
501
|
### Bug Fixes
|
|
456
502
|
|
|
457
|
-
- 字符串数组类型错误
|
|
458
|
-
- 监听地址支持`:port`
|
|
459
|
-
- sniffer 的 http ports 类型错误
|
|
503
|
+
- 修复: 字符串数组类型错误
|
|
504
|
+
- 修复: 监听地址支持`:port`
|
|
505
|
+
- 修复: sniffer 的 http ports 类型错误
|
|
460
506
|
|
|
461
507
|
---
|
|
462
508
|
|
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "meta-json-schema",
|
|
3
|
-
"version": "1.19.
|
|
3
|
+
"version": "1.19.28",
|
|
4
4
|
"description": "JSON Schema for Clash Meta",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"clash",
|
|
@@ -33,11 +33,11 @@
|
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@aminya/minijson": "^1.1.3",
|
|
36
|
-
"@commitlint/cli": "^21.
|
|
37
|
-
"@commitlint/config-conventional": "^21.0
|
|
38
|
-
"dprint": "^0.
|
|
36
|
+
"@commitlint/cli": "^21.2.1",
|
|
37
|
+
"@commitlint/config-conventional": "^21.2.0",
|
|
38
|
+
"dprint": "^0.55.1",
|
|
39
39
|
"json-schema-artifact": "^2.0.3",
|
|
40
|
-
"lefthook": "^2.1.
|
|
40
|
+
"lefthook": "^2.1.10"
|
|
41
41
|
},
|
|
42
42
|
"commitlint": {
|
|
43
43
|
"extends": [
|