@twin.org/entity-storage-connector-file 0.9.1-next.8 → 0.9.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.
Files changed (2) hide show
  1. package/docs/changelog.md +33 -0
  2. package/package.json +8 -8
package/docs/changelog.md CHANGED
@@ -1,5 +1,38 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.9.1](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-connector-file-v0.9.1...entity-storage-connector-file-v0.9.1) (2026-07-27)
4
+
5
+
6
+ ### Features
7
+
8
+ * add production release automation ([1eb4c8e](https://github.com/iotaledger/twin-entity-storage/commit/1eb4c8ee3eb099defdfc2d063ae44935276dcae8))
9
+ * release to production ([a309051](https://github.com/iotaledger/twin-entity-storage/commit/a3090519adebf7943232b4df12e4c6bd5afe7eed))
10
+ * release to production ([#150](https://github.com/iotaledger/twin-entity-storage/issues/150)) ([4275601](https://github.com/iotaledger/twin-entity-storage/commit/42756015e853a837240f8aafdb0a8ebce2d836c1))
11
+ * release to production ([#176](https://github.com/iotaledger/twin-entity-storage/issues/176)) ([475d899](https://github.com/iotaledger/twin-entity-storage/commit/475d89965931d62cd3ed42f134fb567fc7972705))
12
+ * update dependencies ([7ccc0c4](https://github.com/iotaledger/twin-entity-storage/commit/7ccc0c429125d073dc60b3de6cf101abc8cc6cba))
13
+ * use shared store mechanism ([#34](https://github.com/iotaledger/twin-entity-storage/issues/34)) ([68b6b71](https://github.com/iotaledger/twin-entity-storage/commit/68b6b71e7a96d7d016cd57bfff36775b56bf3f93))
14
+
15
+
16
+ ### Bug Fixes
17
+
18
+ * query params force coercion ([dd6aa87](https://github.com/iotaledger/twin-entity-storage/commit/dd6aa87efdfb60bab7d6756a86888863c45c51a7))
19
+
20
+ ## [0.9.1-next.9](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-connector-file-v0.9.1-next.8...entity-storage-connector-file-v0.9.1-next.9) (2026-07-24)
21
+
22
+
23
+ ### Features
24
+
25
+ * mysql non offset paging ([#172](https://github.com/iotaledger/twin-entity-storage/issues/172)) ([0633165](https://github.com/iotaledger/twin-entity-storage/commit/063316563fa8abe221251cd34fdd6c03538b9bb3))
26
+
27
+
28
+ ### Dependencies
29
+
30
+ * The following workspace dependencies were updated
31
+ * dependencies
32
+ * @twin.org/entity-storage-models bumped from 0.9.1-next.8 to 0.9.1-next.9
33
+ * devDependencies
34
+ * @twin.org/entity-storage-connector-memory bumped from 0.9.1-next.8 to 0.9.1-next.9
35
+
3
36
  ## [0.9.1-next.8](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-connector-file-v0.9.1-next.7...entity-storage-connector-file-v0.9.1-next.8) (2026-07-03)
4
37
 
5
38
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twin.org/entity-storage-connector-file",
3
- "version": "0.9.1-next.8",
3
+ "version": "0.9.1",
4
4
  "description": "File-based connector that stores entities on disk for straightforward deployments.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -11,15 +11,15 @@
11
11
  "license": "Apache-2.0",
12
12
  "type": "module",
13
13
  "engines": {
14
- "node": ">=20.0.0"
14
+ "node": ">=24.0.0"
15
15
  },
16
16
  "dependencies": {
17
- "@twin.org/context": "next",
18
- "@twin.org/core": "next",
19
- "@twin.org/entity": "next",
20
- "@twin.org/entity-storage-models": "0.9.1-next.8",
21
- "@twin.org/logging-models": "next",
22
- "@twin.org/nameof": "next"
17
+ "@twin.org/context": "^0.9.1",
18
+ "@twin.org/core": "^0.9.1",
19
+ "@twin.org/entity": "^0.9.1",
20
+ "@twin.org/entity-storage-models": "^0.9.1",
21
+ "@twin.org/logging-models": "^0.9.1",
22
+ "@twin.org/nameof": "^0.9.1"
23
23
  },
24
24
  "main": "./dist/es/index.js",
25
25
  "types": "./dist/types/index.d.ts",