@quantiya/codevibe-claude-plugin 2.0.25 → 2.0.26

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 (23) hide show
  1. package/.claude-plugin/plugin.json +1 -1
  2. package/node_modules/@iarna/toml/CHANGELOG.md +278 -0
  3. package/node_modules/@quantiya/codevibe-core/dist/index.d.ts +2 -1
  4. package/node_modules/@quantiya/codevibe-core/dist/index.js +621 -430
  5. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/audit-browser.d.ts +42 -2
  6. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/audit-runner.d.ts +13 -1
  7. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/cli.d.ts +8 -0
  8. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/cli.js +649 -87
  9. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/flag-command.d.ts +4 -1
  10. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/index.d.ts +16 -2
  11. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/types.d.ts +2 -0
  12. package/node_modules/@quantiya/codevibe-core/dist/tool-activity/types.d.ts +32 -32
  13. package/node_modules/@quantiya/codevibe-core/package.json +1 -1
  14. package/node_modules/color-convert/CHANGELOG.md +54 -0
  15. package/node_modules/cross-spawn/node_modules/which/CHANGELOG.md +166 -0
  16. package/node_modules/deep-extend/CHANGELOG.md +46 -0
  17. package/node_modules/es-toolkit/CHANGELOG.md +1018 -0
  18. package/node_modules/es-toolkit/src/compat/_internal/Equals.d.ts +1 -0
  19. package/node_modules/es-toolkit/src/compat/_internal/IsWritable.d.ts +3 -0
  20. package/node_modules/es-toolkit/src/compat/_internal/MutableList.d.ts +4 -0
  21. package/node_modules/es-toolkit/src/compat/_internal/RejectReadonly.d.ts +4 -0
  22. package/node_modules/keytar/build/Release/keytar.node +0 -0
  23. package/package.json +2 -2
@@ -9,7 +9,7 @@ import type { AuditFlagIndex } from './types';
9
9
  * Shape-only: coordinates + wire kind + the precomputed flaggable bit; the
10
10
  * decrypted payload never leaves the render.
11
11
  */
12
- export declare function buildAuditFlagIndex(taskId: string, model: AuditBrowserModel): AuditFlagIndex;
12
+ export declare function buildAuditFlagIndex(taskId: string, model: AuditBrowserModel, sessionId?: string): AuditFlagIndex;
13
13
  /**
14
14
  * The minimal AppSync surface `/flag` needs — the existing
15
15
  * `recordExecutionEvent` Class-A method (D4: the full plumbing below it
@@ -37,6 +37,9 @@ export interface RunFlagCommandDeps {
37
37
  export type RunFlagCommandResult = {
38
38
  kind: 'no_index';
39
39
  line: string;
40
+ } | {
41
+ kind: 'cross_session_unsupported';
42
+ line: string;
40
43
  } | {
41
44
  kind: 'unknown_entry';
42
45
  line: string;
@@ -234,7 +234,7 @@ export { CONTEXT_SESSION_PSEUDO_TASK_NAMESPACE, deriveSessionPseudoTaskId, audit
234
234
  export { configureContextItemsHostedSync, wakeContextItemsHostedSync, drainContextItemsHostedSync, clearContextItemsHostedSync, contextItemsHostedSyncStatePath, type ContextItemsHostedSyncDeps, } from './context-items-hosted-sync';
235
235
  export { compactSessionContext, maybeFireCompactionSafetyValve, rehydrateSessionContext, renderRehydratedSessionContext, distillItems, projectDistilledForRole, loadCompactionCache, compactionCachePath, onTaskBoundary, gcContextItemLogs, scheduleContextItemsGc, COMPACTION_SAFETY_VALVE_TAIL_BYTES, COMPACTION_KEEP_HOT_RECENT_ITEMS, CONTEXT_ITEMS_RETENTION_MS, SESSION_CONTEXT_SECTION_MAX_CHARS, type DistilledFact, type DistilledTaskSummary, type SessionCompactionCache, type CompactionResult, type RehydratedSessionContext, } from './context-compaction';
236
236
  export { routeSlashCommand, applySlashOutput, type SlashOutput, type ShellAction, } from './slash-router';
237
- export { buildAuditBrowserModel, routeAuditEntry, auditKindLabel, auditKindCopy, renderAuditBrowserText, renderAuditEntryText, ENTRY_DETAILS_UNAVAILABLE, NO_AUDIT_ENTRIES, AUDIT_LOG_TOO_LARGE, AUDIT_LOG_TITLE, AUDIT_BROWSER_MAX_HEADLINE, WIRE_PUBLIC_PLAINTEXT_KINDS, type AuditBrowserModel, type AuditEntryModel, type AuditReviewerVerdictModel, type AuditTaskAuthorizedModel, type DecryptContentFn, } from './audit-browser';
237
+ export { buildAuditBrowserModel, routeAuditEntry, auditKindLabel, auditKindCopy, renderAuditBrowserText, renderAuditEntryText, ENTRY_DETAILS_UNAVAILABLE, NO_AUDIT_ENTRIES, AUDIT_LOG_TOO_LARGE, AUDIT_LOG_TITLE, AUDIT_BROWSER_MAX_HEADLINE, WIRE_PUBLIC_PLAINTEXT_KINDS, formatAuditExport, type AuditDetailRow, type AuditFilterOptions, type AuditExportFormat, type AuditExportPayload, type AuditBrowserModel, type AuditEntryModel, type AuditReviewerVerdictModel, type AuditTaskAuthorizedModel, type DecryptContentFn, } from './audit-browser';
238
238
  export { runAuditBrowser, renderAuditResultText, AUDIT_BROWSER_UPGRADE_HINT, type RunAuditBrowserResult, type RunAuditBrowserDeps, } from './audit-runner';
239
239
  export { buildAuditFlagIndex, runFlagCommand, renderFlagResultText, FLAG_NO_INDEX_LINE, type RunFlagCommandResult, type RunFlagCommandDeps, type FlagAppSyncClient, } from './flag-command';
240
240
  export { AuditLogPanel } from './components/AuditLogPanel';
@@ -807,7 +807,13 @@ export interface HandleShellUserInputDeps extends StructuralSummaryRunDeps {
807
807
  * `args.session.sessionId`. Tests inject a stub to drive the PENDING-marker
808
808
  * rewrite without live fetch / decrypt.
809
809
  */
