@context-action/core 1.0.0-rc.0 → 1.1.0
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 +855 -0
- package/dist/index.cjs +59 -32
- package/dist/index.d.cts +3 -1
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +59 -32
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,855 @@
|
|
|
1
|
+
# Change Log
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
|
+
|
|
6
|
+
## [1.1.0] (2026-08-11)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- Add `destroyAsync({ deferCleanup: true })` for callers that need to close
|
|
11
|
+
admission immediately while deferring final user cleanup to the next
|
|
12
|
+
microtask.
|
|
13
|
+
|
|
14
|
+
### Reliability fixes
|
|
15
|
+
|
|
16
|
+
- Preserve timeout semantics during retry backoff and keep observer conditions
|
|
17
|
+
ordered by their priority and immutable terminal outcome.
|
|
18
|
+
- Prevent duplicate rejected registrations from unregistering the accepted
|
|
19
|
+
handler and ensure slow observer cleanup cannot keep a timed-out dispatch
|
|
20
|
+
pending.
|
|
21
|
+
|
|
22
|
+
## [1.0.0] (2026-08-09)
|
|
23
|
+
|
|
24
|
+
### Stable Contracts
|
|
25
|
+
|
|
26
|
+
- Establish the Guard → Result → Observer phase model, typed action result
|
|
27
|
+
maps, deterministic result handling, race diagnostics, retry barriers, and
|
|
28
|
+
atomic `once` semantics as the v1 runtime contract.
|
|
29
|
+
|
|
30
|
+
### Breaking Changes from 0.x
|
|
31
|
+
|
|
32
|
+
- Move React-oriented helper exports (`createActionHandler`, `ReactDevUtils`,
|
|
33
|
+
`ReactActionError`, and `isReactActionError`) to `@context-action/react`.
|
|
34
|
+
Core remains a framework-neutral action runtime.
|
|
35
|
+
- Sequential handlers now await completion by default. To retain the prior
|
|
36
|
+
start-and-continue behavior, set `scheduling: 'start-and-continue'` and
|
|
37
|
+
explicitly choose an `errorPolicy` (normally `'collect'`).
|
|
38
|
+
- `registerEffect()` now requires `effectKind`. Migrate admission logic to
|
|
39
|
+
`registerGuard(action, handler)` and post-result effects to
|
|
40
|
+
`registerObserver(action, handler)`. Temporary compatibility calls must use
|
|
41
|
+
`registerEffect(action, handler, { effectKind: 'guard' | 'observer' })`.
|
|
42
|
+
|
|
43
|
+
### Bug Fixes
|
|
44
|
+
|
|
45
|
+
- Make guard failures fail closed, keep awaited observers within dispatch
|
|
46
|
+
timeout/shutdown ownership, and preserve terminal observer outcomes.
|
|
47
|
+
|
|
48
|
+
### Deprecated but Supported in 1.x
|
|
49
|
+
|
|
50
|
+
- `registerEffect()` remains available only with an explicit `effectKind`.
|
|
51
|
+
- `HandlerConfig.blocking` remains a compatibility shorthand; new code should
|
|
52
|
+
use `scheduling` and `errorPolicy` explicitly.
|
|
53
|
+
- Generic `register()` remains supported for legacy pipelines; prefer the
|
|
54
|
+
phase-specific registration APIs for new code.
|
|
55
|
+
|
|
56
|
+
## [0.9.0] (2026-07-21)
|
|
57
|
+
|
|
58
|
+
### Breaking Changes
|
|
59
|
+
|
|
60
|
+
- Moved action schemas, JSON Schema types, MCP/provider adapters, tool-call
|
|
61
|
+
contracts, and approval queues to `@context-action/tool-protocol`.
|
|
62
|
+
- Removed the Core exports for those protocol and schema APIs. Install and
|
|
63
|
+
import them from the new package when needed.
|
|
64
|
+
- `ActionRegister.actions` and `actionsWithResult` no longer accept the
|
|
65
|
+
options-first void-action form; pass `undefined` as the payload explicitly.
|
|
66
|
+
|
|
67
|
+
## [0.8.8](https://github.com/mineclover/context-action/compare/v0.8.7...v0.8.8) (2026-07-13)
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
### Bug Fixes
|
|
71
|
+
|
|
72
|
+
* **core:** evaluate timing guards before dispatch queue ([4302139](https://github.com/mineclover/context-action/commit/4302139cfa8137d07db1c1c490832041be679018))
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
## [0.8.7](https://github.com/mineclover/context-action/compare/v0.8.6...v0.8.7) (2026-07-12)
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
### Features
|
|
82
|
+
|
|
83
|
+
* **core:** harden action execution lifecycle ([2348ec6](https://github.com/mineclover/context-action/commit/2348ec65247ab1b234607a03cdf2feef79736553))
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
## [0.8.6](https://github.com/mineclover/context-action/compare/v0.8.5...v0.8.6) (2026-03-27)
|
|
90
|
+
|
|
91
|
+
**Note:** Version bump only for package @context-action/core
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
## [0.8.5](https://github.com/mineclover/context-action/compare/v0.8.4...v0.8.5) (2026-03-27)
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
### Features
|
|
101
|
+
|
|
102
|
+
* Add path-based subscription and TimeTravelStore with major docs cleanup ([9b7d8d2](https://github.com/mineclover/context-action/commit/9b7d8d2f84a65751e477202960e649ad6aa45b01))
|
|
103
|
+
* Add Zod schema integration and createToolContext for LLM tool registry ([1baf4b8](https://github.com/mineclover/context-action/commit/1baf4b80fe236ee9b5ae6b3d11ca66d745185c7a))
|
|
104
|
+
* **vanilla-js:** Add comprehensive vanilla JavaScript support ([db7e0c4](https://github.com/mineclover/context-action/commit/db7e0c435675d97542956ae595f8f5db700f36ab))
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
## [0.7.8](https://github.com/mineclover/context-action/compare/v0.7.7...v0.7.8) (2025-11-30)
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
### Bug Fixes
|
|
114
|
+
|
|
115
|
+
* Remove unnecessary [@ts-expect-error](https://github.com/ts-expect-error) comments from test files ([27c98e0](https://github.com/mineclover/context-action/commit/27c98e0c2acb876c25ecd89e70c1a4afd0196a99))
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
### Features
|
|
119
|
+
|
|
120
|
+
* Add actions-based dispatching with improved type safety ([6bc36e6](https://github.com/mineclover/context-action/commit/6bc36e6d751218d09621fc7ae9bed780154cc70e))
|
|
121
|
+
* Add actionsWithResult for result collection in actions-based dispatching ([a9131a4](https://github.com/mineclover/context-action/commit/a9131a439b0143b17813ec668166fee5264efbfa))
|
|
122
|
+
* Add comprehensive TypeScript type inference system and documentation ([debde90](https://github.com/mineclover/context-action/commit/debde9069f6e4aa1d87ba2652f510c7fcf552707))
|
|
123
|
+
* Add warning messages for unregistered action handlers ([93fb16c](https://github.com/mineclover/context-action/commit/93fb16ccddb1d4458305b626fb3c9ff037e45956))
|
|
124
|
+
* clean release with unified version 0.7.8/0.7.9 ([f0b54a6](https://github.com/mineclover/context-action/commit/f0b54a6ecfa378a42e924492ac2cefaaf90dbb88))
|
|
125
|
+
* **react:** v0.8.1 - React Compiler integration with backwards compatibility ([f3adbcf](https://github.com/mineclover/context-action/commit/f3adbcf2060a89261f01703b3e69ed31852d36a3))
|
|
126
|
+
|
|
127
|
+
|
|
128
|
+
### Performance Improvements
|
|
129
|
+
|
|
130
|
+
* Optimize core and react package implementations ([88fab30](https://github.com/mineclover/context-action/commit/88fab30709c03537a97b3ba8e1cfe058e80a1107))
|
|
131
|
+
|
|
132
|
+
|
|
133
|
+
|
|
134
|
+
|
|
135
|
+
|
|
136
|
+
## [0.7.7](https://github.com/mineclover/context-action/compare/v0.6.0...v0.7.7) (2025-09-17)
|
|
137
|
+
|
|
138
|
+
|
|
139
|
+
### Bug Fixes
|
|
140
|
+
|
|
141
|
+
* **ActionRegister:** enhance error handling and execution context management ([d32a1f6](https://github.com/mineclover/context-action/commit/d32a1f60858141db6dc7ff9bc72fa3056638c97f))
|
|
142
|
+
* **core:** resolve test failures and improve ActionRegister reliability ([82925b9](https://github.com/mineclover/context-action/commit/82925b92f15f2f737d12885512521bc9cc41dff4))
|
|
143
|
+
* lint 경고 수정 - 사용하지 않는 cacheKey 변수 제거 ([a507727](https://github.com/mineclover/context-action/commit/a507727ec177f49d58106779953283723013929a))
|
|
144
|
+
* Resolve ActionRegister execution modes and improve error handling ([71d06bd](https://github.com/mineclover/context-action/commit/71d06bded76cd3ee197002e97d7bb5cc3ccb96ee))
|
|
145
|
+
* resolve core and react package linting warnings ([fc0df76](https://github.com/mineclover/context-action/commit/fc0df76116c6f3de6acc9fc0845743e9e24f2aa2))
|
|
146
|
+
* resolve memory leaks in test files by replacing clearAll() with destroy() ([097a010](https://github.com/mineclover/context-action/commit/097a010ae0572c64643e744c4a529a44f7cbbcb5))
|
|
147
|
+
* resolve Node.js protocol browser compatibility issues ([854a2fa](https://github.com/mineclover/context-action/commit/854a2fa0c8bf87addb0e555f8555def584a04a33))
|
|
148
|
+
* Resolve test memory issues and finalize async handler support ([b4a1666](https://github.com/mineclover/context-action/commit/b4a1666990e2e653e8791b960addff20b8fc3abe))
|
|
149
|
+
* TypeScript 타입 안전성 개선 - targetHandler undefined 체크 추가 ([5aa2691](https://github.com/mineclover/context-action/commit/5aa26916647c0ba659b3e432191e1b590b2ef3f4))
|
|
150
|
+
|
|
151
|
+
|
|
152
|
+
### Features
|
|
153
|
+
|
|
154
|
+
* Add backward jump support with infinite loop protection ([a0d133f](https://github.com/mineclover/context-action/commit/a0d133f28cf75c69ed70f92fdfbb48654e5b091b))
|
|
155
|
+
* Add comprehensive concurrency test coverage for concurrency.md ([79344e5](https://github.com/mineclover/context-action/commit/79344e57b15ee9e0a882cb65395bf419ecce2b0f))
|
|
156
|
+
* Complete ActionRegister comprehensive test suite improvements ([fda402f](https://github.com/mineclover/context-action/commit/fda402fcc1f611ceed011363df2d1c26c20d8478))
|
|
157
|
+
* Context-Action 라이브러리 핵심 성능 및 안정성 개선 ([f13fe47](https://github.com/mineclover/context-action/commit/f13fe4756c7f1e39872aca7a45fec09f37da3c2c))
|
|
158
|
+
* **core:** enhance ActionRegister performance with optimized caching and pooling ([96fb72a](https://github.com/mineclover/context-action/commit/96fb72a61230cfd38963dc28b853d9ec6323175a))
|
|
159
|
+
* implement advanced unregister function management system ([1086a8a](https://github.com/mineclover/context-action/commit/1086a8abb3a8887df58fe80c1bb02854f0eed7b7))
|
|
160
|
+
* major test improvements and ActionRegister enhancements ([670e426](https://github.com/mineclover/context-action/commit/670e4267d6509b1cd9c6dd048960245251af844f))
|
|
161
|
+
* modernize TypeScript configuration and fix dynamic imports ([725eef5](https://github.com/mineclover/context-action/commit/725eef5e02388e67103d94814935965e066f3e85))
|
|
162
|
+
|
|
163
|
+
|
|
164
|
+
### Performance Improvements
|
|
165
|
+
|
|
166
|
+
* 메모리 효율성을 위한 필터 캐시 시스템 비활성화 ([1c16221](https://github.com/mineclover/context-action/commit/1c1622100be5f52b37a6f8dfb45bb88766528f80))
|
|
167
|
+
|
|
168
|
+
|
|
169
|
+
|
|
170
|
+
|
|
171
|
+
|
|
172
|
+
## [0.7.6](https://github.com/mineclover/context-action/compare/v0.6.0...v0.7.6) (2025-09-17)
|
|
173
|
+
|
|
174
|
+
|
|
175
|
+
### Bug Fixes
|
|
176
|
+
|
|
177
|
+
* **ActionRegister:** enhance error handling and execution context management ([d32a1f6](https://github.com/mineclover/context-action/commit/d32a1f60858141db6dc7ff9bc72fa3056638c97f))
|
|
178
|
+
* **core:** resolve test failures and improve ActionRegister reliability ([82925b9](https://github.com/mineclover/context-action/commit/82925b92f15f2f737d12885512521bc9cc41dff4))
|
|
179
|
+
* lint 경고 수정 - 사용하지 않는 cacheKey 변수 제거 ([a507727](https://github.com/mineclover/context-action/commit/a507727ec177f49d58106779953283723013929a))
|
|
180
|
+
* Resolve ActionRegister execution modes and improve error handling ([71d06bd](https://github.com/mineclover/context-action/commit/71d06bded76cd3ee197002e97d7bb5cc3ccb96ee))
|
|
181
|
+
* resolve core and react package linting warnings ([fc0df76](https://github.com/mineclover/context-action/commit/fc0df76116c6f3de6acc9fc0845743e9e24f2aa2))
|
|
182
|
+
* resolve memory leaks in test files by replacing clearAll() with destroy() ([097a010](https://github.com/mineclover/context-action/commit/097a010ae0572c64643e744c4a529a44f7cbbcb5))
|
|
183
|
+
* resolve Node.js protocol browser compatibility issues ([854a2fa](https://github.com/mineclover/context-action/commit/854a2fa0c8bf87addb0e555f8555def584a04a33))
|
|
184
|
+
* Resolve test memory issues and finalize async handler support ([b4a1666](https://github.com/mineclover/context-action/commit/b4a1666990e2e653e8791b960addff20b8fc3abe))
|
|
185
|
+
* TypeScript 타입 안전성 개선 - targetHandler undefined 체크 추가 ([5aa2691](https://github.com/mineclover/context-action/commit/5aa26916647c0ba659b3e432191e1b590b2ef3f4))
|
|
186
|
+
|
|
187
|
+
|
|
188
|
+
### Features
|
|
189
|
+
|
|
190
|
+
* Add backward jump support with infinite loop protection ([a0d133f](https://github.com/mineclover/context-action/commit/a0d133f28cf75c69ed70f92fdfbb48654e5b091b))
|
|
191
|
+
* Add comprehensive concurrency test coverage for concurrency.md ([79344e5](https://github.com/mineclover/context-action/commit/79344e57b15ee9e0a882cb65395bf419ecce2b0f))
|
|
192
|
+
* Complete ActionRegister comprehensive test suite improvements ([fda402f](https://github.com/mineclover/context-action/commit/fda402fcc1f611ceed011363df2d1c26c20d8478))
|
|
193
|
+
* Context-Action 라이브러리 핵심 성능 및 안정성 개선 ([f13fe47](https://github.com/mineclover/context-action/commit/f13fe4756c7f1e39872aca7a45fec09f37da3c2c))
|
|
194
|
+
* **core:** enhance ActionRegister performance with optimized caching and pooling ([96fb72a](https://github.com/mineclover/context-action/commit/96fb72a61230cfd38963dc28b853d9ec6323175a))
|
|
195
|
+
* implement advanced unregister function management system ([1086a8a](https://github.com/mineclover/context-action/commit/1086a8abb3a8887df58fe80c1bb02854f0eed7b7))
|
|
196
|
+
* major test improvements and ActionRegister enhancements ([670e426](https://github.com/mineclover/context-action/commit/670e4267d6509b1cd9c6dd048960245251af844f))
|
|
197
|
+
* modernize TypeScript configuration and fix dynamic imports ([725eef5](https://github.com/mineclover/context-action/commit/725eef5e02388e67103d94814935965e066f3e85))
|
|
198
|
+
|
|
199
|
+
|
|
200
|
+
### Performance Improvements
|
|
201
|
+
|
|
202
|
+
* 메모리 효율성을 위한 필터 캐시 시스템 비활성화 ([1c16221](https://github.com/mineclover/context-action/commit/1c1622100be5f52b37a6f8dfb45bb88766528f80))
|
|
203
|
+
|
|
204
|
+
|
|
205
|
+
|
|
206
|
+
|
|
207
|
+
|
|
208
|
+
## [0.7.5](https://github.com/mineclover/context-action/compare/v0.6.0...v0.7.5) (2025-09-17)
|
|
209
|
+
|
|
210
|
+
|
|
211
|
+
### Bug Fixes
|
|
212
|
+
|
|
213
|
+
* **ActionRegister:** enhance error handling and execution context management ([d32a1f6](https://github.com/mineclover/context-action/commit/d32a1f60858141db6dc7ff9bc72fa3056638c97f))
|
|
214
|
+
* **core:** resolve test failures and improve ActionRegister reliability ([82925b9](https://github.com/mineclover/context-action/commit/82925b92f15f2f737d12885512521bc9cc41dff4))
|
|
215
|
+
* lint 경고 수정 - 사용하지 않는 cacheKey 변수 제거 ([a507727](https://github.com/mineclover/context-action/commit/a507727ec177f49d58106779953283723013929a))
|
|
216
|
+
* Resolve ActionRegister execution modes and improve error handling ([71d06bd](https://github.com/mineclover/context-action/commit/71d06bded76cd3ee197002e97d7bb5cc3ccb96ee))
|
|
217
|
+
* resolve core and react package linting warnings ([fc0df76](https://github.com/mineclover/context-action/commit/fc0df76116c6f3de6acc9fc0845743e9e24f2aa2))
|
|
218
|
+
* resolve memory leaks in test files by replacing clearAll() with destroy() ([097a010](https://github.com/mineclover/context-action/commit/097a010ae0572c64643e744c4a529a44f7cbbcb5))
|
|
219
|
+
* Resolve test memory issues and finalize async handler support ([b4a1666](https://github.com/mineclover/context-action/commit/b4a1666990e2e653e8791b960addff20b8fc3abe))
|
|
220
|
+
* TypeScript 타입 안전성 개선 - targetHandler undefined 체크 추가 ([5aa2691](https://github.com/mineclover/context-action/commit/5aa26916647c0ba659b3e432191e1b590b2ef3f4))
|
|
221
|
+
|
|
222
|
+
|
|
223
|
+
### Features
|
|
224
|
+
|
|
225
|
+
* Add backward jump support with infinite loop protection ([a0d133f](https://github.com/mineclover/context-action/commit/a0d133f28cf75c69ed70f92fdfbb48654e5b091b))
|
|
226
|
+
* Add comprehensive concurrency test coverage for concurrency.md ([79344e5](https://github.com/mineclover/context-action/commit/79344e57b15ee9e0a882cb65395bf419ecce2b0f))
|
|
227
|
+
* Complete ActionRegister comprehensive test suite improvements ([fda402f](https://github.com/mineclover/context-action/commit/fda402fcc1f611ceed011363df2d1c26c20d8478))
|
|
228
|
+
* Context-Action 라이브러리 핵심 성능 및 안정성 개선 ([f13fe47](https://github.com/mineclover/context-action/commit/f13fe4756c7f1e39872aca7a45fec09f37da3c2c))
|
|
229
|
+
* **core:** enhance ActionRegister performance with optimized caching and pooling ([96fb72a](https://github.com/mineclover/context-action/commit/96fb72a61230cfd38963dc28b853d9ec6323175a))
|
|
230
|
+
* implement advanced unregister function management system ([1086a8a](https://github.com/mineclover/context-action/commit/1086a8abb3a8887df58fe80c1bb02854f0eed7b7))
|
|
231
|
+
* major test improvements and ActionRegister enhancements ([670e426](https://github.com/mineclover/context-action/commit/670e4267d6509b1cd9c6dd048960245251af844f))
|
|
232
|
+
* modernize TypeScript configuration and fix dynamic imports ([725eef5](https://github.com/mineclover/context-action/commit/725eef5e02388e67103d94814935965e066f3e85))
|
|
233
|
+
|
|
234
|
+
|
|
235
|
+
### Performance Improvements
|
|
236
|
+
|
|
237
|
+
* 메모리 효율성을 위한 필터 캐시 시스템 비활성화 ([1c16221](https://github.com/mineclover/context-action/commit/1c1622100be5f52b37a6f8dfb45bb88766528f80))
|
|
238
|
+
|
|
239
|
+
|
|
240
|
+
|
|
241
|
+
|
|
242
|
+
|
|
243
|
+
## [0.7.4](https://github.com/mineclover/context-action/compare/v0.6.0...v0.7.4) (2025-09-17)
|
|
244
|
+
|
|
245
|
+
|
|
246
|
+
### Bug Fixes
|
|
247
|
+
|
|
248
|
+
* **ActionRegister:** enhance error handling and execution context management ([d32a1f6](https://github.com/mineclover/context-action/commit/d32a1f60858141db6dc7ff9bc72fa3056638c97f))
|
|
249
|
+
* **core:** resolve test failures and improve ActionRegister reliability ([82925b9](https://github.com/mineclover/context-action/commit/82925b92f15f2f737d12885512521bc9cc41dff4))
|
|
250
|
+
* lint 경고 수정 - 사용하지 않는 cacheKey 변수 제거 ([a507727](https://github.com/mineclover/context-action/commit/a507727ec177f49d58106779953283723013929a))
|
|
251
|
+
* Resolve ActionRegister execution modes and improve error handling ([71d06bd](https://github.com/mineclover/context-action/commit/71d06bded76cd3ee197002e97d7bb5cc3ccb96ee))
|
|
252
|
+
* resolve core and react package linting warnings ([fc0df76](https://github.com/mineclover/context-action/commit/fc0df76116c6f3de6acc9fc0845743e9e24f2aa2))
|
|
253
|
+
* resolve memory leaks in test files by replacing clearAll() with destroy() ([097a010](https://github.com/mineclover/context-action/commit/097a010ae0572c64643e744c4a529a44f7cbbcb5))
|
|
254
|
+
* Resolve test memory issues and finalize async handler support ([b4a1666](https://github.com/mineclover/context-action/commit/b4a1666990e2e653e8791b960addff20b8fc3abe))
|
|
255
|
+
* TypeScript 타입 안전성 개선 - targetHandler undefined 체크 추가 ([5aa2691](https://github.com/mineclover/context-action/commit/5aa26916647c0ba659b3e432191e1b590b2ef3f4))
|
|
256
|
+
|
|
257
|
+
|
|
258
|
+
### Features
|
|
259
|
+
|
|
260
|
+
* Add backward jump support with infinite loop protection ([a0d133f](https://github.com/mineclover/context-action/commit/a0d133f28cf75c69ed70f92fdfbb48654e5b091b))
|
|
261
|
+
* Add comprehensive concurrency test coverage for concurrency.md ([79344e5](https://github.com/mineclover/context-action/commit/79344e57b15ee9e0a882cb65395bf419ecce2b0f))
|
|
262
|
+
* Complete ActionRegister comprehensive test suite improvements ([fda402f](https://github.com/mineclover/context-action/commit/fda402fcc1f611ceed011363df2d1c26c20d8478))
|
|
263
|
+
* Context-Action 라이브러리 핵심 성능 및 안정성 개선 ([f13fe47](https://github.com/mineclover/context-action/commit/f13fe4756c7f1e39872aca7a45fec09f37da3c2c))
|
|
264
|
+
* **core:** enhance ActionRegister performance with optimized caching and pooling ([96fb72a](https://github.com/mineclover/context-action/commit/96fb72a61230cfd38963dc28b853d9ec6323175a))
|
|
265
|
+
* implement advanced unregister function management system ([1086a8a](https://github.com/mineclover/context-action/commit/1086a8abb3a8887df58fe80c1bb02854f0eed7b7))
|
|
266
|
+
* major test improvements and ActionRegister enhancements ([670e426](https://github.com/mineclover/context-action/commit/670e4267d6509b1cd9c6dd048960245251af844f))
|
|
267
|
+
* modernize TypeScript configuration and fix dynamic imports ([725eef5](https://github.com/mineclover/context-action/commit/725eef5e02388e67103d94814935965e066f3e85))
|
|
268
|
+
|
|
269
|
+
|
|
270
|
+
### Performance Improvements
|
|
271
|
+
|
|
272
|
+
* 메모리 효율성을 위한 필터 캐시 시스템 비활성화 ([1c16221](https://github.com/mineclover/context-action/commit/1c1622100be5f52b37a6f8dfb45bb88766528f80))
|
|
273
|
+
|
|
274
|
+
|
|
275
|
+
|
|
276
|
+
|
|
277
|
+
|
|
278
|
+
## [0.7.3](https://github.com/mineclover/context-action/compare/v0.6.0...v0.7.3) (2025-09-16)
|
|
279
|
+
|
|
280
|
+
|
|
281
|
+
### Bug Fixes
|
|
282
|
+
|
|
283
|
+
* **ActionRegister:** enhance error handling and execution context management ([d32a1f6](https://github.com/mineclover/context-action/commit/d32a1f60858141db6dc7ff9bc72fa3056638c97f))
|
|
284
|
+
* **core:** resolve test failures and improve ActionRegister reliability ([82925b9](https://github.com/mineclover/context-action/commit/82925b92f15f2f737d12885512521bc9cc41dff4))
|
|
285
|
+
* resolve core and react package linting warnings ([fc0df76](https://github.com/mineclover/context-action/commit/fc0df76116c6f3de6acc9fc0845743e9e24f2aa2))
|
|
286
|
+
* Resolve test memory issues and finalize async handler support ([b4a1666](https://github.com/mineclover/context-action/commit/b4a1666990e2e653e8791b960addff20b8fc3abe))
|
|
287
|
+
|
|
288
|
+
|
|
289
|
+
### Features
|
|
290
|
+
|
|
291
|
+
* Add comprehensive concurrency test coverage for concurrency.md ([79344e5](https://github.com/mineclover/context-action/commit/79344e57b15ee9e0a882cb65395bf419ecce2b0f))
|
|
292
|
+
* Complete ActionRegister comprehensive test suite improvements ([fda402f](https://github.com/mineclover/context-action/commit/fda402fcc1f611ceed011363df2d1c26c20d8478))
|
|
293
|
+
* Context-Action 라이브러리 핵심 성능 및 안정성 개선 ([f13fe47](https://github.com/mineclover/context-action/commit/f13fe4756c7f1e39872aca7a45fec09f37da3c2c))
|
|
294
|
+
* **core:** enhance ActionRegister performance with optimized caching and pooling ([96fb72a](https://github.com/mineclover/context-action/commit/96fb72a61230cfd38963dc28b853d9ec6323175a))
|
|
295
|
+
* implement advanced unregister function management system ([1086a8a](https://github.com/mineclover/context-action/commit/1086a8abb3a8887df58fe80c1bb02854f0eed7b7))
|
|
296
|
+
* major test improvements and ActionRegister enhancements ([670e426](https://github.com/mineclover/context-action/commit/670e4267d6509b1cd9c6dd048960245251af844f))
|
|
297
|
+
* modernize TypeScript configuration and fix dynamic imports ([725eef5](https://github.com/mineclover/context-action/commit/725eef5e02388e67103d94814935965e066f3e85))
|
|
298
|
+
|
|
299
|
+
|
|
300
|
+
### Performance Improvements
|
|
301
|
+
|
|
302
|
+
* 메모리 효율성을 위한 필터 캐시 시스템 비활성화 ([1c16221](https://github.com/mineclover/context-action/commit/1c1622100be5f52b37a6f8dfb45bb88766528f80))
|
|
303
|
+
|
|
304
|
+
|
|
305
|
+
|
|
306
|
+
|
|
307
|
+
|
|
308
|
+
## [0.7.2](https://github.com/mineclover/context-action/compare/v0.6.0...v0.7.2) (2025-08-31)
|
|
309
|
+
|
|
310
|
+
|
|
311
|
+
### Bug Fixes
|
|
312
|
+
|
|
313
|
+
* **ActionRegister:** enhance error handling and execution context management ([d32a1f6](https://github.com/mineclover/context-action/commit/d32a1f60858141db6dc7ff9bc72fa3056638c97f))
|
|
314
|
+
* **core:** resolve test failures and improve ActionRegister reliability ([82925b9](https://github.com/mineclover/context-action/commit/82925b92f15f2f737d12885512521bc9cc41dff4))
|
|
315
|
+
* resolve core and react package linting warnings ([fc0df76](https://github.com/mineclover/context-action/commit/fc0df76116c6f3de6acc9fc0845743e9e24f2aa2))
|
|
316
|
+
|
|
317
|
+
|
|
318
|
+
### Features
|
|
319
|
+
|
|
320
|
+
* Complete ActionRegister comprehensive test suite improvements ([fda402f](https://github.com/mineclover/context-action/commit/fda402fcc1f611ceed011363df2d1c26c20d8478))
|
|
321
|
+
* Context-Action 라이브러리 핵심 성능 및 안정성 개선 ([f13fe47](https://github.com/mineclover/context-action/commit/f13fe4756c7f1e39872aca7a45fec09f37da3c2c))
|
|
322
|
+
* **core:** enhance ActionRegister performance with optimized caching and pooling ([96fb72a](https://github.com/mineclover/context-action/commit/96fb72a61230cfd38963dc28b853d9ec6323175a))
|
|
323
|
+
* implement advanced unregister function management system ([1086a8a](https://github.com/mineclover/context-action/commit/1086a8abb3a8887df58fe80c1bb02854f0eed7b7))
|
|
324
|
+
* major test improvements and ActionRegister enhancements ([670e426](https://github.com/mineclover/context-action/commit/670e4267d6509b1cd9c6dd048960245251af844f))
|
|
325
|
+
* modernize TypeScript configuration and fix dynamic imports ([725eef5](https://github.com/mineclover/context-action/commit/725eef5e02388e67103d94814935965e066f3e85))
|
|
326
|
+
|
|
327
|
+
|
|
328
|
+
|
|
329
|
+
|
|
330
|
+
|
|
331
|
+
## [0.7.1](https://github.com/mineclover/context-action/compare/v0.6.0...v0.7.1) (2025-08-31)
|
|
332
|
+
|
|
333
|
+
|
|
334
|
+
### Bug Fixes
|
|
335
|
+
|
|
336
|
+
* **ActionRegister:** enhance error handling and execution context management ([d32a1f6](https://github.com/mineclover/context-action/commit/d32a1f60858141db6dc7ff9bc72fa3056638c97f))
|
|
337
|
+
* **core:** resolve test failures and improve ActionRegister reliability ([82925b9](https://github.com/mineclover/context-action/commit/82925b92f15f2f737d12885512521bc9cc41dff4))
|
|
338
|
+
|
|
339
|
+
|
|
340
|
+
### Features
|
|
341
|
+
|
|
342
|
+
* Complete ActionRegister comprehensive test suite improvements ([fda402f](https://github.com/mineclover/context-action/commit/fda402fcc1f611ceed011363df2d1c26c20d8478))
|
|
343
|
+
* Context-Action 라이브러리 핵심 성능 및 안정성 개선 ([f13fe47](https://github.com/mineclover/context-action/commit/f13fe4756c7f1e39872aca7a45fec09f37da3c2c))
|
|
344
|
+
* **core:** enhance ActionRegister performance with optimized caching and pooling ([96fb72a](https://github.com/mineclover/context-action/commit/96fb72a61230cfd38963dc28b853d9ec6323175a))
|
|
345
|
+
* implement advanced unregister function management system ([1086a8a](https://github.com/mineclover/context-action/commit/1086a8abb3a8887df58fe80c1bb02854f0eed7b7))
|
|
346
|
+
* major test improvements and ActionRegister enhancements ([670e426](https://github.com/mineclover/context-action/commit/670e4267d6509b1cd9c6dd048960245251af844f))
|
|
347
|
+
* modernize TypeScript configuration and fix dynamic imports ([725eef5](https://github.com/mineclover/context-action/commit/725eef5e02388e67103d94814935965e066f3e85))
|
|
348
|
+
|
|
349
|
+
|
|
350
|
+
|
|
351
|
+
|
|
352
|
+
|
|
353
|
+
# [0.7.0](https://github.com/mineclover/context-action/compare/v0.6.0...v0.7.0) (2025-08-31)
|
|
354
|
+
|
|
355
|
+
|
|
356
|
+
### Bug Fixes
|
|
357
|
+
|
|
358
|
+
* **ActionRegister:** enhance error handling and execution context management ([d32a1f6](https://github.com/mineclover/context-action/commit/d32a1f60858141db6dc7ff9bc72fa3056638c97f))
|
|
359
|
+
* **core:** resolve test failures and improve ActionRegister reliability ([82925b9](https://github.com/mineclover/context-action/commit/82925b92f15f2f737d12885512521bc9cc41dff4))
|
|
360
|
+
|
|
361
|
+
|
|
362
|
+
### Features
|
|
363
|
+
|
|
364
|
+
* Complete ActionRegister comprehensive test suite improvements ([fda402f](https://github.com/mineclover/context-action/commit/fda402fcc1f611ceed011363df2d1c26c20d8478))
|
|
365
|
+
* Context-Action 라이브러리 핵심 성능 및 안정성 개선 ([f13fe47](https://github.com/mineclover/context-action/commit/f13fe4756c7f1e39872aca7a45fec09f37da3c2c))
|
|
366
|
+
* **core:** enhance ActionRegister performance with optimized caching and pooling ([96fb72a](https://github.com/mineclover/context-action/commit/96fb72a61230cfd38963dc28b853d9ec6323175a))
|
|
367
|
+
* implement advanced unregister function management system ([1086a8a](https://github.com/mineclover/context-action/commit/1086a8abb3a8887df58fe80c1bb02854f0eed7b7))
|
|
368
|
+
* major test improvements and ActionRegister enhancements ([670e426](https://github.com/mineclover/context-action/commit/670e4267d6509b1cd9c6dd048960245251af844f))
|
|
369
|
+
* modernize TypeScript configuration and fix dynamic imports ([725eef5](https://github.com/mineclover/context-action/commit/725eef5e02388e67103d94814935965e066f3e85))
|
|
370
|
+
|
|
371
|
+
|
|
372
|
+
|
|
373
|
+
|
|
374
|
+
|
|
375
|
+
# [0.6.0](https://github.com/mineclover/context-action/compare/v0.5.1...v0.6.0) (2025-08-29)
|
|
376
|
+
|
|
377
|
+
|
|
378
|
+
### Bug Fixes
|
|
379
|
+
|
|
380
|
+
* resolve ActionGuard handler visualization and fix SearchPageRefactored TypeScript errors ([80ea9fb](https://github.com/mineclover/context-action/commit/80ea9fbfa22f4c39ea8182dddb155eb8b337c9b9))
|
|
381
|
+
|
|
382
|
+
|
|
383
|
+
|
|
384
|
+
|
|
385
|
+
|
|
386
|
+
## [0.5.1](https://github.com/mineclover/context-action/compare/v0.5.0...v0.5.1) (2025-08-28)
|
|
387
|
+
|
|
388
|
+
**Note:** Version bump only for package @context-action/core
|
|
389
|
+
|
|
390
|
+
|
|
391
|
+
|
|
392
|
+
|
|
393
|
+
|
|
394
|
+
# [0.5.0](https://github.com/mineclover/context-action/compare/v0.4.0...v0.5.0) (2025-08-28)
|
|
395
|
+
|
|
396
|
+
|
|
397
|
+
### Bug Fixes
|
|
398
|
+
|
|
399
|
+
* correct error handling test expectations for non-blocking handlers ([85a2538](https://github.com/mineclover/context-action/commit/85a2538eb8ccb9ec33c19ca6330d3d47592fa6f4))
|
|
400
|
+
|
|
401
|
+
|
|
402
|
+
### Features
|
|
403
|
+
|
|
404
|
+
* **core:** implement v0.4.1 performance and architecture improvements ([e86e22b](https://github.com/mineclover/context-action/commit/e86e22b1649388d64762a22bb59d7b03c77bfd6b))
|
|
405
|
+
* **react:** comprehensive testing utilities, DevTools, and error handling systems ([9560c75](https://github.com/mineclover/context-action/commit/9560c752ab46962a16fdd3ff2284e383494c4e5a))
|
|
406
|
+
* **react:** enhance ActionContext with optimized dispatch and handler patterns ([49c94dc](https://github.com/mineclover/context-action/commit/49c94dc28237d572670b3b4855acceeee295f47c))
|
|
407
|
+
* replace complex immutability system with Immer for enhanced performance ([059e0c9](https://github.com/mineclover/context-action/commit/059e0c942a2bd8900ce94778179452eed041e22f))
|
|
408
|
+
* **tests:** add comprehensive test management system ([70ec8bb](https://github.com/mineclover/context-action/commit/70ec8bbef6e6bbe301d3d0e1aede745f08a39da9))
|
|
409
|
+
|
|
410
|
+
|
|
411
|
+
|
|
412
|
+
|
|
413
|
+
|
|
414
|
+
# [0.4.1](https://github.com/mineclover/context-action/compare/v0.4.0...v0.4.1) (2025-08-27)
|
|
415
|
+
|
|
416
|
+
## 🚀 Performance & Architecture Improvements
|
|
417
|
+
|
|
418
|
+
### ⚡ Major Performance Optimizations
|
|
419
|
+
- **REMOVED**: Complete removal of `executionStats` system - eliminates runtime overhead
|
|
420
|
+
- **OPTIMIZED**: Debug code reduced by 95% - from 40+ lines to 2 lines of essential logging
|
|
421
|
+
- **IMPROVED**: UUID-based handler ID generation using `crypto.randomUUID()` for guaranteed uniqueness
|
|
422
|
+
- **ELIMINATED**: Unnecessary `actionCounters` Map and complex ID generation logic
|
|
423
|
+
|
|
424
|
+
### 🧠 Memory Management Enhancements
|
|
425
|
+
- **NEW**: Handler limit system with configurable `maxHandlersPerAction` (default: 1000)
|
|
426
|
+
- **NEW**: Memory safety controls to prevent DoS attacks and excessive memory usage
|
|
427
|
+
- **NEW**: Developer-friendly warnings when handler limits are exceeded
|
|
428
|
+
- **REMOVED**: Unnecessary `registrationQueue` as synchronous registration is sufficient
|
|
429
|
+
|
|
430
|
+
### 🔧 Concurrency & Reliability Improvements
|
|
431
|
+
- **FIXED**: OperationQueue race conditions using Promise-based concurrency control
|
|
432
|
+
- **REPLACED**: Boolean `isProcessing` flag with `processingPromise: Promise<void> | null`
|
|
433
|
+
- **ADDED**: Separate `_doProcess()` method for safer queue processing
|
|
434
|
+
- **ENHANCED**: Unified error handling system with `HandlerError` interface
|
|
435
|
+
|
|
436
|
+
### 🎯 Code Quality & Maintainability
|
|
437
|
+
- **REDUCED**: Overall code complexity by ~30% through systematic cleanup
|
|
438
|
+
- **UNIFIED**: Consistent error handling across all execution modes (sequential, parallel, race)
|
|
439
|
+
- **IMPROVED**: Type safety with better generic compatibility
|
|
440
|
+
- **STANDARDIZED**: Error processing with `handleExecutionError()` utility function
|
|
441
|
+
|
|
442
|
+
### 🗑️ Breaking Changes & Removals
|
|
443
|
+
- **REMOVED**: `executionStats` related APIs - `clearExecutionStats()`, `clearActionExecutionStats()`
|
|
444
|
+
- **DEPRECATED**: `executionStats` property in `getActionStats()` returns `undefined`
|
|
445
|
+
- **NOTE**: All other APIs remain fully backward compatible
|
|
446
|
+
|
|
447
|
+
### 📊 Performance Metrics
|
|
448
|
+
- **Memory Usage**: Reduced by ~30% (150KB → 105KB)
|
|
449
|
+
- **Handler Registration**: 15-20% faster
|
|
450
|
+
- **Action Dispatch**: 10-15% faster
|
|
451
|
+
- **Debug Mode**: 50%+ performance improvement
|
|
452
|
+
- **Code Complexity**: 25% reduction in cyclomatic complexity
|
|
453
|
+
- **Runtime Performance**: 10-50% improvement across different operations
|
|
454
|
+
- **Code Reduction**: 30% streamlined architecture with eliminated unnecessary features
|
|
455
|
+
|
|
456
|
+
### 🧪 Quality Assurance
|
|
457
|
+
- **Tests**: All 166 tests passing (139 core + 27 new) with 6 environment-specific skips
|
|
458
|
+
- **New Test Suites**: Added memory-management.test.ts (13 tests) and execution-stats-removal.test.ts (14 tests)
|
|
459
|
+
- **Coverage**: Maintained 95%+ test coverage
|
|
460
|
+
- **Build**: Successfully builds with no type errors
|
|
461
|
+
- **Compatibility**: Full backward compatibility maintained
|
|
462
|
+
|
|
463
|
+
---
|
|
464
|
+
|
|
465
|
+
# [0.4.0](https://github.com/mineclover/context-action/compare/v0.3.1...v0.4.0) (2025-08-27)
|
|
466
|
+
|
|
467
|
+
## 🚀 Major Features & Improvements
|
|
468
|
+
|
|
469
|
+
### 🎯 Advanced Filtering System
|
|
470
|
+
- **NEW**: Handler filtering by priority range with `{ min, max }` support
|
|
471
|
+
- **NEW**: Filter by specific handler IDs with `handlerIds` and `excludeHandlerIds`
|
|
472
|
+
- **NEW**: Custom filtering logic with `custom` predicate functions
|
|
473
|
+
- **NEW**: Combined filtering strategies for complex workflows
|
|
474
|
+
- **Performance**: Optimized filtering with conditional array copying
|
|
475
|
+
|
|
476
|
+
### ⚡ Performance Optimizations
|
|
477
|
+
- **NEW**: Cached environment checks for `isDebugMode()` - 60% performance boost
|
|
478
|
+
- **NEW**: Optimized handler ID generation using per-action counters vs Math.random()
|
|
479
|
+
- **NEW**: Smart array filtering - only copies arrays when filtering is needed
|
|
480
|
+
- **NEW**: Unified logging method reduces overhead and improves consistency
|
|
481
|
+
|
|
482
|
+
### 🧹 Memory Management & Cleanup
|
|
483
|
+
- **NEW**: ActionGuard auto-cleanup system with 60-second idle timeout
|
|
484
|
+
- **NEW**: Comprehensive `destroy()` method for ActionRegister cleanup
|
|
485
|
+
- **NEW**: Automatic timer and promise cleanup to prevent memory leaks
|
|
486
|
+
- **NEW**: Handler cleanup tracking with usage statistics
|
|
487
|
+
|
|
488
|
+
### 🎛️ Enhanced Handler Configuration
|
|
489
|
+
- **NEW**: `replaceExisting` option for handler replacement (great for React HMR)
|
|
490
|
+
- **NEW**: Immediate execution bypass with `immediate` option
|
|
491
|
+
- **NEW**: Queue priority control with `queuePriority` option
|
|
492
|
+
- **NEW**: Execution timeout support with `timeout` option
|
|
493
|
+
- **NEW**: Retry on error with configurable `maxAttempts` and `delay`
|
|
494
|
+
|
|
495
|
+
### 📊 Result Collection & Strategies
|
|
496
|
+
- **NEW**: Advanced result collection strategies: `first`, `last`, `all`, `merge`, `custom`
|
|
497
|
+
- **NEW**: Custom result merger functions for complex result aggregation
|
|
498
|
+
- **NEW**: `maxResults` limit for performance optimization
|
|
499
|
+
- **NEW**: `includeErrors` option for comprehensive error tracking
|
|
500
|
+
- **NEW**: Execution statistics with timing, success rates, and handler counts
|
|
501
|
+
|
|
502
|
+
### ⚛️ React Integration Helpers
|
|
503
|
+
- **NEW**: `useActionHandler` hook with automatic cleanup and HMR support
|
|
504
|
+
- **NEW**: `createReactHandlerConfig` for React-optimized handler setup
|
|
505
|
+
- **NEW**: `createReactDispatcher` with React-specific error handling
|
|
506
|
+
- **NEW**: `ReactDevUtils` for development debugging and statistics
|
|
507
|
+
- **NEW**: `ReactActionError` for Error Boundary integration
|
|
508
|
+
|
|
509
|
+
### 🏗️ Configuration Enhancements
|
|
510
|
+
- **NEW**: `useConcurrencyQueue` for thread-safe operations
|
|
511
|
+
- **NEW**: Global `errorHandler` for unhandled action errors
|
|
512
|
+
- **NEW**: Enhanced registry information with detailed statistics
|
|
513
|
+
- **IMPROVED**: Statistics are always available (no configuration needed)
|
|
514
|
+
|
|
515
|
+
## 🔄 Backward Compatibility
|
|
516
|
+
|
|
517
|
+
**100% backward compatibility maintained** - all existing code works without changes.
|
|
518
|
+
|
|
519
|
+
- All new features are **opt-in** with sensible defaults
|
|
520
|
+
- Existing APIs unchanged and fully supported
|
|
521
|
+
- No breaking changes to core functionality
|
|
522
|
+
- Migration path provided for new features
|
|
523
|
+
|
|
524
|
+
## 📈 Performance Improvements
|
|
525
|
+
|
|
526
|
+
- **Environment Checks**: 60% faster debug mode detection through caching
|
|
527
|
+
- **Handler IDs**: Optimized generation with per-action counters
|
|
528
|
+
- **Memory Usage**: Automatic cleanup prevents memory leaks
|
|
529
|
+
- **Filtering**: Smart array operations reduce unnecessary copying
|
|
530
|
+
- **Token Efficiency**: Unified logging reduces overhead
|
|
531
|
+
|
|
532
|
+
## 🛡️ Enhanced Error Handling
|
|
533
|
+
|
|
534
|
+
- **Consistent Behavior**: All synchronous errors fail pipeline (fail-fast)
|
|
535
|
+
- **Error Collection**: Comprehensive error tracking with context
|
|
536
|
+
- **Retry Logic**: Built-in retry mechanisms for transient failures
|
|
537
|
+
- **Error Recovery**: Pipeline controller methods for graceful error handling
|
|
538
|
+
|
|
539
|
+
## 🧪 Testing & Quality
|
|
540
|
+
|
|
541
|
+
- **Test Coverage**: 119 total tests including 11 new filtering tests
|
|
542
|
+
- **Type Safety**: Enhanced TypeScript definitions with strict checking
|
|
543
|
+
- **Performance Tests**: Comprehensive benchmarking for optimizations
|
|
544
|
+
- **Integration Tests**: Full React integration testing
|
|
545
|
+
|
|
546
|
+
## 📚 Documentation Updates
|
|
547
|
+
|
|
548
|
+
- **Complete README**: Comprehensive documentation with all new features
|
|
549
|
+
- **API Reference**: Updated with all new types and options
|
|
550
|
+
- **Migration Guide**: Step-by-step guide from v0.3.x to v0.4.0
|
|
551
|
+
- **Examples**: Extensive code examples for all new features
|
|
552
|
+
- **Performance Tips**: Best practices for optimal performance
|
|
553
|
+
|
|
554
|
+
### Bug Fixes
|
|
555
|
+
|
|
556
|
+
* **core**: Fix priority filtering implementation in filterHandlers method
|
|
557
|
+
* **core**: Resolve TypeScript import errors in react-helpers.ts
|
|
558
|
+
* **tests**: Update Jest configuration for proper filtering test execution
|
|
559
|
+
* **types**: Improve type safety with Required<HandlerConfig> assertions
|
|
560
|
+
|
|
561
|
+
### Features
|
|
562
|
+
|
|
563
|
+
* **core**: Add comprehensive filtering system with priority, ID, and custom filters
|
|
564
|
+
* **core**: Implement performance optimizations with caching and smart operations
|
|
565
|
+
* **core**: Add ActionGuard auto-cleanup with configurable idle timeout
|
|
566
|
+
* **core**: Introduce replaceExisting option for handler replacement
|
|
567
|
+
* **core**: Add immediate execution and queue priority control
|
|
568
|
+
* **core**: Implement result collection strategies and execution statistics
|
|
569
|
+
* **react**: Add React integration helpers with HMR and Error Boundary support
|
|
570
|
+
* **config**: Extend ActionRegisterConfig with error handling and concurrency options
|
|
571
|
+
* **docs**: Complete documentation overhaul with new features and migration guide
|
|
572
|
+
|
|
573
|
+
### Performance Improvements
|
|
574
|
+
|
|
575
|
+
* **core**: Cache environment variable checks for 60% performance boost
|
|
576
|
+
* **core**: Optimize handler ID generation with per-action counters
|
|
577
|
+
* **core**: Implement smart array filtering with conditional copying
|
|
578
|
+
* **core**: Add unified logging method to reduce overhead
|
|
579
|
+
|
|
580
|
+
### Developer Experience
|
|
581
|
+
|
|
582
|
+
* **react**: useActionHandler hook with automatic cleanup and HMR support
|
|
583
|
+
* **react**: ReactDevUtils for development debugging and performance monitoring
|
|
584
|
+
* **docs**: Comprehensive examples for all filtering and configuration options
|
|
585
|
+
* **testing**: Extensive test suite with filtering and integration tests
|
|
586
|
+
|
|
587
|
+
|
|
588
|
+
|
|
589
|
+
|
|
590
|
+
|
|
591
|
+
## [0.3.1](https://github.com/mineclover/context-action/compare/v0.2.1...v0.3.1) (2025-08-21)
|
|
592
|
+
|
|
593
|
+
|
|
594
|
+
### Bug Fixes
|
|
595
|
+
|
|
596
|
+
* **ci:** standardize tsdown version across all packages ([714ab1d](https://github.com/mineclover/context-action/commit/714ab1d7f8005096f7abe2f09d8067f500168a3a))
|
|
597
|
+
* **core,react:** improve code quality and security across packages ([e7baf2f](https://github.com/mineclover/context-action/commit/e7baf2fb8bf49bc5ae0b3f92efbf567fb5d2da09))
|
|
598
|
+
* resolve event object detection warnings for RefStore ([de9a3c2](https://github.com/mineclover/context-action/commit/de9a3c2aec135ce0bb562ee9c7d367cbe201b4e4))
|
|
599
|
+
|
|
600
|
+
|
|
601
|
+
### Features
|
|
602
|
+
|
|
603
|
+
* enhance type safety and fix test implementations ([ad374a7](https://github.com/mineclover/context-action/commit/ad374a71ff98b78e4ed14d524d6c4ecc8f6ab99e))
|
|
604
|
+
* implement RefContext mouse events with zero-render architecture ([274c510](https://github.com/mineclover/context-action/commit/274c5109ccdae1883a016cd17adeda55cb5ac537))
|
|
605
|
+
* **security:** major security and tooling updates ([f0d794e](https://github.com/mineclover/context-action/commit/f0d794eb007d58a301c01d0b4b36f07865da2434))
|
|
606
|
+
|
|
607
|
+
|
|
608
|
+
|
|
609
|
+
|
|
610
|
+
|
|
611
|
+
# [0.3.0](https://github.com/mineclover/context-action/compare/v0.2.1...v0.3.0) (2025-08-20)
|
|
612
|
+
|
|
613
|
+
|
|
614
|
+
### Bug Fixes
|
|
615
|
+
|
|
616
|
+
* **ci:** standardize tsdown version across all packages ([714ab1d](https://github.com/mineclover/context-action/commit/714ab1d7f8005096f7abe2f09d8067f500168a3a))
|
|
617
|
+
* **core,react:** improve code quality and security across packages ([e7baf2f](https://github.com/mineclover/context-action/commit/e7baf2fb8bf49bc5ae0b3f92efbf567fb5d2da09))
|
|
618
|
+
* resolve event object detection warnings for RefStore ([de9a3c2](https://github.com/mineclover/context-action/commit/de9a3c2aec135ce0bb562ee9c7d367cbe201b4e4))
|
|
619
|
+
|
|
620
|
+
|
|
621
|
+
### Features
|
|
622
|
+
|
|
623
|
+
* enhance type safety and fix test implementations ([ad374a7](https://github.com/mineclover/context-action/commit/ad374a71ff98b78e4ed14d524d6c4ecc8f6ab99e))
|
|
624
|
+
* implement RefContext mouse events with zero-render architecture ([274c510](https://github.com/mineclover/context-action/commit/274c5109ccdae1883a016cd17adeda55cb5ac537))
|
|
625
|
+
* **security:** major security and tooling updates ([f0d794e](https://github.com/mineclover/context-action/commit/f0d794eb007d58a301c01d0b4b36f07865da2434))
|
|
626
|
+
|
|
627
|
+
|
|
628
|
+
|
|
629
|
+
|
|
630
|
+
|
|
631
|
+
## [0.2.3](https://github.com/mineclover/context-action/compare/v0.2.1...v0.2.3) (2025-08-19)
|
|
632
|
+
|
|
633
|
+
|
|
634
|
+
### Bug Fixes
|
|
635
|
+
|
|
636
|
+
* **ci:** standardize tsdown version across all packages ([714ab1d](https://github.com/mineclover/context-action/commit/714ab1d7f8005096f7abe2f09d8067f500168a3a))
|
|
637
|
+
* **core,react:** improve code quality and security across packages ([e7baf2f](https://github.com/mineclover/context-action/commit/e7baf2fb8bf49bc5ae0b3f92efbf567fb5d2da09))
|
|
638
|
+
|
|
639
|
+
|
|
640
|
+
### Features
|
|
641
|
+
|
|
642
|
+
* **security:** major security and tooling updates ([f0d794e](https://github.com/mineclover/context-action/commit/f0d794eb007d58a301c01d0b4b36f07865da2434))
|
|
643
|
+
|
|
644
|
+
|
|
645
|
+
|
|
646
|
+
|
|
647
|
+
|
|
648
|
+
## [0.2.2](https://github.com/mineclover/context-action/compare/v0.2.1...v0.2.2) (2025-08-15)
|
|
649
|
+
|
|
650
|
+
|
|
651
|
+
### Bug Fixes
|
|
652
|
+
|
|
653
|
+
* **ci:** standardize tsdown version across all packages ([714ab1d](https://github.com/mineclover/context-action/commit/714ab1d7f8005096f7abe2f09d8067f500168a3a))
|
|
654
|
+
* **core,react:** improve code quality and security across packages ([e7baf2f](https://github.com/mineclover/context-action/commit/e7baf2fb8bf49bc5ae0b3f92efbf567fb5d2da09))
|
|
655
|
+
|
|
656
|
+
|
|
657
|
+
### Features
|
|
658
|
+
|
|
659
|
+
* **security:** major security and tooling updates ([f0d794e](https://github.com/mineclover/context-action/commit/f0d794eb007d58a301c01d0b4b36f07865da2434))
|
|
660
|
+
|
|
661
|
+
|
|
662
|
+
|
|
663
|
+
|
|
664
|
+
|
|
665
|
+
## [0.2.1](https://github.com/mineclover/context-action/compare/v0.1.1...v0.2.1) (2025-08-15)
|
|
666
|
+
|
|
667
|
+
|
|
668
|
+
### Features
|
|
669
|
+
|
|
670
|
+
* **core:** resolve concurrency issues with OperationQueue system ([e42339f](https://github.com/mineclover/context-action/commit/e42339ffd4d0983ee6787fadebae1d17d3d95f29))
|
|
671
|
+
* optimize codebase and remove legacy code ([19c042f](https://github.com/mineclover/context-action/commit/19c042f4a2915c0bd1bd9b76cb7750a061af6675))
|
|
672
|
+
|
|
673
|
+
|
|
674
|
+
|
|
675
|
+
|
|
676
|
+
|
|
677
|
+
# [0.2.0](https://github.com/mineclover/context-action/compare/v0.1.1...v0.2.0) (2025-08-15)
|
|
678
|
+
|
|
679
|
+
|
|
680
|
+
### Features
|
|
681
|
+
|
|
682
|
+
* **core:** resolve concurrency issues with OperationQueue system ([e42339f](https://github.com/mineclover/context-action/commit/e42339ffd4d0983ee6787fadebae1d17d3d95f29))
|
|
683
|
+
|
|
684
|
+
|
|
685
|
+
|
|
686
|
+
|
|
687
|
+
|
|
688
|
+
# 0.1.0 (2025-08-14)
|
|
689
|
+
|
|
690
|
+
|
|
691
|
+
### Bug Fixes
|
|
692
|
+
|
|
693
|
+
* ESLint 설정 파일 ES 모듈 호환성 문제 해결 ([1a92051](https://github.com/mineclover/context-action/commit/1a92051a2a3b48fbb502c7c65ee896c600661ce5))
|
|
694
|
+
* Implement lightweight secure handler ID generation to prevent prediction attacks ([2b9cde5](https://github.com/mineclover/context-action/commit/2b9cde5e0dd1a8efbcef796e3e44bb14f9faf480))
|
|
695
|
+
* resolve store initialization warning for falsy values ([9fabce8](https://github.com/mineclover/context-action/commit/9fabce846c2b927fd7a753144f50bd4f891e046a))
|
|
696
|
+
* resolve TypeScript type safety issues across packages ([9fe20b9](https://github.com/mineclover/context-action/commit/9fe20b9c5a249c262119fde5d35b3a094991963f))
|
|
697
|
+
* test-app tsconfig.json 참조 경로 수정 ([4d1ec3e](https://github.com/mineclover/context-action/commit/4d1ec3e5641b3cabac7d827fb113ccad8b10189b))
|
|
698
|
+
* Update test scripts to pass with no tests ([59a08d4](https://github.com/mineclover/context-action/commit/59a08d435ad52698497b220277569a521f89f5d7))
|
|
699
|
+
|
|
700
|
+
|
|
701
|
+
### Features
|
|
702
|
+
|
|
703
|
+
* add AbortSignal support to core ActionRegister dispatch methods ([315cae7](https://github.com/mineclover/context-action/commit/315cae7509cc834b2cca183ff0025c10bb22ea6e))
|
|
704
|
+
* Add comprehensive logging system with OpenTelemetry support ([0a46cdd](https://github.com/mineclover/context-action/commit/0a46cdd265dee54c41a28751dfcb3db939dc6fb6))
|
|
705
|
+
* Change default log level to TRACE in environment variables ([d2a95d0](https://github.com/mineclover/context-action/commit/d2a95d02531a29943296e28ff40b3833c6858b4d))
|
|
706
|
+
* Complete React pages modularization and improve error handling ([19bc5a6](https://github.com/mineclover/context-action/commit/19bc5a6fd565688e90bc7f3069b1afd91cbb9cf1))
|
|
707
|
+
* **core:** Fix execution abort functionality and improve handler management ([88e3dd4](https://github.com/mineclover/context-action/commit/88e3dd407a039585a35467935d66261f668cf3ea))
|
|
708
|
+
* dispatch 옵션 업그레이드 - debounce, throttle, executionMode 지원 ([1b84388](https://github.com/mineclover/context-action/commit/1b8438857e97decaff02070d4a51e638d2b8a9ce))
|
|
709
|
+
* enhance action registration with auto-abort functionality ([d80aa5b](https://github.com/mineclover/context-action/commit/d80aa5bb6cc9a6eea293288789aeb91005261796))
|
|
710
|
+
* Enhance core package documentation and type definitions ([17a84e0](https://github.com/mineclover/context-action/commit/17a84e0e1465d0ebcddfc92ae3c6b767f8f20401))
|
|
711
|
+
* Enhance documentation and improve ActionRegister functionality ([bde754b](https://github.com/mineclover/context-action/commit/bde754b82f079cc378b9e414dc7d66ec062ae71d))
|
|
712
|
+
* **example:** Add comprehensive store management demo pages ([e1f0162](https://github.com/mineclover/context-action/commit/e1f0162ec6f71d7098f5289b4463bd7cf0353d8b))
|
|
713
|
+
* **glossary:** Extract architecture patterns from example code ([513faac](https://github.com/mineclover/context-action/commit/513faacd543208e26abbfbe1ea997206f28d7699))
|
|
714
|
+
* **glossary:** 스캐너 개선으로 ActionRegister 클래스 인식 및 구현 커버리지 35%로 향상 ([55d0a39](https://github.com/mineclover/context-action/commit/55d0a397ff33c90f6da3c4d28b09a76f60a14f55))
|
|
715
|
+
* HMR 시스템 완성 및 Core Store 비교 최적화 ([ccc5029](https://github.com/mineclover/context-action/commit/ccc50299f49d7d6fa115ef389a7eabdb52e4b0c5))
|
|
716
|
+
* implement complete pipeline control system with execution modes and action guards ([7f27112](https://github.com/mineclover/context-action/commit/7f2711279c6dd28e8a468b4313baeb0d61180e90))
|
|
717
|
+
* improve hook naming clarity with backwards compatibility ([485297e](https://github.com/mineclover/context-action/commit/485297ef164c69a4fc5b3607c493c0a949616ab9))
|
|
718
|
+
* Major architecture refactoring and documentation update ([aadb45d](https://github.com/mineclover/context-action/commit/aadb45d0bc86502243b2390a1c6da7d4736e0208))
|
|
719
|
+
* separate logger into independent package ([6cb727c](https://github.com/mineclover/context-action/commit/6cb727cfe03230d03e9f928fb92d86c2d3ae7360))
|
|
720
|
+
* Update logging configuration and enhance JSON settings ([8b15e76](https://github.com/mineclover/context-action/commit/8b15e76ff48c03aca2c876bf5f13eed36e26766b))
|
|
721
|
+
* 레거시 코드 제거 및 외부 abort 기능 개선 ([f4a0d18](https://github.com/mineclover/context-action/commit/f4a0d18d316656ba74182c376ffd65ed039ab747))
|
|
722
|
+
* 액션 실행 결과 반환 및 수집 시스템 구현 ([071131e](https://github.com/mineclover/context-action/commit/071131e286c392feef97d57ed3c08497c9add395))
|
|
723
|
+
* 파이프라인 결과 처리 시스템과 핸들러 메타데이터 확장 ([554dd29](https://github.com/mineclover/context-action/commit/554dd29a06f04371b1e84ad6458fbfee7f205ed0))
|
|
724
|
+
* 핵심 용어 JSDoc 태그 구현으로 용어집 매칭률 67% 달성 ([64b19e1](https://github.com/mineclover/context-action/commit/64b19e1be9da70106a26313c50f49da8eed8bfbb))
|
|
725
|
+
|
|
726
|
+
|
|
727
|
+
### BREAKING CHANGES
|
|
728
|
+
|
|
729
|
+
* None - fully backwards compatible with deprecation warnings
|
|
730
|
+
|
|
731
|
+
The old naming (useActionRegister/useRegistry) was confusing as both returned
|
|
732
|
+
different things but had similar names. New naming clearly indicates:
|
|
733
|
+
- useActionHandler returns a function to add handlers
|
|
734
|
+
- useStores returns access to the store registry
|
|
735
|
+
* Auto-generated handler IDs now use unpredictable pattern
|
|
736
|
+
|
|
737
|
+
- Replace predictable handler_N pattern with handler_N_randomSuffix
|
|
738
|
+
- Use Math.random().toString(36) for lightweight randomness (2.3x faster than crypto.randomUUID)
|
|
739
|
+
- Maintain performance: ~0.01ms overhead vs 0.0007ms for crypto approach
|
|
740
|
+
- Prevent ID prediction attacks while preserving counter-based ordering
|
|
741
|
+
- Update documentation with performance comparison and security strategies
|
|
742
|
+
|
|
743
|
+
Security Impact:
|
|
744
|
+
- Before: handler_1, handler_2, handler_3 (predictable)
|
|
745
|
+
- After: handler_1_k3x9z, handler_2_m8p4w, handler_3_r7q2s (unpredictable)
|
|
746
|
+
|
|
747
|
+
Performance Results (10,000 iterations):
|
|
748
|
+
- crypto.randomUUID(): 0.0007ms/op
|
|
749
|
+
- Math.random() approach: 0.0003ms/op (chosen)
|
|
750
|
+
- Current predictable: 0.0001ms/op (vulnerable)
|
|
751
|
+
|
|
752
|
+
🤖 Generated with [Claude Code](https://claude.ai/code)
|
|
753
|
+
|
|
754
|
+
Co-Authored-By: Claude <noreply@anthropic.com>
|
|
755
|
+
|
|
756
|
+
|
|
757
|
+
|
|
758
|
+
|
|
759
|
+
|
|
760
|
+
## 0.0.5 (2025-08-13)
|
|
761
|
+
|
|
762
|
+
|
|
763
|
+
### Bug Fixes
|
|
764
|
+
|
|
765
|
+
* ESLint 설정 파일 ES 모듈 호환성 문제 해결 ([1a92051](https://github.com/mineclover/context-action/commit/1a92051a2a3b48fbb502c7c65ee896c600661ce5))
|
|
766
|
+
* Implement lightweight secure handler ID generation to prevent prediction attacks ([2b9cde5](https://github.com/mineclover/context-action/commit/2b9cde5e0dd1a8efbcef796e3e44bb14f9faf480))
|
|
767
|
+
* resolve store initialization warning for falsy values ([9fabce8](https://github.com/mineclover/context-action/commit/9fabce846c2b927fd7a753144f50bd4f891e046a))
|
|
768
|
+
* resolve TypeScript type safety issues across packages ([9fe20b9](https://github.com/mineclover/context-action/commit/9fe20b9c5a249c262119fde5d35b3a094991963f))
|
|
769
|
+
* test-app tsconfig.json 참조 경로 수정 ([4d1ec3e](https://github.com/mineclover/context-action/commit/4d1ec3e5641b3cabac7d827fb113ccad8b10189b))
|
|
770
|
+
* Update test scripts to pass with no tests ([59a08d4](https://github.com/mineclover/context-action/commit/59a08d435ad52698497b220277569a521f89f5d7))
|
|
771
|
+
|
|
772
|
+
|
|
773
|
+
### Features
|
|
774
|
+
|
|
775
|
+
* add AbortSignal support to core ActionRegister dispatch methods ([315cae7](https://github.com/mineclover/context-action/commit/315cae7509cc834b2cca183ff0025c10bb22ea6e))
|
|
776
|
+
* Add comprehensive logging system with OpenTelemetry support ([0a46cdd](https://github.com/mineclover/context-action/commit/0a46cdd265dee54c41a28751dfcb3db939dc6fb6))
|
|
777
|
+
* Change default log level to TRACE in environment variables ([d2a95d0](https://github.com/mineclover/context-action/commit/d2a95d02531a29943296e28ff40b3833c6858b4d))
|
|
778
|
+
* Complete React pages modularization and improve error handling ([19bc5a6](https://github.com/mineclover/context-action/commit/19bc5a6fd565688e90bc7f3069b1afd91cbb9cf1))
|
|
779
|
+
* **core:** Fix execution abort functionality and improve handler management ([88e3dd4](https://github.com/mineclover/context-action/commit/88e3dd407a039585a35467935d66261f668cf3ea))
|
|
780
|
+
* dispatch 옵션 업그레이드 - debounce, throttle, executionMode 지원 ([1b84388](https://github.com/mineclover/context-action/commit/1b8438857e97decaff02070d4a51e638d2b8a9ce))
|
|
781
|
+
* enhance action registration with auto-abort functionality ([d80aa5b](https://github.com/mineclover/context-action/commit/d80aa5bb6cc9a6eea293288789aeb91005261796))
|
|
782
|
+
* Enhance core package documentation and type definitions ([17a84e0](https://github.com/mineclover/context-action/commit/17a84e0e1465d0ebcddfc92ae3c6b767f8f20401))
|
|
783
|
+
* Enhance documentation and improve ActionRegister functionality ([bde754b](https://github.com/mineclover/context-action/commit/bde754b82f079cc378b9e414dc7d66ec062ae71d))
|
|
784
|
+
* **example:** Add comprehensive store management demo pages ([e1f0162](https://github.com/mineclover/context-action/commit/e1f0162ec6f71d7098f5289b4463bd7cf0353d8b))
|
|
785
|
+
* **glossary:** Extract architecture patterns from example code ([513faac](https://github.com/mineclover/context-action/commit/513faacd543208e26abbfbe1ea997206f28d7699))
|
|
786
|
+
* **glossary:** 스캐너 개선으로 ActionRegister 클래스 인식 및 구현 커버리지 35%로 향상 ([55d0a39](https://github.com/mineclover/context-action/commit/55d0a397ff33c90f6da3c4d28b09a76f60a14f55))
|
|
787
|
+
* HMR 시스템 완성 및 Core Store 비교 최적화 ([ccc5029](https://github.com/mineclover/context-action/commit/ccc50299f49d7d6fa115ef389a7eabdb52e4b0c5))
|
|
788
|
+
* implement complete pipeline control system with execution modes and action guards ([7f27112](https://github.com/mineclover/context-action/commit/7f2711279c6dd28e8a468b4313baeb0d61180e90))
|
|
789
|
+
* improve hook naming clarity with backwards compatibility ([485297e](https://github.com/mineclover/context-action/commit/485297ef164c69a4fc5b3607c493c0a949616ab9))
|
|
790
|
+
* Major architecture refactoring and documentation update ([aadb45d](https://github.com/mineclover/context-action/commit/aadb45d0bc86502243b2390a1c6da7d4736e0208))
|
|
791
|
+
* separate logger into independent package ([6cb727c](https://github.com/mineclover/context-action/commit/6cb727cfe03230d03e9f928fb92d86c2d3ae7360))
|
|
792
|
+
* Update logging configuration and enhance JSON settings ([8b15e76](https://github.com/mineclover/context-action/commit/8b15e76ff48c03aca2c876bf5f13eed36e26766b))
|
|
793
|
+
* 레거시 코드 제거 및 외부 abort 기능 개선 ([f4a0d18](https://github.com/mineclover/context-action/commit/f4a0d18d316656ba74182c376ffd65ed039ab747))
|
|
794
|
+
* 액션 실행 결과 반환 및 수집 시스템 구현 ([071131e](https://github.com/mineclover/context-action/commit/071131e286c392feef97d57ed3c08497c9add395))
|
|
795
|
+
* 파이프라인 결과 처리 시스템과 핸들러 메타데이터 확장 ([554dd29](https://github.com/mineclover/context-action/commit/554dd29a06f04371b1e84ad6458fbfee7f205ed0))
|
|
796
|
+
* 핵심 용어 JSDoc 태그 구현으로 용어집 매칭률 67% 달성 ([64b19e1](https://github.com/mineclover/context-action/commit/64b19e1be9da70106a26313c50f49da8eed8bfbb))
|
|
797
|
+
|
|
798
|
+
|
|
799
|
+
### BREAKING CHANGES
|
|
800
|
+
|
|
801
|
+
* None - fully backwards compatible with deprecation warnings
|
|
802
|
+
|
|
803
|
+
The old naming (useActionRegister/useRegistry) was confusing as both returned
|
|
804
|
+
different things but had similar names. New naming clearly indicates:
|
|
805
|
+
- useActionHandler returns a function to add handlers
|
|
806
|
+
- useStores returns access to the store registry
|
|
807
|
+
* Auto-generated handler IDs now use unpredictable pattern
|
|
808
|
+
|
|
809
|
+
- Replace predictable handler_N pattern with handler_N_randomSuffix
|
|
810
|
+
- Use Math.random().toString(36) for lightweight randomness (2.3x faster than crypto.randomUUID)
|
|
811
|
+
- Maintain performance: ~0.01ms overhead vs 0.0007ms for crypto approach
|
|
812
|
+
- Prevent ID prediction attacks while preserving counter-based ordering
|
|
813
|
+
- Update documentation with performance comparison and security strategies
|
|
814
|
+
|
|
815
|
+
Security Impact:
|
|
816
|
+
- Before: handler_1, handler_2, handler_3 (predictable)
|
|
817
|
+
- After: handler_1_k3x9z, handler_2_m8p4w, handler_3_r7q2s (unpredictable)
|
|
818
|
+
|
|
819
|
+
Performance Results (10,000 iterations):
|
|
820
|
+
- crypto.randomUUID(): 0.0007ms/op
|
|
821
|
+
- Math.random() approach: 0.0003ms/op (chosen)
|
|
822
|
+
- Current predictable: 0.0001ms/op (vulnerable)
|
|
823
|
+
|
|
824
|
+
🤖 Generated with [Claude Code](https://claude.ai/code)
|
|
825
|
+
|
|
826
|
+
Co-Authored-By: Claude <noreply@anthropic.com>
|
|
827
|
+
|
|
828
|
+
|
|
829
|
+
|
|
830
|
+
|
|
831
|
+
|
|
832
|
+
## 0.0.4 (2025-08-03)
|
|
833
|
+
|
|
834
|
+
|
|
835
|
+
### Bug Fixes
|
|
836
|
+
|
|
837
|
+
* ESLint 설정 파일 ES 모듈 호환성 문제 해결 ([1a92051](https://github.com/mineclover/context-action/commit/1a92051a2a3b48fbb502c7c65ee896c600661ce5))
|
|
838
|
+
* resolve TypeScript type safety issues across packages ([9fe20b9](https://github.com/mineclover/context-action/commit/9fe20b9c5a249c262119fde5d35b3a094991963f))
|
|
839
|
+
* test-app tsconfig.json 참조 경로 수정 ([4d1ec3e](https://github.com/mineclover/context-action/commit/4d1ec3e5641b3cabac7d827fb113ccad8b10189b))
|
|
840
|
+
* Update test scripts to pass with no tests ([59a08d4](https://github.com/mineclover/context-action/commit/59a08d435ad52698497b220277569a521f89f5d7))
|
|
841
|
+
|
|
842
|
+
|
|
843
|
+
### Features
|
|
844
|
+
|
|
845
|
+
* Add comprehensive logging system with OpenTelemetry support ([0a46cdd](https://github.com/mineclover/context-action/commit/0a46cdd265dee54c41a28751dfcb3db939dc6fb6))
|
|
846
|
+
* Change default log level to TRACE in environment variables ([d2a95d0](https://github.com/mineclover/context-action/commit/d2a95d02531a29943296e28ff40b3833c6858b4d))
|
|
847
|
+
* Complete React pages modularization and improve error handling ([19bc5a6](https://github.com/mineclover/context-action/commit/19bc5a6fd565688e90bc7f3069b1afd91cbb9cf1))
|
|
848
|
+
* Enhance core package documentation and type definitions ([17a84e0](https://github.com/mineclover/context-action/commit/17a84e0e1465d0ebcddfc92ae3c6b767f8f20401))
|
|
849
|
+
* **example:** Add comprehensive store management demo pages ([e1f0162](https://github.com/mineclover/context-action/commit/e1f0162ec6f71d7098f5289b4463bd7cf0353d8b))
|
|
850
|
+
* **glossary:** 스캐너 개선으로 ActionRegister 클래스 인식 및 구현 커버리지 35%로 향상 ([55d0a39](https://github.com/mineclover/context-action/commit/55d0a397ff33c90f6da3c4d28b09a76f60a14f55))
|
|
851
|
+
* **glossary:** Extract architecture patterns from example code ([513faac](https://github.com/mineclover/context-action/commit/513faacd543208e26abbfbe1ea997206f28d7699))
|
|
852
|
+
* implement complete pipeline control system with execution modes and action guards ([7f27112](https://github.com/mineclover/context-action/commit/7f2711279c6dd28e8a468b4313baeb0d61180e90))
|
|
853
|
+
* Major architecture refactoring and documentation update ([aadb45d](https://github.com/mineclover/context-action/commit/aadb45d0bc86502243b2390a1c6da7d4736e0208))
|
|
854
|
+
* separate logger into independent package ([6cb727c](https://github.com/mineclover/context-action/commit/6cb727cfe03230d03e9f928fb92d86c2d3ae7360))
|
|
855
|
+
* Update logging configuration and enhance JSON settings ([8b15e76](https://github.com/mineclover/context-action/commit/8b15e76ff48c03aca2c876bf5f13eed36e26766b))
|