groove-dev 0.22.16 → 0.22.20

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.
@@ -5,12 +5,12 @@
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
6
  <link rel="icon" type="image/png" href="/favicon.png" />
7
7
  <title>Groove GUI</title>
8
- <script type="module" crossorigin src="/assets/index-Bh_3vWAx.js"></script>
8
+ <script type="module" crossorigin src="/assets/index-DnL4LhyZ.js"></script>
9
9
  <link rel="modulepreload" crossorigin href="/assets/vendor-C0HXlhrU.js">
10
10
  <link rel="modulepreload" crossorigin href="/assets/reactflow-BQPfi37R.js">
11
11
  <link rel="modulepreload" crossorigin href="/assets/codemirror-BBL3i_JW.js">
12
12
  <link rel="modulepreload" crossorigin href="/assets/xterm--7_ns2zW.js">
13
- <link rel="stylesheet" crossorigin href="/assets/index-Ba83qhKp.css">
13
+ <link rel="stylesheet" crossorigin href="/assets/index-DOlP78Dt.css">
14
14
  </head>
15
15
  <body>
16
16
  <div id="root"></div>
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@groove-dev/gui",
3
- "version": "0.22.14",
3
+ "version": "0.22.19",
4
4
  "description": "GROOVE GUI — visual agent control plane",
5
5
  "license": "FSL-1.1-Apache-2.0",
6
6
  "type": "module",
