@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 +11 -0
- package/dist/cli-version.d.ts +1 -1
- package/dist/cli-version.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/src/cli-version.ts +1 -1
- package/src/index.ts +1 -1
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
|
package/dist/cli-version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const CLI_VERSION = "5.12.
|
|
1
|
+
export declare const CLI_VERSION = "5.12.1";
|
|
2
2
|
//# sourceMappingURL=cli-version.d.ts.map
|
package/dist/cli-version.js
CHANGED
|
@@ -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.
|
|
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.
|
|
38
|
+
.version("5.12.1");
|
|
39
39
|
// Module management subcommand group
|
|
40
40
|
const modulesCmd = program
|
|
41
41
|
.command("modules")
|
package/package.json
CHANGED
package/src/cli-version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const CLI_VERSION = "5.12.
|
|
1
|
+
export const CLI_VERSION = "5.12.1";
|
package/src/index.ts
CHANGED