810
- runAuditBrowserFn?: (taskId: string) => Promise<RunAuditBrowserResult>;
810
+ runAuditBrowserFn?: (taskId: string, options?: {
811
+ kind?: string;
812
+ verdictsOnly?: boolean;
813
+ limit?: number;
814
+ offset?: number;
815
+ sessionId?: string;
816
+ }) => Promise<RunAuditBrowserResult>;
811
817
  /**
812
818
  * O1 C1 (#652) — Test seam for the async `/flag <entry-id>` dispatch.
813
819
  * Defaults to `runFlagCommand` over `args.appsyncClient` + the retained
@@ -933,6 +939,14 @@ export declare function buildContinuationActionDeps(args: RunOrchestrationShellA
933
939
  * The URL regex is copied from `protectUrls` (unexported in local-advisory.ts).
934
940
  */
935
941
  export declare function detectBrowseFastPath(text: string, pending: PendingClarification | null): string[] | null;
942
+ /**
943
+ * Tokenize a command line string respecting single/double quotes and backslash escapes.
944
+ * Returns tokens array or error if unclosed quote / trailing escape.
945
+ */
946
+ export declare function tokenizeCommandLine(input: string): {
947
+ tokens: string[];
948
+ error?: string;
949
+ };
936
950
  export declare function handleShellUserInput(deps: HandleShellUserInputDeps): Promise<void>;
937
951
  /**
938
952
  * [A1g] Stage-2 round-4 (Codex round-3 MEDIUM) — the EXPLICIT per-turn panel-
@@ -775,6 +775,8 @@ export interface AuditFlagEntryRecord {
775
775
  export interface AuditFlagIndex {
776
776
  /** The task whose listing was rendered — becomes `flaggedTaskId`. */
777
777
  taskId: string;
778
+ /** The session under which the audit was browsed (for session key + emit scoping). */
779
+ sessionId?: string;
778
780
  /** `entryId → record` for every entry in the last-rendered listing. */
779
781
  entries: Map<string, AuditFlagEntryRecord>;
780
782
  /** Entry ids flagged this session (dedup no-op render on repeat `/flag`). */
