@braingrid/cli 0.2.23 → 0.2.24
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 +14 -0
- package/dist/cli.js +2 -2
- package/dist/cli.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.2.24] - 2025-12-18
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- **Status line task name display**
|
|
15
|
+
- Shows task title in status line: `TASK 19: Implement feature (Planned)`
|
|
16
|
+
- Task info (number, name, status) displayed in yellow
|
|
17
|
+
- Task counts `[x/y]` displayed in green (matches REQ color)
|
|
18
|
+
|
|
19
|
+
### Changed
|
|
20
|
+
|
|
21
|
+
- **OAuth callback server binding**
|
|
22
|
+
- Binds to `0.0.0.0` instead of `127.0.0.1` for broader accessibility
|
|
23
|
+
|
|
10
24
|
## [0.2.23] - 2025-12-18
|
|
11
25
|
|
|
12
26
|
### Added
|
package/dist/cli.js
CHANGED
|
@@ -422,7 +422,7 @@ import axios3, { AxiosError as AxiosError2 } from "axios";
|
|
|
422
422
|
|
|
423
423
|
// src/build-config.ts
|
|
424
424
|
var BUILD_ENV = true ? "production" : process.env.NODE_ENV === "test" ? "development" : "production";
|
|
425
|
-
var CLI_VERSION = true ? "0.2.
|
|
425
|
+
var CLI_VERSION = true ? "0.2.24" : "0.0.0-test";
|
|
426
426
|
var PRODUCTION_CONFIG = {
|
|
427
427
|
apiUrl: "https://app.braingrid.ai",
|
|
428
428
|
workosAuthUrl: "https://auth.braingrid.ai",
|
|
@@ -632,7 +632,7 @@ var OAuth2Handler = class {
|
|
|
632
632
|
`);
|
|
633
633
|
}
|
|
634
634
|
});
|
|
635
|
-
this.server.listen(port, "
|
|
635
|
+
this.server.listen(port, "0.0.0.0", () => {
|
|
636
636
|
logger2.debug(`Callback server listening on http://127.0.0.1:${port}`);
|
|
637
637
|
resolve();
|
|
638
638
|
});
|