@drakulavich/oura-cli 0.3.0 → 0.3.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 +18 -0
- package/dist/index.js +1 -1
- package/package.json +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,23 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [0.3.1] - 2026-05-13
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
- `docs/ARCHITECTURE.md` documents the four-layer structure
|
|
13
|
+
(`commands → api/db → lib`) and how to extend each layer. (#1, item 14)
|
|
14
|
+
- `.github/workflows/release.yml` — tag-triggered npm publish with provenance,
|
|
15
|
+
GitHub Release creation with CHANGELOG-derived notes. Requires `NPM_TOKEN`
|
|
16
|
+
repo secret. (#1, items 15 & 17)
|
|
17
|
+
- CI workflow gained a `tsc --noEmit` type-check step and an informational
|
|
18
|
+
`npm audit --audit-level=high` step. (#1, item 16)
|
|
19
|
+
- CONTRIBUTING.md "Releasing" subsection documents the tag-driven flow.
|
|
20
|
+
|
|
21
|
+
### Removed
|
|
22
|
+
- Internal back-compat aliases `getWeeklyReport` / `formatWeeklyReport` /
|
|
23
|
+
`WeeklyReportData` left over from v0.3.0. The package exports nothing
|
|
24
|
+
internal, so these were dead code.
|
|
25
|
+
|
|
9
26
|
## [0.3.0] - 2026-05-13
|
|
10
27
|
|
|
11
28
|
### Changed (CLI surface)
|
|
@@ -121,6 +138,7 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
|
121
138
|
- Local SQLite cache at `~/.oura-cli/oura.db`.
|
|
122
139
|
- Auth via `oura-cli login`, `OURA_TOKEN`, `OURA_TOKEN_PATH`, or `~/.oura-token`.
|
|
123
140
|
|
|
141
|
+
[0.3.1]: https://github.com/drakulavich/oura-cli/releases/tag/v0.3.1
|
|
124
142
|
[0.3.0]: https://github.com/drakulavich/oura-cli/releases/tag/v0.3.0
|
|
125
143
|
[0.2.1]: https://github.com/drakulavich/oura-cli/releases/tag/v0.2.1
|
|
126
144
|
[0.2.0]: https://github.com/drakulavich/oura-cli/releases/tag/v0.2.0
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@drakulavich/oura-cli",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"description": "Oura Ring CLI — query and analyze Oura Ring health data from the command line, designed for humans and AI agents.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"oura",
|
|
@@ -54,6 +54,7 @@
|
|
|
54
54
|
"commander": "^14.0.3"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
|
+
"@types/bun": "^1.3.14",
|
|
57
58
|
"@types/node": "^25.3.3",
|
|
58
59
|
"ajv": "^8.20.0",
|
|
59
60
|
"ajv-formats": "^3.0.1",
|