create-mastra 0.0.0-fix-9244-clickhouse-metadata-20251105010900 → 0.0.0-fix-thread-list-20251105222841

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
@@ -1,6 +1,6 @@
1
1
  # create-mastra
2
2
 
3
- ## 0.0.0-fix-9244-clickhouse-metadata-20251105010900
3
+ ## 0.0.0-fix-thread-list-20251105222841
4
4
 
5
5
  ### Major Changes
6
6
 
package/dist/index.js CHANGED
@@ -1914,6 +1914,7 @@ export const mastra = new Mastra()
1914
1914
  import { Mastra } from '@mastra/core/mastra';
1915
1915
  import { PinoLogger } from '@mastra/loggers';
1916
1916
  import { LibSQLStore } from '@mastra/libsql';
1917
+ import { Observability } from '@mastra/observability';
1917
1918
  ${addWorkflow ? `import { weatherWorkflow } from './workflows/weather-workflow';` : ""}
1918
1919
  ${addAgent ? `import { weatherAgent } from './agents/weather-agent';` : ""}
1919
1920
  ${addScorers ? `import { toolCallAppropriatenessScorer, completenessScorer, translationScorer } from './scorers/weather-scorer';` : ""}
@@ -1928,10 +1929,10 @@ export const mastra = new Mastra({
1928
1929
  name: 'Mastra',
1929
1930
  level: 'info',
1930
1931
  }),
1931
- observability: {
1932
- // Enables DefaultExporter and CloudExporter for AI tracing
1932
+ observability: new Observability({
1933
+ // Enables DefaultExporter and CloudExporter for tracing
1933
1934
  default: { enabled: true },
1934
- },
1935
+ }),
1935
1936
  });
1936
1937
  `
1937
1938
  );