@braingrid/cli 0.2.54 → 0.2.55

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 CHANGED
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.2.55] - 2026-02-26
11
+
12
+ ### Fixed
13
+
14
+ - **SSH git remote URLs rejected by Zod validation** — `loadProjectConfig()` failed when `.braingrid/project.json` contained an SSH URL (`git@github.com:owner/repo.git`) because Zod's `.url()` validator only accepts WHATWG URLs; relaxed to `.string()` since the field is informational
15
+
10
16
  ## [0.2.54] - 2026-02-25
11
17
 
12
18
  ### Added
package/dist/cli.js CHANGED
@@ -228,7 +228,7 @@ async function axiosWithRetry(config2, options) {
228
228
 
229
229
  // src/build-config.ts
230
230
  var BUILD_ENV = true ? "production" : process.env.NODE_ENV === "test" ? "development" : "production";
231
- var CLI_VERSION = true ? "0.2.54" : "0.0.0-test";
231
+ var CLI_VERSION = true ? "0.2.55" : "0.0.0-test";
232
232
  var PRODUCTION_CONFIG = {
233
233
  apiUrl: "https://app.braingrid.ai",
234
234
  workosAuthUrl: "https://auth.braingrid.ai",
@@ -3555,7 +3555,7 @@ var LocalRepositorySchema = z.object({
3555
3555
  owner: z.string(),
3556
3556
  name: z.string(),
3557
3557
  full_name: z.string(),
3558
- url: z.string().url().optional()
3558
+ url: z.string().optional()
3559
3559
  });
3560
3560
  var LocalProjectConfigSchema = z.object({
3561
3561
  organization_id: z.string(),