-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This change adds support for DNSLink subdomains on localhost gateway (ipfs/kubo#6096) Example: en.wikipedia-on-ipfs.org.ipfs.localhost:8080 BREAKING CHANGE: `isIPFS.subdomain` now returns true for <domain.tld>.ipns.localhost BREAKING CHANGE: `isIPFS.subdomainPattern` changed License: MIT Signed-off-by: Marcin Rataj <[email protected]>
- Loading branch information
Showing
5 changed files
with
115 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,3 +38,4 @@ node_modules | |
|
||
dist | ||
lib | ||
docs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "is-ipfs", | ||
"version": "0.6.3", | ||
"description": "A set of utilities to help identify IPFS resources", | ||
"description": "A set of utilities to help identify IPFS resources in URLs and paths", | ||
"leadMaintainer": "Marcin Rataj <[email protected]>", | ||
"main": "src/index.js", | ||
"browser": { | ||
|
@@ -34,11 +34,11 @@ | |
"cids": "~0.7.0", | ||
"mafmt": "^7.0.0", | ||
"multiaddr": "^7.2.1", | ||
"multibase": "~0.6.0", | ||
"multibase": "~0.7.0", | ||
"multihashes": "~0.4.13" | ||
}, | ||
"devDependencies": { | ||
"aegir": "^20.5.0", | ||
"aegir": "^21.4.3", | ||
"chai": "^4.2.0", | ||
"pre-commit": "^1.2.2" | ||
}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters