@retasc/cli 1.41.0 → 1.41.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +9 -1
- package/dist/commands/bind.js +1 -1
- package/dist/commands/import.js +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,14 @@ release commits and the issues they reference.
|
|
|
6
6
|
|
|
7
7
|
Dates are the npm publish date. Each entry names the RTSC issue behind it.
|
|
8
8
|
|
|
9
|
+
## 1.41.1 (2026-09-04)
|
|
10
|
+
|
|
11
|
+
- **RTSC-812** — no runtime change. Two comments in `cli/src` said project deletion did
|
|
12
|
+
not exist: `bind` called an unwanted empty project something "that cannot be deleted
|
|
13
|
+
(org-granularity delete only)", and the `import` confirm said "there is no per-project
|
|
14
|
+
delete". An owner can delete a project from the Dash now, so both were wrong, and the
|
|
15
|
+
import one sat on the last screen before an irreversible write.
|
|
16
|
+
|
|
9
17
|
## 1.41.0 (2026-09-04)
|
|
10
18
|
|
|
11
19
|
- **RTSC-825** — every workspace now carries the name of the folder it is bound to. The
|
|
@@ -13,7 +21,7 @@ Dates are the npm publish date. Each entry names the RTSC issue behind it.
|
|
|
13
21
|
`retasc bind` sends it when the key is minted, and the watchdog proxy re-sends it at
|
|
14
22
|
every session start, so a folder bound before this existed is named the next time an
|
|
15
23
|
agent runs there. Only the folder's own name travels, never the path above it, and it
|
|
16
|
-
is the folder the BINDING names
|
|
24
|
+
is the folder the BINDING names, so a session opened in a subdirectory still reports the
|
|
17
25
|
bound folder rather than renaming the row to whatever directory it started in. The
|
|
18
26
|
Dash shows it as `workspace` on the Agents page and on the Connect page, and shows
|
|
19
27
|
nothing at all where a workspace has not reported one; a key retired before this
|
package/dist/commands/bind.js
CHANGED
|
@@ -427,7 +427,7 @@ export async function completeWorkspaceSetup(args) {
|
|
|
427
427
|
// act: it is one of the ways a first project comes into existence. The CLI used to
|
|
428
428
|
// ask only "New project name:", so someone arriving from Jira had to invent a project
|
|
429
429
|
// they did not want, run `retasc import` afterwards, and leave an empty one behind
|
|
430
|
-
//
|
|
430
|
+
// (deletable by an owner from the Dash since RTSC-812, but still a chore).
|
|
431
431
|
const made = await firstProject(orgId, org);
|
|
432
432
|
projectId = made.projectId;
|
|
433
433
|
prefix = made.prefix;
|
package/dist/commands/import.js
CHANGED
|
@@ -413,8 +413,8 @@ export async function runImportFlow(opts) {
|
|
|
413
413
|
}
|
|
414
414
|
// --- confirm ---------------------------------------------------------------
|
|
415
415
|
// Named in full before anything is written. An import creates a project's worth of
|
|
416
|
-
// issues and mints a placeholder per source author
|
|
417
|
-
//
|
|
416
|
+
// issues and mints a placeholder per source author; undoing a mistake means an owner
|
|
417
|
+
// deleting the whole project from the Dash (RTSC-812), placeholders and all.
|
|
418
418
|
console.log(`\nAbout to import ${clean(target.name)} from ${clean(src.label)} into org ${orgLabel},\n` +
|
|
419
419
|
`as a new project. Issues, comments and their authors come across.`);
|
|
420
420
|
// RTSC-526 — the second run is the dangerous one, and the terminal is where a command
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@retasc/cli",
|
|
3
|
-
"version": "1.41.
|
|
3
|
+
"version": "1.41.1",
|
|
4
4
|
"description": "Retasc CLI — the issue tracker AI agents pull work from. Sign in with GitHub or Google, create projects, mint agent API keys, and wire your agent to the Retasc MCP server in one command.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|