electron-state-sync 1.1.0 → 1.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 +36 -0
- package/README.md +1 -1
- package/bun.lock +1331 -62
- package/dist/zustand.js.map +1 -1
- package/package.json +18 -8
- package/release.config.js +17 -0
- package/CLAUDE.md +0 -254
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
## [1.1.1](https://github.com/abramdev/electron-state-sync/compare/v1.1.0...v1.1.1) (2026-01-18)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* add Preact to supported frameworks in README ([6da7539](https://github.com/abramdev/electron-state-sync/commit/6da7539c25503415f0e4ada2cc5fe97a5b684f73))
|
|
7
|
+
* capitalize comment sentences for eslint compliance ([cdd662e](https://github.com/abramdev/electron-state-sync/commit/cdd662e095ad679b49f012a59416fe91f7ec0401))
|
|
8
|
+
|
|
9
|
+
# [1.1.0](https://github.com/abramdev/electron-state-sync/compare/v1.0.0...v1.1.0) (2026-01-18)
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
* correct semantic-release npm configuration for OIDC ([3c02e0e](https://github.com/abramdev/electron-state-sync/commit/3c02e0e75e2c45565f00437470c935bdd1642af5))
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
* configure OIDC trusted publishing for npm ([50ac853](https://github.com/abramdev/electron-state-sync/commit/50ac853de7a7bd23c4f5538caed54de72ba22aa2))
|
|
20
|
+
|
|
21
|
+
# 1.0.0 (2026-01-16)
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
### Bug Fixes
|
|
25
|
+
|
|
26
|
+
* resolve test file errors ([c48a122](https://github.com/abramdev/electron-state-sync/commit/c48a12243733b0456005f50f4dfc00f7e074af67))
|
|
27
|
+
* use bun in CI workflow instead of npm ([21df0cd](https://github.com/abramdev/electron-state-sync/commit/21df0cd4f341880200ee06d81df64c80bae37a76))
|
|
28
|
+
* use local semantic-release via bun run ([49da0dd](https://github.com/abramdev/electron-state-sync/commit/49da0dd5b9049c0f5c02b6500395d514658471be))
|
|
29
|
+
* use Node.js 22 for semantic-release compatibility ([5230b74](https://github.com/abramdev/electron-state-sync/commit/5230b74cdd8359a32ead5782486f5d5f2b7ef337))
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
### Features
|
|
33
|
+
|
|
34
|
+
* add GitHub Actions CI workflow ([db09416](https://github.com/abramdev/electron-state-sync/commit/db09416054aef77d3914d9ac62228f371484edac))
|
|
35
|
+
* add Zustand, TanStack Query, Jotai, Redux Toolkit, and Preact integrations ([73a64a7](https://github.com/abramdev/electron-state-sync/commit/73a64a7ee9df516e92a90ba3ebca58ae42a8089a))
|
|
36
|
+
* unify framework APIs and prepare for npm publishing ([2273f4a](https://github.com/abramdev/electron-state-sync/commit/2273f4a1b4f6f157114949ed29dedc1f6b7fe7c8))
|
package/README.md
CHANGED
|
@@ -15,7 +15,7 @@ npm install electron-state-sync
|
|
|
15
15
|
## Features
|
|
16
16
|
|
|
17
17
|
- 📦 **Lightweight**: Main 6.3KB, renderer 1.5-2.2KB
|
|
18
|
-
- 🧩 **Multi-Framework**: React / Vue / Svelte / Solid
|
|
18
|
+
- 🧩 **Multi-Framework**: React / Vue / Svelte / Solid / Preact
|
|
19
19
|
- 🔄 **State Management**: Zustand / TanStack Query / Jotai / Redux Toolkit
|
|
20
20
|
- 🔒 **Write Control**: Support for read-only and writable modes
|
|
21
21
|
- ✅ **Validation**: Main process validates renderer writes with standard error codes
|