@@ -142,7 +142,7 @@ function StructuredMessage({ text }) {
142
142
  return (
143
143
  <div key={idx} className="space-y-1 pl-2">
144
144
  {block.items.map((item, j) => (
145
- <div key={j} className="flex gap-2 text-[12px] text-text-2 font-sans leading-relaxed">
145
+ <div key={j} className="flex gap-2 text-[12px] text-accent/80 font-sans leading-relaxed">
146
146
  <span className="text-accent/50 mt-0.5 flex-shrink-0">-</span>
147
147
  <span className="min-w-0"><InlineFormat text={item} /></span>
148
148
  </div>
@@ -153,7 +153,7 @@ function StructuredMessage({ text }) {
153
153
  return (
154
154
  <div key={idx} className="space-y-1 pl-2">
155
155
  {block.items.map((item, j) => (
156
- <div key={j} className="flex gap-2 text-[12px] text-text-2 font-sans leading-relaxed">
156
+ <div key={j} className="flex gap-2 text-[12px] text-accent/80 font-sans leading-relaxed">
157
157
  <span className="text-text-4 font-mono w-4 text-right flex-shrink-0">{j + 1}.</span>
158
158
  <span className="min-w-0"><InlineFormat text={item} /></span>
159
159
  </div>
@@ -175,7 +175,7 @@ function StructuredMessage({ text }) {
175
175
  );
176
176
  case 'para':
177
177
  default:
178
- return <p key={idx} className="text-[12px] text-text-2 font-sans leading-relaxed"><InlineFormat text={block.content} /></p>;
178
+ return <p key={idx} className="text-[12px] text-accent/80 font-sans leading-relaxed"><InlineFormat text={block.content} /></p>;
179
179
  }
180
180
  })}
181
181
  </div>
@@ -213,12 +213,12 @@ function UserMessage({ msg }) {
213
213
  </div>
214
214
  )}
215
215
  <div className={cn(
216
- 'px-3.5 py-2.5 rounded-lg',
216
+ 'px-3.5 py-2.5 rounded-lg border',
217
217
  isQuery
218
- ? 'bg-info/15 text-info'
219
- : 'bg-accent/15 text-accent',
218
+ ? 'bg-info/10 border-info/25'
219
+ : 'bg-info/10 border-info/25',
220
220
  )}>
221
- <div className="text-[12px] font-sans whitespace-pre-wrap break-words leading-relaxed text-text-0">
221
+ <div className="text-[12px] font-sans whitespace-pre-wrap break-words leading-relaxed text-info">
222
222
  <FormattedText text={msg.text} />
223
223
  </div>
224
224
  </div>
@@ -242,7 +242,7 @@ function AgentMessage({ msg, agent }) {
242
242
  <span className="text-2xs text-text-4 font-sans">{agent?.role}</span>
243
243
  </div>
244
244
  <div className={cn(
245
- 'ml-7 px-3.5 py-3 rounded-lg bg-accent/15 overflow-hidden',
245
+ 'ml-7 px-3.5 py-3 rounded-lg bg-accent/10 border border-accent/25 overflow-hidden',
246
246
  collapsed && 'max-h-[200px] relative',
247
247
  )}>
248
248
  <StructuredMessage text={collapsed ? msg.text.slice(0, 600) : msg.text} />
@@ -386,6 +386,78 @@ function fmtTokens(n) {
386
386
  return String(n);
387
387
  }
388
388
 
389
+ // ── Boot Sequence Animation ──────────────────────────────────
390
+
391
+ function BootSequence({ agent }) {
392
+ const [lines, setLines] = useState([]);
393
+ const bootLines = [
394
+ { text: `Initializing ${agent.name}`, delay: 0 },
395
+ { text: `Role: ${agent.role}`, delay: 400 },
396
+ { text: `Provider: ${agent.provider || 'claude-code'}`, delay: 700 },
397
+ { text: 'Loading workspace context', delay: 1000 },
398
+ { text: 'Scanning project structure', delay: 1400 },
399
+ { text: 'Session active', delay: 1900 },
400
+ ];
401
+
402
+ useEffect(() => {
403
+ const timers = bootLines.map((line, i) =>
404
+ setTimeout(() => setLines((prev) => [...prev, i]), line.delay)
405
+ );
406
+ return () => timers.forEach(clearTimeout);
407
+ }, []);
408
+
409
+ return (
410
+ <div className="flex flex-col justify-center h-full px-2 py-6">
411
+ {/* Agent identity */}
412
+ <div className="flex items-center gap-3 mb-6">
413
+ <div className="relative w-10 h-10">
414
+ <span className="absolute inset-0 rounded-lg border-2 border-transparent border-t-accent animate-spin" style={{ animationDuration: '1s' }} />
415
+ <span className="absolute inset-[3px] rounded-md bg-accent/8" />
416
+ </div>
417
+ <div>
418
+ <p className="text-sm font-bold text-text-0 font-sans">{agent.name}</p>
419
+ <p className="text-2xs text-accent font-mono">starting up</p>
420
+ </div>
421
+ </div>
422
+
423
+ {/* Boot lines */}
424
+ <div className="space-y-2 pl-3 border-l border-accent/15 ml-5">
425
+ {bootLines.map((line, i) => {
426
+ const visible = lines.includes(i);
427
+ const isLast = i === bootLines.length - 1;
428
+ return (
429
+ <div
430
+ key={i}
431
+ className={cn(
432
+ 'flex items-center gap-2.5 transition-all duration-300',
433
+ visible ? 'opacity-100 translate-x-0' : 'opacity-0 -translate-x-2',
434
+ )}
435
+ >
436
+ <span className={cn(
437
+ 'w-1 h-1 rounded-full flex-shrink-0',
438
+ isLast && visible ? 'bg-accent' : visible ? 'bg-text-3' : 'bg-transparent',
439
+ )} />
440
+ <span className={cn(
441
+ 'text-[11px] font-mono',
442
+ isLast && visible ? 'text-accent' : 'text-text-3',
443
+ )}>
444
+ {line.text}
445
+ </span>
446
+ {isLast && visible && (
447
+ <span className="flex gap-0.5 ml-1">
448
+ <span className="w-1 h-1 rounded-full bg-accent animate-pulse" style={{ animationDelay: '0ms' }} />
449
+ <span className="w-1 h-1 rounded-full bg-accent animate-pulse" style={{ animationDelay: '200ms' }} />
450
+ <span className="w-1 h-1 rounded-full bg-accent animate-pulse" style={{ animationDelay: '400ms' }} />
451
+ </span>
452
+ )}
453
+ </div>
454
+ );
455
+ })}
456
+ </div>
457
+ </div>
458
+ );
459
+ }
460
+
389
461
  // ── Main Feed ────────────────────────────────────────────────
390
462
 
391
463
  export function AgentFeed({ agent }) {
@@ -402,12 +474,19 @@ export function AgentFeed({ agent }) {
402
474
 
403
475
  const timeline = useMemo(() => {
404
476
  const items = [];
405
- const chatTexts = new Set(chatHistory.map((m) => m.text));
477
+ const seen = new Set();
406
478
 
479
+ // Deduplicate chat messages (same text within 5s = duplicate)
407
480
  for (const msg of chatHistory) {
481
+ const key = `${msg.from}:${msg.text?.slice(0, 100)}`;
482
+ const dupeWindow = items.find((i) => i.kind === 'chat' && `${i.from}:${i.text?.slice(0, 100)}` === key && Math.abs(i.ts - msg.timestamp) < 5000);
483
+ if (dupeWindow) continue;
408
484
  items.push({ ...msg, kind: 'chat', ts: msg.timestamp });
485
+ seen.add(msg.text);
409
486
  }
410
487
 
488
+ const chatTexts = seen;
489
+
411
490
  const recentActivity = activityLog.slice(-30);
412
491
  for (const entry of recentActivity) {
413
492
  const text = (entry.text || '').trim();
@@ -488,28 +567,17 @@ export function AgentFeed({ agent }) {
488
567
  {/* Messages area */}
489
568
  <div ref={scrollRef} className="flex-1 overflow-y-auto px-4 py-4 space-y-4">
490
569
  {timeline.length === 0 && (
491
- <div className="flex flex-col items-center justify-center h-full text-center py-8">
492
- {isAlive ? (
493
- <>
494
- <div className="relative w-12 h-12 mb-4">
495
- <span className="absolute inset-0 rounded-full border border-accent/20 animate-ping" style={{ animationDuration: '2.5s' }} />
496
- <span className="absolute inset-0 rounded-full bg-accent/6 flex items-center justify-center">
497
- <span className="w-2 h-2 rounded-full bg-accent animate-pulse" />
498
- </span>
499
- </div>
500
- <p className="text-sm font-semibold text-text-0 font-sans">{agent.name}</p>
501
- <p className="text-xs text-text-3 font-sans mt-1">Initializing session...</p>
502
- </>
503
- ) : (
504
- <>
505
- <div className="w-10 h-10 rounded-xl bg-surface-3 flex items-center justify-center mb-3">
506
- <MessageSquare size={18} className="text-text-4" />
507
- </div>
508
- <p className="text-sm font-semibold text-text-0 font-sans">{agent.name}</p>
509
- <p className="text-xs text-text-3 font-sans mt-1">Session complete — send a message to continue</p>
510
- </>
511
- )}
512
- </div>
570
+ isAlive ? (
571
+ <BootSequence agent={agent} />
572
+ ) : (
573
+ <div className="flex flex-col items-center justify-center h-full text-center py-8">
574
+ <div className="w-10 h-10 rounded-xl bg-surface-3 flex items-center justify-center mb-3">
575
+ <MessageSquare size={18} className="text-text-4" />
576
+ </div>
577
+ <p className="text-sm font-semibold text-text-0 font-sans">{agent.name}</p>
578
+ <p className="text-xs text-text-3 font-sans mt-1">Session complete — send a message to continue</p>
579
+ </div>
580
+ )
513
581
  )}
514
582
  {timeline.map((item, i) => {
515
583
  if (item.kind === 'activity-group') {
@@ -0,0 +1,211 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ # [@sapphire/async-queue@1.5.4](https://github.com/sapphiredev/utilities/compare/@sapphire/async-queue@1.5.3...@sapphire/async-queue@1.5.4) - (2024-11-02)
6
+
7
+ ## 🏠 Refactor
8
+
9
+ - Resolve several sonar issues ([ba915f9](https://github.com/sapphiredev/utilities/commit/ba915f93ce0907828ba17b2d5ae009631ceb860d)) ([#823](https://github.com/sapphiredev/utilities/pull/823) by @favna)
10
+
11
+ ## 🐛 Bug Fixes
12
+
13
+ - Move browser imports ([100ffb0](https://github.com/sapphiredev/utilities/commit/100ffb0a2471bb9f74cc580d282d11059e1a0a68)) ([#826](https://github.com/sapphiredev/utilities/pull/826) by @kyranet)
14
+
15
+ # [@sapphire/async-queue@1.5.3](https://github.com/sapphiredev/utilities/compare/@sapphire/async-queue@1.5.2...@sapphire/async-queue@1.5.3) - (2024-07-23)
16
+
17
+ ## 🐛 Bug Fixes
18
+
19
+ - **deps:** Update all non-major dependencies ([083376a](https://github.com/sapphiredev/utilities/commit/083376aac55094dbeddb5194e8a8f0d794b8cceb)) ([#763](https://github.com/sapphiredev/utilities/pull/763) by @renovate[bot])
20
+ - **deps:** Update all non-major dependencies ([e7fdc5d](https://github.com/sapphiredev/utilities/commit/e7fdc5db3632a7f90292ef3978898da32730343a)) ([#752](https://github.com/sapphiredev/utilities/pull/752) by @renovate[bot])
21
+
22
+ ## 📝 Documentation
23
+
24
+ - Add usage example in README ([3815167](https://github.com/sapphiredev/utilities/commit/38151673cac048ccccf4fb00c3c9cc98bbb3c452)) ([#777](https://github.com/sapphiredev/utilities/pull/777) by @kyranet)
25
+
26
+ # [@sapphire/async-queue@1.5.2](https://github.com/sapphiredev/utilities/compare/@sapphire/async-queue@1.5.2...@sapphire/async-queue@1.5.2) - (2024-01-19)
27
+
28
+ ## 🐛 Bug Fixes
29
+
30
+ - Fixed commonjs typings export mapping (#707) ([216ff02](https://github.com/sapphiredev/utilities/commit/216ff0260d63a9590357f9a5069f1ae2b34eaf5d))
31
+
32
+ # [@sapphire/async-queue@1.5.1](https://github.com/sapphiredev/utilities/compare/@sapphire/async-queue@1.5.1...@sapphire/async-queue@1.5.1) - (2023-12-04)
33
+
34
+ ## 🏠 Refactor
35
+
36
+ - Split `@sapphire/time-utilities` into 4 sub-packages (#462) ([574299a](https://github.com/sapphiredev/utilities/commit/574299a99e658f6500a2a7efa587a0919b2d1313))
37
+
38
+ ## 🐛 Bug Fixes
39
+
40
+ - **async-queue:** Properly split CJS, ESM and IIFE ([75f215c](https://github.com/sapphiredev/utilities/commit/75f215cd8b42b3c57a92f2fe01dff59b7edb02d6))
41
+ - Update export mapping for proper ESM/CJS split ([dd0cff8](https://github.com/sapphiredev/utilities/commit/dd0cff8e9b03a15812f25f7a1180501a92422629))
42
+ - **deps:** Update all non-major dependencies (#607) ([9cc8bd0](https://github.com/sapphiredev/utilities/commit/9cc8bd0d4b5d650deab2c913e6c3d713861bae28))
43
+ - **deps:** Update all non-major dependencies (#577) ([291dd67](https://github.com/sapphiredev/utilities/commit/291dd6783e57d8f075ce566218ba076ef6c4bbbd))
44
+ - **deps:** Update all non-major dependencies (#545) ([40ca040](https://github.com/sapphiredev/utilities/commit/40ca040a21d8a0949682051a3a974538183a400e))
45
+ - **deps:** Update all non-major dependencies (#544) ([cc78f17](https://github.com/sapphiredev/utilities/commit/cc78f17390c7f3db08af92bf46a5a70a9c11dd5f))
46
+ - **deps:** Update all non-major dependencies (#532) ([8033d1f](https://github.com/sapphiredev/utilities/commit/8033d1ff7a5a1974134c61f424f171cccb2915e1))
47
+ - **deps:** Update all non-major dependencies (#514) ([21b07d5](https://github.com/sapphiredev/utilities/commit/21b07d5db529a0d982647a60de98e46f36f1ac93))
48
+ - **deps:** Update all non-major dependencies (#505) ([6178296](https://github.com/sapphiredev/utilities/commit/617829649e1e4deeee02b14533b5377cd5bc1fb3))
49
+ - **deps:** Update all non-major dependencies (#466) ([dc08606](https://github.com/sapphiredev/utilities/commit/dc08606a97154e47c65536123ac5f8b1262f7bd2))
50
+ - **deps:** Update all non-major dependencies ([e20f299](https://github.com/sapphiredev/utilities/commit/e20f29906e83cee000aaba9c6827e3bec5173d28))
51
+
52
+ ## 📝 Documentation
53
+
54
+ - Add @06000208 as a contributor ([fa3349e](https://github.com/sapphiredev/utilities/commit/fa3349e55ce4ad008785211dec7bf8e2b5d933df))
55
+ - Add @didinele as a contributor ([42ef7b6](https://github.com/sapphiredev/utilities/commit/42ef7b656c48fd0e720119db1d622c8bba2791e9))
56
+ - Add @goestav as a contributor ([0e56a92](https://github.com/sapphiredev/utilities/commit/0e56a92a4e2d0942bfa207f81a8cb03b32312034))
57
+ - Add @CitTheDev as a contributor ([34169ea](https://github.com/sapphiredev/utilities/commit/34169eae1dc0476ccf5a6c4f36e28602a204829e))
58
+ - Add @legendhimslef as a contributor ([059b6f1](https://github.com/sapphiredev/utilities/commit/059b6f1ab5362d46d58624d06c1aa39192b0716f))
59
+ - Add @r-priyam as a contributor ([fb278ba](https://github.com/sapphiredev/utilities/commit/fb278bacf627ec6fc88752eafeb12df5f3177a2c))
60
+ - Change name of @kyranet (#451) ([df4fdef](https://github.com/sapphiredev/utilities/commit/df4fdefce18659975a4ebc224723638507d02d35))
61
+ - Update @RealShadowNova as a contributor ([a869ba0](https://github.com/sapphiredev/utilities/commit/a869ba0abfad041610b9115187d426aebe671af6))
62
+
63
+ ## 🧪 Testing
64
+
65
+ - Update vitest to coverage v8 ([a4bc6e4](https://github.com/sapphiredev/utilities/commit/a4bc6e4f24ea60143a150ecc76fda6484f172ab9))
66
+ - Cleanup tests ([aec1bb2](https://github.com/sapphiredev/utilities/commit/aec1bb290d0f3c00a1ae4f4c86302ebbb161d348))
67
+
68
+ # [@sapphire/async-queue@1.5.0](https://github.com/sapphiredev/utilities/compare/@sapphire/async-queue@1.4.0...@sapphire/async-queue@1.5.0) - (2022-08-16)
69
+
70
+ ## 🐛 Bug Fixes
71
+
72
+ - **deps:** Update all non-major dependencies ([2308bd7](https://github.com/sapphiredev/utilities/commit/2308bd74356b6b2e0c12995b25f4d8ade4803fe9))
73
+
74
+ ## 🚀 Features
75
+
76
+ - Add `AsyncQueue#abortAll` (#429) ([b351e70](https://github.com/sapphiredev/utilities/commit/b351e70ebef329009daaebba89729ee84bb5704c))
77
+
78
+ # [@sapphire/async-queue@1.4.0](https://github.com/sapphiredev/utilities/compare/@sapphire/async-queue@1.3.1...@sapphire/async-queue@1.4.0) - (2022-08-07)
79
+
80
+ ## 🐛 Bug Fixes
81
+
82
+ - **deps:** Update all non-major dependencies ([84af0db](https://github.com/sapphiredev/utilities/commit/84af0db2db749223b036aa99fe19a2e9af5681c6))
83
+ - **deps:** Update all non-major dependencies ([50cd8de](https://github.com/sapphiredev/utilities/commit/50cd8dea593b6f5ae75571209456b3421e2ca59a))
84
+
85
+ ## 📝 Documentation
86
+
87
+ - Add @muchnameless as a contributor ([a1221fe](https://github.com/sapphiredev/utilities/commit/a1221fea68506e99591d5d00ec552a07c26833f9))
88
+ - Add @enxg as a contributor ([d2382f0](https://github.com/sapphiredev/utilities/commit/d2382f04e3909cb4ad11798a0a10e683f6cf5383))
89
+ - Add @EvolutionX-10 as a contributor ([efc3a32](https://github.com/sapphiredev/utilities/commit/efc3a320a72ae258996dd62866d206c33f8d4961))
90
+ - Add @MajesticString as a contributor ([295b3e9](https://github.com/sapphiredev/utilities/commit/295b3e9849a4b0fe64074bae02f6426378a303c3))
91
+ - Add @Mzato0001 as a contributor ([c790ef2](https://github.com/sapphiredev/utilities/commit/c790ef25df2d7e22888fa9f8169167aa555e9e19))
92
+ - Add @NotKaskus as a contributor ([00da8f1](https://github.com/sapphiredev/utilities/commit/00da8f199137b9277119823f322d1f2d168d928a))
93
+ - Add @imranbarbhuiya as a contributor ([fb674c2](https://github.com/sapphiredev/utilities/commit/fb674c2c5594d41e71662263553dcb4bac9e37f4))
94
+ - Add @axisiscool as a contributor ([ce1aa31](https://github.com/sapphiredev/utilities/commit/ce1aa316871a88d3663efbdf2a42d3d8dfe6a27f))
95
+ - Add @dhruv-kaushikk as a contributor ([ebbf43f](https://github.com/sapphiredev/utilities/commit/ebbf43f63617daba96e72c50a234bf8b64f6ddc4))
96
+ - Add @Commandtechno as a contributor ([f1d69fa](https://github.com/sapphiredev/utilities/commit/f1d69fabe1ee0abe4be08b19e63dbec03102f7ce))
97
+ - Fix typedoc causing OOM crashes ([63ba41c](https://github.com/sapphiredev/utilities/commit/63ba41c4b6678554b1c7043a22d3296db4f59360))
98
+
99
+ ## 🚀 Features
100
+
101
+ - **AsyncQueue:** Add AbortSignal support (#417) ([c0629e7](https://github.com/sapphiredev/utilities/commit/c0629e781ebc3f48e496a0851191b32e91f62fe9))
102
+
103
+ ## 🧪 Testing
104
+
105
+ - Migrate to vitest (#380) ([075ec73](https://github.com/sapphiredev/utilities/commit/075ec73c7a8e3374fad3ada612d37eb4ac36ec8d))
106
+
107
+ ## [1.3.1](https://github.com/sapphiredev/utilities/compare/@sapphire/async-queue@1.3.0...@sapphire/async-queue@1.3.1) (2022-04-01)
108
+
109
+ **Note:** Version bump only for package @sapphire/async-queue
110
+
111
+ # [1.3.0](https://github.com/sapphiredev/utilities/compare/@sapphire/async-queue@1.2.0...@sapphire/async-queue@1.3.0) (2022-03-06)
112
+
113
+ ### Features
114
+
115
+ - allow module: NodeNext ([#306](https://github.com/sapphiredev/utilities/issues/306)) ([9dc6dd6](https://github.com/sapphiredev/utilities/commit/9dc6dd619efab879bb2b0b3c9e64304e10a67ed6))
116
+ - **ts-config:** add multi-config structure ([#281](https://github.com/sapphiredev/utilities/issues/281)) ([b5191d7](https://github.com/sapphiredev/utilities/commit/b5191d7f2416dc5838590c4ff221454925553e37))
117
+
118
+ # [1.2.0](https://github.com/sapphiredev/utilities/compare/@sapphire/async-queue@1.1.9...@sapphire/async-queue@1.2.0) (2022-01-28)
119
+
120
+ ### Features
121
+
122
+ - change build system to tsup ([#270](https://github.com/sapphiredev/utilities/issues/270)) ([365a53a](https://github.com/sapphiredev/utilities/commit/365a53a5517a01a0926cf28a83c96b63f32ed9f8))
123
+
124
+ ## [1.1.9](https://github.com/sapphiredev/utilities/compare/@sapphire/async-queue@1.1.8...@sapphire/async-queue@1.1.9) (2021-11-06)
125
+
126
+ **Note:** Version bump only for package @sapphire/async-queue
127
+
128
+ ## [1.1.8](https://github.com/sapphiredev/utilities/compare/@sapphire/async-queue@1.1.7...@sapphire/async-queue@1.1.8) (2021-10-26)
129
+
130
+ **Note:** Version bump only for package @sapphire/async-queue
131
+
132
+ ## [1.1.7](https://github.com/sapphiredev/utilities/compare/@sapphire/async-queue@1.1.6...@sapphire/async-queue@1.1.7) (2021-10-17)
133
+
134
+ ### Bug Fixes
135
+
136
+ - allow more node & npm versions in engines field ([5977d2a](https://github.com/sapphiredev/utilities/commit/5977d2a30a4b2cfdf84aff3f33af03ffde1bbec5))
137
+
138
+ ## [1.1.6](https://github.com/sapphiredev/utilities/compare/@sapphire/async-queue@1.1.5...@sapphire/async-queue@1.1.6) (2021-10-11)
139
+
140
+ **Note:** Version bump only for package @sapphire/async-queue
141
+
142
+ ## [1.1.5](https://github.com/sapphiredev/utilities/compare/@sapphire/async-queue@1.1.4...@sapphire/async-queue@1.1.5) (2021-10-04)
143
+
144
+ **Note:** Version bump only for package @sapphire/async-queue
145
+
146
+ ## [1.1.4](https://github.com/sapphiredev/utilities/compare/@sapphire/async-queue@1.1.3...@sapphire/async-queue@1.1.4) (2021-06-27)
147
+
148
+ **Note:** Version bump only for package @sapphire/async-queue
149
+
150
+ ## [1.1.3](https://github.com/sapphiredev/utilities/compare/@sapphire/async-queue@1.1.2...@sapphire/async-queue@1.1.3) (2021-06-06)
151
+
152
+ ### Bug Fixes
153
+
154
+ - remove peer deps, update dev deps, update READMEs ([#124](https://github.com/sapphiredev/utilities/issues/124)) ([67256ed](https://github.com/sapphiredev/utilities/commit/67256ed43b915b02a8b5c68230ba82d6210c5032))
155
+
156
+ ## [1.1.2](https://github.com/sapphiredev/utilities/compare/@sapphire/async-queue@1.1.1...@sapphire/async-queue@1.1.2) (2021-05-20)
157
+
158
+ ### Bug Fixes
159
+
160
+ - **async-queue:** mark package as side effect free ([1c4b901](https://github.com/sapphiredev/utilities/commit/1c4b901cda3d14bd085c35cc74e160f844567ba7))
161
+
162
+ ## [1.1.1](https://github.com/sapphiredev/utilities/compare/@sapphire/async-queue@1.1.0...@sapphire/async-queue@1.1.1) (2021-05-02)
163
+
164
+ ### Bug Fixes
165
+
166
+ - drop the `www.` from the SapphireJS URL ([494d89f](https://github.com/sapphiredev/utilities/commit/494d89ffa04f78c195b93d7905b3232884f7d7e2))
167
+ - update all the SapphireJS URLs from `.com` to `.dev` ([f59b46d](https://github.com/sapphiredev/utilities/commit/f59b46d1a0ebd39cad17b17d71cd3b9da808d5fd))
168
+
169
+ # [1.1.0](https://github.com/sapphiredev/utilities/compare/@sapphire/async-queue@1.0.7...@sapphire/async-queue@1.1.0) (2021-04-21)
170
+
171
+ ### Features
172
+
173
+ - add @sapphire/embed-jsx ([#100](https://github.com/sapphiredev/utilities/issues/100)) ([7277a23](https://github.com/sapphiredev/utilities/commit/7277a236015236ed8e81b7882875410facc4ce17))
174
+
175
+ ## [1.0.7](https://github.com/sapphiredev/utilities/compare/@sapphire/async-queue@1.0.6...@sapphire/async-queue@1.0.7) (2021-04-19)
176
+
177
+ ### Bug Fixes
178
+
179
+ - change all Sapphire URLs from "project"->"community" & use our domain where applicable 👨‍🌾🚜 ([#102](https://github.com/sapphiredev/utilities/issues/102)) ([835b408](https://github.com/sapphiredev/utilities/commit/835b408e8e57130c3787aca2e32613346ff23e4d))
180
+
181
+ ## [1.0.6](https://github.com/sapphiredev/utilities/compare/@sapphire/async-queue@1.0.5...@sapphire/async-queue@1.0.6) (2021-04-03)
182
+
183
+ **Note:** Version bump only for package @sapphire/async-queue
184
+
185
+ ## [1.0.5](https://github.com/sapphiredev/utilities/compare/@sapphire/async-queue@1.0.4...@sapphire/async-queue@1.0.5) (2021-03-16)
186
+
187
+ ### Bug Fixes
188
+
189
+ - remove terser from all packages ([#79](https://github.com/sapphiredev/utilities/issues/79)) ([1cfe4e7](https://github.com/sapphiredev/utilities/commit/1cfe4e7c804e62c142495686d2b83b81d0026c02))
190
+
191
+ ## [1.0.4](https://github.com/sapphiredev/utilities/compare/@sapphire/async-queue@1.0.3...@sapphire/async-queue@1.0.4) (2021-02-16)
192
+
193
+ **Note:** Version bump only for package @sapphire/async-queue
194
+
195
+ ## [1.0.3](https://github.com/sapphiredev/utilities/compare/@sapphire/async-queue@1.0.2...@sapphire/async-queue@1.0.3) (2021-02-13)
196
+
197
+ **Note:** Version bump only for package @sapphire/async-queue
198
+
199
+ ## [1.0.2](https://github.com/sapphiredev/utilities/compare/@sapphire/async-queue@1.0.1...@sapphire/async-queue@1.0.2) (2021-01-25)
200
+
201
+ **Note:** Version bump only for package @sapphire/async-queue
202
+
203
+ ## [1.0.1](https://github.com/sapphiredev/utilities/compare/@sapphire/async-queue@1.0.0...@sapphire/async-queue@1.0.1) (2021-01-16)
204
+
205
+ **Note:** Version bump only for package @sapphire/async-queue
206
+
207
+ # 1.0.0 (2021-01-13)
208
+
209
+ ### Features
210
+
211
+ - **async-queue:** add async-queue package ([#56](https://github.com/sapphiredev/utilities/issues/56)) ([ba81832](https://github.com/sapphiredev/utilities/commit/ba8183287dbbc3f3d7d79af6d5a2d3dd8d62f63e))