@furystack/repository 10.0.32 → 10.0.34

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/CHANGELOG.md +12 -0
  2. package/package.json +16 -12
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Changelog
2
2
 
3
+ ## [10.0.34] - 2026-01-26
4
+
5
+ ### 🔧 Chores
6
+
7
+ - Standardized author format, improved keywords, removed obsolete `gitHead`, added `engines` (Node 22+) and `sideEffects: false`
8
+
9
+ ## [10.0.33] - 2026-01-26
10
+
11
+ ### ⬆️ Dependencies
12
+
13
+ - Updated `@furystack/inject` with fix for singleton injector reference being overwritten by child injectors
14
+
3
15
  ## [10.0.32] - 2026-01-22
4
16
 
5
17
  ### ⬆️ Dependencies
package/package.json CHANGED
@@ -1,19 +1,19 @@
1
1
  {
2
2
  "name": "@furystack/repository",
3
- "version": "10.0.32",
3
+ "version": "10.0.34",
4
4
  "description": "Repository implementation for FuryStack",
5
5
  "type": "module",
6
6
  "scripts": {
7
- "build:es6": "tsc --outDir ./esm"
7
+ "build": "tsc --outDir ./esm"
8
8
  },
9
9
  "exports": {
10
10
  ".": {
11
+ "types": "./esm/index.d.ts",
11
12
  "import": "./esm/index.js"
12
13
  }
13
14
  },
14
15
  "files": [
15
16
  "esm",
16
- "types",
17
17
  "src"
18
18
  ],
19
19
  "repository": {
@@ -22,28 +22,32 @@
22
22
  },
23
23
  "keywords": [
24
24
  "FuryStack",
25
- "Repository",
26
- "Content",
27
- "Business logic",
28
- "Content authorization"
25
+ "repository",
26
+ "data access",
27
+ "business logic",
28
+ "authorization",
29
+ "CRUD"
29
30
  ],
30
31
  "publishConfig": {
31
32
  "access": "public"
32
33
  },
33
- "author": "gallay.lajos@gmail.com",
34
+ "author": "Gallay Lajos <gallay.lajos@gmail.com>",
34
35
  "license": "GPL-2.0",
35
36
  "bugs": {
36
37
  "url": "https://github.com/furystack/furystack/issues"
37
38
  },
38
39
  "homepage": "https://github.com/furystack/furystack",
39
40
  "dependencies": {
40
- "@furystack/core": "^15.0.32",
41
- "@furystack/inject": "^12.0.26",
42
- "@furystack/utils": "^8.1.8"
41
+ "@furystack/core": "^15.0.34",
42
+ "@furystack/inject": "^12.0.28",
43
+ "@furystack/utils": "^8.1.9"
43
44
  },
44
45
  "devDependencies": {
45
46
  "typescript": "^5.9.3",
46
47
  "vitest": "^4.0.17"
47
48
  },
48
- "gitHead": "1045d854bfd8c475b7035471d130d401417a2321"
49
+ "engines": {
50
+ "node": ">=22.0.0"
51
+ },
52
+ "sideEffects": false
49
53
  }