From 1b9bdd2c477d57d1dbab29b30f41412f6d6fc262 Mon Sep 17 00:00:00 2001 From: achingbrain Date: Tue, 23 May 2023 09:54:39 +0100 Subject: [PATCH 1/2] docs: add deprecation notice to readmes Adds a notice to every readme advising of deprecation and containing pointers to docs that help with the upgrade to Helia. --- packages/interface-ipfs-core/README.md | 10 ++++++++++ packages/interface-ipfs-core/package.json | 1 + packages/ipfs-cli/README.md | 10 ++++++++++ packages/ipfs-cli/src/commands/config/profile.js | 1 - packages/ipfs-client/README.md | 10 ++++++++++ packages/ipfs-core-config/README.md | 10 ++++++++++ packages/ipfs-core-types/README.md | 10 ++++++++++ packages/ipfs-core-utils/README.md | 10 ++++++++++ packages/ipfs-core/README.md | 10 ++++++++++ packages/ipfs-daemon/README.md | 10 ++++++++++ packages/ipfs-grpc-client/README.md | 10 ++++++++++ packages/ipfs-grpc-client/test/utils.spec.js | 2 ++ packages/ipfs-grpc-protocol/README.md | 10 ++++++++++ packages/ipfs-grpc-server/README.md | 10 ++++++++++ packages/ipfs-http-client/README.md | 12 +++++++++++- packages/ipfs-http-gateway/README.md | 10 ++++++++++ packages/ipfs-http-response/README.md | 10 ++++++++++ packages/ipfs-http-server/README.md | 10 ++++++++++ packages/ipfs-message-port-client/README.md | 10 ++++++++++ packages/ipfs-message-port-protocol/README.md | 10 ++++++++++ packages/ipfs-message-port-server/README.md | 10 ++++++++++ packages/ipfs/README.md | 10 ++++++++++ 22 files changed, 194 insertions(+), 2 deletions(-) diff --git a/packages/interface-ipfs-core/README.md b/packages/interface-ipfs-core/README.md index 1faa57c497..0109c5a808 100644 --- a/packages/interface-ipfs-core/README.md +++ b/packages/interface-ipfs-core/README.md @@ -1,3 +1,13 @@ +> # ⛔️ DEPRECATED: [js-IPFS](https://github.com/ipfs/js-ipfs) has been superseded by [Helia](https://github.com/ipfs/helia) +> +> To help you upgrade your app to use Helia please see the following resources: +> +> - [Migration guide](https://github.com/ipfs/helia/wiki/%F0%9F%9A%9B-Migrating-from-js-IPFS) +> - [FAQ](https://github.com/ipfs/helia/wiki/%E2%9D%93-FAQ) +> - [Hello Helia talk](https://www.youtube.com/watch?v=T_FlhkLSgH8) +> - [The State of IPFS in JS](https://blog.ipfs.tech/state-of-ipfs-in-js/) +> - [discuss.ipfs.tech post](..) + # interface-ipfs-core [![ipfs.tech](https://img.shields.io/badge/project-IPFS-blue.svg?style=flat-square)](https://ipfs.tech) diff --git a/packages/interface-ipfs-core/package.json b/packages/interface-ipfs-core/package.json index 1fe11ae1ef..542a25d814 100644 --- a/packages/interface-ipfs-core/package.json +++ b/packages/interface-ipfs-core/package.json @@ -112,6 +112,7 @@ "pako": "^2.0.4", "readable-stream": "^4.0.0", "sinon": "^15.0.1", + "stream": "^0.0.2", "uint8arrays": "^4.0.2", "wherearewe": "^2.0.1" }, diff --git a/packages/ipfs-cli/README.md b/packages/ipfs-cli/README.md index 4445a75cc9..c2601b61a4 100644 --- a/packages/ipfs-cli/README.md +++ b/packages/ipfs-cli/README.md @@ -1,3 +1,13 @@ +> # ⛔️ DEPRECATED: [js-IPFS](https://github.com/ipfs/js-ipfs) has been superseded by [Helia](https://github.com/ipfs/helia) +> +> To help you upgrade your app to use Helia please see the following resources: +> +> - [Migration guide](https://github.com/ipfs/helia/wiki/%F0%9F%9A%9B-Migrating-from-js-IPFS) +> - [FAQ](https://github.com/ipfs/helia/wiki/%E2%9D%93-FAQ) +> - [Hello Helia talk](https://www.youtube.com/watch?v=T_FlhkLSgH8) +> - [The State of IPFS in JS](https://blog.ipfs.tech/state-of-ipfs-in-js/) +> - [discuss.ipfs.tech post](..) + # ipfs-cli [![ipfs.tech](https://img.shields.io/badge/project-IPFS-blue.svg?style=flat-square)](https://ipfs.tech) diff --git a/packages/ipfs-cli/src/commands/config/profile.js b/packages/ipfs-cli/src/commands/config/profile.js index 328543bbbb..b619800c4e 100644 --- a/packages/ipfs-cli/src/commands/config/profile.js +++ b/packages/ipfs-cli/src/commands/config/profile.js @@ -12,7 +12,6 @@ const command = { builder (yargs) { return yargs - // @ts-expect-error types are wrong .command(commands) }, diff --git a/packages/ipfs-client/README.md b/packages/ipfs-client/README.md index cc76636339..cfcaf363b0 100644 --- a/packages/ipfs-client/README.md +++ b/packages/ipfs-client/README.md @@ -1,3 +1,13 @@ +> # ⛔️ DEPRECATED: [js-IPFS](https://github.com/ipfs/js-ipfs) has been superseded by [Helia](https://github.com/ipfs/helia) +> +> To help you upgrade your app to use Helia please see the following resources: +> +> - [Migration guide](https://github.com/ipfs/helia/wiki/%F0%9F%9A%9B-Migrating-from-js-IPFS) +> - [FAQ](https://github.com/ipfs/helia/wiki/%E2%9D%93-FAQ) +> - [Hello Helia talk](https://www.youtube.com/watch?v=T_FlhkLSgH8) +> - [The State of IPFS in JS](https://blog.ipfs.tech/state-of-ipfs-in-js/) +> - [discuss.ipfs.tech post](..) + # ipfs-client [![ipfs.tech](https://img.shields.io/badge/project-IPFS-blue.svg?style=flat-square)](https://ipfs.tech) diff --git a/packages/ipfs-core-config/README.md b/packages/ipfs-core-config/README.md index 272cb0e329..7ffa19e15e 100644 --- a/packages/ipfs-core-config/README.md +++ b/packages/ipfs-core-config/README.md @@ -1,3 +1,13 @@ +> # ⛔️ DEPRECATED: [js-IPFS](https://github.com/ipfs/js-ipfs) has been superseded by [Helia](https://github.com/ipfs/helia) +> +> To help you upgrade your app to use Helia please see the following resources: +> +> - [Migration guide](https://github.com/ipfs/helia/wiki/%F0%9F%9A%9B-Migrating-from-js-IPFS) +> - [FAQ](https://github.com/ipfs/helia/wiki/%E2%9D%93-FAQ) +> - [Hello Helia talk](https://www.youtube.com/watch?v=T_FlhkLSgH8) +> - [The State of IPFS in JS](https://blog.ipfs.tech/state-of-ipfs-in-js/) +> - [discuss.ipfs.tech post](..) + # ipfs-core-config [![ipfs.tech](https://img.shields.io/badge/project-IPFS-blue.svg?style=flat-square)](https://ipfs.tech) diff --git a/packages/ipfs-core-types/README.md b/packages/ipfs-core-types/README.md index e2fb8e7c15..b857662076 100644 --- a/packages/ipfs-core-types/README.md +++ b/packages/ipfs-core-types/README.md @@ -1,3 +1,13 @@ +> # ⛔️ DEPRECATED: [js-IPFS](https://github.com/ipfs/js-ipfs) has been superseded by [Helia](https://github.com/ipfs/helia) +> +> To help you upgrade your app to use Helia please see the following resources: +> +> - [Migration guide](https://github.com/ipfs/helia/wiki/%F0%9F%9A%9B-Migrating-from-js-IPFS) +> - [FAQ](https://github.com/ipfs/helia/wiki/%E2%9D%93-FAQ) +> - [Hello Helia talk](https://www.youtube.com/watch?v=T_FlhkLSgH8) +> - [The State of IPFS in JS](https://blog.ipfs.tech/state-of-ipfs-in-js/) +> - [discuss.ipfs.tech post](..) + # ipfs-core-types [![ipfs.tech](https://img.shields.io/badge/project-IPFS-blue.svg?style=flat-square)](https://ipfs.tech) diff --git a/packages/ipfs-core-utils/README.md b/packages/ipfs-core-utils/README.md index 0e8264bd03..f4dabfd801 100644 --- a/packages/ipfs-core-utils/README.md +++ b/packages/ipfs-core-utils/README.md @@ -1,3 +1,13 @@ +> # ⛔️ DEPRECATED: [js-IPFS](https://github.com/ipfs/js-ipfs) has been superseded by [Helia](https://github.com/ipfs/helia) +> +> To help you upgrade your app to use Helia please see the following resources: +> +> - [Migration guide](https://github.com/ipfs/helia/wiki/%F0%9F%9A%9B-Migrating-from-js-IPFS) +> - [FAQ](https://github.com/ipfs/helia/wiki/%E2%9D%93-FAQ) +> - [Hello Helia talk](https://www.youtube.com/watch?v=T_FlhkLSgH8) +> - [The State of IPFS in JS](https://blog.ipfs.tech/state-of-ipfs-in-js/) +> - [discuss.ipfs.tech post](..) + # ipfs-core-utils [![ipfs.tech](https://img.shields.io/badge/project-IPFS-blue.svg?style=flat-square)](https://ipfs.tech) diff --git a/packages/ipfs-core/README.md b/packages/ipfs-core/README.md index d617decaeb..a5403a8bfa 100644 --- a/packages/ipfs-core/README.md +++ b/packages/ipfs-core/README.md @@ -1,3 +1,13 @@ +> # ⛔️ DEPRECATED: [js-IPFS](https://github.com/ipfs/js-ipfs) has been superseded by [Helia](https://github.com/ipfs/helia) +> +> To help you upgrade your app to use Helia please see the following resources: +> +> - [Migration guide](https://github.com/ipfs/helia/wiki/%F0%9F%9A%9B-Migrating-from-js-IPFS) +> - [FAQ](https://github.com/ipfs/helia/wiki/%E2%9D%93-FAQ) +> - [Hello Helia talk](https://www.youtube.com/watch?v=T_FlhkLSgH8) +> - [The State of IPFS in JS](https://blog.ipfs.tech/state-of-ipfs-in-js/) +> - [discuss.ipfs.tech post](..) + # ipfs-core [![ipfs.tech](https://img.shields.io/badge/project-IPFS-blue.svg?style=flat-square)](https://ipfs.tech) diff --git a/packages/ipfs-daemon/README.md b/packages/ipfs-daemon/README.md index 4b33747691..5003f93046 100644 --- a/packages/ipfs-daemon/README.md +++ b/packages/ipfs-daemon/README.md @@ -1,3 +1,13 @@ +> # ⛔️ DEPRECATED: [js-IPFS](https://github.com/ipfs/js-ipfs) has been superseded by [Helia](https://github.com/ipfs/helia) +> +> To help you upgrade your app to use Helia please see the following resources: +> +> - [Migration guide](https://github.com/ipfs/helia/wiki/%F0%9F%9A%9B-Migrating-from-js-IPFS) +> - [FAQ](https://github.com/ipfs/helia/wiki/%E2%9D%93-FAQ) +> - [Hello Helia talk](https://www.youtube.com/watch?v=T_FlhkLSgH8) +> - [The State of IPFS in JS](https://blog.ipfs.tech/state-of-ipfs-in-js/) +> - [discuss.ipfs.tech post](..) + # ipfs-daemon [![ipfs.tech](https://img.shields.io/badge/project-IPFS-blue.svg?style=flat-square)](https://ipfs.tech) diff --git a/packages/ipfs-grpc-client/README.md b/packages/ipfs-grpc-client/README.md index 0912f358b4..e866e0face 100644 --- a/packages/ipfs-grpc-client/README.md +++ b/packages/ipfs-grpc-client/README.md @@ -1,3 +1,13 @@ +> # ⛔️ DEPRECATED: [js-IPFS](https://github.com/ipfs/js-ipfs) has been superseded by [Helia](https://github.com/ipfs/helia) +> +> To help you upgrade your app to use Helia please see the following resources: +> +> - [Migration guide](https://github.com/ipfs/helia/wiki/%F0%9F%9A%9B-Migrating-from-js-IPFS) +> - [FAQ](https://github.com/ipfs/helia/wiki/%E2%9D%93-FAQ) +> - [Hello Helia talk](https://www.youtube.com/watch?v=T_FlhkLSgH8) +> - [The State of IPFS in JS](https://blog.ipfs.tech/state-of-ipfs-in-js/) +> - [discuss.ipfs.tech post](..) + # ipfs-grpc-client [![ipfs.tech](https://img.shields.io/badge/project-IPFS-blue.svg?style=flat-square)](https://ipfs.tech) diff --git a/packages/ipfs-grpc-client/test/utils.spec.js b/packages/ipfs-grpc-client/test/utils.spec.js index e1a0190c8c..4a1fbe1ba3 100644 --- a/packages/ipfs-grpc-client/test/utils.spec.js +++ b/packages/ipfs-grpc-client/test/utils.spec.js @@ -11,6 +11,7 @@ describe('utils', () => { it('should transform a bidirectional client into an async iterable', async () => { const service = 'service' const options = { + host: '', metadata: { foo: 'bar' } @@ -42,6 +43,7 @@ describe('utils', () => { it('should propagate client errors', async () => { const service = 'service' const options = { + host: '', metadata: { foo: 'bar' } diff --git a/packages/ipfs-grpc-protocol/README.md b/packages/ipfs-grpc-protocol/README.md index 8713893aa0..dc83093db1 100644 --- a/packages/ipfs-grpc-protocol/README.md +++ b/packages/ipfs-grpc-protocol/README.md @@ -1,3 +1,13 @@ +> # ⛔️ DEPRECATED: [js-IPFS](https://github.com/ipfs/js-ipfs) has been superseded by [Helia](https://github.com/ipfs/helia) +> +> To help you upgrade your app to use Helia please see the following resources: +> +> - [Migration guide](https://github.com/ipfs/helia/wiki/%F0%9F%9A%9B-Migrating-from-js-IPFS) +> - [FAQ](https://github.com/ipfs/helia/wiki/%E2%9D%93-FAQ) +> - [Hello Helia talk](https://www.youtube.com/watch?v=T_FlhkLSgH8) +> - [The State of IPFS in JS](https://blog.ipfs.tech/state-of-ipfs-in-js/) +> - [discuss.ipfs.tech post](..) + # ipfs-grpc-protocol [![ipfs.tech](https://img.shields.io/badge/project-IPFS-blue.svg?style=flat-square)](https://ipfs.tech) diff --git a/packages/ipfs-grpc-server/README.md b/packages/ipfs-grpc-server/README.md index 288c11a227..38a52d66c6 100644 --- a/packages/ipfs-grpc-server/README.md +++ b/packages/ipfs-grpc-server/README.md @@ -1,3 +1,13 @@ +> # ⛔️ DEPRECATED: [js-IPFS](https://github.com/ipfs/js-ipfs) has been superseded by [Helia](https://github.com/ipfs/helia) +> +> To help you upgrade your app to use Helia please see the following resources: +> +> - [Migration guide](https://github.com/ipfs/helia/wiki/%F0%9F%9A%9B-Migrating-from-js-IPFS) +> - [FAQ](https://github.com/ipfs/helia/wiki/%E2%9D%93-FAQ) +> - [Hello Helia talk](https://www.youtube.com/watch?v=T_FlhkLSgH8) +> - [The State of IPFS in JS](https://blog.ipfs.tech/state-of-ipfs-in-js/) +> - [discuss.ipfs.tech post](..) + # ipfs-grpc-server [![ipfs.tech](https://img.shields.io/badge/project-IPFS-blue.svg?style=flat-square)](https://ipfs.tech) diff --git a/packages/ipfs-http-client/README.md b/packages/ipfs-http-client/README.md index 36f7d1be01..8d61d58928 100644 --- a/packages/ipfs-http-client/README.md +++ b/packages/ipfs-http-client/README.md @@ -1,3 +1,13 @@ +> # ⛔️ DEPRECATED: [js-IPFS](https://github.com/ipfs/js-ipfs) has been superseded by [Helia](https://github.com/ipfs/helia) +> +> To help you upgrade your app to use Helia please see the following resources: +> +> - [Migration guide](https://github.com/ipfs/helia/wiki/%F0%9F%9A%9B-Migrating-from-js-IPFS) +> - [FAQ](https://github.com/ipfs/helia/wiki/%E2%9D%93-FAQ) +> - [Hello Helia talk](https://www.youtube.com/watch?v=T_FlhkLSgH8) +> - [The State of IPFS in JS](https://blog.ipfs.tech/state-of-ipfs-in-js/) +> - [discuss.ipfs.tech post](..) + # ipfs-http-client [![ipfs.tech](https://img.shields.io/badge/project-IPFS-blue.svg?style=flat-square)](https://ipfs.tech) @@ -17,7 +27,7 @@ - [Getting Started](#getting-started) - [Next Steps](#next-steps) - [Usage](#usage) - - - [`create([options])`](#createoptions) + - [`create([options])`](#createoptions) - [Parameters](#parameters) - [Options](#options) - [Returns](#returns) diff --git a/packages/ipfs-http-gateway/README.md b/packages/ipfs-http-gateway/README.md index 0fc2789d88..b7d06646ce 100644 --- a/packages/ipfs-http-gateway/README.md +++ b/packages/ipfs-http-gateway/README.md @@ -1,3 +1,13 @@ +> # ⛔️ DEPRECATED: [js-IPFS](https://github.com/ipfs/js-ipfs) has been superseded by [Helia](https://github.com/ipfs/helia) +> +> To help you upgrade your app to use Helia please see the following resources: +> +> - [Migration guide](https://github.com/ipfs/helia/wiki/%F0%9F%9A%9B-Migrating-from-js-IPFS) +> - [FAQ](https://github.com/ipfs/helia/wiki/%E2%9D%93-FAQ) +> - [Hello Helia talk](https://www.youtube.com/watch?v=T_FlhkLSgH8) +> - [The State of IPFS in JS](https://blog.ipfs.tech/state-of-ipfs-in-js/) +> - [discuss.ipfs.tech post](..) + # ipfs-http-gateway [![ipfs.tech](https://img.shields.io/badge/project-IPFS-blue.svg?style=flat-square)](https://ipfs.tech) diff --git a/packages/ipfs-http-response/README.md b/packages/ipfs-http-response/README.md index 37bb786279..19d9f0a3de 100644 --- a/packages/ipfs-http-response/README.md +++ b/packages/ipfs-http-response/README.md @@ -1,3 +1,13 @@ +> # ⛔️ DEPRECATED: [js-IPFS](https://github.com/ipfs/js-ipfs) has been superseded by [Helia](https://github.com/ipfs/helia) +> +> To help you upgrade your app to use Helia please see the following resources: +> +> - [Migration guide](https://github.com/ipfs/helia/wiki/%F0%9F%9A%9B-Migrating-from-js-IPFS) +> - [FAQ](https://github.com/ipfs/helia/wiki/%E2%9D%93-FAQ) +> - [Hello Helia talk](https://www.youtube.com/watch?v=T_FlhkLSgH8) +> - [The State of IPFS in JS](https://blog.ipfs.tech/state-of-ipfs-in-js/) +> - [discuss.ipfs.tech post](..) + # ipfs-http-response [![ipfs.tech](https://img.shields.io/badge/project-IPFS-blue.svg?style=flat-square)](https://ipfs.tech) diff --git a/packages/ipfs-http-server/README.md b/packages/ipfs-http-server/README.md index 5648531849..282b8d1057 100644 --- a/packages/ipfs-http-server/README.md +++ b/packages/ipfs-http-server/README.md @@ -1,3 +1,13 @@ +> # ⛔️ DEPRECATED: [js-IPFS](https://github.com/ipfs/js-ipfs) has been superseded by [Helia](https://github.com/ipfs/helia) +> +> To help you upgrade your app to use Helia please see the following resources: +> +> - [Migration guide](https://github.com/ipfs/helia/wiki/%F0%9F%9A%9B-Migrating-from-js-IPFS) +> - [FAQ](https://github.com/ipfs/helia/wiki/%E2%9D%93-FAQ) +> - [Hello Helia talk](https://www.youtube.com/watch?v=T_FlhkLSgH8) +> - [The State of IPFS in JS](https://blog.ipfs.tech/state-of-ipfs-in-js/) +> - [discuss.ipfs.tech post](..) + # ipfs-http-server [![ipfs.tech](https://img.shields.io/badge/project-IPFS-blue.svg?style=flat-square)](https://ipfs.tech) diff --git a/packages/ipfs-message-port-client/README.md b/packages/ipfs-message-port-client/README.md index 5f1b8283b4..585fd4f7f6 100644 --- a/packages/ipfs-message-port-client/README.md +++ b/packages/ipfs-message-port-client/README.md @@ -1,3 +1,13 @@ +> # ⛔️ DEPRECATED: [js-IPFS](https://github.com/ipfs/js-ipfs) has been superseded by [Helia](https://github.com/ipfs/helia) +> +> To help you upgrade your app to use Helia please see the following resources: +> +> - [Migration guide](https://github.com/ipfs/helia/wiki/%F0%9F%9A%9B-Migrating-from-js-IPFS) +> - [FAQ](https://github.com/ipfs/helia/wiki/%E2%9D%93-FAQ) +> - [Hello Helia talk](https://www.youtube.com/watch?v=T_FlhkLSgH8) +> - [The State of IPFS in JS](https://blog.ipfs.tech/state-of-ipfs-in-js/) +> - [discuss.ipfs.tech post](..) + # ipfs-message-port-client [![ipfs.tech](https://img.shields.io/badge/project-IPFS-blue.svg?style=flat-square)](https://ipfs.tech) diff --git a/packages/ipfs-message-port-protocol/README.md b/packages/ipfs-message-port-protocol/README.md index 6d1092e9f2..8a35e746df 100644 --- a/packages/ipfs-message-port-protocol/README.md +++ b/packages/ipfs-message-port-protocol/README.md @@ -1,3 +1,13 @@ +> # ⛔️ DEPRECATED: [js-IPFS](https://github.com/ipfs/js-ipfs) has been superseded by [Helia](https://github.com/ipfs/helia) +> +> To help you upgrade your app to use Helia please see the following resources: +> +> - [Migration guide](https://github.com/ipfs/helia/wiki/%F0%9F%9A%9B-Migrating-from-js-IPFS) +> - [FAQ](https://github.com/ipfs/helia/wiki/%E2%9D%93-FAQ) +> - [Hello Helia talk](https://www.youtube.com/watch?v=T_FlhkLSgH8) +> - [The State of IPFS in JS](https://blog.ipfs.tech/state-of-ipfs-in-js/) +> - [discuss.ipfs.tech post](..) + # ipfs-message-port-protocol [![ipfs.tech](https://img.shields.io/badge/project-IPFS-blue.svg?style=flat-square)](https://ipfs.tech) diff --git a/packages/ipfs-message-port-server/README.md b/packages/ipfs-message-port-server/README.md index d0cfe08e33..554c3d7e52 100644 --- a/packages/ipfs-message-port-server/README.md +++ b/packages/ipfs-message-port-server/README.md @@ -1,3 +1,13 @@ +> # ⛔️ DEPRECATED: [js-IPFS](https://github.com/ipfs/js-ipfs) has been superseded by [Helia](https://github.com/ipfs/helia) +> +> To help you upgrade your app to use Helia please see the following resources: +> +> - [Migration guide](https://github.com/ipfs/helia/wiki/%F0%9F%9A%9B-Migrating-from-js-IPFS) +> - [FAQ](https://github.com/ipfs/helia/wiki/%E2%9D%93-FAQ) +> - [Hello Helia talk](https://www.youtube.com/watch?v=T_FlhkLSgH8) +> - [The State of IPFS in JS](https://blog.ipfs.tech/state-of-ipfs-in-js/) +> - [discuss.ipfs.tech post](..) + # ipfs-message-port-server [![ipfs.tech](https://img.shields.io/badge/project-IPFS-blue.svg?style=flat-square)](https://ipfs.tech) diff --git a/packages/ipfs/README.md b/packages/ipfs/README.md index 1219fb338a..dbf3df02b0 100644 --- a/packages/ipfs/README.md +++ b/packages/ipfs/README.md @@ -1,3 +1,13 @@ +> # ⛔️ DEPRECATED: [js-IPFS](https://github.com/ipfs/js-ipfs) has been superseded by [Helia](https://github.com/ipfs/helia) +> +> To help you upgrade your app to use Helia please see the following resources: +> +> - [Migration guide](https://github.com/ipfs/helia/wiki/%F0%9F%9A%9B-Migrating-from-js-IPFS) +> - [FAQ](https://github.com/ipfs/helia/wiki/%E2%9D%93-FAQ) +> - [Hello Helia talk](https://www.youtube.com/watch?v=T_FlhkLSgH8) +> - [The State of IPFS in JS](https://blog.ipfs.tech/state-of-ipfs-in-js/) +> - [discuss.ipfs.tech post](..) + # ipfs [![ipfs.tech](https://img.shields.io/badge/project-IPFS-blue.svg?style=flat-square)](https://ipfs.tech) From 3b116446baa2e364661f5b680ef99c314171f5e7 Mon Sep 17 00:00:00 2001 From: achingbrain Date: Wed, 24 May 2023 17:36:46 +0100 Subject: [PATCH 2/2] chore: update notice --- packages/interface-ipfs-core/README.md | 10 +++------- packages/ipfs-cli/README.md | 10 +++------- packages/ipfs-client/README.md | 10 +++------- packages/ipfs-core-config/README.md | 10 +++------- packages/ipfs-core-types/README.md | 10 +++------- packages/ipfs-core-utils/README.md | 10 +++------- packages/ipfs-core/README.md | 10 +++------- packages/ipfs-daemon/README.md | 10 +++------- packages/ipfs-grpc-client/README.md | 10 +++------- packages/ipfs-grpc-protocol/README.md | 10 +++------- packages/ipfs-grpc-server/README.md | 10 +++------- packages/ipfs-http-client/README.md | 10 +++------- packages/ipfs-http-gateway/README.md | 10 +++------- packages/ipfs-http-response/README.md | 10 +++------- packages/ipfs-http-server/README.md | 10 +++------- packages/ipfs-message-port-client/README.md | 10 +++------- packages/ipfs-message-port-protocol/README.md | 10 +++------- packages/ipfs-message-port-server/README.md | 10 +++------- packages/ipfs/README.md | 10 +++------- 19 files changed, 57 insertions(+), 133 deletions(-) diff --git a/packages/interface-ipfs-core/README.md b/packages/interface-ipfs-core/README.md index 0109c5a808..f7aefc208e 100644 --- a/packages/interface-ipfs-core/README.md +++ b/packages/interface-ipfs-core/README.md @@ -1,12 +1,8 @@ -> # ⛔️ DEPRECATED: [js-IPFS](https://github.com/ipfs/js-ipfs) has been superseded by [Helia](https://github.com/ipfs/helia) +> # ⛔️ DEPRECATED: [js-IPFS](https://github.com/ipfs/js-ipfs) has been superseded by [Helia](https://github.com/ipfs/helia) > -> To help you upgrade your app to use Helia please see the following resources: +> 📚 [Learn more about this deprecation](https://github.com/ipfs/js-ipfs/issues/4336) or [how to migrate](https://github.com/ipfs/helia/wiki/Migrating-from-js-IPFS) > -> - [Migration guide](https://github.com/ipfs/helia/wiki/%F0%9F%9A%9B-Migrating-from-js-IPFS) -> - [FAQ](https://github.com/ipfs/helia/wiki/%E2%9D%93-FAQ) -> - [Hello Helia talk](https://www.youtube.com/watch?v=T_FlhkLSgH8) -> - [The State of IPFS in JS](https://blog.ipfs.tech/state-of-ipfs-in-js/) -> - [discuss.ipfs.tech post](..) +> ⚠️ If you continue using this repo, please note that security fixes will not be provided # interface-ipfs-core diff --git a/packages/ipfs-cli/README.md b/packages/ipfs-cli/README.md index c2601b61a4..9af290b0df 100644 --- a/packages/ipfs-cli/README.md +++ b/packages/ipfs-cli/README.md @@ -1,12 +1,8 @@ -> # ⛔️ DEPRECATED: [js-IPFS](https://github.com/ipfs/js-ipfs) has been superseded by [Helia](https://github.com/ipfs/helia) +> # ⛔️ DEPRECATED: [js-IPFS](https://github.com/ipfs/js-ipfs) has been superseded by [Helia](https://github.com/ipfs/helia) > -> To help you upgrade your app to use Helia please see the following resources: +> 📚 [Learn more about this deprecation](https://github.com/ipfs/js-ipfs/issues/4336) or [how to migrate](https://github.com/ipfs/helia/wiki/Migrating-from-js-IPFS) > -> - [Migration guide](https://github.com/ipfs/helia/wiki/%F0%9F%9A%9B-Migrating-from-js-IPFS) -> - [FAQ](https://github.com/ipfs/helia/wiki/%E2%9D%93-FAQ) -> - [Hello Helia talk](https://www.youtube.com/watch?v=T_FlhkLSgH8) -> - [The State of IPFS in JS](https://blog.ipfs.tech/state-of-ipfs-in-js/) -> - [discuss.ipfs.tech post](..) +> ⚠️ If you continue using this repo, please note that security fixes will not be provided # ipfs-cli diff --git a/packages/ipfs-client/README.md b/packages/ipfs-client/README.md index cfcaf363b0..52136d7f1c 100644 --- a/packages/ipfs-client/README.md +++ b/packages/ipfs-client/README.md @@ -1,12 +1,8 @@ -> # ⛔️ DEPRECATED: [js-IPFS](https://github.com/ipfs/js-ipfs) has been superseded by [Helia](https://github.com/ipfs/helia) +> # ⛔️ DEPRECATED: [js-IPFS](https://github.com/ipfs/js-ipfs) has been superseded by [Helia](https://github.com/ipfs/helia) > -> To help you upgrade your app to use Helia please see the following resources: +> 📚 [Learn more about this deprecation](https://github.com/ipfs/js-ipfs/issues/4336) or [how to migrate](https://github.com/ipfs/helia/wiki/Migrating-from-js-IPFS) > -> - [Migration guide](https://github.com/ipfs/helia/wiki/%F0%9F%9A%9B-Migrating-from-js-IPFS) -> - [FAQ](https://github.com/ipfs/helia/wiki/%E2%9D%93-FAQ) -> - [Hello Helia talk](https://www.youtube.com/watch?v=T_FlhkLSgH8) -> - [The State of IPFS in JS](https://blog.ipfs.tech/state-of-ipfs-in-js/) -> - [discuss.ipfs.tech post](..) +> ⚠️ If you continue using this repo, please note that security fixes will not be provided # ipfs-client diff --git a/packages/ipfs-core-config/README.md b/packages/ipfs-core-config/README.md index 7ffa19e15e..124ca5f471 100644 --- a/packages/ipfs-core-config/README.md +++ b/packages/ipfs-core-config/README.md @@ -1,12 +1,8 @@ -> # ⛔️ DEPRECATED: [js-IPFS](https://github.com/ipfs/js-ipfs) has been superseded by [Helia](https://github.com/ipfs/helia) +> # ⛔️ DEPRECATED: [js-IPFS](https://github.com/ipfs/js-ipfs) has been superseded by [Helia](https://github.com/ipfs/helia) > -> To help you upgrade your app to use Helia please see the following resources: +> 📚 [Learn more about this deprecation](https://github.com/ipfs/js-ipfs/issues/4336) or [how to migrate](https://github.com/ipfs/helia/wiki/Migrating-from-js-IPFS) > -> - [Migration guide](https://github.com/ipfs/helia/wiki/%F0%9F%9A%9B-Migrating-from-js-IPFS) -> - [FAQ](https://github.com/ipfs/helia/wiki/%E2%9D%93-FAQ) -> - [Hello Helia talk](https://www.youtube.com/watch?v=T_FlhkLSgH8) -> - [The State of IPFS in JS](https://blog.ipfs.tech/state-of-ipfs-in-js/) -> - [discuss.ipfs.tech post](..) +> ⚠️ If you continue using this repo, please note that security fixes will not be provided # ipfs-core-config diff --git a/packages/ipfs-core-types/README.md b/packages/ipfs-core-types/README.md index b857662076..fd49d1d2b7 100644 --- a/packages/ipfs-core-types/README.md +++ b/packages/ipfs-core-types/README.md @@ -1,12 +1,8 @@ -> # ⛔️ DEPRECATED: [js-IPFS](https://github.com/ipfs/js-ipfs) has been superseded by [Helia](https://github.com/ipfs/helia) +> # ⛔️ DEPRECATED: [js-IPFS](https://github.com/ipfs/js-ipfs) has been superseded by [Helia](https://github.com/ipfs/helia) > -> To help you upgrade your app to use Helia please see the following resources: +> 📚 [Learn more about this deprecation](https://github.com/ipfs/js-ipfs/issues/4336) or [how to migrate](https://github.com/ipfs/helia/wiki/Migrating-from-js-IPFS) > -> - [Migration guide](https://github.com/ipfs/helia/wiki/%F0%9F%9A%9B-Migrating-from-js-IPFS) -> - [FAQ](https://github.com/ipfs/helia/wiki/%E2%9D%93-FAQ) -> - [Hello Helia talk](https://www.youtube.com/watch?v=T_FlhkLSgH8) -> - [The State of IPFS in JS](https://blog.ipfs.tech/state-of-ipfs-in-js/) -> - [discuss.ipfs.tech post](..) +> ⚠️ If you continue using this repo, please note that security fixes will not be provided # ipfs-core-types diff --git a/packages/ipfs-core-utils/README.md b/packages/ipfs-core-utils/README.md index f4dabfd801..25019782b2 100644 --- a/packages/ipfs-core-utils/README.md +++ b/packages/ipfs-core-utils/README.md @@ -1,12 +1,8 @@ -> # ⛔️ DEPRECATED: [js-IPFS](https://github.com/ipfs/js-ipfs) has been superseded by [Helia](https://github.com/ipfs/helia) +> # ⛔️ DEPRECATED: [js-IPFS](https://github.com/ipfs/js-ipfs) has been superseded by [Helia](https://github.com/ipfs/helia) > -> To help you upgrade your app to use Helia please see the following resources: +> 📚 [Learn more about this deprecation](https://github.com/ipfs/js-ipfs/issues/4336) or [how to migrate](https://github.com/ipfs/helia/wiki/Migrating-from-js-IPFS) > -> - [Migration guide](https://github.com/ipfs/helia/wiki/%F0%9F%9A%9B-Migrating-from-js-IPFS) -> - [FAQ](https://github.com/ipfs/helia/wiki/%E2%9D%93-FAQ) -> - [Hello Helia talk](https://www.youtube.com/watch?v=T_FlhkLSgH8) -> - [The State of IPFS in JS](https://blog.ipfs.tech/state-of-ipfs-in-js/) -> - [discuss.ipfs.tech post](..) +> ⚠️ If you continue using this repo, please note that security fixes will not be provided # ipfs-core-utils diff --git a/packages/ipfs-core/README.md b/packages/ipfs-core/README.md index a5403a8bfa..b0752f4322 100644 --- a/packages/ipfs-core/README.md +++ b/packages/ipfs-core/README.md @@ -1,12 +1,8 @@ -> # ⛔️ DEPRECATED: [js-IPFS](https://github.com/ipfs/js-ipfs) has been superseded by [Helia](https://github.com/ipfs/helia) +> # ⛔️ DEPRECATED: [js-IPFS](https://github.com/ipfs/js-ipfs) has been superseded by [Helia](https://github.com/ipfs/helia) > -> To help you upgrade your app to use Helia please see the following resources: +> 📚 [Learn more about this deprecation](https://github.com/ipfs/js-ipfs/issues/4336) or [how to migrate](https://github.com/ipfs/helia/wiki/Migrating-from-js-IPFS) > -> - [Migration guide](https://github.com/ipfs/helia/wiki/%F0%9F%9A%9B-Migrating-from-js-IPFS) -> - [FAQ](https://github.com/ipfs/helia/wiki/%E2%9D%93-FAQ) -> - [Hello Helia talk](https://www.youtube.com/watch?v=T_FlhkLSgH8) -> - [The State of IPFS in JS](https://blog.ipfs.tech/state-of-ipfs-in-js/) -> - [discuss.ipfs.tech post](..) +> ⚠️ If you continue using this repo, please note that security fixes will not be provided # ipfs-core diff --git a/packages/ipfs-daemon/README.md b/packages/ipfs-daemon/README.md index 5003f93046..6ab8fa47cb 100644 --- a/packages/ipfs-daemon/README.md +++ b/packages/ipfs-daemon/README.md @@ -1,12 +1,8 @@ -> # ⛔️ DEPRECATED: [js-IPFS](https://github.com/ipfs/js-ipfs) has been superseded by [Helia](https://github.com/ipfs/helia) +> # ⛔️ DEPRECATED: [js-IPFS](https://github.com/ipfs/js-ipfs) has been superseded by [Helia](https://github.com/ipfs/helia) > -> To help you upgrade your app to use Helia please see the following resources: +> 📚 [Learn more about this deprecation](https://github.com/ipfs/js-ipfs/issues/4336) or [how to migrate](https://github.com/ipfs/helia/wiki/Migrating-from-js-IPFS) > -> - [Migration guide](https://github.com/ipfs/helia/wiki/%F0%9F%9A%9B-Migrating-from-js-IPFS) -> - [FAQ](https://github.com/ipfs/helia/wiki/%E2%9D%93-FAQ) -> - [Hello Helia talk](https://www.youtube.com/watch?v=T_FlhkLSgH8) -> - [The State of IPFS in JS](https://blog.ipfs.tech/state-of-ipfs-in-js/) -> - [discuss.ipfs.tech post](..) +> ⚠️ If you continue using this repo, please note that security fixes will not be provided # ipfs-daemon diff --git a/packages/ipfs-grpc-client/README.md b/packages/ipfs-grpc-client/README.md index e866e0face..0cbca9bb6f 100644 --- a/packages/ipfs-grpc-client/README.md +++ b/packages/ipfs-grpc-client/README.md @@ -1,12 +1,8 @@ -> # ⛔️ DEPRECATED: [js-IPFS](https://github.com/ipfs/js-ipfs) has been superseded by [Helia](https://github.com/ipfs/helia) +> # ⛔️ DEPRECATED: [js-IPFS](https://github.com/ipfs/js-ipfs) has been superseded by [Helia](https://github.com/ipfs/helia) > -> To help you upgrade your app to use Helia please see the following resources: +> 📚 [Learn more about this deprecation](https://github.com/ipfs/js-ipfs/issues/4336) or [how to migrate](https://github.com/ipfs/helia/wiki/Migrating-from-js-IPFS) > -> - [Migration guide](https://github.com/ipfs/helia/wiki/%F0%9F%9A%9B-Migrating-from-js-IPFS) -> - [FAQ](https://github.com/ipfs/helia/wiki/%E2%9D%93-FAQ) -> - [Hello Helia talk](https://www.youtube.com/watch?v=T_FlhkLSgH8) -> - [The State of IPFS in JS](https://blog.ipfs.tech/state-of-ipfs-in-js/) -> - [discuss.ipfs.tech post](..) +> ⚠️ If you continue using this repo, please note that security fixes will not be provided # ipfs-grpc-client diff --git a/packages/ipfs-grpc-protocol/README.md b/packages/ipfs-grpc-protocol/README.md index dc83093db1..11e1d31af1 100644 --- a/packages/ipfs-grpc-protocol/README.md +++ b/packages/ipfs-grpc-protocol/README.md @@ -1,12 +1,8 @@ -> # ⛔️ DEPRECATED: [js-IPFS](https://github.com/ipfs/js-ipfs) has been superseded by [Helia](https://github.com/ipfs/helia) +> # ⛔️ DEPRECATED: [js-IPFS](https://github.com/ipfs/js-ipfs) has been superseded by [Helia](https://github.com/ipfs/helia) > -> To help you upgrade your app to use Helia please see the following resources: +> 📚 [Learn more about this deprecation](https://github.com/ipfs/js-ipfs/issues/4336) or [how to migrate](https://github.com/ipfs/helia/wiki/Migrating-from-js-IPFS) > -> - [Migration guide](https://github.com/ipfs/helia/wiki/%F0%9F%9A%9B-Migrating-from-js-IPFS) -> - [FAQ](https://github.com/ipfs/helia/wiki/%E2%9D%93-FAQ) -> - [Hello Helia talk](https://www.youtube.com/watch?v=T_FlhkLSgH8) -> - [The State of IPFS in JS](https://blog.ipfs.tech/state-of-ipfs-in-js/) -> - [discuss.ipfs.tech post](..) +> ⚠️ If you continue using this repo, please note that security fixes will not be provided # ipfs-grpc-protocol diff --git a/packages/ipfs-grpc-server/README.md b/packages/ipfs-grpc-server/README.md index 38a52d66c6..4d89fd8fe3 100644 --- a/packages/ipfs-grpc-server/README.md +++ b/packages/ipfs-grpc-server/README.md @@ -1,12 +1,8 @@ -> # ⛔️ DEPRECATED: [js-IPFS](https://github.com/ipfs/js-ipfs) has been superseded by [Helia](https://github.com/ipfs/helia) +> # ⛔️ DEPRECATED: [js-IPFS](https://github.com/ipfs/js-ipfs) has been superseded by [Helia](https://github.com/ipfs/helia) > -> To help you upgrade your app to use Helia please see the following resources: +> 📚 [Learn more about this deprecation](https://github.com/ipfs/js-ipfs/issues/4336) or [how to migrate](https://github.com/ipfs/helia/wiki/Migrating-from-js-IPFS) > -> - [Migration guide](https://github.com/ipfs/helia/wiki/%F0%9F%9A%9B-Migrating-from-js-IPFS) -> - [FAQ](https://github.com/ipfs/helia/wiki/%E2%9D%93-FAQ) -> - [Hello Helia talk](https://www.youtube.com/watch?v=T_FlhkLSgH8) -> - [The State of IPFS in JS](https://blog.ipfs.tech/state-of-ipfs-in-js/) -> - [discuss.ipfs.tech post](..) +> ⚠️ If you continue using this repo, please note that security fixes will not be provided # ipfs-grpc-server diff --git a/packages/ipfs-http-client/README.md b/packages/ipfs-http-client/README.md index 8d61d58928..3db4a1562e 100644 --- a/packages/ipfs-http-client/README.md +++ b/packages/ipfs-http-client/README.md @@ -1,12 +1,8 @@ -> # ⛔️ DEPRECATED: [js-IPFS](https://github.com/ipfs/js-ipfs) has been superseded by [Helia](https://github.com/ipfs/helia) +> # ⛔️ DEPRECATED: [js-IPFS](https://github.com/ipfs/js-ipfs) has been superseded by [Helia](https://github.com/ipfs/helia) > -> To help you upgrade your app to use Helia please see the following resources: +> 📚 [Learn more about this deprecation](https://github.com/ipfs/js-ipfs/issues/4336) or [how to migrate](https://github.com/ipfs/helia/wiki/Migrating-from-js-IPFS) > -> - [Migration guide](https://github.com/ipfs/helia/wiki/%F0%9F%9A%9B-Migrating-from-js-IPFS) -> - [FAQ](https://github.com/ipfs/helia/wiki/%E2%9D%93-FAQ) -> - [Hello Helia talk](https://www.youtube.com/watch?v=T_FlhkLSgH8) -> - [The State of IPFS in JS](https://blog.ipfs.tech/state-of-ipfs-in-js/) -> - [discuss.ipfs.tech post](..) +> ⚠️ If you continue using this repo, please note that security fixes will not be provided # ipfs-http-client diff --git a/packages/ipfs-http-gateway/README.md b/packages/ipfs-http-gateway/README.md index b7d06646ce..61e78edf23 100644 --- a/packages/ipfs-http-gateway/README.md +++ b/packages/ipfs-http-gateway/README.md @@ -1,12 +1,8 @@ -> # ⛔️ DEPRECATED: [js-IPFS](https://github.com/ipfs/js-ipfs) has been superseded by [Helia](https://github.com/ipfs/helia) +> # ⛔️ DEPRECATED: [js-IPFS](https://github.com/ipfs/js-ipfs) has been superseded by [Helia](https://github.com/ipfs/helia) > -> To help you upgrade your app to use Helia please see the following resources: +> 📚 [Learn more about this deprecation](https://github.com/ipfs/js-ipfs/issues/4336) or [how to migrate](https://github.com/ipfs/helia/wiki/Migrating-from-js-IPFS) > -> - [Migration guide](https://github.com/ipfs/helia/wiki/%F0%9F%9A%9B-Migrating-from-js-IPFS) -> - [FAQ](https://github.com/ipfs/helia/wiki/%E2%9D%93-FAQ) -> - [Hello Helia talk](https://www.youtube.com/watch?v=T_FlhkLSgH8) -> - [The State of IPFS in JS](https://blog.ipfs.tech/state-of-ipfs-in-js/) -> - [discuss.ipfs.tech post](..) +> ⚠️ If you continue using this repo, please note that security fixes will not be provided # ipfs-http-gateway diff --git a/packages/ipfs-http-response/README.md b/packages/ipfs-http-response/README.md index 19d9f0a3de..0e7043a1cd 100644 --- a/packages/ipfs-http-response/README.md +++ b/packages/ipfs-http-response/README.md @@ -1,12 +1,8 @@ -> # ⛔️ DEPRECATED: [js-IPFS](https://github.com/ipfs/js-ipfs) has been superseded by [Helia](https://github.com/ipfs/helia) +> # ⛔️ DEPRECATED: [js-IPFS](https://github.com/ipfs/js-ipfs) has been superseded by [Helia](https://github.com/ipfs/helia) > -> To help you upgrade your app to use Helia please see the following resources: +> 📚 [Learn more about this deprecation](https://github.com/ipfs/js-ipfs/issues/4336) or [how to migrate](https://github.com/ipfs/helia/wiki/Migrating-from-js-IPFS) > -> - [Migration guide](https://github.com/ipfs/helia/wiki/%F0%9F%9A%9B-Migrating-from-js-IPFS) -> - [FAQ](https://github.com/ipfs/helia/wiki/%E2%9D%93-FAQ) -> - [Hello Helia talk](https://www.youtube.com/watch?v=T_FlhkLSgH8) -> - [The State of IPFS in JS](https://blog.ipfs.tech/state-of-ipfs-in-js/) -> - [discuss.ipfs.tech post](..) +> ⚠️ If you continue using this repo, please note that security fixes will not be provided # ipfs-http-response diff --git a/packages/ipfs-http-server/README.md b/packages/ipfs-http-server/README.md index 282b8d1057..d18de39b02 100644 --- a/packages/ipfs-http-server/README.md +++ b/packages/ipfs-http-server/README.md @@ -1,12 +1,8 @@ -> # ⛔️ DEPRECATED: [js-IPFS](https://github.com/ipfs/js-ipfs) has been superseded by [Helia](https://github.com/ipfs/helia) +> # ⛔️ DEPRECATED: [js-IPFS](https://github.com/ipfs/js-ipfs) has been superseded by [Helia](https://github.com/ipfs/helia) > -> To help you upgrade your app to use Helia please see the following resources: +> 📚 [Learn more about this deprecation](https://github.com/ipfs/js-ipfs/issues/4336) or [how to migrate](https://github.com/ipfs/helia/wiki/Migrating-from-js-IPFS) > -> - [Migration guide](https://github.com/ipfs/helia/wiki/%F0%9F%9A%9B-Migrating-from-js-IPFS) -> - [FAQ](https://github.com/ipfs/helia/wiki/%E2%9D%93-FAQ) -> - [Hello Helia talk](https://www.youtube.com/watch?v=T_FlhkLSgH8) -> - [The State of IPFS in JS](https://blog.ipfs.tech/state-of-ipfs-in-js/) -> - [discuss.ipfs.tech post](..) +> ⚠️ If you continue using this repo, please note that security fixes will not be provided # ipfs-http-server diff --git a/packages/ipfs-message-port-client/README.md b/packages/ipfs-message-port-client/README.md index 585fd4f7f6..48bdf46967 100644 --- a/packages/ipfs-message-port-client/README.md +++ b/packages/ipfs-message-port-client/README.md @@ -1,12 +1,8 @@ -> # ⛔️ DEPRECATED: [js-IPFS](https://github.com/ipfs/js-ipfs) has been superseded by [Helia](https://github.com/ipfs/helia) +> # ⛔️ DEPRECATED: [js-IPFS](https://github.com/ipfs/js-ipfs) has been superseded by [Helia](https://github.com/ipfs/helia) > -> To help you upgrade your app to use Helia please see the following resources: +> 📚 [Learn more about this deprecation](https://github.com/ipfs/js-ipfs/issues/4336) or [how to migrate](https://github.com/ipfs/helia/wiki/Migrating-from-js-IPFS) > -> - [Migration guide](https://github.com/ipfs/helia/wiki/%F0%9F%9A%9B-Migrating-from-js-IPFS) -> - [FAQ](https://github.com/ipfs/helia/wiki/%E2%9D%93-FAQ) -> - [Hello Helia talk](https://www.youtube.com/watch?v=T_FlhkLSgH8) -> - [The State of IPFS in JS](https://blog.ipfs.tech/state-of-ipfs-in-js/) -> - [discuss.ipfs.tech post](..) +> ⚠️ If you continue using this repo, please note that security fixes will not be provided # ipfs-message-port-client diff --git a/packages/ipfs-message-port-protocol/README.md b/packages/ipfs-message-port-protocol/README.md index 8a35e746df..1c7d476004 100644 --- a/packages/ipfs-message-port-protocol/README.md +++ b/packages/ipfs-message-port-protocol/README.md @@ -1,12 +1,8 @@ -> # ⛔️ DEPRECATED: [js-IPFS](https://github.com/ipfs/js-ipfs) has been superseded by [Helia](https://github.com/ipfs/helia) +> # ⛔️ DEPRECATED: [js-IPFS](https://github.com/ipfs/js-ipfs) has been superseded by [Helia](https://github.com/ipfs/helia) > -> To help you upgrade your app to use Helia please see the following resources: +> 📚 [Learn more about this deprecation](https://github.com/ipfs/js-ipfs/issues/4336) or [how to migrate](https://github.com/ipfs/helia/wiki/Migrating-from-js-IPFS) > -> - [Migration guide](https://github.com/ipfs/helia/wiki/%F0%9F%9A%9B-Migrating-from-js-IPFS) -> - [FAQ](https://github.com/ipfs/helia/wiki/%E2%9D%93-FAQ) -> - [Hello Helia talk](https://www.youtube.com/watch?v=T_FlhkLSgH8) -> - [The State of IPFS in JS](https://blog.ipfs.tech/state-of-ipfs-in-js/) -> - [discuss.ipfs.tech post](..) +> ⚠️ If you continue using this repo, please note that security fixes will not be provided # ipfs-message-port-protocol diff --git a/packages/ipfs-message-port-server/README.md b/packages/ipfs-message-port-server/README.md index 554c3d7e52..ba88cce5a7 100644 --- a/packages/ipfs-message-port-server/README.md +++ b/packages/ipfs-message-port-server/README.md @@ -1,12 +1,8 @@ -> # ⛔️ DEPRECATED: [js-IPFS](https://github.com/ipfs/js-ipfs) has been superseded by [Helia](https://github.com/ipfs/helia) +> # ⛔️ DEPRECATED: [js-IPFS](https://github.com/ipfs/js-ipfs) has been superseded by [Helia](https://github.com/ipfs/helia) > -> To help you upgrade your app to use Helia please see the following resources: +> 📚 [Learn more about this deprecation](https://github.com/ipfs/js-ipfs/issues/4336) or [how to migrate](https://github.com/ipfs/helia/wiki/Migrating-from-js-IPFS) > -> - [Migration guide](https://github.com/ipfs/helia/wiki/%F0%9F%9A%9B-Migrating-from-js-IPFS) -> - [FAQ](https://github.com/ipfs/helia/wiki/%E2%9D%93-FAQ) -> - [Hello Helia talk](https://www.youtube.com/watch?v=T_FlhkLSgH8) -> - [The State of IPFS in JS](https://blog.ipfs.tech/state-of-ipfs-in-js/) -> - [discuss.ipfs.tech post](..) +> ⚠️ If you continue using this repo, please note that security fixes will not be provided # ipfs-message-port-server diff --git a/packages/ipfs/README.md b/packages/ipfs/README.md index dbf3df02b0..386fbc9d68 100644 --- a/packages/ipfs/README.md +++ b/packages/ipfs/README.md @@ -1,12 +1,8 @@ -> # ⛔️ DEPRECATED: [js-IPFS](https://github.com/ipfs/js-ipfs) has been superseded by [Helia](https://github.com/ipfs/helia) +> # ⛔️ DEPRECATED: [js-IPFS](https://github.com/ipfs/js-ipfs) has been superseded by [Helia](https://github.com/ipfs/helia) > -> To help you upgrade your app to use Helia please see the following resources: +> 📚 [Learn more about this deprecation](https://github.com/ipfs/js-ipfs/issues/4336) or [how to migrate](https://github.com/ipfs/helia/wiki/Migrating-from-js-IPFS) > -> - [Migration guide](https://github.com/ipfs/helia/wiki/%F0%9F%9A%9B-Migrating-from-js-IPFS) -> - [FAQ](https://github.com/ipfs/helia/wiki/%E2%9D%93-FAQ) -> - [Hello Helia talk](https://www.youtube.com/watch?v=T_FlhkLSgH8) -> - [The State of IPFS in JS](https://blog.ipfs.tech/state-of-ipfs-in-js/) -> - [discuss.ipfs.tech post](..) +> ⚠️ If you continue using this repo, please note that security fixes will not be provided # ipfs