From 2c6ac85a135891353292082facb705858f054301 Mon Sep 17 00:00:00 2001 From: "sho.kuroda" Date: Wed, 21 Aug 2024 14:56:41 +0900 Subject: [PATCH 1/4] chore: bump up version to 0.7.0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 061c496..71fa6d6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "daab", - "version": "0.6.0", + "version": "0.7.0", "description": "daab (direct agent assist bot) commandline interface", "main": "lib/daab.js", "scripts": { From cbf2666415ebd5d9d5c12d609a258c258aa21bf4 Mon Sep 17 00:00:00 2001 From: "sho.kuroda" Date: Wed, 21 Aug 2024 14:57:59 +0900 Subject: [PATCH 2/4] chore(template): update engine versions because these're required by new direct-js --- template/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/template/package.json b/template/package.json index 15c22b3..378b18e 100644 --- a/template/package.json +++ b/template/package.json @@ -14,8 +14,8 @@ ], "description": "<%= description %>", "engines": { - "node": ">= 16", - "npm": ">= 8.3.0" + "node": ">= 18", + "npm": ">= 10" }, "dependencies": { "forever": "^4.0.0", From 7d2d5c8293bea90cf7fb9aa8fbda73e232270402 Mon Sep 17 00:00:00 2001 From: "sho.kuroda" Date: Wed, 4 Sep 2024 16:52:51 +0900 Subject: [PATCH 3/4] fix: add a note of caution to the command description. --- lib/daab.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/daab.js b/lib/daab.js index 372db83..6374821 100755 --- a/lib/daab.js +++ b/lib/daab.js @@ -4,7 +4,7 @@ var program = require('commander'); var pkg = require('../package.json'); program - .version(pkg.version) + .version(`daab CLI: ${pkg.version}\n(Are you sure you're not confusing it with 'daab version'? If you want to check the SDK packages, use 'daab version' instead.)`) .command('init', 'setup the daab environment.') .command('login', 'login as a bot account.') .command('logout', 'logout from the service.') @@ -12,5 +12,5 @@ program .command('start', 'run the daab as a deamon.') .command('stop', 'stop the daab deamon.') .command('invites', 'show and accept a domain invite.') - .command('version', 'show your daab version information.') + .command('version', "show the version information of your daab environment (not CLI).") .parse(process.argv); From 3b02ac33af3875a626bc9b6c3154a32c7688a7d8 Mon Sep 17 00:00:00 2001 From: "sho.kuroda" Date: Fri, 11 Oct 2024 13:53:23 +0900 Subject: [PATCH 4/4] fix(template): update dependencies --- template/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/template/package.json b/template/package.json index 378b18e..138b7b7 100644 --- a/template/package.json +++ b/template/package.json @@ -19,7 +19,7 @@ }, "dependencies": { "forever": "^4.0.0", - "hubot-direct": ">=3 <4", + "hubot-direct": ">=4 <5", "lisb-hubot": ">=5 <6", "lisb-hubot-redis-brain": "^1.0.0" },