@twin.org/entity-storage-connector-mysql 0.0.1-next.30 → 0.0.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 +41 -0
  2. package/package.json +7 -7
package/docs/changelog.md CHANGED
@@ -1,5 +1,46 @@
1
1
  # @twin.org/entity-storage-connector-mysql - Changelog
2
2
 
3
+ ## 0.0.1 (2025-07-04)
4
+
5
+
6
+ ### Features
7
+
8
+ * add production release automation ([1eb4c8e](https://github.com/twinfoundation/entity-storage/commit/1eb4c8ee3eb099defdfc2d063ae44935276dcae8))
9
+ * release to production ([a309051](https://github.com/twinfoundation/entity-storage/commit/a3090519adebf7943232b4df12e4c6bd5afe7eed))
10
+ * update dependencies ([7ccc0c4](https://github.com/twinfoundation/entity-storage/commit/7ccc0c429125d073dc60b3de6cf101abc8cc6cba))
11
+ * use shared store mechanism ([#34](https://github.com/twinfoundation/entity-storage/issues/34)) ([68b6b71](https://github.com/twinfoundation/entity-storage/commit/68b6b71e7a96d7d016cd57bfff36775b56bf3f93))
12
+
13
+
14
+ ### Bug Fixes
15
+
16
+ * Adding a functionality to review the incoming format of a field when creating the table ([#28](https://github.com/twinfoundation/entity-storage/issues/28)) ([865be5a](https://github.com/twinfoundation/entity-storage/commit/865be5afa0f2e3c9d51cb50e3e5e9ace1e213efe))
17
+ * query params force coercion ([dd6aa87](https://github.com/twinfoundation/entity-storage/commit/dd6aa87efdfb60bab7d6756a86888863c45c51a7))
18
+
19
+
20
+ ### Dependencies
21
+
22
+ * The following workspace dependencies were updated
23
+ * dependencies
24
+ * @twin.org/entity-storage-models bumped from ^0.0.0 to ^0.0.1
25
+ * devDependencies
26
+ * @twin.org/entity-storage-connector-memory bumped from ^0.0.0 to ^0.0.1
27
+
28
+ ## [0.0.1-next.31](https://github.com/twinfoundation/entity-storage/compare/entity-storage-connector-mysql-v0.0.1-next.30...entity-storage-connector-mysql-v0.0.1-next.31) (2025-06-20)
29
+
30
+
31
+ ### Bug Fixes
32
+
33
+ * query params force coercion ([dd6aa87](https://github.com/twinfoundation/entity-storage/commit/dd6aa87efdfb60bab7d6756a86888863c45c51a7))
34
+
35
+
36
+ ### Dependencies
37
+
38
+ * The following workspace dependencies were updated
39
+ * dependencies
40
+ * @twin.org/entity-storage-models bumped from 0.0.1-next.30 to 0.0.1-next.31
41
+ * devDependencies
42
+ * @twin.org/entity-storage-connector-memory bumped from 0.0.1-next.30 to 0.0.1-next.31
43
+
3
44
  ## [0.0.1-next.30](https://github.com/twinfoundation/entity-storage/compare/entity-storage-connector-mysql-v0.0.1-next.29...entity-storage-connector-mysql-v0.0.1-next.30) (2025-06-12)
4
45
 
5
46
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twin.org/entity-storage-connector-mysql",
3
- "version": "0.0.1-next.30",
3
+ "version": "0.0.1",
4
4
  "description": "Entity Storage connector implementation using MySQL storage",
5
5
  "repository": {
6
6
  "type": "git",
@@ -14,12 +14,12 @@
14
14
  "node": ">=20.0.0"
15
15
  },
16
16
  "dependencies": {
17
- "@twin.org/core": "next",
18
- "@twin.org/data-json-ld": "next",
19
- "@twin.org/entity": "next",
20
- "@twin.org/entity-storage-models": "0.0.1-next.30",
21
- "@twin.org/logging-models": "next",
22
- "@twin.org/nameof": "next",
17
+ "@twin.org/core": "^0.0.1",
18
+ "@twin.org/data-json-ld": "^0.0.1",
19
+ "@twin.org/entity": "^0.0.1",
20
+ "@twin.org/entity-storage-models": "^0.0.1",
21
+ "@twin.org/logging-models": "^0.0.1",
22
+ "@twin.org/nameof": "^0.0.1",
23
23
  "mysql2": "3.14.1"
24
24
  },
25
25
  "main": "./dist/cjs/index.cjs",