@@ -28,11 +28,11 @@ export declare const ToolActivityDetailSchema: z.ZodObject<{
28
28
  i: z.ZodNumber;
29
29
  digest: z.ZodString;
30
30
  }, "strip", z.ZodTypeAny, {
31
- digest: string;
32
31
  i: number;
33
- }, {
34
32
  digest: string;
33
+ }, {
35
34
  i: number;
35
+ digest: string;
36
36
  }>;
37
37
  export type ToolActivityDetail = z.infer<typeof ToolActivityDetailSchema>;
38
38
  /**
@@ -58,35 +58,35 @@ export declare const ToolActivityGroupSchema: z.ZodObject<{
58
58
  i: z.ZodNumber;
59
59
  digest: z.ZodString;
60
60
  }, "strip", z.ZodTypeAny, {
61
- digest: string;
62
61
  i: number;
63
- }, {
64
62
  digest: string;
63
+ }, {
65
64
  i: number;
65
+ digest: string;
66
66
  }>, "many">>;
67
67
  }, "strip", z.ZodTypeAny, {
68
68
  count: number;
69
+ tool: string;
69
70
  occurrences: {
70
71
  id: string;
71
72
  ts: string;
72
73
  }[];
73
- tool: string;
74
74
  target?: string | undefined;
75
75
  detail?: {
76
- digest: string;
77
76
  i: number;
77
+ digest: string;
78
78
  }[] | undefined;
79
79
  }, {
80
80
  count: number;
81
+ tool: string;
81
82
  occurrences: {
82
83
  id: string;
83
84
  ts: string;
84
85
  }[];
85
- tool: string;
86
86
  target?: string | undefined;
87
87
  detail?: {
88
- digest: string;
89
88
  i: number;
89
+ digest: string;
90
90
  }[] | undefined;
91
91
  }>;
92
92
  export type ToolActivityGroup = z.infer<typeof ToolActivityGroupSchema>;
@@ -122,50 +122,50 @@ export declare const ToolActivityManifestSchema: z.ZodObject<{
122
122
  i: z.ZodNumber;
123
123
  digest: z.ZodString;
124
124
  }, "strip", z.ZodTypeAny, {
125
- digest: string;
126
125
  i: number;
127
- }, {
128
126
  digest: string;
127
+ }, {
129
128
  i: number;
129
+ digest: string;
130
130
  }>, "many">>;
131
131
  }, "strip", z.ZodTypeAny, {
132
132
  count: number;
133
+ tool: string;
133
134
  occurrences: {
134
135
  id: string;
135
136
  ts: string;
136
137
  }[];
137
- tool: string;
138
138
  target?: string | undefined;
139
139
  detail?: {
140
- digest: string;
141
140
  i: number;
141
+ digest: string;
142
142
  }[] | undefined;
143
143
  }, {
144
144
  count: number;
145
+ tool: string;
145
146
  occurrences: {
146
147
  id: string;
147
148
  ts: string;
148
149
  }[];
149
- tool: string;
150
150
  target?: string | undefined;
151
151
  detail?: {
152
- digest: string;
153
152
  i: number;
153
+ digest: string;
154
154
  }[] | undefined;
155
155
  }>, "many">;
156
156
  continues: z.ZodOptional<z.ZodBoolean>;
157
157
  }, "strip", z.ZodTypeAny, {
158
158
  groups: {
159
159
  count: number;
160
+ tool: string;
160
161
  occurrences: {
161
162
  id: string;
162
163
  ts: string;
163
164
  }[];
164
- tool: string;
165
165
  target?: string | undefined;
166
166
  detail?: {
167
- digest: string;
168
167
  i: number;
168
+ digest: string;
169
169
  }[] | undefined;
170
170
  }[];
171
171
  trackId?: string | null | undefined;
@@ -176,15 +176,15 @@ export declare const ToolActivityManifestSchema: z.ZodObject<{
176
176
  }, {
177
177
  groups: {
178
178
  count: number;
179
+ tool: string;
179
180
  occurrences: {
180
181
  id: string;
181
182
  ts: string;
182
183
  }[];
183
- tool: string;
184
184
  target?: string | undefined;
185
185
  detail?: {
186
- digest: string;
187
186
  i: number;
187
+ digest: string;
188
188
  }[] | undefined;
189
189
  }[];
190
190
  trackId?: string | null | undefined;
@@ -239,50 +239,50 @@ export declare const ToolActivityOutboxEnvelopeSchema: z.ZodObject<{
239
239
  i: z.ZodNumber;
240
240
  digest: z.ZodString;
241
241
  }, "strip", z.ZodTypeAny, {
242
- digest: string;
243
242
  i: number;
244
- }, {
245
243
  digest: string;
244
+ }, {
246
245
  i: number;
246
+ digest: string;
247
247
  }>, "many">>;
248
248
  }, "strip", z.ZodTypeAny, {
249
249
  count: number;
250
+ tool: string;
250
251
  occurrences: {
251
252
  id: string;
252
253
  ts: string;
253
254
  }[];
254
- tool: string;
255
255
  target?: string | undefined;
256
256
  detail?: {
257
- digest: string;
258
257
  i: number;
258
+ digest: string;
259
259
  }[] | undefined;
260
260
  }, {
261
261
  count: number;
262
+ tool: string;
262
263
  occurrences: {
263
264
  id: string;
264
265
  ts: string;
265
266
  }[];
266
- tool: string;
267
267
  target?: string | undefined;
268
268
  detail?: {
269
- digest: string;
270
269
  i: number;
270
+ digest: string;
271
271
  }[] | undefined;
272
272
  }>, "many">;
273
273
  continues: z.ZodOptional<z.ZodBoolean>;
274
274
  }, "strip", z.ZodTypeAny, {
275
275
  groups: {
276
276
  count: number;
277
+ tool: string;
277
278
  occurrences: {
278
279
  id: string;
279
280
  ts: string;
280
281
  }[];
281
- tool: string;
282
282
  target?: string | undefined;
283
283
  detail?: {
284
- digest: string;
285
284
  i: number;
285
+ digest: string;
286
286
  }[] | undefined;
287
287
  }[];
288
288
  trackId?: string | null | undefined;
@@ -293,15 +293,15 @@ export declare const ToolActivityOutboxEnvelopeSchema: z.ZodObject<{
293
293
  }, {
294
294
  groups: {
295
295
  count: number;
296
+ tool: string;
296
297
  occurrences: {
297
298
  id: string;
298
299
  ts: string;
299
300
  }[];
300
- tool: string;
301
301
  target?: string | undefined;
302
302
  detail?: {
303
- digest: string;
304
303
  i: number;
304
+ digest: string;
305
305
  }[] | undefined;
306
306
  }[];
307
307
  trackId?: string | null | undefined;
@@ -317,15 +317,15 @@ export declare const ToolActivityOutboxEnvelopeSchema: z.ZodObject<{
317
317
  manifest: {
318
318
  groups: {
319
319
  count: number;
320
+ tool: string;
320
321
  occurrences: {
321
322
  id: string;
322
323
  ts: string;
323
324
  }[];
324
- tool: string;
325
325
  target?: string | undefined;
326
326
  detail?: {
327
- digest: string;
328
327
  i: number;
328
+ digest: string;
329
329
  }[] | undefined;
330
330
  }[];
331
331
  trackId?: string | null | undefined;
@@ -343,15 +343,15 @@ export declare const ToolActivityOutboxEnvelopeSchema: z.ZodObject<{
343
343
  manifest: {
344
344
  groups: {
345
345
  count: number;
346
+ tool: string;
346
347
  occurrences: {
347
348
  id: string;
348
349
  ts: string;
349
350
  }[];
350
- tool: string;
351
351
  target?: string | undefined;
352
352
  detail?: {
353
- digest: string;
354
353
  i: number;
354
+ digest: string;
355
355
  }[] | undefined;
356
356
  }[];
357
357
  trackId?: string | null | undefined;
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quantiya/codevibe-core",
3
- "version": "2.0.21",
3
+ "version": "2.0.22",
4
4
  "description": "Core library for CodeVibe plugins - shared keychain, crypto, AppSync, and auth functionality",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -0,0 +1,54 @@
1
+ # 1.0.0 - 2016-01-07
2
+
3
+ - Removed: unused speed test
4
+ - Added: Automatic routing between previously unsupported conversions
5
+ ([#27](https://github.com/Qix-/color-convert/pull/27))
6
+ - Removed: `xxx2xxx()` and `xxx2xxxRaw()` functions
7
+ ([#27](https://github.com/Qix-/color-convert/pull/27))
8
+ - Removed: `convert()` class
9
+ ([#27](https://github.com/Qix-/color-convert/pull/27))
10
+ - Changed: all functions to lookup dictionary
11
+ ([#27](https://github.com/Qix-/color-convert/pull/27))
12
+ - Changed: `ansi` to `ansi256`
13
+ ([#27](https://github.com/Qix-/color-convert/pull/27))
14
+ - Fixed: argument grouping for functions requiring only one argument
15
+ ([#27](https://github.com/Qix-/color-convert/pull/27))
16
+
17
+ # 0.6.0 - 2015-07-23
18
+
19
+ - Added: methods to handle
20
+ [ANSI](https://en.wikipedia.org/wiki/ANSI_escape_code#Colors) 16/256 colors:
21
+ - rgb2ansi16
22
+ - rgb2ansi
23
+ - hsl2ansi16
24
+ - hsl2ansi
25
+ - hsv2ansi16
26
+ - hsv2ansi
27
+ - hwb2ansi16
28
+ - hwb2ansi
29
+ - cmyk2ansi16
30
+ - cmyk2ansi
31
+ - keyword2ansi16
32
+ - keyword2ansi
33
+ - ansi162rgb
34
+ - ansi162hsl
35
+ - ansi162hsv
36
+ - ansi162hwb
37
+ - ansi162cmyk
38
+ - ansi162keyword
39
+ - ansi2rgb
40
+ - ansi2hsl
41
+ - ansi2hsv
42
+ - ansi2hwb
43
+ - ansi2cmyk
44
+ - ansi2keyword
45
+ ([#18](https://github.com/harthur/color-convert/pull/18))
46
+
47
+ # 0.5.3 - 2015-06-02
48
+
49
+ - Fixed: hsl2hsv does not return `NaN` anymore when using `[0,0,0]`
50
+ ([#15](https://github.com/harthur/color-convert/issues/15))
51
+
52
+ ---
53
+
54
+ Check out commit logs for older releases
@@ -0,0 +1,166 @@
1
+ # Changes
2
+
3
+
4
+ ## 2.0.2
5
+
6
+ * Rename bin to `node-which`
7
+
8
+ ## 2.0.1
9
+
10
+ * generate changelog and publish on version bump
11
+ * enforce 100% test coverage
12
+ * Promise interface
13
+
14
+ ## 2.0.0
15
+
16
+ * Parallel tests, modern JavaScript, and drop support for node < 8
17
+
18
+ ## 1.3.1
19
+
20
+ * update deps
21
+ * update travis
22
+
23
+ ## v1.3.0
24
+
25
+ * Add nothrow option to which.sync
26
+ * update tap
27
+
28
+ ## v1.2.14
29
+
30
+ * appveyor: drop node 5 and 0.x
31
+ * travis-ci: add node 6, drop 0.x
32
+
33
+ ## v1.2.13
34
+
35
+ * test: Pass missing option to pass on windows
36
+ * update tap
37
+ * update isexe to 2.0.0
38
+ * neveragain.tech pledge request
39
+
40
+ ## v1.2.12
41
+
42
+ * Removed unused require
43
+
44
+ ## v1.2.11
45
+
46
+ * Prevent changelog script from being included in package
47
+
48
+ ## v1.2.10
49
+
50
+ * Use env.PATH only, not env.Path
51
+
52
+ ## v1.2.9
53
+
54
+ * fix for paths starting with ../
55
+ * Remove unused `is-absolute` module
56
+
57
+ ## v1.2.8
58
+
59
+ * bullet items in changelog that contain (but don't start with) #
60
+
61
+ ## v1.2.7
62
+
63
+ * strip 'update changelog' changelog entries out of changelog
64
+
65
+ ## v1.2.6
66
+
67
+ * make the changelog bulleted
68
+
69
+ ## v1.2.5
70
+
71
+ * make a changelog, and keep it up to date
72
+ * don't include tests in package
73
+ * Properly handle relative-path executables
74
+ * appveyor
75
+ * Attach error code to Not Found error
76
+ * Make tests pass on Windows
77
+
78
+ ## v1.2.4
79
+
80
+ * Fix typo
81
+
82
+ ## v1.2.3
83
+
84
+ * update isexe, fix regression in pathExt handling
85
+
86
+ ## v1.2.2
87
+
88
+ * update deps, use isexe module, test windows
89
+
90
+ ## v1.2.1
91
+
92
+ * Sometimes windows PATH entries are quoted
93
+ * Fixed a bug in the check for group and user mode bits. This bug was introduced during refactoring for supporting strict mode.
94
+ * doc cli
95
+
96
+ ## v1.2.0
97
+
98
+ * Add support for opt.all and -as cli flags
99
+ * test the bin
100
+ * update travis
101
+ * Allow checking for multiple programs in bin/which
102
+ * tap 2
103
+
104
+ ## v1.1.2
105
+
106
+ * travis
107
+ * Refactored and fixed undefined error on Windows
108
+ * Support strict mode
109
+
110
+ ## v1.1.1
111
+
112
+ * test +g exes against secondary groups, if available
113
+ * Use windows exe semantics on cygwin & msys
114
+ * cwd should be first in path on win32, not last
115
+ * Handle lower-case 'env.Path' on Windows
116
+ * Update docs
117
+ * use single-quotes
118
+
119
+ ## v1.1.0
120
+
121
+ * Add tests, depend on is-absolute
122
+
123
+ ## v1.0.9
124
+
125
+ * which.js: root is allowed to execute files owned by anyone
126
+
127
+ ## v1.0.8
128
+
129
+ * don't use graceful-fs
130
+
131
+ ## v1.0.7
132
+
133
+ * add license to package.json
134
+
135
+ ## v1.0.6
136
+
137
+ * isc license
138
+
139
+ ## 1.0.5
140
+
141
+ * Awful typo
142
+
143
+ ## 1.0.4
144
+
145
+ * Test for path absoluteness properly
146
+ * win: Allow '' as a pathext if cmd has a . in it
147
+
148
+ ## 1.0.3
149
+
150
+ * Remove references to execPath
151
+ * Make `which.sync()` work on Windows by honoring the PATHEXT variable.
152
+ * Make `isExe()` always return true on Windows.
153
+ * MIT
154
+
155
+ ## 1.0.2
156
+
157
+ * Only files can be exes
158
+
159
+ ## 1.0.1
160
+
161
+ * Respect the PATHEXT env for win32 support
162
+ * should 0755 the bin
163
+ * binary
164
+ * guts
165
+ * package
166
+ * 1st
@@ -0,0 +1,46 @@
1
+ Changelog
2
+ =========
3
+
4
+ v0.6.0
5
+ ------
6
+
7
+ - Updated "devDependencies" versions to fix vulnerability alerts
8
+ - Dropped support of io.js and node.js v0.12.x and lower since new versions of
9
+ "devDependencies" couldn't work with those old node.js versions
10
+ (minimal supported version of node.js now is v4.0.0)
11
+
12
+ v0.5.1
13
+ ------
14
+
15
+ - Fix prototype pollution vulnerability (thanks to @mwakerman for the PR)
16
+ - Avoid using deprecated Buffer API (thanks to @ChALkeR for the PR)
17
+
18
+ v0.5.0
19
+ ------
20
+
21
+ - Auto-testing provided by Travis CI;
22
+ - Support older Node.JS versions (`v0.11.x` and `v0.10.x`);
23
+ - Removed tests files from npm package.
24
+
25
+ v0.4.2
26
+ ------
27
+
28
+ - Fix for `null` as an argument.
29
+
30
+ v0.4.1
31
+ ------
32
+
33
+ - Removed test code from <b>npm</b> package
34
+ ([see pull request #21](https://github.com/unclechu/node-deep-extend/pull/21));
35
+ - Increased minimal version of Node from `0.4.0` to `0.12.0`
36
+ (because can't run tests on lesser version anyway).
37
+
38
+ v0.4.0
39
+ ------
40
+
41
+ - **WARNING!** Broken backward compatibility with `v0.3.x`;
42
+ - Fixed bug with extending arrays instead of cloning;
43
+ - Deep cloning for arrays;
44
+ - Check for own property;
45
+ - Fixed some documentation issues;
46
+ - Strict JS mode.