@mastra/upstash 0.11.0-alpha.2 → 0.11.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.
@@ -6,18 +6,18 @@
6
6
  CLI Using tsconfig: tsconfig.json
7
7
  CLI tsup v8.5.0
8
8
  TSC Build start
9
- TSC ⚡️ Build success in 8774ms
9
+ TSC ⚡️ Build success in 9587ms
10
10
  DTS Build start
11
11
  CLI Target: es2022
12
+ CLI Cleaning output folder
13
+ ESM Build start
14
+ CJS Build start
12
15
  Analysis will use the bundled TypeScript version 5.8.3
13
16
  Writing package typings: /home/runner/work/mastra/mastra/stores/upstash/dist/_tsup-dts-rollup.d.ts
14
17
  Analysis will use the bundled TypeScript version 5.8.3
15
18
  Writing package typings: /home/runner/work/mastra/mastra/stores/upstash/dist/_tsup-dts-rollup.d.cts
16
- DTS ⚡️ Build success in 10074ms
17
- CLI Cleaning output folder
18
- ESM Build start
19
- CJS Build start
20
- CJS dist/index.cjs 45.20 KB
21
- CJS ⚡️ Build success in 1237ms
19
+ DTS ⚡️ Build success in 11455ms
22
20
  ESM dist/index.js 45.03 KB
23
- ESM ⚡️ Build success in 1238ms
21
+ ESM ⚡️ Build success in 12822ms
22
+ CJS dist/index.cjs 45.20 KB
23
+ CJS ⚡️ Build success in 12824ms
package/CHANGELOG.md CHANGED
@@ -1,5 +1,43 @@
1
1
  # @mastra/upstash
2
2
 
3
+ ## 0.11.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 704d1ca: Thread Timestamp Auto-Update Enhancement
8
+ Added automatic thread updatedAt timestamp updates when messages are saved across all storage providers
9
+ Enhanced user experience: Threads now accurately reflect their latest activity with automatic timestamp updates when new messages are added
10
+ Universal implementation: Consistent behavior across all 7 storage backends (ClickHouse, Cloudflare D1, DynamoDB, MongoDB, PostgreSQL, Upstash, LibSQL)
11
+ Performance optimized: Updates execute in parallel with message saving operations for minimal performance impact
12
+ Backwards compatible: No breaking changes - existing code continues to work unchanged
13
+ Improved conversation ordering: Chat interfaces can now properly sort threads by actual last activity
14
+ This enhancement resolves the issue where active conversations appeared stale due to outdated thread timestamps, providing better conversation management and user experience in chat applications.
15
+
16
+ ### Patch Changes
17
+
18
+ - 2fda031: Clarify upstash argument concepts.
19
+ - e8fdbdd: Fix dynamic require of crypto using upstash.
20
+ caused by a bad import was used in the monorepo
21
+
22
+ Fixes #4801
23
+
24
+ - Updated dependencies [63f6b7d]
25
+ - Updated dependencies [12a95fc]
26
+ - Updated dependencies [4b0f8a6]
27
+ - Updated dependencies [51264a5]
28
+ - Updated dependencies [8e6f677]
29
+ - Updated dependencies [d70c420]
30
+ - Updated dependencies [ee9af57]
31
+ - Updated dependencies [36f1c36]
32
+ - Updated dependencies [2a16996]
33
+ - Updated dependencies [10d352e]
34
+ - Updated dependencies [9589624]
35
+ - Updated dependencies [53d3c37]
36
+ - Updated dependencies [751c894]
37
+ - Updated dependencies [577ce3a]
38
+ - Updated dependencies [9260b3a]
39
+ - @mastra/core@0.10.6
40
+
3
41
  ## 0.11.0-alpha.2
4
42
 
5
43
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mastra/upstash",
3
- "version": "0.11.0-alpha.2",
3
+ "version": "0.11.0",
4
4
  "description": "Upstash provider for Mastra - includes both vector and db storage capabilities",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -31,9 +31,9 @@
31
31
  "tsup": "^8.5.0",
32
32
  "typescript": "^5.8.3",
33
33
  "vitest": "^3.2.3",
34
- "@internal/lint": "0.0.12",
35
- "@mastra/core": "0.10.6-alpha.4",
36
- "@internal/storage-test-utils": "0.0.8"
34
+ "@internal/lint": "0.0.13",
35
+ "@mastra/core": "0.10.6",
36
+ "@internal/storage-test-utils": "0.0.9"
37
37
  },
38
38
  "peerDependencies": {
39
39
  "@mastra/core": ">=0.10.4-0 <0.11.0"