@mastra/opensearch 0.11.7 → 0.11.8-alpha.1

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,5 +1,23 @@
1
1
  # @mastra/opensearch
2
2
 
3
+ ## 0.11.8-alpha.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#7394](https://github.com/mastra-ai/mastra/pull/7394) [`f0dfcac`](https://github.com/mastra-ai/mastra/commit/f0dfcac4458bdf789b975e2d63e984f5d1e7c4d3) Thanks [@NikAiyer](https://github.com/NikAiyer)! - updated core peerdep
8
+
9
+ - Updated dependencies [[`7149d8d`](https://github.com/mastra-ai/mastra/commit/7149d8d4bdc1edf0008e0ca9b7925eb0b8b60dbe)]:
10
+ - @mastra/core@0.15.3-alpha.7
11
+
12
+ ## 0.11.8-alpha.0
13
+
14
+ ### Patch Changes
15
+
16
+ - [#7343](https://github.com/mastra-ai/mastra/pull/7343) [`de3cbc6`](https://github.com/mastra-ai/mastra/commit/de3cbc61079211431bd30487982ea3653517278e) Thanks [@LekoArts](https://github.com/LekoArts)! - Update the `package.json` file to include additional fields like `repository`, `homepage` or `files`.
17
+
18
+ - Updated dependencies [[`85ef90b`](https://github.com/mastra-ai/mastra/commit/85ef90bb2cd4ae4df855c7ac175f7d392c55c1bf), [`de3cbc6`](https://github.com/mastra-ai/mastra/commit/de3cbc61079211431bd30487982ea3653517278e)]:
19
+ - @mastra/core@0.15.3-alpha.5
20
+
3
21
  ## 0.11.7
4
22
 
5
23
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mastra/opensearch",
3
- "version": "0.11.7",
3
+ "version": "0.11.8-alpha.1",
4
4
  "description": "OpenSearch vector store provider for Mastra",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -29,11 +29,24 @@
29
29
  "typescript": "^5.8.3",
30
30
  "vitest": "^3.2.4",
31
31
  "@internal/lint": "0.0.34",
32
- "@mastra/core": "0.15.2",
33
- "@internal/types-builder": "0.0.9"
32
+ "@internal/types-builder": "0.0.9",
33
+ "@mastra/core": "0.15.3-alpha.7"
34
34
  },
35
35
  "peerDependencies": {
36
- "@mastra/core": ">=0.10.7-0 <0.16.0-0"
36
+ "@mastra/core": ">=0.15.3-0 <0.16.0-0"
37
+ },
38
+ "files": [
39
+ "dist",
40
+ "CHANGELOG.md"
41
+ ],
42
+ "homepage": "https://mastra.ai",
43
+ "repository": {
44
+ "type": "git",
45
+ "url": "git+https://github.com/mastra-ai/mastra.git",
46
+ "directory": "stores/opensearch"
47
+ },
48
+ "bugs": {
49
+ "url": "https://github.com/mastra-ai/mastra/issues"
37
50
  },
38
51
  "scripts": {
39
52
  "build": "tsup --silent --config tsup.config.ts",
@@ -1,4 +0,0 @@
1
-
2
- > @mastra/opensearch@0.11.6 build /home/runner/work/mastra/mastra/stores/opensearch
3
- > tsup --silent --config tsup.config.ts
4
-
@@ -1,23 +0,0 @@
1
- version: '3.8'
2
-
3
- services:
4
- opensearch:
5
- image: opensearchproject/opensearch:latest
6
- ports:
7
- - '9200:9200'
8
- volumes:
9
- - opensearch_data:/usr/share/opensearch/data
10
- environment:
11
- - discovery.type=single-node
12
- - OPENSEARCH_JAVA_OPTS=-Xms512m -Xmx512m
13
- - bootstrap.memory_lock=true
14
- - DISABLE_SECURITY_PLUGIN=true
15
- ulimits:
16
- memlock:
17
- soft: -1
18
- hard: -1
19
- restart: always
20
-
21
- volumes:
22
- opensearch_data:
23
- driver: local
package/eslint.config.js DELETED
@@ -1,6 +0,0 @@
1
- import { createConfig } from '@internal/lint/eslint';
2
-
3
- const config = await createConfig();
4
-
5
- /** @type {import("eslint").Linter.Config[]} */
6
- export default [...config];
package/src/index.ts DELETED
@@ -1 +0,0 @@
1
- export * from './vector';