@drakulavich/oura-cli 0.3.1 → 0.3.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 +10 -0
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,15 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [0.3.2] - 2026-05-13
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
- All tests rewritten in a behavior-first style (Kent C. Dodds /
|
|
13
|
+
Luca Rossi influence). No new behavioral coverage; the rewrite
|
|
14
|
+
improves readability, drops internal-state peeks, and reorganises
|
|
15
|
+
scenarios into nested describes. First release published via the
|
|
16
|
+
tag-driven `release.yml` workflow.
|
|
17
|
+
|
|
9
18
|
## [0.3.1] - 2026-05-13
|
|
10
19
|
|
|
11
20
|
### Added
|
|
@@ -138,6 +147,7 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
|
138
147
|
- Local SQLite cache at `~/.oura-cli/oura.db`.
|
|
139
148
|
- Auth via `oura-cli login`, `OURA_TOKEN`, `OURA_TOKEN_PATH`, or `~/.oura-token`.
|
|
140
149
|
|
|
150
|
+
[0.3.2]: https://github.com/drakulavich/oura-cli/releases/tag/v0.3.2
|
|
141
151
|
[0.3.1]: https://github.com/drakulavich/oura-cli/releases/tag/v0.3.1
|
|
142
152
|
[0.3.0]: https://github.com/drakulavich/oura-cli/releases/tag/v0.3.0
|
|
143
153
|
[0.2.1]: https://github.com/drakulavich/oura-cli/releases/tag/v0.2.1
|
package/dist/index.js
CHANGED
|
@@ -1005,7 +1005,7 @@ Expecting one of '${allowedValues.join("', '")}'`);
|
|
|
1005
1005
|
this._exitCallback = (err) => {
|
|
1006
1006
|
if (err.code !== "commander.executeSubCommandAsync") {
|
|
1007
1007
|
throw err;
|
|
1008
|
-
}
|
|
1008
|
+
}
|
|
1009
1009
|
};
|
|
1010
1010
|
}
|
|
1011
1011
|
return this;
|
|
@@ -3917,7 +3917,7 @@ function describeCommand(version) {
|
|
|
3917
3917
|
}
|
|
3918
3918
|
|
|
3919
3919
|
// src/index.ts
|
|
3920
|
-
var VERSION = "0.3.
|
|
3920
|
+
var VERSION = "0.3.2";
|
|
3921
3921
|
if (process.argv.includes("--no-color") || process.env.NO_COLOR) {
|
|
3922
3922
|
source_default.level = 0;
|
|
3923
3923
|
}
|
package/package.json
CHANGED