meta-json-schema 1.18.6 → 1.18.8

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,32 @@
1
+ ## v1.18.8
2
+
3
+ ### Changes
4
+
5
+ - 新增: 添加对 [clash-nyanpasu](https://github.com/libnyanpasu/clash-nyanpasu) Merge Schema 的支持 [#1](https://github.com/dongchengjie/meta-json-schema/pull/1)
6
+ - 新增: `http`、`socks`、`mixed` 入站配置 新增 `users` 认证配置项
7
+ - 新增: `sniff` 新增 `skip-src-address`、`skip-dst-address` 配置项
8
+ - 新增: `dns` 新增 `fake-ip-filter-mode` 配置项
9
+ - 调整: 规则 `GEOIP`、`IP-ASN`、`IP-CIDR`、`IP-CIDR6`、`IP-SUFFIX`、`RULE-SET` 支持追加 `,src` 选项
10
+
11
+ ### Bugs Fixes
12
+
13
+ ---
14
+
15
+ ## v1.18.7
16
+
17
+ ### Changes
18
+
19
+ - 调整: `tun` 配置项 `route-exclude-address` 描述
20
+ - 调整: 支持部分 `chacha8` 加密方法
21
+ - 新增: 全局配置新增 `external-doh-server`,支持配置提供本地DOH服务
22
+ - 新增: 规则集新增 `mrs` 格式
23
+ - 新增: 全局配置新增 `keep-alive-idle` 和 `disable-keep-alive` 保持连接相关配置
24
+ - 移除: 不再支持 `ebpf` 配置
25
+
26
+ ### Bugs Fixes
27
+
28
+ ---
29
+
1
30
  ## v1.18.6
2
31
 
3
32
  ### Changes
package/README.md CHANGED
@@ -82,6 +82,8 @@ VS Code 扩展商店搜索 `Meta JSON Schema` 或 `ClashMeta.meta-json-schema`
82
82
 
83
83
  - <a href="https://dongchengjie.github.io/meta-json-schema/?schema=https://raw.githubusercontent.com/dongchengjie/meta-json-schema/main/schemas/clash-verge-merge-json-schema.json" target="_blank">clash-verge-merge-json-schema</a>
84
84
 
85
+ - <a href="https://dongchengjie.github.io/meta-json-schema/?schema=https://raw.githubusercontent.com/dongchengjie/meta-json-schema/main/schemas/clash-nyanpasu-merge-json-schema.json" target="_blank">clash-nyanpasu-merge-json-schema</a>
86
+
85
87
  ## 🖥️ 开发
86
88
 
87
89
  1. 下载代码
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "meta-json-schema",
3
- "version": "1.18.6",
3
+ "version": "1.18.8",
4
4
  "description": "JSON Schema for Clash Meta",
5
5
  "keywords": [
6
6
  "clash",
@@ -26,5 +26,6 @@
26
26
  },
27
27
  "devDependencies": {
28
28
  "json-schema-artifact": "^1.1.1"
29
- }
29
+ },
30
+ "packageManager": "npm@10.8.3"
30
31
  }