@objectstack/driver-memory 1.0.1 → 1.0.4
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 +34 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,39 @@
|
|
|
1
1
|
# @objectstack/driver-memory
|
|
2
2
|
|
|
3
|
+
## 1.0.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- @objectstack/spec@1.0.4
|
|
8
|
+
- @objectstack/core@1.0.4
|
|
9
|
+
|
|
10
|
+
## 1.0.3
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [fb2eabd]
|
|
15
|
+
- @objectstack/core@1.0.3
|
|
16
|
+
- @objectstack/spec@1.0.3
|
|
17
|
+
|
|
18
|
+
## 1.0.2
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- a0a6c85: Infrastructure and development tooling improvements
|
|
23
|
+
|
|
24
|
+
- Add changeset configuration for automated version management
|
|
25
|
+
- Add comprehensive GitHub Actions workflows (CI, CodeQL, linting, releases)
|
|
26
|
+
- Add development configuration files (.cursorrules, .github/prompts)
|
|
27
|
+
- Add documentation files (ARCHITECTURE.md, CONTRIBUTING.md, workflows docs)
|
|
28
|
+
- Update test script configuration in package.json
|
|
29
|
+
- Add @objectstack/cli to devDependencies for better development experience
|
|
30
|
+
|
|
31
|
+
- 109fc5b: Unified patch release to align all package versions.
|
|
32
|
+
- Updated dependencies [a0a6c85]
|
|
33
|
+
- Updated dependencies [109fc5b]
|
|
34
|
+
- @objectstack/spec@1.0.2
|
|
35
|
+
- @objectstack/core@1.0.2
|
|
36
|
+
|
|
3
37
|
## 1.0.1
|
|
4
38
|
|
|
5
39
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@objectstack/driver-memory",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"description": "In-Memory Driver for ObjectStack (Reference Implementation)",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@objectstack/core": "1.0.
|
|
10
|
-
"@objectstack/spec": "1.0.
|
|
9
|
+
"@objectstack/core": "1.0.4",
|
|
10
|
+
"@objectstack/spec": "1.0.4"
|
|
11
11
|
},
|
|
12
12
|
"devDependencies": {
|
|
13
13
|
"typescript": "^5.0.0",
|