axiom 0.35.0 → 0.36.0

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/dist/bin.cjs CHANGED
@@ -553,7 +553,7 @@ var init_package = __esm({
553
553
  "package.json"() {
554
554
  package_default = {
555
555
  name: "axiom",
556
- version: "0.35.0",
556
+ version: "0.36.0",
557
557
  type: "module",
558
558
  author: "Axiom, Inc.",
559
559
  contributors: [
@@ -2442,11 +2442,11 @@ function setupEvalProvider(connection) {
2442
2442
  axiomProvider = new import_sdk_trace_node.NodeTracerProvider({
2443
2443
  resource: (0, import_resources.resourceFromAttributes)({
2444
2444
  ["service.name"]: "axiom",
2445
- ["service.version"]: "0.35.0"
2445
+ ["service.version"]: "0.36.0"
2446
2446
  }),
2447
2447
  spanProcessors: [processor]
2448
2448
  });
2449
- axiomTracer = axiomProvider.getTracer("axiom", "0.35.0");
2449
+ axiomTracer = axiomProvider.getTracer("axiom", "0.36.0");
2450
2450
  }
2451
2451
  async function initInstrumentation(config) {
2452
2452
  if (initialized) {
@@ -2458,7 +2458,7 @@ async function initInstrumentation(config) {
2458
2458
  }
2459
2459
  initializationPromise = (async () => {
2460
2460
  if (!config.enabled) {
2461
- axiomTracer = import_api10.trace.getTracer("axiom", "0.35.0");
2461
+ axiomTracer = import_api10.trace.getTracer("axiom", "0.36.0");
2462
2462
  initialized = true;
2463
2463
  return;
2464
2464
  }
@@ -3200,7 +3200,7 @@ var import_commander2 = require("commander");
3200
3200
  var loadVersionCommand = (program2) => {
3201
3201
  return program2.addCommand(
3202
3202
  new import_commander2.Command("version").description("cli version").action(() => {
3203
- console.log("0.35.0");
3203
+ console.log("0.36.0");
3204
3204
  })
3205
3205
  );
3206
3206
  };
@@ -3210,7 +3210,7 @@ var { loadEnvConfig } = import_env.default;
3210
3210
  loadEnvConfig(process.cwd());
3211
3211
  var { cleanedArgv, overrides } = extractOverrides(process.argv.slice(2));
3212
3212
  var program = new import_commander3.Command();
3213
- program.name("axiom").description("Axiom's CLI to manage your objects and run evals").version("0.35.0");
3213
+ program.name("axiom").description("Axiom's CLI to manage your objects and run evals").version("0.36.0");
3214
3214
  program.hook("preAction", async (_, actionCommand) => {
3215
3215
  const commandName = actionCommand.name();
3216
3216
  const parentCommand = actionCommand.parent;