meta-json-schema 1.18.7 → 1.18.9
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,29 @@
|
|
|
1
|
+
## v1.18.9
|
|
2
|
+
|
|
3
|
+
### Changes
|
|
4
|
+
|
|
5
|
+
- 新增: 全局配置新增 `etag-support` 开关
|
|
6
|
+
- 新增: 外部控制器 新增 `external-controller-pipe` 配置项,支持从Windows namedpipe访问API
|
|
7
|
+
- 新增: 外部控制器 新增 `external-controller-cors` 配置跨域响应头
|
|
8
|
+
- 新增: proxy-provider 的 `override` 配置项新增 `proxy-name` 配置项,支持正则替换代理名称
|
|
9
|
+
- 新增: `wireguard` 新增 `amnezia-wg-option` 配置项
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
## v1.18.8
|
|
14
|
+
|
|
15
|
+
### Changes
|
|
16
|
+
|
|
17
|
+
- 新增: 添加对 [clash-nyanpasu](https://github.com/libnyanpasu/clash-nyanpasu) Merge Schema 的支持 [#1](https://github.com/dongchengjie/meta-json-schema/pull/1)
|
|
18
|
+
- 新增: `http`、`socks`、`mixed` 入站配置 新增 `users` 认证配置项
|
|
19
|
+
- 新增: `sniff` 新增 `skip-src-address`、`skip-dst-address` 配置项
|
|
20
|
+
- 新增: `dns` 新增 `fake-ip-filter-mode` 配置项
|
|
21
|
+
- 调整: 规则 `GEOIP`、`IP-ASN`、`IP-CIDR`、`IP-CIDR6`、`IP-SUFFIX`、`RULE-SET` 支持追加 `,src` 选项
|
|
22
|
+
|
|
23
|
+
### Bugs Fixes
|
|
24
|
+
|
|
25
|
+
---
|
|
26
|
+
|
|
1
27
|
## v1.18.7
|
|
2
28
|
|
|
3
29
|
### 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. 下载代码
|
|
@@ -116,7 +118,8 @@ npm run dev
|
|
|
116
118
|
```json
|
|
117
119
|
"yaml.schemas": {
|
|
118
120
|
"schemas/meta-json-schema.json": "test/clash-meta/**/*.yaml",
|
|
119
|
-
"schemas/clash-verge-merge-json-schema.json": "test/clash-verge/**/*.yaml"
|
|
121
|
+
"schemas/clash-verge-merge-json-schema.json": "test/clash-verge/**/*.yaml",
|
|
122
|
+
"schemas/clash-verge-nyanpasu-json-schema.json": "test/clash-nyanpasu/**/*.yaml"
|
|
120
123
|
},
|
|
121
124
|
```
|
|
122
125
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "meta-json-schema",
|
|
3
|
-
"version": "1.18.
|
|
3
|
+
"version": "1.18.9",
|
|
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
|
}
|