@mastra/sentry 1.0.11-alpha.0 → 1.0.11

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +26 -0
  2. package/package.json +6 -6
package/CHANGELOG.md CHANGED
@@ -1,5 +1,31 @@
1
1
  # @mastra/sentry
2
2
 
3
+ ## 1.0.11
4
+
5
+ ### Patch Changes
6
+
7
+ - Added Sentry mappings for scorer tracing spans. ([#14920](https://github.com/mastra-ai/mastra/pull/14920))
8
+
9
+ **What changed**
10
+ - Added Sentry span mappings for `SCORER_RUN` and `SCORER_STEP`.
11
+
12
+ **Why**
13
+ This keeps scorer tracing visible in Sentry when the new scorer spans are emitted by `@mastra/core`.
14
+
15
+ - Updated dependencies [[`9a43b47`](https://github.com/mastra-ai/mastra/commit/9a43b476465e86c9aca381c2831066b5c33c999a), [`ec5c319`](https://github.com/mastra-ai/mastra/commit/ec5c3197a50d034cb8e9cc494eebfddc684b5d81), [`6517789`](https://github.com/mastra-ai/mastra/commit/65177895b74b5471fe2245c7292f0176d9b3385d), [`13f4327`](https://github.com/mastra-ai/mastra/commit/13f4327f052faebe199cefbe906d33bf90238767), [`9ad6aa6`](https://github.com/mastra-ai/mastra/commit/9ad6aa6dfe858afc6955d1df5f3f78c40bb96b9c), [`2862127`](https://github.com/mastra-ai/mastra/commit/2862127d0a7cbd28523120ad64fea067a95838e6), [`3d16814`](https://github.com/mastra-ai/mastra/commit/3d16814c395931373543728994ff45ac98093074), [`ec5c319`](https://github.com/mastra-ai/mastra/commit/ec5c3197a50d034cb8e9cc494eebfddc684b5d81), [`7f498d0`](https://github.com/mastra-ai/mastra/commit/7f498d099eacef64fd43ee412e3bd6f87965a8a6), [`145090c`](https://github.com/mastra-ai/mastra/commit/145090ce8c8527b8742d13789284ad750e24338a), [`8cf8a67`](https://github.com/mastra-ai/mastra/commit/8cf8a67b061b737cb06d501fb8c1967a98bbf3cb), [`d7827e3`](https://github.com/mastra-ai/mastra/commit/d7827e393937c6cb0c7a744dde4d31538cb542b7)]:
16
+ - @mastra/core@1.21.0
17
+ - @mastra/observability@1.7.1
18
+ - @mastra/otel-exporter@1.0.11
19
+
20
+ ## 1.0.11-alpha.1
21
+
22
+ ### Patch Changes
23
+
24
+ - Updated dependencies [[`ec5c319`](https://github.com/mastra-ai/mastra/commit/ec5c3197a50d034cb8e9cc494eebfddc684b5d81), [`6517789`](https://github.com/mastra-ai/mastra/commit/65177895b74b5471fe2245c7292f0176d9b3385d), [`9ad6aa6`](https://github.com/mastra-ai/mastra/commit/9ad6aa6dfe858afc6955d1df5f3f78c40bb96b9c), [`2862127`](https://github.com/mastra-ai/mastra/commit/2862127d0a7cbd28523120ad64fea067a95838e6), [`3d16814`](https://github.com/mastra-ai/mastra/commit/3d16814c395931373543728994ff45ac98093074), [`ec5c319`](https://github.com/mastra-ai/mastra/commit/ec5c3197a50d034cb8e9cc494eebfddc684b5d81), [`7f498d0`](https://github.com/mastra-ai/mastra/commit/7f498d099eacef64fd43ee412e3bd6f87965a8a6), [`145090c`](https://github.com/mastra-ai/mastra/commit/145090ce8c8527b8742d13789284ad750e24338a), [`8cf8a67`](https://github.com/mastra-ai/mastra/commit/8cf8a67b061b737cb06d501fb8c1967a98bbf3cb), [`d7827e3`](https://github.com/mastra-ai/mastra/commit/d7827e393937c6cb0c7a744dde4d31538cb542b7)]:
25
+ - @mastra/core@1.21.0-alpha.2
26
+ - @mastra/observability@1.7.1-alpha.0
27
+ - @mastra/otel-exporter@1.0.11-alpha.0
28
+
3
29
  ## 1.0.11-alpha.0
4
30
 
5
31
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mastra/sentry",
3
- "version": "1.0.11-alpha.0",
3
+ "version": "1.0.11",
4
4
  "description": "Sentry AI observability exporter for Mastra",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -25,8 +25,8 @@
25
25
  "license": "Apache-2.0",
26
26
  "dependencies": {
27
27
  "@sentry/node": "^10.43.0",
28
- "@mastra/observability": "1.7.0",
29
- "@mastra/otel-exporter": "1.0.10"
28
+ "@mastra/otel-exporter": "1.0.11",
29
+ "@mastra/observability": "1.7.1"
30
30
  },
31
31
  "devDependencies": {
32
32
  "@types/node": "22.19.15",
@@ -36,9 +36,9 @@
36
36
  "tsup": "^8.5.1",
37
37
  "typescript": "^5.9.3",
38
38
  "vitest": "4.0.18",
39
- "@internal/lint": "0.0.77",
40
- "@internal/types-builder": "0.0.52",
41
- "@mastra/core": "1.21.0-alpha.1"
39
+ "@internal/types-builder": "0.0.53",
40
+ "@internal/lint": "0.0.78",
41
+ "@mastra/core": "1.21.0"
42
42
  },
43
43
  "peerDependencies": {
44
44
  "@mastra/core": ">=1.0.0-0 <2.0.0-0"