hun*_*erc 29
从更改日志中:
新关键字
删除:
功能改变:
之前
{
"type": [ "string", { "other": "schema" } ]
}
Run Code Online (Sandbox Code Playgroud)
现在
{
"anyOf": [
{ "type": "string" },
{ "other": "schema" }
]
}
Run Code Online (Sandbox Code Playgroud)
之前
{
"properties": {
"p": {
"type": "string",
"required": true
},
"q": {
"type": "string",
"required": true
}
}
}
Run Code Online (Sandbox Code Playgroud)
现在
{
"properties": {
"p": { "type": "string" },
"q": { "type": "string" }
},
"required": [ "p", "q" ]
}
Run Code Online (Sandbox Code Playgroud)
之前
{
"dependencies": { "a": "b" }
}
Run Code Online (Sandbox Code Playgroud)
现在
{
"dependencies": { "a": [ "b" ] }
}
Run Code Online (Sandbox Code Playgroud)
如果您对深度潜水感兴趣,可以查看IETF网站上两个草稿之间的差异.
但是,如果您正在寻找更简单的更改摘要,Geraint Luff和Francis Galiegue在项目的github wiki上创建了一个更新日志页面,其中列出了更改,添加和删除.