meta-json-schema 1.19.28 → 1.19.29

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,33 @@
1
+ ## v1.19.29
2
+
3
+ ### Changes
4
+
5
+ - 新增: proxy-provider `override` 新增配置项 `override-expr`,支持按顺序执行表达式数组
6
+ - 新增: sudoku 出站新增顶层 `multiplex` 配置项,统一控制会话多路复用
7
+ - 新增: openvpn 出站新增配置项 `tls-auth`、`key-direction`、`data-ciphers`、`data-ciphers-fallback` 和 `tls-crypt-v2`,支持数据加密协商和 tls-crypt-v2 客户端密钥
8
+ - 新增: TLS 出站和 Hysteria2 realm 新增配置项 `name-cert-verify`,支持指定证书 DNSName 校验目标
9
+ - 新增: proxy 和 listener 新增 `shadowquic` 协议,包含 JLS 认证、QUIC 传输配置和 brutal 异步可选协商相关配置项
10
+ - 新增: shadowsocks 出站插件和 listener,以及 vmess、vless、trojan、anytls、snell 出站和 listener 新增 JLS 相关配置项
11
+ - 新增: vmess、vless、trojan、anytls 出站和 listener 新增 ShadowTLS 相关配置项
12
+ - 新增: vmess、vless、trojan、anytls、snell 出站和 listener 新增 Restls 相关配置项
13
+ - 新增: vless xhttp `download-settings` 新增配置项 `shadow-tls-opts`、`restls-opts` 和 `jls-opts`,支持独立覆写下载连接的安全模式
14
+ - 新增: anytls 出站新增配置项 `disable-reuse`,支持禁用会话复用
15
+ - 调整: anytls listener 允许使用 JLS 或 `allow-insecure` 替代证书,并禁止 JLS 与证书配置同时使用
16
+ - 调整: shadowsocks listener 启用的 ShadowTLS、Restls 和 JLS 安全模式互斥
17
+ - 调整: `rematch` 出站要求填写 `target-rematch-name` 或 `target-sub-rule`
18
+
19
+ ### Bug Fixes
20
+
21
+ - 修复: vless 出站 `xhttp-opts.session-table` 支持预定义值或自定义 ASCII 字符表
22
+ - 修复: vless listener 移除误收录的 `session-table`、`session-length`
23
+ - 修复: vmess 出站 `tlsmirror-opts` 和 listener `tlsmirror-config` 分别匹配各自的输入结构
24
+ - 修复: shadowsocks listener 的 ShadowTLS、RESTLS 和 snell listener 的 ShadowTLS 配置匹配实际输入结构
25
+ - 修复: mKCP `header` 使用明确值 `none` 表示无伪装包头
26
+ - 修复: 明确 `routing-mark` 仅适用于 redir、tproxy、tun 之外的 listener
27
+ - 修复: 明确 openvpn、masque 出站 `handshake-timeout: 0` 不设置额外握手超时
28
+
29
+ ---
30
+
1
31
  ## v1.19.28
2
32
 
3
33
  ### Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "meta-json-schema",
3
- "version": "1.19.28",
3
+ "version": "1.19.29",
4
4
  "description": "JSON Schema for Clash Meta",
5
5
  "keywords": [
6
6
  "clash",
@@ -22,20 +22,20 @@
22
22
  "license": "MIT",
23
23
  "repository": {
24
24
  "type": "git",
25
- "url": "https://github.com/dongchengjie/meta-json-schema.git"
25
+ "url": "git+https://github.com/dongchengjie/meta-json-schema.git"
26
26
  },
27
27
  "scripts": {
28
28
  "preinstall": "npx only-allow pnpm",
29
29
  "prepare": "lefthook install",
30
- "dev": "npx json-schema-artifact --watch",
31
- "release": "npx json-schema-artifact",
30
+ "dev": "json-schema-artifact --watch",
31
+ "release": "json-schema-artifact",
32
32
  "preview": "npm publish --dry-run"
33
33
  },
34
34
  "devDependencies": {
35
35
  "@aminya/minijson": "^1.1.3",
36
36
  "@commitlint/cli": "^21.2.1",
37
37
  "@commitlint/config-conventional": "^21.2.0",
38
- "dprint": "^0.55.1",
38
+ "dprint": "^0.55.2",
39
39
  "json-schema-artifact": "^2.0.3",
40
40
  "lefthook": "^2.1.10"
41
41
  },
@@ -45,7 +45,7 @@
45
45
  ]
46
46
  },
47
47
  "engines": {
48
- "node": ">=22",
48
+ "node": ">=22.12.0",
49
49
  "pnpm": ">=10"
50
50
  },
51
51
  "packageManager": "pnpm@10.33.4"