@uluops/cli 0.19.1 → 0.19.2
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/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,17 @@ All notable changes to `@uluops/cli` will be documented in this file.
|
|
|
4
4
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
|
|
6
6
|
|
|
7
|
+
## [0.19.2] - 2026-06-17
|
|
8
|
+
|
|
9
|
+
### Dependencies
|
|
10
|
+
|
|
11
|
+
- **Bumped `@uluops/ops-sdk` 4.0.0 → 4.0.1** (exact). Pulls in the username slug
|
|
12
|
+
validator fix: `ulu auth update-profile --username <name>` now accepts
|
|
13
|
+
hyphenated slugs like `ulu-labs` (previously rejected client-side by the old
|
|
14
|
+
letter-start, underscore-only pattern). With the ops-api fold-in, setting a
|
|
15
|
+
username via this command also confirms it — clearing the registry publish
|
|
16
|
+
gate from the CLI. 460 tests green against 4.0.1.
|
|
17
|
+
|
|
7
18
|
## [0.19.1] - 2026-06-16
|
|
8
19
|
|
|
9
20
|
### Dependencies
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uluops/cli",
|
|
3
|
-
"version": "0.19.
|
|
3
|
+
"version": "0.19.2",
|
|
4
4
|
"description": "Unified CLI for UluOps - validation tracking and registry management",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -40,9 +40,9 @@
|
|
|
40
40
|
},
|
|
41
41
|
"license": "MIT",
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@uluops/core": "0.22.
|
|
44
|
-
"@uluops/ops-sdk": "
|
|
45
|
-
"@uluops/registry-sdk": "0.
|
|
43
|
+
"@uluops/core": "0.22.8",
|
|
44
|
+
"@uluops/ops-sdk": "4.0.1",
|
|
45
|
+
"@uluops/registry-sdk": "0.36.0",
|
|
46
46
|
"commander": "13.1.0",
|
|
47
47
|
"ora": "8.1.1",
|
|
48
48
|
"zod": "4.3.6"
|