@braingrid/cli 0.2.11 → 0.2.12
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 +16 -0
- package/dist/cli.js +2 -2
- package/dist/cli.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,22 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.2.12] - 2025-12-05
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- **Production authentication domain updated**
|
|
13
|
+
- Updated production WorkOS auth URL from `sensitive-harvest-60.authkit.app` to `auth.braingrid.ai`
|
|
14
|
+
- Custom domain provides better branding and user trust during OAuth login flow
|
|
15
|
+
- Development auth domain remains unchanged
|
|
16
|
+
|
|
17
|
+
### Improved
|
|
18
|
+
|
|
19
|
+
- **Test maintainability for config tests**
|
|
20
|
+
- Extracted mock configuration objects into reusable constants (`MOCK_PROD_CONFIG`, `MOCK_DEV_CONFIG`)
|
|
21
|
+
- Reduced code duplication in `config.test.ts`
|
|
22
|
+
- Test assertions now reference constants instead of hardcoded strings
|
|
23
|
+
|
|
8
24
|
## [0.2.11] - 2025-11-25
|
|
9
25
|
|
|
10
26
|
### Fixed
|
package/dist/cli.js
CHANGED
|
@@ -422,10 +422,10 @@ 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.12" : "0.0.0-test";
|
|
426
426
|
var PRODUCTION_CONFIG = {
|
|
427
427
|
apiUrl: "https://app.braingrid.ai",
|
|
428
|
-
workosAuthUrl: "https://
|
|
428
|
+
workosAuthUrl: "https://auth.braingrid.ai",
|
|
429
429
|
workosClientId: "client_01K6H010C9K69HSDPM9CQM85S7"
|
|
430
430
|
};
|
|
431
431
|
var DEVELOPMENT_CONFIG = {
|