@uluops/cli 0.10.0 → 0.10.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 +6 -0
- package/README.md +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,12 @@ 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.10.1] - 2026-05-27
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
- **`file:` dependencies replaced with npm version ranges** — `@uluops/core`, `@uluops/ops-sdk`, `@uluops/registry-sdk`, and `@uluops/sdk-core` were using local `file:` references that broke when installed from npm.
|
|
12
|
+
|
|
7
13
|
## [0.10.0] - 2026-05-27
|
|
8
14
|
|
|
9
15
|
### Added
|
package/README.md
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
|
|
12
12
|
Unified CLI for UluOps — validation tracking and registry management from a single command. Wraps both the [ops-sdk](https://www.npmjs.com/package/@uluops/ops-sdk) and [registry-sdk](https://www.npmjs.com/package/@uluops/registry-sdk) into an ergonomic terminal interface.
|
|
13
13
|
|
|
14
|
-
**Current version: 0.10.
|
|
14
|
+
**Current version: 0.10.1** | [Changelog](./CHANGELOG.md)
|
|
15
15
|
|
|
16
16
|
## Quick Start
|
|
17
17
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uluops/cli",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.1",
|
|
4
4
|
"description": "Unified CLI for UluOps - validation tracking and registry management",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -40,10 +40,10 @@
|
|
|
40
40
|
},
|
|
41
41
|
"license": "MIT",
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@uluops/core": "
|
|
44
|
-
"@uluops/ops-sdk": "
|
|
45
|
-
"@uluops/registry-sdk": "
|
|
46
|
-
"@uluops/sdk-core": "
|
|
43
|
+
"@uluops/core": "^0.17.0",
|
|
44
|
+
"@uluops/ops-sdk": "^2.0.0",
|
|
45
|
+
"@uluops/registry-sdk": "^0.27.0",
|
|
46
|
+
"@uluops/sdk-core": "^0.10.2",
|
|
47
47
|
"commander": "^13.1.0",
|
|
48
48
|
"ora": "^8.1.1"
|
|
49
49
|
},
|