@furystack/filesystem-store 7.0.37 → 7.0.39

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,17 @@
1
1
  # Changelog
2
2
 
3
+ ## [7.0.39] - 2026-02-26
4
+
5
+ ### 📝 Documentation
6
+
7
+ - Added tip about wrapping the physical store with a Repository DataSet for application-level data access
8
+
9
+ ## [7.0.38] - 2026-02-22
10
+
11
+ ### ⬆️ Dependencies
12
+
13
+ - Updated `@furystack/core` dependency
14
+
3
15
  ## [7.0.37] - 2026-02-19
4
16
 
5
17
  ### ⬆️ Dependencies
package/README.md CHANGED
@@ -33,3 +33,5 @@ useFileSystemStore({
33
33
  const myStore = myInjector.getInstance(StoreManager).getStoreFor(MyModel, 'id')
34
34
  await myStore.add({ id: 1, value: 'foo' })
35
35
  ```
36
+
37
+ > **Tip:** For application-level data access, wrap the physical store with a Repository DataSet using `getRepository(injector).createDataSet(Model, 'primaryKey')` and then use `getDataSetFor(injector, Model, 'primaryKey')` from `@furystack/repository`. This ensures authorization, hooks, and entity sync events are properly triggered.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@furystack/filesystem-store",
3
- "version": "7.0.37",
3
+ "version": "7.0.39",
4
4
  "description": "Simple File System store implementation for FuryStack",
5
5
  "type": "module",
6
6
  "scripts": {
@@ -38,7 +38,7 @@
38
38
  },
39
39
  "homepage": "https://github.com/furystack/furystack",
40
40
  "dependencies": {
41
- "@furystack/core": "^15.1.0",
41
+ "@furystack/core": "^15.2.1",
42
42
  "@furystack/inject": "^12.0.30",
43
43
  "@furystack/utils": "^8.1.10"
44
44
  },