@privateaim/server-core-worker-kit 0.7.17

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 (82) hide show
  1. package/CHANGELOG.md +472 -0
  2. package/LICENSE +202 -0
  3. package/dist/components/builder/constants.d.ts +32 -0
  4. package/dist/components/builder/constants.d.ts.map +1 -0
  5. package/dist/components/builder/index.d.ts +4 -0
  6. package/dist/components/builder/index.d.ts.map +1 -0
  7. package/dist/components/builder/queue.d.ts +5 -0
  8. package/dist/components/builder/queue.d.ts.map +1 -0
  9. package/dist/components/builder/types.d.ts +35 -0
  10. package/dist/components/builder/types.d.ts.map +1 -0
  11. package/dist/components/core/constants.d.ts +24 -0
  12. package/dist/components/core/constants.d.ts.map +1 -0
  13. package/dist/components/core/index.d.ts +4 -0
  14. package/dist/components/core/index.d.ts.map +1 -0
  15. package/dist/components/core/queue.d.ts +5 -0
  16. package/dist/components/core/queue.d.ts.map +1 -0
  17. package/dist/components/core/types.d.ts +41 -0
  18. package/dist/components/core/types.d.ts.map +1 -0
  19. package/dist/components/index.d.ts +4 -0
  20. package/dist/components/index.d.ts.map +1 -0
  21. package/dist/components/master-images/build/index.d.ts +2 -0
  22. package/dist/components/master-images/build/index.d.ts.map +1 -0
  23. package/dist/components/master-images/build/types.d.ts +18 -0
  24. package/dist/components/master-images/build/types.d.ts.map +1 -0
  25. package/dist/components/master-images/constants.d.ts +26 -0
  26. package/dist/components/master-images/constants.d.ts.map +1 -0
  27. package/dist/components/master-images/index.d.ts +7 -0
  28. package/dist/components/master-images/index.d.ts.map +1 -0
  29. package/dist/components/master-images/push/index.d.ts +2 -0
  30. package/dist/components/master-images/push/index.d.ts.map +1 -0
  31. package/dist/components/master-images/push/types.d.ts +17 -0
  32. package/dist/components/master-images/push/types.d.ts.map +1 -0
  33. package/dist/components/master-images/service/index.d.ts +3 -0
  34. package/dist/components/master-images/service/index.d.ts.map +1 -0
  35. package/dist/components/master-images/service/module.d.ts +16 -0
  36. package/dist/components/master-images/service/module.d.ts.map +1 -0
  37. package/dist/components/master-images/service/singleton.d.ts +3 -0
  38. package/dist/components/master-images/service/singleton.d.ts.map +1 -0
  39. package/dist/components/master-images/synchronize/index.d.ts +2 -0
  40. package/dist/components/master-images/synchronize/index.d.ts.map +1 -0
  41. package/dist/components/master-images/synchronize/types.d.ts +26 -0
  42. package/dist/components/master-images/synchronize/types.d.ts.map +1 -0
  43. package/dist/components/master-images/types.d.ts +40 -0
  44. package/dist/components/master-images/types.d.ts.map +1 -0
  45. package/dist/constants.d.ts +12 -0
  46. package/dist/constants.d.ts.map +1 -0
  47. package/dist/index.cjs +287 -0
  48. package/dist/index.cjs.map +1 -0
  49. package/dist/index.d.ts +3 -0
  50. package/dist/index.d.ts.map +1 -0
  51. package/dist/index.mjs +265 -0
  52. package/dist/index.mjs.map +1 -0
  53. package/dist/utils.d.ts +2 -0
  54. package/dist/utils.d.ts.map +1 -0
  55. package/package.json +41 -0
  56. package/rollup.config.mjs +14 -0
  57. package/src/components/builder/constants.ts +46 -0
  58. package/src/components/builder/index.ts +10 -0
  59. package/src/components/builder/queue.ts +39 -0
  60. package/src/components/builder/types.ts +57 -0
  61. package/src/components/core/constants.ts +38 -0
  62. package/src/components/core/index.ts +10 -0
  63. package/src/components/core/queue.ts +36 -0
  64. package/src/components/core/types.ts +66 -0
  65. package/src/components/index.ts +10 -0
  66. package/src/components/master-images/build/index.ts +8 -0
  67. package/src/components/master-images/build/types.ts +28 -0
  68. package/src/components/master-images/constants.ts +38 -0
  69. package/src/components/master-images/index.ts +14 -0
  70. package/src/components/master-images/push/index.ts +8 -0
  71. package/src/components/master-images/push/types.ts +25 -0
  72. package/src/components/master-images/service/index.ts +9 -0
  73. package/src/components/master-images/service/module.ts +125 -0
  74. package/src/components/master-images/service/singleton.ts +18 -0
  75. package/src/components/master-images/synchronize/index.ts +8 -0
  76. package/src/components/master-images/synchronize/types.ts +37 -0
  77. package/src/components/master-images/types.ts +67 -0
  78. package/src/constants.ts +19 -0
  79. package/src/index.ts +9 -0
  80. package/src/utils.ts +20 -0
  81. package/tsconfig.build.json +11 -0
  82. package/tsconfig.json +10 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,472 @@
