Compare commits

..

3 Commits

Author SHA1 Message Date
semantic-release-bot c3421ad6d6 chore(release): 0.1.0-develop.9 [skip ci]
# [0.1.0-develop.9](https://git.lumeweb.com/LumeWeb/kernel-ipfs/compare/v0.1.0-develop.8...v0.1.0-develop.9) (2023-07-29)

### Features

* add name api call ([005a128](005a128a2c))
2023-07-29 03:21:35 +00:00
Derrick Hammer 01e5afb7b2
Merge remote-tracking branch 'origin/develop' into develop 2023-07-28 23:19:51 -04:00
Derrick Hammer 005a128a2c
feat: add name api call 2023-07-28 23:19:43 -04:00
4 changed files with 15 additions and 3 deletions

View File

@ -1,3 +1,10 @@
# [0.1.0-develop.9](https://git.lumeweb.com/LumeWeb/kernel-ipfs/compare/v0.1.0-develop.8...v0.1.0-develop.9) (2023-07-29)
### Features
* add name api call ([005a128](https://git.lumeweb.com/LumeWeb/kernel-ipfs/commit/005a128a2c159ca88199bb85598a24fd0c9b2da6))
# [0.1.0-develop.8](https://git.lumeweb.com/LumeWeb/kernel-ipfs/compare/v0.1.0-develop.7...v0.1.0-develop.8) (2023-07-24) # [0.1.0-develop.8](https://git.lumeweb.com/LumeWeb/kernel-ipfs/compare/v0.1.0-develop.7...v0.1.0-develop.8) (2023-07-24)

4
npm-shrinkwrap.json generated
View File

@ -1,12 +1,12 @@
{ {
"name": "@lumeweb/kernel-ipfs", "name": "@lumeweb/kernel-ipfs",
"version": "0.1.0-develop.8", "version": "0.1.0-develop.9",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "@lumeweb/kernel-ipfs", "name": "@lumeweb/kernel-ipfs",
"version": "0.1.0-develop.8", "version": "0.1.0-develop.9",
"hasInstallScript": true, "hasInstallScript": true,
"dependencies": { "dependencies": {
"@helia/ipns": "^1.1.3", "@helia/ipns": "^1.1.3",

View File

@ -1,6 +1,6 @@
{ {
"name": "@lumeweb/kernel-ipfs", "name": "@lumeweb/kernel-ipfs",
"version": "0.1.0-develop.8", "version": "0.1.0-develop.9",
"type": "module", "type": "module",
"readme": "ERROR: No README data found!", "readme": "ERROR: No README data found!",
"repository": { "repository": {

View File

@ -60,6 +60,7 @@ BigInt.prototype.toJSON = function () {
addHandler("presentKey", handlePresentKey); addHandler("presentKey", handlePresentKey);
addHandler("register", handleRegister); addHandler("register", handleRegister);
addHandler("status", handleStatus, { receiveUpdates: true }); addHandler("status", handleStatus, { receiveUpdates: true });
addHandler("name", handleName);
addHandler("ready", handleReady); addHandler("ready", handleReady);
addHandler("stat", handleStat); addHandler("stat", handleStat);
addHandler("ls", handleLs, { receiveUpdates: true }); addHandler("ls", handleLs, { receiveUpdates: true });
@ -351,3 +352,7 @@ async function handleStatus(aq: ActiveQuery) {
sendUpdate(); sendUpdate();
} }
function handleName(aq: ActiveQuery) {
aq.respond("IPFS");
}