@kumbatio/energy-system 2.0.5 → 2.1.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.
package/CHANGELOG.md CHANGED
@@ -14,6 +14,28 @@ all. Prose returned by `describe()` is not covered; wording is a product decisio
14
14
 
15
15
  ## [Unreleased]
16
16
 
17
+ ## [2.1.1] - 2026-09-10
18
+
19
+ ### Changed
20
+
21
+ - Node.js 24.20.0 or later is now required (previously 24.19.0) ([f480fad](https://github.com/kumbatio/energy-system/commit/f480fad))
22
+
23
+ ## [2.1.0] - 2026-09-10
24
+
25
+ ### Changed
26
+
27
+ - Node 24.20.0 or newer is now required (`engines` floor raised from 24.19.0). ([f480fad](https://github.com/kumbatio/energy-system/commit/f480fad))
28
+
29
+ ### Fixed
30
+
31
+ - The published package again builds `dist` with type declarations, declaration maps, and source maps, restoring the `tsconfig.build.json` that `build:ts` and `prepack` depend on. ([3046fa4](https://github.com/kumbatio/energy-system/commit/3046fa4))
32
+
33
+ ## [2.0.6] - 2026-09-07
34
+
35
+ ### Dependencies
36
+
37
+ - **deps:** update dev tooling and pin pnpm 11.26.0 ([a306b1a](https://github.com/kumbatio/energy-system/commit/a306b1a))
38
+
17
39
  ## [2.0.5] - 2026-08-21
18
40
 
19
41
  ### Fixed
@@ -214,7 +236,10 @@ strategies, the DOM adapter, the React provider and hooks, persistence adapters
214
236
  with external observation, deterministic clocks, derived metrics, and legacy
215
237
  level compatibility mapping.
216
238
 
217
- [Unreleased]: https://github.com/kumbatio/energy-system/compare/v2.0.5...HEAD
239
+ [Unreleased]: https://github.com/kumbatio/energy-system/compare/v2.1.1...HEAD
240
+ [2.1.1]: https://github.com/kumbatio/energy-system/compare/v2.1.0...v2.1.1
241
+ [2.1.0]: https://github.com/kumbatio/energy-system/compare/v2.0.6...v2.1.0
242
+ [2.0.6]: https://github.com/kumbatio/energy-system/compare/v2.0.5...v2.0.6
218
243
  [2.0.5]: https://github.com/kumbatio/energy-system/compare/v2.0.4...v2.0.5
219
244
  [2.0.4]: https://github.com/kumbatio/energy-system/compare/v2.0.3...v2.0.4
220
245
  [2.0.3]: https://github.com/kumbatio/energy-system/compare/v2.0.2...v2.0.3
package/api-surface.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "2.0.5",
2
+ "version": "2.1.1",
3
3
  "entryPoints": [
4
4
  {
5
5
  "specifier": "@kumbatio/energy-system",
package/conformance.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "$schema": "./spec/conformance.schema.json",
3
- "version": "2.0.5",
3
+ "version": "2.1.1",
4
4
  "timezone": "UTC",
5
5
  "note": "Generated from the built library by scripts/extract-conformance.ts. See SPEC.md for the normative rules these vectors encode, including the runtime invariants that no vector can express.",
6
6
  "levels": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kumbatio/energy-system",
3
- "version": "2.0.5",
3
+ "version": "2.1.1",
4
4
  "private": false,
5
5
  "description": "Framework-agnostic TypeScript library for energy-aware application behavior.",
6
6
  "license": "MIT",
@@ -68,18 +68,18 @@
68
68
  "release": "release-kit"
69
69
  },
70
70
  "devDependencies": {
71
- "@entro314labs/release-kit": "^2.9.0",
72
- "@happy-dom/global-registrator": "^20.11.6",
73
- "@types/node": "^26.2.0",
74
- "@types/react": "^19.2.18",
75
- "@types/react-dom": "^19.2.4",
71
+ "@entro314labs/release-kit": "^2.9.4",
72
+ "@happy-dom/global-registrator": "^20.14.3",
73
+ "@types/node": "^26.5.1",
74
+ "@types/react": "^19.3.0",
75
+ "@types/react-dom": "^19.3.0",
76
76
  "ajv": "8.20.0",
77
- "oxfmt": "0.64.0",
78
- "oxlint": "1.79.0",
77
+ "oxfmt": "0.67.0",
78
+ "oxlint": "1.82.0",
79
79
  "oxlint-tsgolint": "^7.0.2001",
80
- "react": "^19.2.8",
81
- "react-dom": "^19.2.8",
82
- "tsx": "^4.23.12",
80
+ "react": "^19.3.0",
81
+ "react-dom": "^19.3.0",
82
+ "tsx": "^4.23.13",
83
83
  "typescript": "next"
84
84
  },
85
85
  "peerDependencies": {
@@ -95,7 +95,7 @@
95
95
  }
96
96
  },
97
97
  "engines": {
98
- "node": ">=24.19.0"
98
+ "node": ">=24.20.0"
99
99
  },
100
- "packageManager": "pnpm@11.22.0"
100
+ "packageManager": "pnpm@11.26.0"
101
101
  }