@@ -47,6 +47,7 @@ const (
47
47
)
48
48
49
49
var ObjectCmd = & cmds.Command {
50
+ Status : cmds .Deprecated , // https://github.com/ipfs/go-ipfs/issues/7936
50
51
Helptext : cmds.HelpText {
51
52
Tagline : "Deprecated commands to interact with dag-pb objects. Use 'dag' or 'files' instead." ,
52
53
ShortDescription : `
@@ -68,6 +69,7 @@ directly. Deprecated, use more modern 'ipfs dag' and 'ipfs files' instead.`,
68
69
69
70
// ObjectDataCmd object data command
70
71
var ObjectDataCmd = & cmds.Command {
72
+ Status : cmds .Deprecated , // https://github.com/ipfs/go-ipfs/issues/7936
71
73
Helptext : cmds.HelpText {
72
74
Tagline : "Deprecated way to read the raw bytes of a dag-pb object: use 'dag get' instead." ,
73
75
ShortDescription : `
@@ -107,6 +109,7 @@ is the raw data of the object.
107
109
108
110
// ObjectLinksCmd object links command
109
111
var ObjectLinksCmd = & cmds.Command {
112
+ Status : cmds .Deprecated , // https://github.com/ipfs/go-ipfs/issues/7936
110
113
Helptext : cmds.HelpText {
111
114
Tagline : "Deprecated way to output links in the specified dag-pb object: use 'dag get' instead." ,
112
115
ShortDescription : `
@@ -181,6 +184,7 @@ multihash. Provided for legacy reasons. Use 'ipfs dag get' instead.
181
184
182
185
// ObjectGetCmd object get command
183
186
var ObjectGetCmd = & cmds.Command {
187
+ Status : cmds .Deprecated , // https://github.com/ipfs/go-ipfs/issues/7936
184
188
Helptext : cmds.HelpText {
185
189
Tagline : "Deprecated way to get and serialize the dag-pb node. Use 'dag get' instead" ,
186
190
ShortDescription : `
@@ -272,6 +276,7 @@ DEPRECATED and provided for legacy reasons. Use 'ipfs dag get' instead.
272
276
273
277
// ObjectStatCmd object stat command
274
278
var ObjectStatCmd = & cmds.Command {
279
+ Status : cmds .Deprecated , // https://github.com/ipfs/go-ipfs/issues/7936
275
280
Helptext : cmds.HelpText {
276
281
Tagline : "Deprecated way to read stats for the dag-pb node. Use 'files stat' instead." ,
277
282
ShortDescription : `
@@ -371,6 +376,7 @@ DEPRECATED: Provided for legacy reasons. Modern replacements:
371
376
372
377
// ObjectPutCmd object put command
373
378
var ObjectPutCmd = & cmds.Command {
379
+ Status : cmds .Deprecated , // https://github.com/ipfs/go-ipfs/issues/7936
374
380
Helptext : cmds.HelpText {
375
381
Tagline : "Deprecated way to store input as a DAG object. Use 'dag put' instead." ,
376
382
ShortDescription : `
@@ -450,6 +456,7 @@ DEPRECATED and provided for legacy reasons. Use 'ipfs dag put' instead.
450
456
451
457
// ObjectNewCmd object new command
452
458
var ObjectNewCmd = & cmds.Command {
459
+ Status : cmds .Deprecated , // https://github.com/ipfs/go-ipfs/issues/7936
453
460
Helptext : cmds.HelpText {
454
461
Tagline : "Deprecated way to create a new dag-pb object from a template." ,
455
462
ShortDescription : `
0 commit comments