1
+ # Changelog
2
+
3
+ ## [0.7.17](https://github.com/PrivateAIM/hub/compare/v0.7.16...v0.7.17) (2025-08-26)
4
+
5
+
6
+ ### Features
7
+
8
+ * rename server-analysis-manager to server-core-worker service ([#1166](https://github.com/PrivateAIM/hub/issues/1166)) ([fd5aa52](https://github.com/PrivateAIM/hub/commit/fd5aa52083d77c4083017b4447043818ea18a200))
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * The following workspace dependencies were updated
14
+ * dependencies
15
+ * @privateaim/core-kit bumped from ^0.8.15 to ^0.8.16
16
+ * @privateaim/kit bumped from ^0.8.15 to ^0.8.16
17
+ * @privateaim/server-kit bumped from ^0.8.15 to ^0.8.16
18
+
19
+ ## [0.7.16](https://github.com/PrivateAIM/hub/compare/v0.7.15...v0.7.16) (2025-07-30)
20
+
21
+
22
+ ### Features
23
+
24
+ * adjusted code references for core -> core-kit package renaming ([321b8ac](https://github.com/PrivateAIM/hub/commit/321b8acb33e4fdd93252c72da34fac34cc86cd9f))
25
+ * allow specifying branch for syncing master-images ([#587](https://github.com/PrivateAIM/hub/issues/587)) ([b6ff9a5](https://github.com/PrivateAIM/hub/commit/b6ff9a54e8b42fcf7dfd2c1cf0e318973c0e13ec))
26
+ * analysis-bucket implementation ([#433](https://github.com/PrivateAIM/hub/issues/433)) ([15329f4](https://github.com/PrivateAIM/hub/commit/15329f42c5f6ebbe4772715ff2e308e41ae9e91a))
27
+ * extract utils and common consts, fns, ... to kit package ([258bbb2](https://github.com/PrivateAIM/hub/commit/258bbb21bfbf671a7cfad3e91740a1737eaf3f71))
28
+ * initial core -> core-kit package renaming ([9ac9709](https://github.com/PrivateAIM/hub/commit/9ac970999922bc76e3f88381f4d3351a51147a46))
29
+ * master image workflow to sync, build & push image/groups ([#574](https://github.com/PrivateAIM/hub/issues/574)) ([146e66f](https://github.com/PrivateAIM/hub/commit/146e66f2408ddd1363e1077a0bd189b87d5b411e))
30
+ * master-images command arguments extension ([#991](https://github.com/PrivateAIM/hub/issues/991)) ([7b8d860](https://github.com/PrivateAIM/hub/commit/7b8d86086af5afcc450833f8b07301346ce32a80))
31
+ * refactoring of master-image workflow ([#845](https://github.com/PrivateAIM/hub/issues/845)) ([7d2b866](https://github.com/PrivateAIM/hub/commit/7d2b8662b24dcf411d3ae8232152fecf53167382))
32
+
33
+
34
+ ### Dependencies
35
+
36
+ * The following workspace dependencies were updated
37
+ * dependencies
38
+ * @privateaim/core-kit bumped from ^0.8.14 to ^0.8.15
39
+ * @privateaim/kit bumped from ^0.8.14 to ^0.8.15
40
+ * @privateaim/server-kit bumped from ^0.8.14 to ^0.8.15
41
+
42
+ ## [0.7.15](https://github.com/PrivateAIM/hub/compare/v0.7.14...v0.7.15) (2025-07-10)
43
+
44
+
45
+ ### Features
46
+
47
+ * adjusted code references for core -> core-kit package renaming ([321b8ac](https://github.com/PrivateAIM/hub/commit/321b8acb33e4fdd93252c72da34fac34cc86cd9f))
48
+ * allow specifying branch for syncing master-images ([#587](https://github.com/PrivateAIM/hub/issues/587)) ([b6ff9a5](https://github.com/PrivateAIM/hub/commit/b6ff9a54e8b42fcf7dfd2c1cf0e318973c0e13ec))
49
+ * analysis-bucket implementation ([#433](https://github.com/PrivateAIM/hub/issues/433)) ([15329f4](https://github.com/PrivateAIM/hub/commit/15329f42c5f6ebbe4772715ff2e308e41ae9e91a))
50
+ * analysis-manager-kit package implementation ([#393](https://github.com/PrivateAIM/hub/issues/393)) ([d9faf4a](https://github.com/PrivateAIM/hub/commit/d9faf4a4580634a62ed58ec994369be1369e33ee))
51
+ * extract utils and common consts, fns, ... to kit package ([258bbb2](https://github.com/PrivateAIM/hub/commit/258bbb21bfbf671a7cfad3e91740a1737eaf3f71))
52
+ * initial core -> core-kit package renaming ([9ac9709](https://github.com/PrivateAIM/hub/commit/9ac970999922bc76e3f88381f4d3351a51147a46))
53
+ * master image workflow to sync, build & push image/groups ([#574](https://github.com/PrivateAIM/hub/issues/574)) ([146e66f](https://github.com/PrivateAIM/hub/commit/146e66f2408ddd1363e1077a0bd189b87d5b411e))
54
+ * master-images command arguments extension ([#991](https://github.com/PrivateAIM/hub/issues/991)) ([7b8d860](https://github.com/PrivateAIM/hub/commit/7b8d86086af5afcc450833f8b07301346ce32a80))
55
+ * queue-router for components & aggregators ([#396](https://github.com/PrivateAIM/hub/issues/396)) ([0da6066](https://github.com/PrivateAIM/hub/commit/0da6066e378cc97ee8d7b98558e5281dda66cbc9))
56
+ * refactoring of master-image workflow ([#845](https://github.com/PrivateAIM/hub/issues/845)) ([7d2b866](https://github.com/PrivateAIM/hub/commit/7d2b8662b24dcf411d3ae8232152fecf53167382))
57
+ * split builder command-exection/event-split ([#412](https://github.com/PrivateAIM/hub/issues/412)) ([13d0d57](https://github.com/PrivateAIM/hub/commit/13d0d575abb45538d79ffef91357e1528c5afb11))
58
+
59
+
60
+ ### Dependencies
61
+
62
+ * The following workspace dependencies were updated
63
+ * dependencies
64
+ * @privateaim/core-kit bumped from ^0.8.13 to ^0.8.14
65
+ * @privateaim/kit bumped from ^0.8.13 to ^0.8.14
66
+ * @privateaim/server-kit bumped from ^0.8.13 to ^0.8.14
67
+
68
+ ## [0.7.14](https://github.com/PrivateAIM/hub/compare/v0.7.13...v0.7.14) (2025-05-05)
69
+
70
+
71
+ ### Features
72
+
73
+ * adjusted code references for core -> core-kit package renaming ([321b8ac](https://github.com/PrivateAIM/hub/commit/321b8acb33e4fdd93252c72da34fac34cc86cd9f))
74
+ * allow specifying branch for syncing master-images ([#587](https://github.com/PrivateAIM/hub/issues/587)) ([b6ff9a5](https://github.com/PrivateAIM/hub/commit/b6ff9a54e8b42fcf7dfd2c1cf0e318973c0e13ec))
75
+ * analysis-bucket implementation ([#433](https://github.com/PrivateAIM/hub/issues/433)) ([15329f4](https://github.com/PrivateAIM/hub/commit/15329f42c5f6ebbe4772715ff2e308e41ae9e91a))
76
+ * analysis-manager-kit package implementation ([#393](https://github.com/PrivateAIM/hub/issues/393)) ([d9faf4a](https://github.com/PrivateAIM/hub/commit/d9faf4a4580634a62ed58ec994369be1369e33ee))
77
+ * extract utils and common consts, fns, ... to kit package ([258bbb2](https://github.com/PrivateAIM/hub/commit/258bbb21bfbf671a7cfad3e91740a1737eaf3f71))
78
+ * initial core -> core-kit package renaming ([9ac9709](https://github.com/PrivateAIM/hub/commit/9ac970999922bc76e3f88381f4d3351a51147a46))
79
+ * master image workflow to sync, build & push image/groups ([#574](https://github.com/PrivateAIM/hub/issues/574)) ([146e66f](https://github.com/PrivateAIM/hub/commit/146e66f2408ddd1363e1077a0bd189b87d5b411e))
80
+ * master-images command arguments extension ([#991](https://github.com/PrivateAIM/hub/issues/991)) ([7b8d860](https://github.com/PrivateAIM/hub/commit/7b8d86086af5afcc450833f8b07301346ce32a80))
81
+ * queue-router for components & aggregators ([#396](https://github.com/PrivateAIM/hub/issues/396)) ([0da6066](https://github.com/PrivateAIM/hub/commit/0da6066e378cc97ee8d7b98558e5281dda66cbc9))
82
+ * refactoring of master-image workflow ([#845](https://github.com/PrivateAIM/hub/issues/845)) ([7d2b866](https://github.com/PrivateAIM/hub/commit/7d2b8662b24dcf411d3ae8232152fecf53167382))
83
+ * split builder command-exection/event-split ([#412](https://github.com/PrivateAIM/hub/issues/412)) ([13d0d57](https://github.com/PrivateAIM/hub/commit/13d0d575abb45538d79ffef91357e1528c5afb11))
84
+
85
+
86
+ ### Dependencies
87
+
88
+ * The following workspace dependencies were updated
89
+ * dependencies
90
+ * @privateaim/core-kit bumped from ^0.8.12 to ^0.8.13
91
+ * @privateaim/kit bumped from ^0.8.12 to ^0.8.13
92
+ * @privateaim/server-kit bumped from ^0.8.12 to ^0.8.13
93
+
94
+ ## [0.7.13](https://github.com/PrivateAIM/hub/compare/v0.7.12...v0.7.13) (2025-04-25)
95
+
96
+
97
+ ### Features
98
+
99
+ * adjusted code references for core -> core-kit package renaming ([321b8ac](https://github.com/PrivateAIM/hub/commit/321b8acb33e4fdd93252c72da34fac34cc86cd9f))
100
+ * allow specifying branch for syncing master-images ([#587](https://github.com/PrivateAIM/hub/issues/587)) ([b6ff9a5](https://github.com/PrivateAIM/hub/commit/b6ff9a54e8b42fcf7dfd2c1cf0e318973c0e13ec))
101
+ * analysis-bucket implementation ([#433](https://github.com/PrivateAIM/hub/issues/433)) ([15329f4](https://github.com/PrivateAIM/hub/commit/15329f42c5f6ebbe4772715ff2e308e41ae9e91a))
102
+ * analysis-manager-kit package implementation ([#393](https://github.com/PrivateAIM/hub/issues/393)) ([d9faf4a](https://github.com/PrivateAIM/hub/commit/d9faf4a4580634a62ed58ec994369be1369e33ee))
103
+ * extract utils and common consts, fns, ... to kit package ([258bbb2](https://github.com/PrivateAIM/hub/commit/258bbb21bfbf671a7cfad3e91740a1737eaf3f71))
104
+ * initial core -> core-kit package renaming ([9ac9709](https://github.com/PrivateAIM/hub/commit/9ac970999922bc76e3f88381f4d3351a51147a46))
105
+ * master image workflow to sync, build & push image/groups ([#574](https://github.com/PrivateAIM/hub/issues/574)) ([146e66f](https://github.com/PrivateAIM/hub/commit/146e66f2408ddd1363e1077a0bd189b87d5b411e))
106
+ * master-images command arguments extension ([#991](https://github.com/PrivateAIM/hub/issues/991)) ([7b8d860](https://github.com/PrivateAIM/hub/commit/7b8d86086af5afcc450833f8b07301346ce32a80))
107
+ * queue-router for components & aggregators ([#396](https://github.com/PrivateAIM/hub/issues/396)) ([0da6066](https://github.com/PrivateAIM/hub/commit/0da6066e378cc97ee8d7b98558e5281dda66cbc9))
108
+ * refactoring of master-image workflow ([#845](https://github.com/PrivateAIM/hub/issues/845)) ([7d2b866](https://github.com/PrivateAIM/hub/commit/7d2b8662b24dcf411d3ae8232152fecf53167382))
109
+ * split builder command-exection/event-split ([#412](https://github.com/PrivateAIM/hub/issues/412)) ([13d0d57](https://github.com/PrivateAIM/hub/commit/13d0d575abb45538d79ffef91357e1528c5afb11))
110
+
111
+
112
+ ### Dependencies
113
+
114
+ * The following workspace dependencies were updated
115
+ * dependencies
116
+ * @privateaim/core-kit bumped from ^0.8.11 to ^0.8.12
117
+ * @privateaim/kit bumped from ^0.8.11 to ^0.8.12
118
+ * @privateaim/server-kit bumped from ^0.8.11 to ^0.8.12
119
+
120
+ ## [0.7.12](https://github.com/PrivateAIM/hub/compare/v0.7.11...v0.7.12) (2025-04-24)
121
+
122
+
123
+ ### Features
124
+
125
+ * adjusted code references for core -> core-kit package renaming ([321b8ac](https://github.com/PrivateAIM/hub/commit/321b8acb33e4fdd93252c72da34fac34cc86cd9f))
126
+ * allow specifying branch for syncing master-images ([#587](https://github.com/PrivateAIM/hub/issues/587)) ([b6ff9a5](https://github.com/PrivateAIM/hub/commit/b6ff9a54e8b42fcf7dfd2c1cf0e318973c0e13ec))
127
+ * analysis-bucket implementation ([#433](https://github.com/PrivateAIM/hub/issues/433)) ([15329f4](https://github.com/PrivateAIM/hub/commit/15329f42c5f6ebbe4772715ff2e308e41ae9e91a))
128
+ * analysis-manager-kit package implementation ([#393](https://github.com/PrivateAIM/hub/issues/393)) ([d9faf4a](https://github.com/PrivateAIM/hub/commit/d9faf4a4580634a62ed58ec994369be1369e33ee))
129
+ * extract utils and common consts, fns, ... to kit package ([258bbb2](https://github.com/PrivateAIM/hub/commit/258bbb21bfbf671a7cfad3e91740a1737eaf3f71))
130
+ * initial core -> core-kit package renaming ([9ac9709](https://github.com/PrivateAIM/hub/commit/9ac970999922bc76e3f88381f4d3351a51147a46))
131
+ * master image workflow to sync, build & push image/groups ([#574](https://github.com/PrivateAIM/hub/issues/574)) ([146e66f](https://github.com/PrivateAIM/hub/commit/146e66f2408ddd1363e1077a0bd189b87d5b411e))
132
+ * master-images command arguments extension ([#991](https://github.com/PrivateAIM/hub/issues/991)) ([7b8d860](https://github.com/PrivateAIM/hub/commit/7b8d86086af5afcc450833f8b07301346ce32a80))
133
+ * queue-router for components & aggregators ([#396](https://github.com/PrivateAIM/hub/issues/396)) ([0da6066](https://github.com/PrivateAIM/hub/commit/0da6066e378cc97ee8d7b98558e5281dda66cbc9))
134
+ * refactoring of master-image workflow ([#845](https://github.com/PrivateAIM/hub/issues/845)) ([7d2b866](https://github.com/PrivateAIM/hub/commit/7d2b8662b24dcf411d3ae8232152fecf53167382))
135
+ * split builder command-exection/event-split ([#412](https://github.com/PrivateAIM/hub/issues/412)) ([13d0d57](https://github.com/PrivateAIM/hub/commit/13d0d575abb45538d79ffef91357e1528c5afb11))
136
+
137
+
138
+ ### Dependencies
139
+
140
+ * The following workspace dependencies were updated
141
+ * dependencies
142
+ * @privateaim/core-kit bumped from ^0.8.10 to ^0.8.11
143
+ * @privateaim/kit bumped from ^0.8.10 to ^0.8.11
144
+ * @privateaim/server-kit bumped from ^0.8.10 to ^0.8.11
145
+
146
+ ## [0.7.11](https://github.com/PrivateAIM/hub/compare/v0.7.10...v0.7.11) (2025-04-23)
147
+
148
+
149
+ ### Features
150
+
151
+ * adjusted code references for core -> core-kit package renaming ([321b8ac](https://github.com/PrivateAIM/hub/commit/321b8acb33e4fdd93252c72da34fac34cc86cd9f))
152
+ * allow specifying branch for syncing master-images ([#587](https://github.com/PrivateAIM/hub/issues/587)) ([b6ff9a5](https://github.com/PrivateAIM/hub/commit/b6ff9a54e8b42fcf7dfd2c1cf0e318973c0e13ec))
153
+ * analysis-bucket implementation ([#433](https://github.com/PrivateAIM/hub/issues/433)) ([15329f4](https://github.com/PrivateAIM/hub/commit/15329f42c5f6ebbe4772715ff2e308e41ae9e91a))
154
+ * analysis-manager-kit package implementation ([#393](https://github.com/PrivateAIM/hub/issues/393)) ([d9faf4a](https://github.com/PrivateAIM/hub/commit/d9faf4a4580634a62ed58ec994369be1369e33ee))
155
+ * extract utils and common consts, fns, ... to kit package ([258bbb2](https://github.com/PrivateAIM/hub/commit/258bbb21bfbf671a7cfad3e91740a1737eaf3f71))
156
+ * initial core -> core-kit package renaming ([9ac9709](https://github.com/PrivateAIM/hub/commit/9ac970999922bc76e3f88381f4d3351a51147a46))
157
+ * master image workflow to sync, build & push image/groups ([#574](https://github.com/PrivateAIM/hub/issues/574)) ([146e66f](https://github.com/PrivateAIM/hub/commit/146e66f2408ddd1363e1077a0bd189b87d5b411e))
158
+ * master-images command arguments extension ([#991](https://github.com/PrivateAIM/hub/issues/991)) ([7b8d860](https://github.com/PrivateAIM/hub/commit/7b8d86086af5afcc450833f8b07301346ce32a80))
159
+ * queue-router for components & aggregators ([#396](https://github.com/PrivateAIM/hub/issues/396)) ([0da6066](https://github.com/PrivateAIM/hub/commit/0da6066e378cc97ee8d7b98558e5281dda66cbc9))
160
+ * refactoring of master-image workflow ([#845](https://github.com/PrivateAIM/hub/issues/845)) ([7d2b866](https://github.com/PrivateAIM/hub/commit/7d2b8662b24dcf411d3ae8232152fecf53167382))
161
+ * split builder command-exection/event-split ([#412](https://github.com/PrivateAIM/hub/issues/412)) ([13d0d57](https://github.com/PrivateAIM/hub/commit/13d0d575abb45538d79ffef91357e1528c5afb11))
162
+
163
+
164
+ ### Dependencies
165
+
166
+ * The following workspace dependencies were updated
167
+ * dependencies
168
+ * @privateaim/core-kit bumped from ^0.8.9 to ^0.8.10
169
+ * @privateaim/kit bumped from ^0.8.9 to ^0.8.10
170
+ * @privateaim/server-kit bumped from ^0.8.9 to ^0.8.10
171
+
172
+ ## [0.7.10](https://github.com/PrivateAIM/hub/compare/v0.7.9...v0.7.10) (2025-04-17)
173
+
174
+
175
+ ### Features
176
+
177
+ * adjusted code references for core -> core-kit package renaming ([321b8ac](https://github.com/PrivateAIM/hub/commit/321b8acb33e4fdd93252c72da34fac34cc86cd9f))
178
+ * allow specifying branch for syncing master-images ([#587](https://github.com/PrivateAIM/hub/issues/587)) ([b6ff9a5](https://github.com/PrivateAIM/hub/commit/b6ff9a54e8b42fcf7dfd2c1cf0e318973c0e13ec))
179
+ * analysis-bucket implementation ([#433](https://github.com/PrivateAIM/hub/issues/433)) ([15329f4](https://github.com/PrivateAIM/hub/commit/15329f42c5f6ebbe4772715ff2e308e41ae9e91a))
180
+ * analysis-manager-kit package implementation ([#393](https://github.com/PrivateAIM/hub/issues/393)) ([d9faf4a](https://github.com/PrivateAIM/hub/commit/d9faf4a4580634a62ed58ec994369be1369e33ee))
181
+ * extract utils and common consts, fns, ... to kit package ([258bbb2](https://github.com/PrivateAIM/hub/commit/258bbb21bfbf671a7cfad3e91740a1737eaf3f71))
182
+ * initial core -> core-kit package renaming ([9ac9709](https://github.com/PrivateAIM/hub/commit/9ac970999922bc76e3f88381f4d3351a51147a46))
183
+ * master image workflow to sync, build & push image/groups ([#574](https://github.com/PrivateAIM/hub/issues/574)) ([146e66f](https://github.com/PrivateAIM/hub/commit/146e66f2408ddd1363e1077a0bd189b87d5b411e))
184
+ * master-images command arguments extension ([#991](https://github.com/PrivateAIM/hub/issues/991)) ([7b8d860](https://github.com/PrivateAIM/hub/commit/7b8d86086af5afcc450833f8b07301346ce32a80))
185
+ * queue-router for components & aggregators ([#396](https://github.com/PrivateAIM/hub/issues/396)) ([0da6066](https://github.com/PrivateAIM/hub/commit/0da6066e378cc97ee8d7b98558e5281dda66cbc9))
186
+ * refactoring of master-image workflow ([#845](https://github.com/PrivateAIM/hub/issues/845)) ([7d2b866](https://github.com/PrivateAIM/hub/commit/7d2b8662b24dcf411d3ae8232152fecf53167382))
187
+ * split builder command-exection/event-split ([#412](https://github.com/PrivateAIM/hub/issues/412)) ([13d0d57](https://github.com/PrivateAIM/hub/commit/13d0d575abb45538d79ffef91357e1528c5afb11))
188
+
189
+
190
+ ### Dependencies
191
+
192
+ * The following workspace dependencies were updated
193
+ * dependencies
194
+ * @privateaim/core-kit bumped from ^0.8.8 to ^0.8.9
195
+ * @privateaim/kit bumped from ^0.8.8 to ^0.8.9
196
+ * @privateaim/server-kit bumped from ^0.8.8 to ^0.8.9
197
+
198
+ ## [0.7.9](https://github.com/PrivateAIM/hub/compare/v0.7.8...v0.7.9) (2025-04-15)
199
+
200
+
201
+ ### Features
202
+
203
+ * adjusted code references for core -> core-kit package renaming ([321b8ac](https://github.com/PrivateAIM/hub/commit/321b8acb33e4fdd93252c72da34fac34cc86cd9f))
204
+ * allow specifying branch for syncing master-images ([#587](https://github.com/PrivateAIM/hub/issues/587)) ([b6ff9a5](https://github.com/PrivateAIM/hub/commit/b6ff9a54e8b42fcf7dfd2c1cf0e318973c0e13ec))
205
+ * analysis-bucket implementation ([#433](https://github.com/PrivateAIM/hub/issues/433)) ([15329f4](https://github.com/PrivateAIM/hub/commit/15329f42c5f6ebbe4772715ff2e308e41ae9e91a))
206
+ * analysis-manager-kit package implementation ([#393](https://github.com/PrivateAIM/hub/issues/393)) ([d9faf4a](https://github.com/PrivateAIM/hub/commit/d9faf4a4580634a62ed58ec994369be1369e33ee))
207
+ * extract utils and common consts, fns, ... to kit package ([258bbb2](https://github.com/PrivateAIM/hub/commit/258bbb21bfbf671a7cfad3e91740a1737eaf3f71))
208
+ * initial core -> core-kit package renaming ([9ac9709](https://github.com/PrivateAIM/hub/commit/9ac970999922bc76e3f88381f4d3351a51147a46))
209
+ * master image workflow to sync, build & push image/groups ([#574](https://github.com/PrivateAIM/hub/issues/574)) ([146e66f](https://github.com/PrivateAIM/hub/commit/146e66f2408ddd1363e1077a0bd189b87d5b411e))
210
+ * master-images command arguments extension ([#991](https://github.com/PrivateAIM/hub/issues/991)) ([7b8d860](https://github.com/PrivateAIM/hub/commit/7b8d86086af5afcc450833f8b07301346ce32a80))
211
+ * queue-router for components & aggregators ([#396](https://github.com/PrivateAIM/hub/issues/396)) ([0da6066](https://github.com/PrivateAIM/hub/commit/0da6066e378cc97ee8d7b98558e5281dda66cbc9))
212
+ * refactoring of master-image workflow ([#845](https://github.com/PrivateAIM/hub/issues/845)) ([7d2b866](https://github.com/PrivateAIM/hub/commit/7d2b8662b24dcf411d3ae8232152fecf53167382))
213
+ * split builder command-exection/event-split ([#412](https://github.com/PrivateAIM/hub/issues/412)) ([13d0d57](https://github.com/PrivateAIM/hub/commit/13d0d575abb45538d79ffef91357e1528c5afb11))
214
+
215
+
216
+ ### Dependencies
217
+
218
+ * The following workspace dependencies were updated
219
+ * dependencies
220
+ * @privateaim/core-kit bumped from ^0.8.7 to ^0.8.8
221
+ * @privateaim/kit bumped from ^0.8.7 to ^0.8.8
222
+ * @privateaim/server-kit bumped from ^0.8.7 to ^0.8.8
223
+
224
+ ## [0.7.8](https://github.com/PrivateAIM/hub/compare/v0.7.7...v0.7.8) (2025-03-12)
225
+
226
+
227
+ ### Features
228
+
229
+ * adjusted code references for core -> core-kit package renaming ([321b8ac](https://github.com/PrivateAIM/hub/commit/321b8acb33e4fdd93252c72da34fac34cc86cd9f))
230
+ * allow specifying branch for syncing master-images ([#587](https://github.com/PrivateAIM/hub/issues/587)) ([b6ff9a5](https://github.com/PrivateAIM/hub/commit/b6ff9a54e8b42fcf7dfd2c1cf0e318973c0e13ec))
231
+ * analysis-bucket implementation ([#433](https://github.com/PrivateAIM/hub/issues/433)) ([15329f4](https://github.com/PrivateAIM/hub/commit/15329f42c5f6ebbe4772715ff2e308e41ae9e91a))
232
+ * analysis-manager-kit package implementation ([#393](https://github.com/PrivateAIM/hub/issues/393)) ([d9faf4a](https://github.com/PrivateAIM/hub/commit/d9faf4a4580634a62ed58ec994369be1369e33ee))
233
+ * extract utils and common consts, fns, ... to kit package ([258bbb2](https://github.com/PrivateAIM/hub/commit/258bbb21bfbf671a7cfad3e91740a1737eaf3f71))
234
+ * initial core -> core-kit package renaming ([9ac9709](https://github.com/PrivateAIM/hub/commit/9ac970999922bc76e3f88381f4d3351a51147a46))
235
+ * master image workflow to sync, build & push image/groups ([#574](https://github.com/PrivateAIM/hub/issues/574)) ([146e66f](https://github.com/PrivateAIM/hub/commit/146e66f2408ddd1363e1077a0bd189b87d5b411e))
236
+ * master-images command arguments extension ([#991](https://github.com/PrivateAIM/hub/issues/991)) ([7b8d860](https://github.com/PrivateAIM/hub/commit/7b8d86086af5afcc450833f8b07301346ce32a80))
237
+ * queue-router for components & aggregators ([#396](https://github.com/PrivateAIM/hub/issues/396)) ([0da6066](https://github.com/PrivateAIM/hub/commit/0da6066e378cc97ee8d7b98558e5281dda66cbc9))
238
+ * refactoring of master-image workflow ([#845](https://github.com/PrivateAIM/hub/issues/845)) ([7d2b866](https://github.com/PrivateAIM/hub/commit/7d2b8662b24dcf411d3ae8232152fecf53167382))
239
+ * split builder command-exection/event-split ([#412](https://github.com/PrivateAIM/hub/issues/412)) ([13d0d57](https://github.com/PrivateAIM/hub/commit/13d0d575abb45538d79ffef91357e1528c5afb11))
240
+
241
+
242
+ ### Dependencies
243
+
244
+ * The following workspace dependencies were updated
245
+ * dependencies
246
+ * @privateaim/core-kit bumped from ^0.8.6 to ^0.8.7
247
+ * @privateaim/kit bumped from ^0.8.6 to ^0.8.7
248
+ * @privateaim/server-kit bumped from ^0.8.6 to ^0.8.7
249
+
250
+ ## [0.7.7](https://github.com/PrivateAIM/hub/compare/v0.7.6...v0.7.7) (2025-03-04)
251
+
252
+
253
+ ### Features
254
+
255
+ * adjusted code references for core -> core-kit package renaming ([321b8ac](https://github.com/PrivateAIM/hub/commit/321b8acb33e4fdd93252c72da34fac34cc86cd9f))
256
+ * allow specifying branch for syncing master-images ([#587](https://github.com/PrivateAIM/hub/issues/587)) ([b6ff9a5](https://github.com/PrivateAIM/hub/commit/b6ff9a54e8b42fcf7dfd2c1cf0e318973c0e13ec))
257
+ * analysis-bucket implementation ([#433](https://github.com/PrivateAIM/hub/issues/433)) ([15329f4](https://github.com/PrivateAIM/hub/commit/15329f42c5f6ebbe4772715ff2e308e41ae9e91a))
258
+ * analysis-manager-kit package implementation ([#393](https://github.com/PrivateAIM/hub/issues/393)) ([d9faf4a](https://github.com/PrivateAIM/hub/commit/d9faf4a4580634a62ed58ec994369be1369e33ee))
259
+ * extract utils and common consts, fns, ... to kit package ([258bbb2](https://github.com/PrivateAIM/hub/commit/258bbb21bfbf671a7cfad3e91740a1737eaf3f71))
260
+ * initial core -> core-kit package renaming ([9ac9709](https://github.com/PrivateAIM/hub/commit/9ac970999922bc76e3f88381f4d3351a51147a46))
261
+ * master image workflow to sync, build & push image/groups ([#574](https://github.com/PrivateAIM/hub/issues/574)) ([146e66f](https://github.com/PrivateAIM/hub/commit/146e66f2408ddd1363e1077a0bd189b87d5b411e))
262
+ * master-images command arguments extension ([#991](https://github.com/PrivateAIM/hub/issues/991)) ([7b8d860](https://github.com/PrivateAIM/hub/commit/7b8d86086af5afcc450833f8b07301346ce32a80))
263
+ * queue-router for components & aggregators ([#396](https://github.com/PrivateAIM/hub/issues/396)) ([0da6066](https://github.com/PrivateAIM/hub/commit/0da6066e378cc97ee8d7b98558e5281dda66cbc9))
264
+ * refactoring of master-image workflow ([#845](https://github.com/PrivateAIM/hub/issues/845)) ([7d2b866](https://github.com/PrivateAIM/hub/commit/7d2b8662b24dcf411d3ae8232152fecf53167382))
265
+ * split builder command-exection/event-split ([#412](https://github.com/PrivateAIM/hub/issues/412)) ([13d0d57](https://github.com/PrivateAIM/hub/commit/13d0d575abb45538d79ffef91357e1528c5afb11))
266
+
267
+
268
+ ### Dependencies
269
+
270
+ * The following workspace dependencies were updated
271
+ * dependencies
272
+ * @privateaim/core-kit bumped from ^0.8.5 to ^0.8.6
273
+ * @privateaim/kit bumped from ^0.8.5 to ^0.8.6
274
+ * @privateaim/server-kit bumped from ^0.8.5 to ^0.8.6
275
+
276
+ ## [0.7.6](https://github.com/PrivateAIM/hub/compare/v0.7.5...v0.7.6) (2025-01-22)
277
+
278
+
279
+ ### Features
280
+
281
+ * adjusted code references for core -> core-kit package renaming ([321b8ac](https://github.com/PrivateAIM/hub/commit/321b8acb33e4fdd93252c72da34fac34cc86cd9f))
282
+ * allow specifying branch for syncing master-images ([#587](https://github.com/PrivateAIM/hub/issues/587)) ([b6ff9a5](https://github.com/PrivateAIM/hub/commit/b6ff9a54e8b42fcf7dfd2c1cf0e318973c0e13ec))
283
+ * analysis-bucket implementation ([#433](https://github.com/PrivateAIM/hub/issues/433)) ([15329f4](https://github.com/PrivateAIM/hub/commit/15329f42c5f6ebbe4772715ff2e308e41ae9e91a))
284
+ * analysis-manager-kit package implementation ([#393](https://github.com/PrivateAIM/hub/issues/393)) ([d9faf4a](https://github.com/PrivateAIM/hub/commit/d9faf4a4580634a62ed58ec994369be1369e33ee))
285
+ * extract utils and common consts, fns, ... to kit package ([258bbb2](https://github.com/PrivateAIM/hub/commit/258bbb21bfbf671a7cfad3e91740a1737eaf3f71))
286
+ * initial core -> core-kit package renaming ([9ac9709](https://github.com/PrivateAIM/hub/commit/9ac970999922bc76e3f88381f4d3351a51147a46))
287
+ * master image workflow to sync, build & push image/groups ([#574](https://github.com/PrivateAIM/hub/issues/574)) ([146e66f](https://github.com/PrivateAIM/hub/commit/146e66f2408ddd1363e1077a0bd189b87d5b411e))
288
+ * queue-router for components & aggregators ([#396](https://github.com/PrivateAIM/hub/issues/396)) ([0da6066](https://github.com/PrivateAIM/hub/commit/0da6066e378cc97ee8d7b98558e5281dda66cbc9))
289
+ * refactoring of master-image workflow ([#845](https://github.com/PrivateAIM/hub/issues/845)) ([7d2b866](https://github.com/PrivateAIM/hub/commit/7d2b8662b24dcf411d3ae8232152fecf53167382))
290
+ * split builder command-exection/event-split ([#412](https://github.com/PrivateAIM/hub/issues/412)) ([13d0d57](https://github.com/PrivateAIM/hub/commit/13d0d575abb45538d79ffef91357e1528c5afb11))
291
+
292
+
293
+ ### Dependencies
294
+
295
+ * The following workspace dependencies were updated
296
+ * dependencies
297
+ * @privateaim/core-kit bumped from ^0.8.4 to ^0.8.5
298
+ * @privateaim/kit bumped from ^0.8.4 to ^0.8.5
299
+ * @privateaim/server-kit bumped from ^0.8.4 to ^0.8.5
300
+
301
+ ## [0.7.5](https://github.com/PrivateAIM/hub/compare/v0.7.4...v0.7.5) (2024-10-24)
302
+
303
+
304
+ ### Features
305
+
306
+ * adjusted code references for core -> core-kit package renaming ([321b8ac](https://github.com/PrivateAIM/hub/commit/321b8acb33e4fdd93252c72da34fac34cc86cd9f))
307
+ * allow specifying branch for syncing master-images ([#587](https://github.com/PrivateAIM/hub/issues/587)) ([b6ff9a5](https://github.com/PrivateAIM/hub/commit/b6ff9a54e8b42fcf7dfd2c1cf0e318973c0e13ec))
308
+ * analysis-bucket implementation ([#433](https://github.com/PrivateAIM/hub/issues/433)) ([15329f4](https://github.com/PrivateAIM/hub/commit/15329f42c5f6ebbe4772715ff2e308e41ae9e91a))
309
+ * analysis-manager-kit package implementation ([#393](https://github.com/PrivateAIM/hub/issues/393)) ([d9faf4a](https://github.com/PrivateAIM/hub/commit/d9faf4a4580634a62ed58ec994369be1369e33ee))
310
+ * extract utils and common consts, fns, ... to kit package ([258bbb2](https://github.com/PrivateAIM/hub/commit/258bbb21bfbf671a7cfad3e91740a1737eaf3f71))
311
+ * initial core -> core-kit package renaming ([9ac9709](https://github.com/PrivateAIM/hub/commit/9ac970999922bc76e3f88381f4d3351a51147a46))
312
+ * master image workflow to sync, build & push image/groups ([#574](https://github.com/PrivateAIM/hub/issues/574)) ([146e66f](https://github.com/PrivateAIM/hub/commit/146e66f2408ddd1363e1077a0bd189b87d5b411e))
313
+ * queue-router for components & aggregators ([#396](https://github.com/PrivateAIM/hub/issues/396)) ([0da6066](https://github.com/PrivateAIM/hub/commit/0da6066e378cc97ee8d7b98558e5281dda66cbc9))
314
+ * split builder command-exection/event-split ([#412](https://github.com/PrivateAIM/hub/issues/412)) ([13d0d57](https://github.com/PrivateAIM/hub/commit/13d0d575abb45538d79ffef91357e1528c5afb11))
315
+
316
+
317
+ ### Dependencies
318
+
319
+ * The following workspace dependencies were updated
320
+ * dependencies
321
+ * @privateaim/core-kit bumped from ^0.8.3 to ^0.8.4
322
+ * @privateaim/kit bumped from ^0.8.3 to ^0.8.4
323
+ * @privateaim/server-kit bumped from ^0.8.3 to ^0.8.4
324
+
325
+ ## [0.7.4](https://github.com/PrivateAIM/hub/compare/v0.7.3...v0.7.4) (2024-09-19)
326
+
327
+
328
+ ### Features
329
+
330
+ * adjusted code references for core -> core-kit package renaming ([321b8ac](https://github.com/PrivateAIM/hub/commit/321b8acb33e4fdd93252c72da34fac34cc86cd9f))
331
+ * allow specifying branch for syncing master-images ([#587](https://github.com/PrivateAIM/hub/issues/587)) ([b6ff9a5](https://github.com/PrivateAIM/hub/commit/b6ff9a54e8b42fcf7dfd2c1cf0e318973c0e13ec))
332
+ * analysis-bucket implementation ([#433](https://github.com/PrivateAIM/hub/issues/433)) ([15329f4](https://github.com/PrivateAIM/hub/commit/15329f42c5f6ebbe4772715ff2e308e41ae9e91a))
333
+ * analysis-manager-kit package implementation ([#393](https://github.com/PrivateAIM/hub/issues/393)) ([d9faf4a](https://github.com/PrivateAIM/hub/commit/d9faf4a4580634a62ed58ec994369be1369e33ee))
334
+ * extract utils and common consts, fns, ... to kit package ([258bbb2](https://github.com/PrivateAIM/hub/commit/258bbb21bfbf671a7cfad3e91740a1737eaf3f71))
335
+ * initial core -> core-kit package renaming ([9ac9709](https://github.com/PrivateAIM/hub/commit/9ac970999922bc76e3f88381f4d3351a51147a46))
336
+ * master image workflow to sync, build & push image/groups ([#574](https://github.com/PrivateAIM/hub/issues/574)) ([146e66f](https://github.com/PrivateAIM/hub/commit/146e66f2408ddd1363e1077a0bd189b87d5b411e))
337
+ * queue-router for components & aggregators ([#396](https://github.com/PrivateAIM/hub/issues/396)) ([0da6066](https://github.com/PrivateAIM/hub/commit/0da6066e378cc97ee8d7b98558e5281dda66cbc9))
338
+ * split builder command-exection/event-split ([#412](https://github.com/PrivateAIM/hub/issues/412)) ([13d0d57](https://github.com/PrivateAIM/hub/commit/13d0d575abb45538d79ffef91357e1528c5afb11))
339
+
340
+
341
+ ### Dependencies
342
+
343
+ * The following workspace dependencies were updated
344
+ * dependencies
345
+ * @privateaim/core-kit bumped from ^0.8.2 to ^0.8.3
346
+ * @privateaim/kit bumped from ^0.8.2 to ^0.8.3
347
+ * @privateaim/server-kit bumped from ^0.8.2 to ^0.8.3
348
+
349
+ ## [0.7.3](https://github.com/PrivateAIM/hub/compare/v0.7.2...v0.7.3) (2024-08-28)
350
+
351
+
352
+ ### Features
353
+
354
+ * adjusted code references for core -> core-kit package renaming ([321b8ac](https://github.com/PrivateAIM/hub/commit/321b8acb33e4fdd93252c72da34fac34cc86cd9f))
355
+ * allow specifying branch for syncing master-images ([#587](https://github.com/PrivateAIM/hub/issues/587)) ([b6ff9a5](https://github.com/PrivateAIM/hub/commit/b6ff9a54e8b42fcf7dfd2c1cf0e318973c0e13ec))
356
+ * analysis-bucket implementation ([#433](https://github.com/PrivateAIM/hub/issues/433)) ([15329f4](https://github.com/PrivateAIM/hub/commit/15329f42c5f6ebbe4772715ff2e308e41ae9e91a))
357
+ * analysis-manager-kit package implementation ([#393](https://github.com/PrivateAIM/hub/issues/393)) ([d9faf4a](https://github.com/PrivateAIM/hub/commit/d9faf4a4580634a62ed58ec994369be1369e33ee))
358
+ * extract utils and common consts, fns, ... to kit package ([258bbb2](https://github.com/PrivateAIM/hub/commit/258bbb21bfbf671a7cfad3e91740a1737eaf3f71))
359
+ * initial core -> core-kit package renaming ([9ac9709](https://github.com/PrivateAIM/hub/commit/9ac970999922bc76e3f88381f4d3351a51147a46))
360
+ * master image workflow to sync, build & push image/groups ([#574](https://github.com/PrivateAIM/hub/issues/574)) ([146e66f](https://github.com/PrivateAIM/hub/commit/146e66f2408ddd1363e1077a0bd189b87d5b411e))
361
+ * queue-router for components & aggregators ([#396](https://github.com/PrivateAIM/hub/issues/396)) ([0da6066](https://github.com/PrivateAIM/hub/commit/0da6066e378cc97ee8d7b98558e5281dda66cbc9))
362
+ * split builder command-exection/event-split ([#412](https://github.com/PrivateAIM/hub/issues/412)) ([13d0d57](https://github.com/PrivateAIM/hub/commit/13d0d575abb45538d79ffef91357e1528c5afb11))
363
+
364
+
365
+ ### Dependencies
366
+
367
+ * The following workspace dependencies were updated
368
+ * dependencies
369
+ * @privateaim/core-kit bumped from ^0.8.1 to ^0.8.2
370
+ * @privateaim/kit bumped from ^0.8.1 to ^0.8.2
371
+ * @privateaim/server-kit bumped from ^0.8.1 to ^0.8.2
372
+
373
+ ## [0.7.2](https://github.com/PrivateAIM/hub/compare/v0.7.1...v0.7.2) (2024-08-19)
374
+
375
+
376
+ ### Features
377
+
378
+ * adjusted code references for core -> core-kit package renaming ([321b8ac](https://github.com/PrivateAIM/hub/commit/321b8acb33e4fdd93252c72da34fac34cc86cd9f))
379
+ * allow specifying branch for syncing master-images ([#587](https://github.com/PrivateAIM/hub/issues/587)) ([b6ff9a5](https://github.com/PrivateAIM/hub/commit/b6ff9a54e8b42fcf7dfd2c1cf0e318973c0e13ec))
380
+ * analysis-bucket implementation ([#433](https://github.com/PrivateAIM/hub/issues/433)) ([15329f4](https://github.com/PrivateAIM/hub/commit/15329f42c5f6ebbe4772715ff2e308e41ae9e91a))
381
+ * analysis-manager-kit package implementation ([#393](https://github.com/PrivateAIM/hub/issues/393)) ([d9faf4a](https://github.com/PrivateAIM/hub/commit/d9faf4a4580634a62ed58ec994369be1369e33ee))
382
+ * extract utils and common consts, fns, ... to kit package ([258bbb2](https://github.com/PrivateAIM/hub/commit/258bbb21bfbf671a7cfad3e91740a1737eaf3f71))
383
+ * initial core -> core-kit package renaming ([9ac9709](https://github.com/PrivateAIM/hub/commit/9ac970999922bc76e3f88381f4d3351a51147a46))
384
+ * master image workflow to sync, build & push image/groups ([#574](https://github.com/PrivateAIM/hub/issues/574)) ([146e66f](https://github.com/PrivateAIM/hub/commit/146e66f2408ddd1363e1077a0bd189b87d5b411e))
385
+ * queue-router for components & aggregators ([#396](https://github.com/PrivateAIM/hub/issues/396)) ([0da6066](https://github.com/PrivateAIM/hub/commit/0da6066e378cc97ee8d7b98558e5281dda66cbc9))
386
+ * split builder command-exection/event-split ([#412](https://github.com/PrivateAIM/hub/issues/412)) ([13d0d57](https://github.com/PrivateAIM/hub/commit/13d0d575abb45538d79ffef91357e1528c5afb11))
387
+
388
+
389
+ ### Dependencies
390
+
391
+ * The following workspace dependencies were updated
392
+ * dependencies
393
+ * @privateaim/core-kit bumped from ^0.8.0 to ^0.8.1
394
+ * @privateaim/kit bumped from ^0.8.0 to ^0.8.1
395
+ * @privateaim/server-kit bumped from ^0.8.0 to ^0.8.1
396
+
397
+ ## [0.7.1](https://github.com/PrivateAIM/hub/compare/v0.7.0...v0.7.1) (2024-07-02)
398
+
399
+
400
+ ### Dependencies
401
+
402
+ * The following workspace dependencies were updated
403
+ * dependencies
404
+ * @privateaim/core-kit bumped from ^0.7.0 to ^0.8.0
405
+ * @privateaim/kit bumped from ^0.7.0 to ^0.8.0
406
+ * @privateaim/server-kit bumped from ^0.7.0 to ^0.8.0
407
+
408
+ ## [0.7.0](https://github.com/PrivateAIM/hub/compare/v0.6.0...v0.7.0) (2024-06-26)
409
+
410
+
411
+ ### Features
412
+
413
+ * adjusted code references for core -> core-kit package renaming ([321b8ac](https://github.com/PrivateAIM/hub/commit/321b8acb33e4fdd93252c72da34fac34cc86cd9f))
414
+ * analysis-bucket implementation ([#433](https://github.com/PrivateAIM/hub/issues/433)) ([15329f4](https://github.com/PrivateAIM/hub/commit/15329f42c5f6ebbe4772715ff2e308e41ae9e91a))
415
+ * analysis-manager-kit package implementation ([#393](https://github.com/PrivateAIM/hub/issues/393)) ([d9faf4a](https://github.com/PrivateAIM/hub/commit/d9faf4a4580634a62ed58ec994369be1369e33ee))
416
+ * extract utils and common consts, fns, ... to kit package ([258bbb2](https://github.com/PrivateAIM/hub/commit/258bbb21bfbf671a7cfad3e91740a1737eaf3f71))
417
+ * initial core -> core-kit package renaming ([9ac9709](https://github.com/PrivateAIM/hub/commit/9ac970999922bc76e3f88381f4d3351a51147a46))
418
+ * queue-router for components & aggregators ([#396](https://github.com/PrivateAIM/hub/issues/396)) ([0da6066](https://github.com/PrivateAIM/hub/commit/0da6066e378cc97ee8d7b98558e5281dda66cbc9))
419
+ * split builder command-exection/event-split ([#412](https://github.com/PrivateAIM/hub/issues/412)) ([13d0d57](https://github.com/PrivateAIM/hub/commit/13d0d575abb45538d79ffef91357e1528c5afb11))
420
+
421
+
422
+ ### Dependencies
423
+
424
+ * The following workspace dependencies were updated
425
+ * dependencies
426
+ * @privateaim/core-kit bumped from ^0.6.0 to ^0.7.0
427
+ * @privateaim/kit bumped from ^0.6.0 to ^0.7.0
428
+ * @privateaim/server-kit bumped from ^0.6.0 to ^0.7.0
429
+
430
+ ## [0.6.0](https://github.com/PrivateAIM/hub/compare/server-analysis-manager-kit-v0.5.0...server-analysis-manager-kit-v0.6.0) (2024-06-25)
431
+
432
+
433
+ ### Features
434
+
435
+ * adjusted code references for core -> core-kit package renaming ([321b8ac](https://github.com/PrivateAIM/hub/commit/321b8acb33e4fdd93252c72da34fac34cc86cd9f))
436
+ * initial core -> core-kit package renaming ([9ac9709](https://github.com/PrivateAIM/hub/commit/9ac970999922bc76e3f88381f4d3351a51147a46))
437
+
438
+
439
+ ### Dependencies
440
+
441
+ * The following workspace dependencies were updated
442
+ * dependencies
443
+ * @privateaim/core-kit bumped from ^0.5.0 to ^0.6.0
444
+ * @privateaim/kit bumped from ^0.5.0 to ^0.6.0
445
+ * @privateaim/server-kit bumped from ^0.5.0 to ^0.6.0
446
+
447
+ ## [0.5.0](https://github.com/PrivateAIM/hub/compare/server-analysis-manager-kit-v0.4.0...server-analysis-manager-kit-v0.5.0) (2024-06-12)
448
+
449
+
450
+ ### Miscellaneous Chores
451
+
452
+ * **server-analysis-manager-kit:** Synchronize main versions
453
+
454
+
455
+ ### Dependencies
456
+
457
+ * The following workspace dependencies were updated
458
+ * dependencies
459
+ * @privateaim/core bumped from ^0.4.0 to ^0.5.0
460
+ * @privateaim/kit bumped from ^0.4.0 to ^0.5.0
461
+ * @privateaim/server-kit bumped from ^0.4.0 to ^0.5.0
462
+
463
+ ## [0.4.0](https://github.com/PrivateAIM/hub/compare/server-analysis-manager-kit-v0.4.0...server-analysis-manager-kit-v0.4.0) (2024-06-12)
464
+
465
+
466
+ ### Features
467
+
468
+ * analysis-bucket implementation ([#433](https://github.com/PrivateAIM/hub/issues/433)) ([15329f4](https://github.com/PrivateAIM/hub/commit/15329f42c5f6ebbe4772715ff2e308e41ae9e91a))
469
+ * analysis-manager-kit package implementation ([#393](https://github.com/PrivateAIM/hub/issues/393)) ([d9faf4a](https://github.com/PrivateAIM/hub/commit/d9faf4a4580634a62ed58ec994369be1369e33ee))
470
+ * extract utils and common consts, fns, ... to kit package ([258bbb2](https://github.com/PrivateAIM/hub/commit/258bbb21bfbf671a7cfad3e91740a1737eaf3f71))
471
+ * queue-router for components & aggregators ([#396](https://github.com/PrivateAIM/hub/issues/396)) ([0da6066](https://github.com/PrivateAIM/hub/commit/0da6066e378cc97ee8d7b98558e5281dda66cbc9))
472
+ * split builder command-exection/event-split ([#412](https://github.com/PrivateAIM/hub/issues/412)) ([13d0d57](https://github.com/PrivateAIM/hub/commit/13d0d575abb45538d79ffef91357e1528c5afb11))