@blaxel/core 0.2.75-preview.116 → 0.2.75

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.
@@ -202,8 +202,8 @@ export function initSentry() {
202
202
  captureException(error);
203
203
  }
204
204
  };
205
- process.on("SIGTERM", signalHandler);
206
- process.on("SIGINT", signalHandler);
205
+ process.once("SIGTERM", signalHandler);
206
+ process.once("SIGINT", signalHandler);
207
207
  process.on("uncaughtExceptionMonitor", uncaughtExceptionMonitorHandler);
208
208
  // Intercept console.error to capture SDK errors that are caught and logged
209
209
  const originalConsoleError = console.error;
@@ -3,8 +3,8 @@ import { authentication } from "../authentication/index.js";
3
3
  import { env } from "../common/env.js";
4
4
  import { fs, os, path } from "../common/node.js";
5
5
  // Build info - these placeholders are replaced at build time by build:replace-imports
6
- const BUILD_VERSION = "0.2.75-preview.116";
7
- const BUILD_COMMIT = "c11786dc016c39977cd4ecffa18d74c192186415";
6
+ const BUILD_VERSION = "0.2.75";
7
+ const BUILD_COMMIT = "a52f1d2904f5271eb8fb07cf252c1ab92fefcb5a";
8
8
  const BUILD_SENTRY_DSN = "https://fd5e60e1c9820e1eef5ccebb84a07127@o4508714045276160.ingest.us.sentry.io/4510465864564736";
9
9
  // Cache for config.yaml tracking value
10
10
  let configTrackingValue = null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blaxel/core",
3
- "version": "0.2.75-preview.116",
3
+ "version": "0.2.75",
4
4
  "description": "Blaxel Core SDK for TypeScript",
5
5
  "license": "MIT",
6
6
  "author": "Blaxel, INC (https://blaxel.ai)",