Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
G
go-ipfs
概览
概览
详情
活动
周期分析
版本库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
问题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
jihao
go-ipfs
Commits
7ea34c6c
提交
7ea34c6c
authored
5月 12, 2017
作者:
Jeromy
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Ipfs release 0.4.9
License: MIT Signed-off-by:
Jeromy
<
jeromyj@gmail.com
>
上级
a6e96e6c
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
28 行增加
和
3 行删除
+28
-3
lastpubver
.gx/lastpubver
+1
-1
CHANGELOG.md
CHANGELOG.md
+25
-0
package.json
package.json
+1
-1
version.go
repo/config/version.go
+1
-1
没有找到文件。
.gx/lastpubver
浏览文件 @
7ea34c6c
0.4.
8: QmPnTPuoB9y4Wzm3j8BdUmoqG7icmN7zGazDLuT4Duke9S
0.4.
9: QmQuvzi7p2qv9oduQ8o6fhPXDBCns9ryjjxqumyNvE5gZs
CHANGELOG.md
浏览文件 @
7ea34c6c
...
...
@@ -2,6 +2,31 @@
### 0.4.9 - 2017-04-30
Ipfs 0.4.9 is a maintenance release that contains several useful bugfixes and
improvements. Notably,
`ipfs add`
has gained the ability to select which CID
version will be output. The common ipfs hash that looks like this:
`QmRjNgF2mRLDT8AzCPsQbw1EYF2hDTFgfUmJokJPhCApYP`
is a multihash. Multihashes
allow us to specify the hashing algorithm that was used to verify the data, but
it doesn't give us any indication of what format that data might be. To address
that issue, we are adding another couple of bytes to the prefix that will allow us
to indicate the format of the data referenced by the hash. This new format is
called a Content ID, or CID for short. The previous bare multihashes will still
be fully supported throughout the entire application as CID version 0. The new
format with the type information will be CID version 1. To give an example,
the content referenced by the hash above is "Hello Ipfs!". That same content,
in the same format (dag-protobuf) using CIDv1 is
`zb2rhkgXZVkT2xvDiuUsJENPSbWJy7fdYnsboLBzzEjjZMRoG`
.
CIDv1 hashes are supported in ipfs versions back to 0.4.5. Nodes running 0.4.4
and older will not be able to load content via CIDv1 and we recommend that they
update to a newer version.
There are many other use cases for CIDs. Plugins can be written to
allow ipfs to natively address content from any other merkletree based system,
such as git, bitcoin, zcash and ethereum -- a few systems we've already started work on.
Aside from the CID flag, there were many other changes as noted below:
-
Features
-
Add support for using CidV1 in 'ipfs add' (
[
ipfs/go-ipfs#3743
](
https://github.com/ipfs/go-ipfs/pull/3743
)
)
-
Improvements
...
...
package.json
浏览文件 @
7ea34c6c
...
...
@@ -312,6 +312,6 @@
"language"
:
"go"
,
"license"
:
"
MIT
"
,
"name"
:
"
go-ipfs
"
,
"version"
:
"0.4.9
-rc2
"
"version"
:
"0.4.9"
}
repo/config/version.go
浏览文件 @
7ea34c6c
...
...
@@ -4,6 +4,6 @@ package config
var
CurrentCommit
string
// CurrentVersionNumber is the current application's version literal
const
CurrentVersionNumber
=
"0.4.9
-rc2
"
const
CurrentVersionNumber
=
"0.4.9"
const
ApiVersion
=
"/go-ipfs/"
+
CurrentVersionNumber
+
"/"
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论