@indigoai-us/hq-cli 5.12.0 → 5.12.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 CHANGED
@@ -1,5 +1,16 @@
1
1
  # Changelog
2
2
 
3
+ ## [5.12.1] — 2026-05-09
4
+
5
+ ### Fixed
6
+
7
+ - **CREATED BY column in HQ Console Vault now populates for cloud-synced files.**
8
+ Pulls in `@indigoai-us/hq-cloud@5.11.3`, which stamps `created-by`,
9
+ `created-by-sub`, and `created-at` user metadata on every `PutObject` so the
10
+ vault listing's HEAD fan-out has identity to attribute. Files synced via
11
+ `hq cloud provision`, `hq files share`, and the watcher previously rendered
12
+ as `—` because only the Next.js upload route stamped author metadata.
13
+
3
14
  ## [5.12.0] — 2026-05-08
4
15
 
5
16
  ### Added
@@ -1,2 +1,2 @@
1
- export declare const CLI_VERSION = "5.12.0";
1
+ export declare const CLI_VERSION = "5.12.1";
2
2
  //# sourceMappingURL=cli-version.d.ts.map
@@ -1,5 +1,5 @@
1
1
 
2
2
  !function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:{},n=(new e.Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="f65738b2-fa67-5b68-a0c8-c73fba12c6c5")}catch(e){}}();
3
- export const CLI_VERSION = "5.12.0";
3
+ export const CLI_VERSION = "5.12.1";
4
4
  //# sourceMappingURL=cli-version.js.map
5
5
  //# debugId=f65738b2-fa67-5b68-a0c8-c73fba12c6c5
package/dist/index.js CHANGED
@@ -35,7 +35,7 @@ const program = new Command();
35
35
  program
36
36
  .name("hq")
37
37
  .description("HQ management CLI — modules, packages, and cloud sync")
38
- .version("5.12.0");
38
+ .version("5.12.1");
39
39
  // Module management subcommand group
40
40
  const modulesCmd = program
41
41
  .command("modules")
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@indigoai-us/hq-cli",
3
- "version": "5.12.0",
3
+ "version": "5.12.1",
4
4
  "description": "HQ by Indigo management CLI — modules and cloud sync",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
@@ -1 +1 @@
1
- export const CLI_VERSION = "5.12.0";
1
+ export const CLI_VERSION = "5.12.1";
package/src/index.ts CHANGED
@@ -38,7 +38,7 @@ const program = new Command();
38
38
  program
39
39
  .name("hq")
40
40
  .description("HQ management CLI — modules, packages, and cloud sync")
41
- .version("5.12.0");
41
+ .version("5.12.1");
42
42
 
43
43
  // Module management subcommand group
44
44
  const modulesCmd = program