meta-json-schema 1.19.18 → 1.19.20
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,41 @@
|
|
|
1
|
+
## v1.19.20
|
|
2
|
+
|
|
3
|
+
### Changes
|
|
4
|
+
|
|
5
|
+
- 新增: `ech-opts` 新增配置项 `query-server-name`
|
|
6
|
+
- 新增: proxy 新增 `masque` 协议
|
|
7
|
+
- 调整: 调整 sudoku 配置项描述
|
|
8
|
+
- 新增: DNS 新增配置项 `proxy-server-nameserver-policy`
|
|
9
|
+
|
|
10
|
+
### Bugs Fixes
|
|
11
|
+
|
|
12
|
+
- 修复: `reality-opts` 的 `short-id` 配置项为可选项
|
|
13
|
+
- 修复: `fake-ip-filter-mode` 未配置时,错误地使用了 `rule` 规则进行校验
|
|
14
|
+
|
|
15
|
+
---
|
|
16
|
+
|
|
17
|
+
## v1.19.19
|
|
18
|
+
|
|
19
|
+
### Changes
|
|
20
|
+
|
|
21
|
+
- 新增: sudoku `listeners` 新增配置项 `disable-http-mask`、`http-mask-mode`、`path-root`
|
|
22
|
+
- 新增: sudoku 新增配置项 `http-mask-mode`、`http-mask-tls`、`http-mask-host`、`path-root`、`http-mask-multiplex`
|
|
23
|
+
- 移除: sudoku 移除配置项 `http-mask-strategy`
|
|
24
|
+
- 新增: `rule-provider` 新增 HTTP 配置项 `header`
|
|
25
|
+
- 新增: `fake-ip-filter-mode` 支持 `rule` 模式
|
|
26
|
+
- 新增: `fake-ip-filter` 支持配置规则,以此决定返回 `fake-ip` 或 `real-ip`
|
|
27
|
+
- 新增: ss kcptun插件支持 `aes-128-gcm` 加密、新增 `ratelimit`、`framesize` 配置项
|
|
28
|
+
- 新增: 新增 `PROCESS-NAME-WILDCARD`、`PROCESS-PATH-WILDCARD`
|
|
29
|
+
- 移除: 即将弃用 `global-client-fingerprint`
|
|
30
|
+
- 新增: trojan/vmess/vless grpc-opts 新增 `grpc-user-agent` 配置项
|
|
31
|
+
|
|
32
|
+
### Bugs Fixes
|
|
33
|
+
|
|
34
|
+
- 修复: `proxy-provider` 和 `rule-provider` 配置的 `size-limit` 单位描述错误
|
|
35
|
+
- 修复: `SRC-IP-ASN` 错误地拼写成 `SCR-IP-ASN`
|
|
36
|
+
|
|
37
|
+
---
|
|
38
|
+
|
|
1
39
|
## v1.19.18
|
|
2
40
|
|
|
3
41
|
### Changes
|
package/README.md
CHANGED
|
@@ -12,7 +12,7 @@ VS Code 扩展商店搜索 `Meta JSON Schema` 或 `ClashMeta.meta-json-schema`
|
|
|
12
12
|
```json
|
|
13
13
|
{
|
|
14
14
|
"yaml.schemas": {
|
|
15
|
-
"https://
|
|
15
|
+
"https://unpkg.com/meta-json-schema/schemas/meta-json-schema.json": "**/*.yaml"
|
|
16
16
|
}
|
|
17
17
|
}
|
|
18
18
|
```
|
|
@@ -68,7 +68,7 @@ VS Code 扩展商店搜索 `Meta JSON Schema` 或 `ClashMeta.meta-json-schema`
|
|
|
68
68
|
enableSchemaRequest: true,
|
|
69
69
|
schemas: [
|
|
70
70
|
{
|
|
71
|
-
uri: "https://
|
|
71
|
+
uri: "https://unpkg.com/meta-json-schema/schemas/meta-json-schema.json",
|
|
72
72
|
fileMatch: ["**/*.clash.yaml"]
|
|
73
73
|
}
|
|
74
74
|
]
|