@furystack/core 16.0.0 → 16.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/CHANGELOG.md +22 -0
  2. package/package.json +5 -5
package/CHANGELOG.md CHANGED
@@ -1,5 +1,27 @@
1
1
  # Changelog
2
2
 
3
+ ## [16.0.1] - 2026-03-19
4
+
5
+ ### ✨ Features
6
+
7
+ - Core package bump to 16.0.0 with the breaking change above and other internal refinements.
8
+
9
+ ### 📚 Documentation
10
+
11
+ - Updated `IdentityContext` JSDoc to reflect the new explicit lifetime and parent‑chain inheritance.
12
+
13
+ ### ⬆️ Dependencies
14
+
15
+ - Upgraded `vite` from ^7.3.1 to ^8.0.0 for improved build performance and new features
16
+ - Upgraded `vitest` from ^4.0.18 to ^4.1.0
17
+ - Upgraded `@vitest/coverage-istanbul` from ^4.0.18 to ^4.1.0
18
+
19
+ ### 💥 Breaking Changes
20
+
21
+ ### IdentityContext lifetime changed from `scoped` to `explicit`
22
+
23
+ `IdentityContext` now uses `@Injectable({ lifetime: 'explicit' })` so child injectors inherit the instance from their parent. Code that previously relied on the default scoped instance may now need to call `injector.setExplicitInstance` before accessing it. See migration notes in the package changelog.
24
+
3
25
  ## [16.0.0] - 2026-03-10
4
26
 
5
27
  ### 💥 Breaking Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@furystack/core",
3
- "version": "16.0.0",
3
+ "version": "16.0.1",
4
4
  "description": "Core FuryStack package",
5
5
  "type": "module",
6
6
  "scripts": {
@@ -46,13 +46,13 @@
46
46
  },
47
47
  "homepage": "https://github.com/furystack/furystack",
48
48
  "devDependencies": {
49
- "@types/node": "^25.3.5",
49
+ "@types/node": "^25.5.0",
50
50
  "typescript": "^5.9.3",
51
- "vitest": "^4.0.18"
51
+ "vitest": "^4.1.0"
52
52
  },
53
53
  "dependencies": {
54
- "@furystack/inject": "^12.0.32",
55
- "@furystack/utils": "^8.2.1"
54
+ "@furystack/inject": "^12.0.33",
55
+ "@furystack/utils": "^8.2.2"
56
56
  },
57
57
  "engines": {
58
58
  "node": ">=22.0.0"