@vc-shell/create-vc-app 2.0.0-alpha.2 → 2.0.0-alpha.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.
Files changed (59) hide show
  1. package/CHANGELOG.md +2770 -0
  2. package/dist/commands/init.d.ts.map +1 -1
  3. package/dist/commands/init.test.d.ts +2 -0
  4. package/dist/commands/init.test.d.ts.map +1 -0
  5. package/dist/engine/codegen.d.ts.map +1 -1
  6. package/dist/engine/helpers.d.ts +1 -1
  7. package/dist/engine/helpers.d.ts.map +1 -1
  8. package/dist/engine/helpers.test.d.ts +2 -0
  9. package/dist/engine/helpers.test.d.ts.map +1 -0
  10. package/dist/engine/template.d.ts.map +1 -1
  11. package/dist/engine/template.test.d.ts +2 -0
  12. package/dist/engine/template.test.d.ts.map +1 -0
  13. package/dist/index.js +172 -170
  14. package/dist/output.d.ts.map +1 -1
  15. package/dist/templates/dynamic-module/_package.json.ejs +6 -6
  16. package/dist/templates/dynamic-module/src/modules/index.ts.ejs +8 -5
  17. package/dist/templates/dynamic-module/tsconfig.json +1 -1
  18. package/dist/templates/dynamic-module/vite.config.mts.ejs +1 -1
  19. package/dist/templates/host-app/_github/COMMIT_CONVENTION.md +1 -1
  20. package/dist/templates/host-app/_package.json.ejs +7 -10
  21. package/dist/templates/host-app/src/main.ts.ejs +17 -15
  22. package/dist/templates/host-app/tsconfig.json +1 -0
  23. package/dist/templates/host-app/vite.config.mts.ejs +3 -6
  24. package/dist/templates/module/composables/useDetails.ts.ejs +41 -38
  25. package/dist/templates/module/index.ts.ejs +11 -8
  26. package/dist/templates/module/locales/en.json.ejs +33 -22
  27. package/dist/templates/module/pages/details.vue.ejs +83 -111
  28. package/dist/templates/module/pages/list.vue.ejs +88 -117
  29. package/dist/templates/sample-module/index.ts +11 -8
  30. package/dist/templates/sample-module/pages/details.vue +20 -47
  31. package/dist/templates/sample-module/pages/list.vue +107 -154
  32. package/dist/templates/standalone/_github/COMMIT_CONVENTION.md +1 -1
  33. package/dist/templates/standalone/_package.json.ejs +15 -18
  34. package/dist/templates/standalone/eslint.config.mjs +31 -0
  35. package/dist/templates/standalone/src/bootstrap.ts.ejs +5 -5
  36. package/dist/templates/standalone/src/main.ts.ejs +29 -23
  37. package/dist/templates/standalone/tsconfig.json +1 -0
  38. package/dist/types.d.ts +2 -2
  39. package/dist/types.d.ts.map +1 -1
  40. package/package.json +5 -5
  41. package/LICENSE +0 -12
  42. package/dist/templates/host-app/public/assets/1.jpeg +0 -0
  43. package/dist/templates/host-app/public/assets/2.jpg +0 -0
  44. package/dist/templates/host-app/public/assets/3.jpg +0 -0
  45. package/dist/templates/host-app/public/assets/app-select.svg +0 -11
  46. package/dist/templates/host-app/public/assets/avatar.jpg +0 -0
  47. package/dist/templates/host-app/public/assets/empty.png +0 -0
  48. package/dist/templates/host-app/src/shims-vue.d.ts +0 -27
  49. package/dist/templates/host-app/src/vue-i18n.d.ts +0 -10
  50. package/dist/templates/standalone/_eslintignore +0 -3
  51. package/dist/templates/standalone/_eslintrc.js +0 -41
  52. package/dist/templates/standalone/public/assets/1.jpeg +0 -0
  53. package/dist/templates/standalone/public/assets/2.jpg +0 -0
  54. package/dist/templates/standalone/public/assets/3.jpg +0 -0
  55. package/dist/templates/standalone/public/assets/app-select.svg +0 -11
  56. package/dist/templates/standalone/public/assets/avatar.jpg +0 -0
  57. package/dist/templates/standalone/public/assets/empty.png +0 -0
  58. package/dist/templates/standalone/src/shims-vue.d.ts +0 -27
  59. package/dist/templates/standalone/src/vue-i18n.d.ts +0 -10
package/CHANGELOG.md ADDED
@@ -0,0 +1,2770 @@
1
+ # [2.0.0-alpha.20](https://github.com/VirtoCommerce/vc-shell/compare/v2.0.0-alpha.18...v2.0.0-alpha.20) (2026-03-23)
2
+
3
+ **Note:** Version bump only for package @vc-shell/create-vc-app
4
+
5
+ # [2.0.0-alpha.19](https://github.com/VirtoCommerce/vc-shell/compare/v2.0.0-alpha.18...v2.0.0-alpha.19) (2026-03-23)
6
+
7
+ **Note:** Version bump only for package @vc-shell/create-vc-app
8
+
9
+ # [2.0.0-alpha.18](https://github.com/VirtoCommerce/vc-shell/compare/v2.0.0-alpha.17...v2.0.0-alpha.18) (2026-03-23)
10
+
11
+ **Note:** Version bump only for package @vc-shell/create-vc-app
12
+
13
+ # [2.0.0-alpha.17](https://github.com/VirtoCommerce/vc-shell/compare/v2.0.0-alpha.16...v2.0.0-alpha.17) (2026-03-23)
14
+
15
+
16
+ ### Bug Fixes
17
+
18
+ * **vc-app:** use non-interactive CLI mode with full flag set for /vc-app create ([b113262](https://github.com/VirtoCommerce/vc-shell/commit/b113262317d340b2d076cdd46a3ab79ec2f9b147))
19
+
20
+
21
+ ### Features
22
+
23
+ * **vc-app-skill:** migrate skill content from create-vc-app to standalone package ([1ac8945](https://github.com/VirtoCommerce/vc-shell/commit/1ac894510ca32cad22efb226117127f76085f85a))
24
+ * **vc-app:** add curated module examples from vendor-portal ([9cdf07a](https://github.com/VirtoCommerce/vc-shell/commit/9cdf07a11de7f8d8b11806e7c79ed9a2c950262a))
25
+ * **vc-app:** add details path patterns with nested types handling ([49ebd16](https://github.com/VirtoCommerce/vc-shell/commit/49ebd1673563a636c38913f858028590ea99763d))
26
+ * **vc-app:** add entry-point skill with command routing ([e20072a](https://github.com/VirtoCommerce/vc-shell/commit/e20072a62883325dff909020b747c942fcd575d1))
27
+ * **vc-app:** add knowledge index, module structure, and list path patterns ([2f9f176](https://github.com/VirtoCommerce/vc-shell/commit/2f9f176476cd14d57d42abe2122a9449dff078fd))
28
+ * **vc-app:** add subagent prompts for code generation ([4dbc259](https://github.com/VirtoCommerce/vc-shell/commit/4dbc25948199d7f40a45d1fb4f17cf12d7985798))
29
+ * **vc-app:** add supporting patterns (toolbar, navigation, widgets) with API verification ([8bce97c](https://github.com/VirtoCommerce/vc-shell/commit/8bce97c29c2524753a7408f572985cf4e7da6475))
30
+ * **vc-app:** create skill directory structure and docs sync script ([d52d881](https://github.com/VirtoCommerce/vc-shell/commit/d52d8810328568efb129658388aa87b10ecbb318))
31
+ # [2.0.0-alpha.16](https://github.com/VirtoCommerce/vc-shell/compare/v2.0.0-alpha.15...v2.0.0-alpha.16) (2026-03-20)
32
+
33
+ **Note:** Version bump only for package @vc-shell/create-vc-app
34
+
35
+ # [2.0.0-alpha.15](https://github.com/VirtoCommerce/vc-shell/compare/v2.0.0-alpha.14...v2.0.0-alpha.15) (2026-03-20)
36
+
37
+ **Note:** Version bump only for package @vc-shell/create-vc-app
38
+
39
+ # [2.0.0-alpha.14](https://github.com/VirtoCommerce/vc-shell/compare/v2.0.0-alpha.13...v2.0.0-alpha.14) (2026-03-20)
40
+
41
+ **Note:** Version bump only for package @vc-shell/create-vc-app
42
+
43
+ # [2.0.0-alpha.13](https://github.com/VirtoCommerce/vc-shell/compare/v2.0.0-alpha.12...v2.0.0-alpha.13) (2026-03-20)
44
+
45
+ **Note:** Version bump only for package @vc-shell/create-vc-app
46
+
47
+ # [2.0.0-alpha.12](https://github.com/VirtoCommerce/vc-shell/compare/v2.0.0-alpha.11...v2.0.0-alpha.12) (2026-03-19)
48
+
49
+
50
+ ### Features
51
+
52
+ * **create-vc-app:** update blade templates to use useBlade() without boilerplate ([5d1f148](https://github.com/VirtoCommerce/vc-shell/commit/5d1f148720f15512e2db0768d320a70ba417dc3e))
53
+ # [2.0.0-alpha.11](https://github.com/VirtoCommerce/vc-shell/compare/v2.0.0-alpha.10...v2.0.0-alpha.11) (2026-03-13)
54
+
55
+ **Note:** Version bump only for package @vc-shell/create-vc-app
56
+
57
+ # [2.0.0-alpha.10](https://github.com/VirtoCommerce/vc-shell/compare/v2.0.0-alpha.9...v2.0.0-alpha.10) (2026-03-13)
58
+
59
+
60
+ ### Bug Fixes
61
+
62
+ * **create-vc-app:** update templates to use @vc-shell/mf-host and @vc-shell/mf-module ([ba86a3e](https://github.com/VirtoCommerce/vc-shell/commit/ba86a3e9cab2e73269b6b56215282c5f3fc6535c))
63
+ # [2.0.0-alpha.9](https://github.com/VirtoCommerce/vc-shell/compare/v2.0.0-alpha.8...v2.0.0-alpha.9) (2026-03-12)
64
+
65
+ **Note:** Version bump only for package @vc-shell/create-vc-app
66
+
67
+ # [2.0.0-alpha.8](https://github.com/VirtoCommerce/vc-shell/compare/v2.0.0-alpha.7...v2.0.0-alpha.8) (2026-03-12)
68
+
69
+ **Note:** Version bump only for package @vc-shell/create-vc-app
70
+
71
+ # [2.0.0-alpha.7](https://github.com/VirtoCommerce/vc-shell/compare/v2.0.0-alpha.6...v2.0.0-alpha.7) (2026-03-11)
72
+
73
+
74
+ ### Bug Fixes
75
+
76
+ * remove duplicate changelog entries caused by multiline regex bug ([2f27d4c](https://github.com/VirtoCommerce/vc-shell/commit/2f27d4c2ca81452ddc1042af47a4648348e7e323))
77
+ # [2.0.0-alpha.6](https://github.com/VirtoCommerce/vc-shell/compare/v2.0.0-alpha.5...v2.0.0-alpha.6) (2026-03-10)
78
+
79
+ **Note:** Version bump only for package @vc-shell/create-vc-app
80
+
81
+ # [2.0.0-alpha.5](https://github.com/VirtoCommerce/vc-shell/compare/v2.0.0-alpha.4...v2.0.0-alpha.5) (2026-03-10)
82
+
83
+ **Note:** Version bump only for package @vc-shell/create-vc-app
84
+
85
+ # [2.0.0-alpha.4](https://github.com/VirtoCommerce/vc-shell/compare/v2.0.0-alpha.3...v2.0.0-alpha.4) (2026-03-10)
86
+
87
+ **Note:** Version bump only for package @vc-shell/create-vc-app
88
+
89
+ # [2.0.0-alpha.3](https://github.com/VirtoCommerce/vc-shell/compare/v2.0.0-alpha.2...v2.0.0-alpha.3) (2026-03-10)
90
+
91
+ **Note:** Version bump only for package @vc-shell/create-vc-app
92
+
93
+ # [2.0.0-alpha.2](https://github.com/VirtoCommerce/vc-shell/compare/v1.2.4-beta.8...v2.0.0-alpha.2) (2026-03-10)
94
+
95
+ ### Code Refactoring
96
+
97
+ - remove unused components and update package resolutions ([26ff398](https://github.com/VirtoCommerce/vc-shell/commit/26ff398739d75b23f7f700542920a117e0022ff3))
98
+
99
+ **Note:** Version bump only for package @vc-shell/create-vc-app
100
+
101
+ # [2.0.0-alpha.1](https://github.com/VirtoCommerce/vc-shell/compare/v2.0.0-alpha.0...v2.0.0-alpha.1) (2026-03-10)
102
+
103
+ **Note:** Version bump only for package @vc-shell/create-vc-app
104
+
105
+ # [2.0.0-alpha.0](https://github.com/VirtoCommerce/vc-shell/compare/v1.2.4-beta.8...v2.0.0-alpha.0) (2026-03-10)
106
+
107
+ ### Features
108
+
109
+ - **create-vc-app:** add v2 templates for all project types ([60f38b7](https://github.com/VirtoCommerce/vc-shell/commit/60f38b7b6228846929730a79b01ecc61ba201144))
110
+ - **create-vc-app:** add v2 foundation — types, helpers, template engine, codegen, commands ([5c52c34](https://github.com/VirtoCommerce/vc-shell/commit/5c52c349655f19872adbd0c7e5deee6c9e49a5c5))
111
+
112
+ ### Bug Fixes
113
+
114
+ - **create-vc-app:** add missing alias to Dashboard route in standalone template ([90d31a4](https://github.com/VirtoCommerce/vc-shell/commit/90d31a40a2c4ba8fcc0a426ea132eb2e03c26e3a))
115
+
116
+ ### Code Refactoring
117
+
118
+ - **create-vc-app:** remove legacy v1 templates and update entry point ([8204599](https://github.com/VirtoCommerce/vc-shell/commit/820459901f57aa80da4d7f0e00f5931f79f05c58))
119
+
120
+ ## [1.2.4-beta.8](https://github.com/VirtoCommerce/vc-shell/compare/v1.2.4-beta.7...v1.2.4-beta.8) (2026-03-04)
121
+
122
+ **Note:** Version bump only for package @vc-shell/create-vc-app
123
+
124
+ ## [1.2.4-beta.7](https://github.com/VirtoCommerce/vc-shell/compare/v1.2.4-beta.6...v1.2.4-beta.7) (2026-03-04)
125
+
126
+ **Note:** Version bump only for package @vc-shell/create-vc-app
127
+
128
+ ## [1.2.4-beta.6](https://github.com/VirtoCommerce/vc-shell/compare/v1.2.4-beta.5...v1.2.4-beta.6) (2026-03-04)
129
+
130
+ **Note:** Version bump only for package @vc-shell/create-vc-app
131
+
132
+ ## [1.2.4-beta.5](https://github.com/VirtoCommerce/vc-shell/compare/v1.2.4-beta.4...v1.2.4-beta.5) (2026-03-04)
133
+
134
+ ### Bug Fixes
135
+
136
+ - **cli:** use :loading prop instead of v-loading directive in blade templates ([99ca705](https://github.com/VirtoCommerce/vc-shell/commit/99ca705cadf1e4686ea26cc576537c6f9aa9060e))
137
+
138
+ ## [1.2.4-beta.4](https://github.com/VirtoCommerce/vc-shell/compare/v1.2.4-beta.3...v1.2.4-beta.4) (2026-02-24)
139
+
140
+ **Note:** Version bump only for package @vc-shell/create-vc-app
141
+
142
+ ## [1.2.4-beta.3](https://github.com/VirtoCommerce/vc-shell/compare/v1.2.4-beta.2...v1.2.4-beta.3) (2026-02-20)
143
+
144
+ ### Code Refactoring
145
+
146
+ - configure path aliases and migrate imports ([bfffc3c](https://github.com/VirtoCommerce/vc-shell/commit/bfffc3cbe8029cf875e49941061b582825cad9a6))
147
+
148
+ ## [1.2.4-beta.2](https://github.com/VirtoCommerce/vc-shell/compare/v1.2.4-beta.1...v1.2.4-beta.2) (2026-02-16)
149
+
150
+ **Note:** Version bump only for package @vc-shell/create-vc-app
151
+
152
+ ## [1.2.4-beta.1](https://github.com/VirtoCommerce/vc-shell/compare/v1.2.4-beta.0...v1.2.4-beta.1) (2026-02-16)
153
+
154
+ **Note:** Version bump only for package @vc-shell/create-vc-app
155
+
156
+ ## [1.2.4-beta.0](https://github.com/VirtoCommerce/vc-shell/compare/v1.2.3-beta.1...v1.2.4-beta.0) (2026-02-16)
157
+
158
+ ### Bug Fixes
159
+
160
+ - **router:** update routes to include ForgotPassword and adjust background handling ([900c45d](https://github.com/VirtoCommerce/vc-shell/commit/900c45d9cc2812622ccdd369da209c516a66c75f))
161
+
162
+ ## [1.2.3-beta.1](https://github.com/VirtoCommerce/vc-shell/compare/v1.2.3...v1.2.3-beta.1) (2026-01-26)
163
+
164
+ **Note:** Version bump only for package @vc-shell/create-vc-app
165
+
166
+ ## [1.2.3](https://github.com/VirtoCommerce/vc-shell/compare/v1.2.2...v1.2.3) (2026-01-12)
167
+
168
+ **Note:** Version bump only for package @vc-shell/create-vc-app
169
+
170
+ ## [1.2.2](https://github.com/VirtoCommerce/vc-shell/compare/v1.2.3-beta.0...v1.2.2) (2026-01-12)
171
+
172
+ **Note:** Version bump only for package @vc-shell/create-vc-app
173
+
174
+ ## [1.2.3-beta.0](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.99-alpha.14...v1.2.3-beta.0) (2025-12-26)
175
+
176
+ **Note:** Version bump only for package @vc-shell/create-vc-app
177
+
178
+ ## [1.1.99-alpha.14](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.99-alpha.13...v1.1.99-alpha.14) (2025-11-27)
179
+
180
+ **Note:** Version bump only for package @vc-shell/create-vc-app
181
+
182
+ ## [1.1.99-alpha.13](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.99-alpha.12...v1.1.99-alpha.13) (2025-11-27)
183
+
184
+ **Note:** Version bump only for package @vc-shell/create-vc-app
185
+
186
+ ## [1.1.99-alpha.12](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.99-alpha.11...v1.1.99-alpha.12) (2025-11-27)
187
+
188
+ **Note:** Version bump only for package @vc-shell/create-vc-app
189
+
190
+ ## [1.1.99-alpha.11](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.99-alpha.10...v1.1.99-alpha.11) (2025-11-27)
191
+
192
+ **Note:** Version bump only for package @vc-shell/create-vc-app
193
+
194
+ ## [1.1.99-alpha.10](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.99-alpha.9...v1.1.99-alpha.10) (2025-11-27)
195
+
196
+ **Note:** Version bump only for package @vc-shell/create-vc-app
197
+
198
+ ## [1.1.99-alpha.9](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.99-alpha.8...v1.1.99-alpha.9) (2025-11-26)
199
+
200
+ **Note:** Version bump only for package @vc-shell/create-vc-app
201
+
202
+ ## [1.1.99-alpha.8](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.99-alpha.7...v1.1.99-alpha.8) (2025-11-25)
203
+
204
+ **Note:** Version bump only for package @vc-shell/create-vc-app
205
+
206
+ ## [1.1.99-alpha.7](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.99-alpha.6...v1.1.99-alpha.7) (2025-11-25)
207
+
208
+ **Note:** Version bump only for package @vc-shell/create-vc-app
209
+
210
+ ## [1.1.99-alpha.6](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.99-alpha.5...v1.1.99-alpha.6) (2025-11-25)
211
+
212
+ **Note:** Version bump only for package @vc-shell/create-vc-app
213
+
214
+ ## [1.1.99-alpha.5](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.99-alpha.4...v1.1.99-alpha.5) (2025-11-25)
215
+
216
+ **Note:** Version bump only for package @vc-shell/create-vc-app
217
+
218
+ ## [1.1.99-alpha.4](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.99-alpha.3...v1.1.99-alpha.4) (2025-11-25)
219
+
220
+ **Note:** Version bump only for package @vc-shell/create-vc-app
221
+
222
+ ## [1.1.99-alpha.3](https://github.com/VirtoCommerce/vc-shell/compare/v1.2.1...v1.1.99-alpha.3) (2025-11-25)
223
+
224
+ ### Features
225
+
226
+ - add comprehensive AI guides and prompts for VC-Shell framework ([15f3d8d](https://github.com/VirtoCommerce/vc-shell/commit/15f3d8d5b52f3a0ac7a5a753f639d74406f92e77))
227
+ - add comprehensive documentation and CLI enhancements for create-vc-app ([b03ebb3](https://github.com/VirtoCommerce/vc-shell/commit/b03ebb3c50923c11c57f3fef609b8a8ab6873670))
228
+ - update auth providers and fix tsx path in pre-commit hook ([a92d957](https://github.com/VirtoCommerce/vc-shell/commit/a92d957e2b0a0be177519e7256af9279d3419713))
229
+
230
+ ### Bug Fixes
231
+
232
+ - update template path in getTemplateRoot function for correct template resolution ([9072ae4](https://github.com/VirtoCommerce/vc-shell/commit/9072ae4d74abbaa2fceec382a4b5042fa8747ae5))
233
+ - correct template path in create-app workflow for accurate template rendering ([3974046](https://github.com/VirtoCommerce/vc-shell/commit/3974046b5a753e00e199c93d44da020c83942af3))
234
+
235
+ ### Documentation
236
+
237
+ - update ([f71f076](https://github.com/VirtoCommerce/vc-shell/commit/f71f076ee32f25804237b5604068ff00e46bc706))
238
+
239
+ ### Code Refactoring
240
+
241
+ - **ai-codegen:** improve code quality and project organization ([b5dcaef](https://github.com/VirtoCommerce/vc-shell/commit/b5dcaef03900d9d717721114da3995875da10774))
242
+
243
+ ## [1.2.1](https://github.com/VirtoCommerce/vc-shell/compare/v1.2.0...v1.2.1) (2025-11-13)
244
+
245
+ **Note:** Version bump only for package @vc-shell/create-vc-app
246
+
247
+ ## [1.2.0](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.99-alpha.2...v1.2.0) (2025-11-13)
248
+
249
+ **Note:** Version bump only for package @vc-shell/create-vc-app
250
+
251
+ ## [1.1.99-alpha.2](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.99-alpha.1...v1.1.99-alpha.2) (2025-11-07)
252
+
253
+ ### Bug Fixes
254
+
255
+ - update template path in getTemplateRoot function for correct template resolution ([9072ae4](https://github.com/VirtoCommerce/vc-shell/commit/9072ae4d74abbaa2fceec382a4b5042fa8747ae5))
256
+
257
+ ## [1.1.99-alpha.1](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.99-alpha.0...v1.1.99-alpha.1) (2025-11-07)
258
+
259
+ ### Bug Fixes
260
+
261
+ - correct template path in create-app workflow for accurate template rendering ([3974046](https://github.com/VirtoCommerce/vc-shell/commit/3974046b5a753e00e199c93d44da020c83942af3))
262
+
263
+ ### Documentation
264
+
265
+ - update ([f71f076](https://github.com/VirtoCommerce/vc-shell/commit/f71f076ee32f25804237b5604068ff00e46bc706))
266
+
267
+ ## [1.1.99-alpha.0](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.98-rc.5...v1.1.99-alpha.0) (2025-11-07)
268
+
269
+ **Note:** Version bump only for package @vc-shell/create-vc-app
270
+
271
+ ## [1.1.98-rc.5](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.98-rc.4...v1.1.98-rc.5) (2025-11-07)
272
+
273
+ ### Features
274
+
275
+ - add comprehensive AI guides and prompts for VC-Shell framework ([15f3d8d](https://github.com/VirtoCommerce/vc-shell/commit/15f3d8d5b52f3a0ac7a5a753f639d74406f92e77))
276
+ - add comprehensive documentation and CLI enhancements for create-vc-app ([b03ebb3](https://github.com/VirtoCommerce/vc-shell/commit/b03ebb3c50923c11c57f3fef609b8a8ab6873670))
277
+ - update auth providers and fix tsx path in pre-commit hook ([a92d957](https://github.com/VirtoCommerce/vc-shell/commit/a92d957e2b0a0be177519e7256af9279d3419713))
278
+
279
+ ## [1.1.98-rc.4](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.98-rc.3...v1.1.98-rc.4) (2025-10-24)
280
+
281
+ **Note:** Version bump only for package @vc-shell/create-vc-app
282
+
283
+ ## [1.1.98-rc.3](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.98-rc.2...v1.1.98-rc.3) (2025-10-24)
284
+
285
+ **Note:** Version bump only for package @vc-shell/create-vc-app
286
+
287
+ ## [1.1.98-rc.2](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.98-rc.1...v1.1.98-rc.2) (2025-10-24)
288
+
289
+ **Note:** Version bump only for package @vc-shell/create-vc-app
290
+
291
+ ## [1.1.98-rc.1](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.98-rc.0...v1.1.98-rc.1) (2025-10-24)
292
+
293
+ **Note:** Version bump only for package @vc-shell/create-vc-app
294
+
295
+ ## [1.1.98-rc.0](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.97...v1.1.98-rc.0) (2025-10-24)
296
+
297
+ **Note:** Version bump only for package @vc-shell/create-vc-app
298
+
299
+ ## [1.1.97](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.96...v1.1.97) (2025-10-24)
300
+
301
+ **Note:** Version bump only for package @vc-shell/create-vc-app
302
+
303
+ ## [1.1.96](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.95...v1.1.96) (2025-10-24)
304
+
305
+ **Note:** Version bump only for package @vc-shell/create-vc-app
306
+
307
+ ## [1.1.95](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.94...v1.1.95) (2025-10-23)
308
+
309
+ **Note:** Version bump only for package @vc-shell/create-vc-app
310
+
311
+ ## [1.1.94](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.93...v1.1.94) (2025-10-23)
312
+
313
+ **Note:** Version bump only for package @vc-shell/create-vc-app
314
+
315
+ ## [1.1.93](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.92...v1.1.93) (2025-10-23)
316
+
317
+ **Note:** Version bump only for package @vc-shell/create-vc-app
318
+
319
+ ## [1.1.92](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.91...v1.1.92) (2025-10-17)
320
+
321
+ **Note:** Version bump only for package @vc-shell/create-vc-app
322
+
323
+ ## [1.1.91](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.91-alpha.5...v1.1.91) (2025-10-17)
324
+
325
+ **Note:** Version bump only for package @vc-shell/create-vc-app
326
+
327
+ ## [1.1.91-alpha.5](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.91-alpha.4...v1.1.91-alpha.5) (2025-10-14)
328
+
329
+ **Note:** Version bump only for package @vc-shell/create-vc-app
330
+
331
+ ## [1.1.91-alpha.4](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.91-alpha.3...v1.1.91-alpha.4) (2025-10-14)
332
+
333
+ **Note:** Version bump only for package @vc-shell/create-vc-app
334
+
335
+ ## [1.1.91-alpha.3](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.91-alpha.2...v1.1.91-alpha.3) (2025-10-14)
336
+
337
+ **Note:** Version bump only for package @vc-shell/create-vc-app
338
+
339
+ ## [1.1.91-alpha.2](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.91-alpha.1...v1.1.91-alpha.2) (2025-10-14)
340
+
341
+ **Note:** Version bump only for package @vc-shell/create-vc-app
342
+
343
+ ## [1.1.91-alpha.1](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.90...v1.1.91-alpha.1) (2025-10-14)
344
+
345
+ ### Features
346
+
347
+ - update auth providers and fix tsx path in pre-commit hook ([a92d957](https://github.com/VirtoCommerce/vc-shell/commit/a92d957e2b0a0be177519e7256af9279d3419713))
348
+
349
+ ## [1.1.90](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.89...v1.1.90) (2025-10-08)
350
+
351
+ **Note:** Version bump only for package @vc-shell/create-vc-app
352
+
353
+ ## [1.1.89](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.88...v1.1.89) (2025-10-08)
354
+
355
+ ### Features
356
+
357
+ - **create-vc-app:** enhance module functionality with new features and localization improvements ([7042215](https://github.com/VirtoCommerce/vc-shell/commit/7042215352e358961c5515dbbde39ba2ce058802))
358
+
359
+ ## [1.1.88](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.87...v1.1.88) (2025-10-07)
360
+
361
+ **Note:** Version bump only for package @vc-shell/create-vc-app
362
+
363
+ ## [1.1.87](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.86...v1.1.87) (2025-10-06)
364
+
365
+ **Note:** Version bump only for package @vc-shell/create-vc-app
366
+
367
+ ## [1.1.86](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.85...v1.1.86) (2025-10-06)
368
+
369
+ **Note:** Version bump only for package @vc-shell/create-vc-app
370
+
371
+ ## [1.1.85](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.84...v1.1.85) (2025-10-03)
372
+
373
+ **Note:** Version bump only for package @vc-shell/create-vc-app
374
+
375
+ ## [1.1.84](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.84-alpha.0...v1.1.84) (2025-09-30)
376
+
377
+ **Note:** Version bump only for package @vc-shell/create-vc-app
378
+
379
+ ## [1.1.84-alpha.0](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.83...v1.1.84-alpha.0) (2025-09-30)
380
+
381
+ **Note:** Version bump only for package @vc-shell/create-vc-app
382
+
383
+ ## [1.1.83](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.83-alpha.0...v1.1.83) (2025-09-30)
384
+
385
+ ### Features
386
+
387
+ - **create-vc-app:** add type definitions for internationalization properties in Vue components ([c215a55](https://github.com/VirtoCommerce/vc-shell/commit/c215a558a113dfc48b53667a6f32ab2537f311f0))
388
+
389
+ ## [1.1.83-alpha.0](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.82...v1.1.83-alpha.0) (2025-09-24)
390
+
391
+ **Note:** Version bump only for package @vc-shell/create-vc-app
392
+
393
+ ## [1.1.82](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.81...v1.1.82) (2025-09-23)
394
+
395
+ **Note:** Version bump only for package @vc-shell/create-vc-app
396
+
397
+ ## [1.1.81](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.80...v1.1.81) (2025-09-23)
398
+
399
+ **Note:** Version bump only for package @vc-shell/create-vc-app
400
+
401
+ ## [1.1.80](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.79...v1.1.80) (2025-09-22)
402
+
403
+ **Note:** Version bump only for package @vc-shell/create-vc-app
404
+
405
+ ## [1.1.79](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.78...v1.1.79) (2025-09-18)
406
+
407
+ **Note:** Version bump only for package @vc-shell/create-vc-app
408
+
409
+ ## [1.1.78](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.77...v1.1.78) (2025-09-12)
410
+
411
+ ### Features
412
+
413
+ - **locales:** add dashboard menu translation to English locale ([710ea73](https://github.com/VirtoCommerce/vc-shell/commit/710ea732a7fa79ad84f637634e3ca8f0c77bb097))
414
+
415
+ ## [1.1.77](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.76...v1.1.77) (2025-09-11)
416
+
417
+ **Note:** Version bump only for package @vc-shell/create-vc-app
418
+
419
+ ## [1.1.76](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.75...v1.1.76) (2025-09-10)
420
+
421
+ **Note:** Version bump only for package @vc-shell/create-vc-app
422
+
423
+ ## [1.1.75](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.74...v1.1.75) (2025-09-10)
424
+
425
+ **Note:** Version bump only for package @vc-shell/create-vc-app
426
+
427
+ ## [1.1.74](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.73...v1.1.74) (2025-09-08)
428
+
429
+ **Note:** Version bump only for package @vc-shell/create-vc-app
430
+
431
+ ## [1.1.73](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.72...v1.1.73) (2025-09-04)
432
+
433
+ ### Bug Fixes
434
+
435
+ - **create-vc-app:** integrate bootstrap function into main application file ([3eded62](https://github.com/VirtoCommerce/vc-shell/commit/3eded6272e424d8599ab14ec25666d8d8ed92557))
436
+
437
+ ## [1.1.72](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.71...v1.1.72) (2025-08-25)
438
+
439
+ **Note:** Version bump only for package @vc-shell/create-vc-app
440
+
441
+ ## [1.1.71](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.70...v1.1.71) (2025-08-21)
442
+
443
+ **Note:** Version bump only for package @vc-shell/create-vc-app
444
+
445
+ ## [1.1.70](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.69...v1.1.70) (2025-08-20)
446
+
447
+ **Note:** Version bump only for package @vc-shell/create-vc-app
448
+
449
+ ## [1.1.69](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.68...v1.1.69) (2025-08-13)
450
+
451
+ **Note:** Version bump only for package @vc-shell/create-vc-app
452
+
453
+ ## [1.1.68](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.67...v1.1.68) (2025-07-31)
454
+
455
+ **Note:** Version bump only for package @vc-shell/create-vc-app
456
+
457
+ ## [1.1.67](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.66...v1.1.67) (2025-07-31)
458
+
459
+ **Note:** Version bump only for package @vc-shell/create-vc-app
460
+
461
+ ## [1.1.66](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.65...v1.1.66) (2025-07-30)
462
+
463
+ **Note:** Version bump only for package @vc-shell/create-vc-app
464
+
465
+ ## [1.1.65](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.64...v1.1.65) (2025-07-29)
466
+
467
+ **Note:** Version bump only for package @vc-shell/create-vc-app
468
+
469
+ ## [1.1.64](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.63...v1.1.64) (2025-07-25)
470
+
471
+ **Note:** Version bump only for package @vc-shell/create-vc-app
472
+
473
+ ## [1.1.63](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.62...v1.1.63) (2025-07-25)
474
+
475
+ **Note:** Version bump only for package @vc-shell/create-vc-app
476
+
477
+ ## [1.1.62](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.61...v1.1.62) (2025-07-24)
478
+
479
+ **Note:** Version bump only for package @vc-shell/create-vc-app
480
+
481
+ ## [1.1.61](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.60...v1.1.61) (2025-07-23)
482
+
483
+ ### Code Refactoring
484
+
485
+ - rename unused route params with underscore prefix to follow linting rules ([47fbd94](https://github.com/VirtoCommerce/vc-shell/commit/47fbd942c2ccf715ae573e6e4517574e4ef2c69e))
486
+
487
+ ## [1.1.60](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.59...v1.1.60) (2025-07-17)
488
+
489
+ ### Features
490
+
491
+ - **create-vc-app:** implement initial dashboard setup with welcome widget and routing ([d924e71](https://github.com/VirtoCommerce/vc-shell/commit/d924e715467f766b88bd746ac31a7a2b4dec168f))
492
+
493
+ ## [1.1.59](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.58...v1.1.59) (2025-07-11)
494
+
495
+ **Note:** Version bump only for package @vc-shell/create-vc-app
496
+
497
+ ## [1.1.58](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.57...v1.1.58) (2025-07-10)
498
+
499
+ **Note:** Version bump only for package @vc-shell/create-vc-app
500
+
501
+ ## [1.1.57](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.56...v1.1.57) (2025-07-10)
502
+
503
+ **Note:** Version bump only for package @vc-shell/create-vc-app
504
+
505
+ ## [1.1.56](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.55...v1.1.56) (2025-07-08)
506
+
507
+ **Note:** Version bump only for package @vc-shell/create-vc-app
508
+
509
+ ## [1.1.55](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.54...v1.1.55) (2025-07-07)
510
+
511
+ **Note:** Version bump only for package @vc-shell/create-vc-app
512
+
513
+ ## [1.1.54](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.53...v1.1.54) (2025-07-07)
514
+
515
+ ### Features
516
+
517
+ - **cli:** enhance CLI argument parsing and validation, add help and version options ([f8508cc](https://github.com/VirtoCommerce/vc-shell/commit/f8508ccac11bce142a03839e44b893520e9546ce))
518
+
519
+ ## [1.1.53](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.52...v1.1.53) (2025-07-04)
520
+
521
+ **Note:** Version bump only for package @vc-shell/create-vc-app
522
+
523
+ ## [1.1.52](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.51...v1.1.52) (2025-07-02)
524
+
525
+ **Note:** Version bump only for package @vc-shell/create-vc-app
526
+
527
+ ## [1.1.51](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.50...v1.1.51) (2025-07-02)
528
+
529
+ **Note:** Version bump only for package @vc-shell/create-vc-app
530
+
531
+ ## [1.1.50](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.49...v1.1.50) (2025-07-02)
532
+
533
+ ### Code Refactoring
534
+
535
+ - **shims-vue:** remove unused dynamic module definitions and clean up global interface ([7c03443](https://github.com/VirtoCommerce/vc-shell/commit/7c03443880413cd0d24ebeefe8aa8f9f28c47516))
536
+
537
+ ## [1.1.49](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.48...v1.1.49) (2025-07-02)
538
+
539
+ **Note:** Version bump only for package @vc-shell/create-vc-app
540
+
541
+ ## [1.1.48](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.47...v1.1.48) (2025-07-02)
542
+
543
+ **Note:** Version bump only for package @vc-shell/create-vc-app
544
+
545
+ ## [1.1.47](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.46...v1.1.47) (2025-07-02)
546
+
547
+ **Note:** Version bump only for package @vc-shell/create-vc-app
548
+
549
+ ## [1.1.46](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.45...v1.1.46) (2025-07-02)
550
+
551
+ **Note:** Version bump only for package @vc-shell/create-vc-app
552
+
553
+ ## [1.1.45](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.44...v1.1.45) (2025-07-01)
554
+
555
+ **Note:** Version bump only for package @vc-shell/create-vc-app
556
+
557
+ ## [1.1.44](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.43...v1.1.44) (2025-06-30)
558
+
559
+ **Note:** Version bump only for package @vc-shell/create-vc-app
560
+
561
+ ## [1.1.43](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.42...v1.1.43) (2025-06-27)
562
+
563
+ **Note:** Version bump only for package @vc-shell/create-vc-app
564
+
565
+ ## [1.1.42](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.41...v1.1.42) (2025-06-27)
566
+
567
+ **Note:** Version bump only for package @vc-shell/create-vc-app
568
+
569
+ ## [1.1.41](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.40...v1.1.41) (2025-06-27)
570
+
571
+ **Note:** Version bump only for package @vc-shell/create-vc-app
572
+
573
+ ## [1.1.40](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.39...v1.1.40) (2025-06-27)
574
+
575
+ **Note:** Version bump only for package @vc-shell/create-vc-app
576
+
577
+ ## [1.1.39](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.38...v1.1.39) (2025-06-26)
578
+
579
+ **Note:** Version bump only for package @vc-shell/create-vc-app
580
+
581
+ ## [1.1.38](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.37...v1.1.38) (2025-06-25)
582
+
583
+ **Note:** Version bump only for package @vc-shell/create-vc-app
584
+
585
+ ## [1.1.37](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.36...v1.1.37) (2025-06-25)
586
+
587
+ **Note:** Version bump only for package @vc-shell/create-vc-app
588
+
589
+ ## [1.1.36](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.35...v1.1.36) (2025-06-24)
590
+
591
+ **Note:** Version bump only for package @vc-shell/create-vc-app
592
+
593
+ ## [1.1.35](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.34...v1.1.35) (2025-06-24)
594
+
595
+ **Note:** Version bump only for package @vc-shell/create-vc-app
596
+
597
+ ## [1.1.34](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.33...v1.1.34) (2025-06-23)
598
+
599
+ **Note:** Version bump only for package @vc-shell/create-vc-app
600
+
601
+ ## [1.1.33](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.32...v1.1.33) (2025-06-23)
602
+
603
+ **Note:** Version bump only for package @vc-shell/create-vc-app
604
+
605
+ ## [1.1.32](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.31...v1.1.32) (2025-06-23)
606
+
607
+ **Note:** Version bump only for package @vc-shell/create-vc-app
608
+
609
+ ## [1.1.31](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.30...v1.1.31) (2025-06-23)
610
+
611
+ ### Documentation
612
+
613
+ - **api-client:** update README.md to include new features and improvements for API client generation ([0784bc0](https://github.com/VirtoCommerce/vc-shell/commit/0784bc01e4e494f3bbeed6faedc23a61a6e40a47))
614
+
615
+ ## [1.1.30](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.29...v1.1.30) (2025-06-11)
616
+
617
+ **Note:** Version bump only for package @vc-shell/create-vc-app
618
+
619
+ ## [1.1.29](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.28...v1.1.29) (2025-06-05)
620
+
621
+ **Note:** Version bump only for package @vc-shell/create-vc-app
622
+
623
+ ## [1.1.28](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.27...v1.1.28) (2025-06-04)
624
+
625
+ **Note:** Version bump only for package @vc-shell/create-vc-app
626
+
627
+ ## [1.1.27](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.26...v1.1.27) (2025-06-04)
628
+
629
+ **Note:** Version bump only for package @vc-shell/create-vc-app
630
+
631
+ ## [1.1.26](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.25...v1.1.26) (2025-06-04)
632
+
633
+ ### Code Refactoring
634
+
635
+ - **theme:** update theme management to support localization and improve theme registration logic ([0d78946](https://github.com/VirtoCommerce/vc-shell/commit/0d78946fb8a98414e67626cd46b46d51ae78987a))
636
+
637
+ ## [1.1.25](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.24...v1.1.25) (2025-05-30)
638
+
639
+ **Note:** Version bump only for package @vc-shell/create-vc-app
640
+
641
+ ## [1.1.24](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.23...v1.1.24) (2025-05-29)
642
+
643
+ **Note:** Version bump only for package @vc-shell/create-vc-app
644
+
645
+ ## [1.1.23](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.22...v1.1.23) (2025-05-29)
646
+
647
+ **Note:** Version bump only for package @vc-shell/create-vc-app
648
+
649
+ ## [1.1.22](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.21...v1.1.22) (2025-05-28)
650
+
651
+ **Note:** Version bump only for package @vc-shell/create-vc-app
652
+
653
+ ## [1.1.21](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.20...v1.1.21) (2025-05-28)
654
+
655
+ **Note:** Version bump only for package @vc-shell/create-vc-app
656
+
657
+ ## [1.1.20](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.19...v1.1.20) (2025-05-28)
658
+
659
+ **Note:** Version bump only for package @vc-shell/create-vc-app
660
+
661
+ ## [1.1.19](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.18...v1.1.19) (2025-05-28)
662
+
663
+ **Note:** Version bump only for package @vc-shell/create-vc-app
664
+
665
+ ## [1.1.18](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.17...v1.1.18) (2025-05-27)
666
+
667
+ **Note:** Version bump only for package @vc-shell/create-vc-app
668
+
669
+ ## [1.1.17](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.16...v1.1.17) (2025-05-27)
670
+
671
+ **Note:** Version bump only for package @vc-shell/create-vc-app
672
+
673
+ ## [1.1.16](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.15...v1.1.16) (2025-05-26)
674
+
675
+ **Note:** Version bump only for package @vc-shell/create-vc-app
676
+
677
+ ## [1.1.15](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.14...v1.1.15) (2025-05-23)
678
+
679
+ **Note:** Version bump only for package @vc-shell/create-vc-app
680
+
681
+ ## [1.1.14](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.13...v1.1.14) (2025-05-23)
682
+
683
+ **Note:** Version bump only for package @vc-shell/create-vc-app
684
+
685
+ ## [1.1.13](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.12...v1.1.13) (2025-05-23)
686
+
687
+ **Note:** Version bump only for package @vc-shell/create-vc-app
688
+
689
+ ## [1.1.12](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.11...v1.1.12) (2025-05-23)
690
+
691
+ **Note:** Version bump only for package @vc-shell/create-vc-app
692
+
693
+ ## [1.1.11](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.10...v1.1.11) (2025-05-23)
694
+
695
+ **Note:** Version bump only for package @vc-shell/create-vc-app
696
+
697
+ ## [1.1.10](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.9...v1.1.10) (2025-05-22)
698
+
699
+ **Note:** Version bump only for package @vc-shell/create-vc-app
700
+
701
+ ## [1.1.9](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.8...v1.1.9) (2025-05-15)
702
+
703
+ **Note:** Version bump only for package @vc-shell/create-vc-app
704
+
705
+ ## [1.1.8](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.7...v1.1.8) (2025-05-15)
706
+
707
+ **Note:** Version bump only for package @vc-shell/create-vc-app
708
+
709
+ ## [1.1.7](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.6...v1.1.7) (2025-05-12)
710
+
711
+ **Note:** Version bump only for package @vc-shell/create-vc-app
712
+
713
+ ## [1.1.6](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.5...v1.1.6) (2025-05-12)
714
+
715
+ **Note:** Version bump only for package @vc-shell/create-vc-app
716
+
717
+ ## [1.1.5](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.4...v1.1.5) (2025-05-07)
718
+
719
+ **Note:** Version bump only for package @vc-shell/create-vc-app
720
+
721
+ ## [1.1.4](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.3...v1.1.4) (2025-04-30)
722
+
723
+ **Note:** Version bump only for package @vc-shell/create-vc-app
724
+
725
+ ## [1.1.3](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.2...v1.1.3) (2025-04-30)
726
+
727
+ **Note:** Version bump only for package @vc-shell/create-vc-app
728
+
729
+ ## [1.1.2](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.342...v1.1.2) (2025-04-29)
730
+
731
+ ### Features
732
+
733
+ - first release ([b94bf6d](https://github.com/VirtoCommerce/vc-shell/commit/b94bf6db1020fdc904c3bc8d9a9181e9becef7fe))
734
+ - first release ([5c3c607](https://github.com/VirtoCommerce/vc-shell/commit/5c3c607269a3b33478a4bf23b6486ca8b01157a2))
735
+ - first release ([6685f10](https://github.com/VirtoCommerce/vc-shell/commit/6685f10f98982038206a55b637dc14628a341088))
736
+ - redesign alpha5 ([ac430b8](https://github.com/VirtoCommerce/vc-shell/commit/ac430b80f684d3b920c35778a83c33ec387b2484))
737
+ - redesign alpha4 wip ([ac48f52](https://github.com/VirtoCommerce/vc-shell/commit/ac48f526f61e85518a238e1e6b49047ff3fcc786))
738
+ - partial redesign ([846e215](https://github.com/VirtoCommerce/vc-shell/commit/846e2152c6e48753622ca7cf3a71300323c99d51))
739
+
740
+ ### Code Refactoring
741
+
742
+ - menu service and new SVG icons, alpha6 ([df10c9f](https://github.com/VirtoCommerce/vc-shell/commit/df10c9f54678c4a5f0a9752d9889d4acc2d4a29e))
743
+
744
+ ### BREAKING CHANGES
745
+
746
+ - first release
747
+ - first release
748
+
749
+ ## [1.0.342](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.1...v1.0.342) (2025-04-29)
750
+
751
+ **Note:** Version bump only for package @vc-shell/create-vc-app
752
+
753
+ ## [1.1.1](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.0...v1.1.1) (2025-04-29)
754
+
755
+ **Note:** Version bump only for package @vc-shell/create-vc-app
756
+
757
+ ## [1.1.0](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.341...v1.1.0) (2025-04-29)
758
+
759
+ ### Features
760
+
761
+ - first release ([b94bf6d](https://github.com/VirtoCommerce/vc-shell/commit/b94bf6db1020fdc904c3bc8d9a9181e9becef7fe))
762
+ - first release ([5c3c607](https://github.com/VirtoCommerce/vc-shell/commit/5c3c607269a3b33478a4bf23b6486ca8b01157a2))
763
+ - first release ([6685f10](https://github.com/VirtoCommerce/vc-shell/commit/6685f10f98982038206a55b637dc14628a341088))
764
+ - redesign alpha5 ([ac430b8](https://github.com/VirtoCommerce/vc-shell/commit/ac430b80f684d3b920c35778a83c33ec387b2484))
765
+ - redesign alpha4 wip ([ac48f52](https://github.com/VirtoCommerce/vc-shell/commit/ac48f526f61e85518a238e1e6b49047ff3fcc786))
766
+ - partial redesign ([846e215](https://github.com/VirtoCommerce/vc-shell/commit/846e2152c6e48753622ca7cf3a71300323c99d51))
767
+
768
+ ### Code Refactoring
769
+
770
+ - menu service and new SVG icons, alpha6 ([df10c9f](https://github.com/VirtoCommerce/vc-shell/commit/df10c9f54678c4a5f0a9752d9889d4acc2d4a29e))
771
+
772
+ ### BREAKING CHANGES
773
+
774
+ - first release
775
+ - first release
776
+
777
+ ## [1.0.341](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.0-alpha.2...v1.0.341) (2025-03-11)
778
+
779
+ **Note:** Version bump only for package @vc-shell/create-vc-app
780
+
781
+ ## [1.1.0-alpha.2](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.340...v1.1.0-alpha.2) (2025-02-25)
782
+
783
+ ### Features
784
+
785
+ - partial redesign ([846e215](https://github.com/VirtoCommerce/vc-shell/commit/846e2152c6e48753622ca7cf3a71300323c99d51))
786
+
787
+ ## [1.0.340](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.339...v1.0.340) (2025-02-06)
788
+
789
+ **Note:** Version bump only for package @vc-shell/create-vc-app
790
+
791
+ ## [1.0.339](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.338...v1.0.339) (2025-02-05)
792
+
793
+ **Note:** Version bump only for package @vc-shell/create-vc-app
794
+
795
+ ## [1.0.338](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.337...v1.0.338) (2025-02-05)
796
+
797
+ **Note:** Version bump only for package @vc-shell/create-vc-app
798
+
799
+ ## [1.0.337](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.336...v1.0.337) (2025-01-29)
800
+
801
+ **Note:** Version bump only for package @vc-shell/create-vc-app
802
+
803
+ ## [1.0.336](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.335...v1.0.336) (2025-01-29)
804
+
805
+ **Note:** Version bump only for package @vc-shell/create-vc-app
806
+
807
+ ## [1.0.335](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.334...v1.0.335) (2025-01-22)
808
+
809
+ **Note:** Version bump only for package @vc-shell/create-vc-app
810
+
811
+ ## [1.0.334](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.333...v1.0.334) (2025-01-22)
812
+
813
+ **Note:** Version bump only for package @vc-shell/create-vc-app
814
+
815
+ ## [1.0.333](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.332...v1.0.333) (2025-01-21)
816
+
817
+ **Note:** Version bump only for package @vc-shell/create-vc-app
818
+
819
+ ## [1.0.332](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.331...v1.0.332) (2025-01-21)
820
+
821
+ **Note:** Version bump only for package @vc-shell/create-vc-app
822
+
823
+ ## [1.0.331](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.330...v1.0.331) (2025-01-21)
824
+
825
+ **Note:** Version bump only for package @vc-shell/create-vc-app
826
+
827
+ ## [1.0.330](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.329...v1.0.330) (2024-12-19)
828
+
829
+ **Note:** Version bump only for package @vc-shell/create-vc-app
830
+
831
+ ## [1.0.329](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.328...v1.0.329) (2024-12-04)
832
+
833
+ **Note:** Version bump only for package @vc-shell/create-vc-app
834
+
835
+ ## [1.0.328](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.0-alpha.1...v1.0.328) (2024-11-14)
836
+
837
+ **Note:** Version bump only for package @vc-shell/create-vc-app
838
+
839
+ ## [1.1.0-alpha.1](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.327...v1.1.0-alpha.1) (2024-11-13)
840
+
841
+ **Note:** Version bump only for package @vc-shell/create-vc-app
842
+
843
+ ## [1.0.327](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.326...v1.0.327) (2024-11-12)
844
+
845
+ **Note:** Version bump only for package @vc-shell/create-vc-app
846
+
847
+ ## [1.0.326](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.325...v1.0.326) (2024-11-12)
848
+
849
+ **Note:** Version bump only for package @vc-shell/create-vc-app
850
+
851
+ ## [1.0.325](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.324...v1.0.325) (2024-11-08)
852
+
853
+ **Note:** Version bump only for package @vc-shell/create-vc-app
854
+
855
+ ## [1.0.324](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.323...v1.0.324) (2024-11-06)
856
+
857
+ **Note:** Version bump only for package @vc-shell/create-vc-app
858
+
859
+ ## [1.0.323](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.322...v1.0.323) (2024-11-05)
860
+
861
+ **Note:** Version bump only for package @vc-shell/create-vc-app
862
+
863
+ ## [1.0.322](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.321...v1.0.322) (2024-11-05)
864
+
865
+ **Note:** Version bump only for package @vc-shell/create-vc-app
866
+
867
+ ## [1.0.321](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.320...v1.0.321) (2024-10-23)
868
+
869
+ **Note:** Version bump only for package @vc-shell/create-vc-app
870
+
871
+ ## [1.0.320](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.319...v1.0.320) (2024-10-21)
872
+
873
+ **Note:** Version bump only for package @vc-shell/create-vc-app
874
+
875
+ ## [1.0.319](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.318...v1.0.319) (2024-10-18)
876
+
877
+ **Note:** Version bump only for package @vc-shell/create-vc-app
878
+
879
+ ## [1.0.318](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.317...v1.0.318) (2024-10-18)
880
+
881
+ **Note:** Version bump only for package @vc-shell/create-vc-app
882
+
883
+ ## [1.0.317](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.316...v1.0.317) (2024-10-17)
884
+
885
+ **Note:** Version bump only for package @vc-shell/create-vc-app
886
+
887
+ ## [1.0.316](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.315...v1.0.316) (2024-10-17)
888
+
889
+ **Note:** Version bump only for package @vc-shell/create-vc-app
890
+
891
+ ## [1.0.315](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.314...v1.0.315) (2024-10-17)
892
+
893
+ **Note:** Version bump only for package @vc-shell/create-vc-app
894
+
895
+ ## [1.0.314](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.313...v1.0.314) (2024-10-16)
896
+
897
+ **Note:** Version bump only for package @vc-shell/create-vc-app
898
+
899
+ ## [1.0.313](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.312...v1.0.313) (2024-10-15)
900
+
901
+ **Note:** Version bump only for package @vc-shell/create-vc-app
902
+
903
+ ## [1.0.312](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.311...v1.0.312) (2024-10-15)
904
+
905
+ **Note:** Version bump only for package @vc-shell/create-vc-app
906
+
907
+ ## [1.0.311](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.310...v1.0.311) (2024-10-11)
908
+
909
+ **Note:** Version bump only for package @vc-shell/create-vc-app
910
+
911
+ ## [1.0.310](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.309...v1.0.310) (2024-10-11)
912
+
913
+ **Note:** Version bump only for package @vc-shell/create-vc-app
914
+
915
+ ## [1.0.309](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.308...v1.0.309) (2024-10-09)
916
+
917
+ **Note:** Version bump only for package @vc-shell/create-vc-app
918
+
919
+ ## [1.0.308](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.307...v1.0.308) (2024-10-08)
920
+
921
+ **Note:** Version bump only for package @vc-shell/create-vc-app
922
+
923
+ ## [1.0.307](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.306...v1.0.307) (2024-10-07)
924
+
925
+ **Note:** Version bump only for package @vc-shell/create-vc-app
926
+
927
+ ## [1.0.306](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.305...v1.0.306) (2024-10-07)
928
+
929
+ **Note:** Version bump only for package @vc-shell/create-vc-app
930
+
931
+ ## [1.0.305](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.304...v1.0.305) (2024-10-04)
932
+
933
+ **Note:** Version bump only for package @vc-shell/create-vc-app
934
+
935
+ ## [1.0.304](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.303...v1.0.304) (2024-10-04)
936
+
937
+ **Note:** Version bump only for package @vc-shell/create-vc-app
938
+
939
+ ## [1.0.303](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.302...v1.0.303) (2024-10-04)
940
+
941
+ **Note:** Version bump only for package @vc-shell/create-vc-app
942
+
943
+ ## [1.0.302](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.301...v1.0.302) (2024-10-02)
944
+
945
+ **Note:** Version bump only for package @vc-shell/create-vc-app
946
+
947
+ ## [1.0.301](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.300...v1.0.301) (2024-10-02)
948
+
949
+ **Note:** Version bump only for package @vc-shell/create-vc-app
950
+
951
+ ## [1.0.300](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.299...v1.0.300) (2024-10-01)
952
+
953
+ **Note:** Version bump only for package @vc-shell/create-vc-app
954
+
955
+ ## [1.0.299](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.298...v1.0.299) (2024-10-01)
956
+
957
+ **Note:** Version bump only for package @vc-shell/create-vc-app
958
+
959
+ ## [1.0.298](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.297...v1.0.298) (2024-10-01)
960
+
961
+ **Note:** Version bump only for package @vc-shell/create-vc-app
962
+
963
+ ## [1.0.297](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.296...v1.0.297) (2024-10-01)
964
+
965
+ **Note:** Version bump only for package @vc-shell/create-vc-app
966
+
967
+ ## [1.0.296](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.295...v1.0.296) (2024-10-01)
968
+
969
+ **Note:** Version bump only for package @vc-shell/create-vc-app
970
+
971
+ ## [1.0.295](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.294...v1.0.295) (2024-10-01)
972
+
973
+ **Note:** Version bump only for package @vc-shell/create-vc-app
974
+
975
+ ## [1.0.294](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.293...v1.0.294) (2024-10-01)
976
+
977
+ **Note:** Version bump only for package @vc-shell/create-vc-app
978
+
979
+ ## [1.0.293](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.292...v1.0.293) (2024-09-23)
980
+
981
+ **Note:** Version bump only for package @vc-shell/create-vc-app
982
+
983
+ ## [1.0.292](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.291...v1.0.292) (2024-09-23)
984
+
985
+ **Note:** Version bump only for package @vc-shell/create-vc-app
986
+
987
+ ## [1.0.291](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.290...v1.0.291) (2024-09-23)
988
+
989
+ ### Features
990
+
991
+ - support of css theming ([dba4097](https://github.com/VirtoCommerce/vc-shell/commit/dba409744b57dd1a999e009700e3b356fe230969))
992
+
993
+ ## [1.0.290](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.289...v1.0.290) (2024-09-13)
994
+
995
+ **Note:** Version bump only for package @vc-shell/create-vc-app
996
+
997
+ ## [1.0.289](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.288...v1.0.289) (2024-09-10)
998
+
999
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1000
+
1001
+ ## [1.0.288](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.287...v1.0.288) (2024-09-09)
1002
+
1003
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1004
+
1005
+ ## [1.0.287](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.286...v1.0.287) (2024-09-06)
1006
+
1007
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1008
+
1009
+ ## [1.0.286](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.285...v1.0.286) (2024-09-06)
1010
+
1011
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1012
+
1013
+ ## [1.0.285](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.284...v1.0.285) (2024-09-06)
1014
+
1015
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1016
+
1017
+ ## [1.0.284](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.283...v1.0.284) (2024-09-06)
1018
+
1019
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1020
+
1021
+ ## [1.0.283](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.282...v1.0.283) (2024-09-03)
1022
+
1023
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1024
+
1025
+ ## [1.0.282](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.281...v1.0.282) (2024-08-30)
1026
+
1027
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1028
+
1029
+ ## [1.0.281](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.280...v1.0.281) (2024-08-29)
1030
+
1031
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1032
+
1033
+ ## [1.0.280](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.279...v1.0.280) (2024-08-28)
1034
+
1035
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1036
+
1037
+ ## [1.0.279](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.278...v1.0.279) (2024-08-27)
1038
+
1039
+ ### Bug Fixes
1040
+
1041
+ - **create-vc-app:** update currency option in details.vue and dynamic-blade-list.vue ([40a363a](https://github.com/VirtoCommerce/vc-shell/commit/40a363a292457d0f74e961a342909ed6f425d3b4))
1042
+
1043
+ ## [1.0.278](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.277...v1.0.278) (2024-08-27)
1044
+
1045
+ ### Bug Fixes
1046
+
1047
+ - **create-vc-app:** add shims and change sample constants ([bfdc2d6](https://github.com/VirtoCommerce/vc-shell/commit/bfdc2d6bb50b17d88387b2f71aef8c8c931c3452))
1048
+
1049
+ ## [1.0.277](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.276...v1.0.277) (2024-08-22)
1050
+
1051
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1052
+
1053
+ ## [1.0.276](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.275...v1.0.276) (2024-08-22)
1054
+
1055
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1056
+
1057
+ ## [1.0.275](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.274...v1.0.275) (2024-08-20)
1058
+
1059
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1060
+
1061
+ ## [1.0.274](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.273...v1.0.274) (2024-08-19)
1062
+
1063
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1064
+
1065
+ ## [1.0.273](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.272...v1.0.273) (2024-08-16)
1066
+
1067
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1068
+
1069
+ ## [1.0.272](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.271...v1.0.272) (2024-08-13)
1070
+
1071
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1072
+
1073
+ ## [1.0.271](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.270...v1.0.271) (2024-08-13)
1074
+
1075
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1076
+
1077
+ ## [1.0.270](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.269...v1.0.270) (2024-08-13)
1078
+
1079
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1080
+
1081
+ ## [1.0.269](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.268...v1.0.269) (2024-08-09)
1082
+
1083
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1084
+
1085
+ ## [1.0.268](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.267...v1.0.268) (2024-08-02)
1086
+
1087
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1088
+
1089
+ ## [1.0.267](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.266...v1.0.267) (2024-08-02)
1090
+
1091
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1092
+
1093
+ ## [1.0.266](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.265...v1.0.266) (2024-08-02)
1094
+
1095
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1096
+
1097
+ ## [1.0.265](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.264...v1.0.265) (2024-08-02)
1098
+
1099
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1100
+
1101
+ ## [1.0.264](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.263...v1.0.264) (2024-08-02)
1102
+
1103
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1104
+
1105
+ ## [1.0.263](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.262...v1.0.263) (2024-07-31)
1106
+
1107
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1108
+
1109
+ ## [1.0.262](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.261...v1.0.262) (2024-07-31)
1110
+
1111
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1112
+
1113
+ ## [1.0.261](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.260...v1.0.261) (2024-07-26)
1114
+
1115
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1116
+
1117
+ ## [1.0.260](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.259...v1.0.260) (2024-07-26)
1118
+
1119
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1120
+
1121
+ ## [1.0.259](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.258...v1.0.259) (2024-07-25)
1122
+
1123
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1124
+
1125
+ ## [1.0.258](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.257...v1.0.258) (2024-07-24)
1126
+
1127
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1128
+
1129
+ ## [1.0.257](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.256...v1.0.257) (2024-07-23)
1130
+
1131
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1132
+
1133
+ ## [1.0.256](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.255...v1.0.256) (2024-07-12)
1134
+
1135
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1136
+
1137
+ ## [1.0.255](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.254...v1.0.255) (2024-07-12)
1138
+
1139
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1140
+
1141
+ ## [1.0.254](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.253...v1.0.254) (2024-07-12)
1142
+
1143
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1144
+
1145
+ ## [1.0.253](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.252...v1.0.253) (2024-07-12)
1146
+
1147
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1148
+
1149
+ ## [1.0.252](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.251...v1.0.252) (2024-07-08)
1150
+
1151
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1152
+
1153
+ ## [1.0.251](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.250...v1.0.251) (2024-07-08)
1154
+
1155
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1156
+
1157
+ ## [1.0.250](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.249...v1.0.250) (2024-07-08)
1158
+
1159
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1160
+
1161
+ ## [1.0.249](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.248...v1.0.249) (2024-07-05)
1162
+
1163
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1164
+
1165
+ ## [1.0.248](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.247...v1.0.248) (2024-07-03)
1166
+
1167
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1168
+
1169
+ ## [1.0.247](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.246...v1.0.247) (2024-07-01)
1170
+
1171
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1172
+
1173
+ ## [1.0.246](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.245...v1.0.246) (2024-06-28)
1174
+
1175
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1176
+
1177
+ ## [1.0.245](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.244...v1.0.245) (2024-06-28)
1178
+
1179
+ ### Features
1180
+
1181
+ - **api-client-generator:** build api after generation, tsconfig/package.json creation, new args ([de115fe](https://github.com/VirtoCommerce/vc-shell/commit/de115fe05c9849dcdbbd9bd072a51472103e33a1))
1182
+
1183
+ ## [1.0.244](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.243...v1.0.244) (2024-06-24)
1184
+
1185
+ ### Features
1186
+
1187
+ - application insights logger ([536db4d](https://github.com/VirtoCommerce/vc-shell/commit/536db4db35c91f4fb566717d2d6c536e48aacc95))
1188
+
1189
+ ## [1.0.243](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.242...v1.0.243) (2024-06-21)
1190
+
1191
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1192
+
1193
+ ## [1.0.242](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.241...v1.0.242) (2024-06-21)
1194
+
1195
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1196
+
1197
+ ## [1.0.241](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.240...v1.0.241) (2024-06-18)
1198
+
1199
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1200
+
1201
+ ## [1.0.240](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.239...v1.0.240) (2024-06-18)
1202
+
1203
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1204
+
1205
+ ## [1.0.239](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.238...v1.0.239) (2024-06-18)
1206
+
1207
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1208
+
1209
+ ## [1.0.238](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.237...v1.0.238) (2024-06-17)
1210
+
1211
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1212
+
1213
+ ## [1.0.237](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.236...v1.0.237) (2024-06-17)
1214
+
1215
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1216
+
1217
+ ## [1.0.236](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.235...v1.0.236) (2024-06-17)
1218
+
1219
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1220
+
1221
+ ## [1.0.235](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.234...v1.0.235) (2024-06-17)
1222
+
1223
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1224
+
1225
+ ## [1.0.234](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.233...v1.0.234) (2024-06-13)
1226
+
1227
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1228
+
1229
+ ## [1.0.233](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.232...v1.0.233) (2024-06-13)
1230
+
1231
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1232
+
1233
+ ## [1.0.232](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.231...v1.0.232) (2024-06-07)
1234
+
1235
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1236
+
1237
+ ## [1.0.231](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.230...v1.0.231) (2024-06-05)
1238
+
1239
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1240
+
1241
+ ## [1.0.230](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.229...v1.0.230) (2024-06-05)
1242
+
1243
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1244
+
1245
+ ## [1.0.229](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.228...v1.0.229) (2024-06-05)
1246
+
1247
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1248
+
1249
+ ## [1.0.228](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.227...v1.0.228) (2024-06-05)
1250
+
1251
+ ### Features
1252
+
1253
+ - refactor sample and scaffold template to use object literal syntax for scope ([083d039](https://github.com/VirtoCommerce/vc-shell/commit/083d039f2d5dcbbd1ad1f914220cab5c11651b46))
1254
+
1255
+ ## [1.0.227](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.226...v1.0.227) (2024-06-04)
1256
+
1257
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1258
+
1259
+ ## [1.0.226](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.225...v1.0.226) (2024-06-04)
1260
+
1261
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1262
+
1263
+ ## [1.0.225](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.224...v1.0.225) (2024-06-04)
1264
+
1265
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1266
+
1267
+ ## [1.0.224](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.223...v1.0.224) (2024-06-04)
1268
+
1269
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1270
+
1271
+ ## [1.0.223](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.222...v1.0.223) (2024-05-29)
1272
+
1273
+ ### Features
1274
+
1275
+ - **dynamic:** refactoring of scope, composable args interface, dynamic hint for some components BREAKING CHANGE: change scope in composables to be plain object instead refs. Also, if you want to extend scope, use lodash's merge method like: \_.merge(scope, {}) ([e6b8099](https://github.com/VirtoCommerce/vc-shell/commit/e6b8099a120cef9429896904947e13fdae670541))
1276
+
1277
+ ## [1.0.222](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.221...v1.0.222) (2024-05-28)
1278
+
1279
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1280
+
1281
+ ## [1.0.221](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.220...v1.0.221) (2024-05-28)
1282
+
1283
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1284
+
1285
+ ## [1.0.220](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.219...v1.0.220) (2024-05-24)
1286
+
1287
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1288
+
1289
+ ## [1.0.219](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.218...v1.0.219) (2024-05-21)
1290
+
1291
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1292
+
1293
+ ## [1.0.218](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.217...v1.0.218) (2024-05-21)
1294
+
1295
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1296
+
1297
+ ## [1.0.217](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.216...v1.0.217) (2024-05-21)
1298
+
1299
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1300
+
1301
+ ## [1.0.216](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.215...v1.0.216) (2024-05-21)
1302
+
1303
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1304
+
1305
+ ## [1.0.215](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.214...v1.0.215) (2024-05-20)
1306
+
1307
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1308
+
1309
+ ## [1.0.214](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.213...v1.0.214) (2024-05-16)
1310
+
1311
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1312
+
1313
+ ## [1.0.213](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.212...v1.0.213) (2024-05-13)
1314
+
1315
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1316
+
1317
+ ## [1.0.212](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.211...v1.0.212) (2024-05-09)
1318
+
1319
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1320
+
1321
+ ## [1.0.211](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.210...v1.0.211) (2024-05-09)
1322
+
1323
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1324
+
1325
+ ## [1.0.210](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.209...v1.0.210) (2024-05-08)
1326
+
1327
+ ### Bug Fixes
1328
+
1329
+ - remove auto-open blade on param change, as it can lead to unpredictable behavior ([898e0d9](https://github.com/VirtoCommerce/vc-shell/commit/898e0d9ffc5812b71e8215a355c9ad0918c48dfe))
1330
+
1331
+ ## [1.0.209](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.208...v1.0.209) (2024-05-07)
1332
+
1333
+ ### Bug Fixes
1334
+
1335
+ - **create-vc-app:** fixed boilerplate release script ([b1e3124](https://github.com/VirtoCommerce/vc-shell/commit/b1e312445acb99402850e22208c1c9e4b7912502))
1336
+
1337
+ ## [1.0.208](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.207...v1.0.208) (2024-04-30)
1338
+
1339
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1340
+
1341
+ ## [1.0.207](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.206...v1.0.207) (2024-04-30)
1342
+
1343
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1344
+
1345
+ ## [1.0.206](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.205...v1.0.206) (2024-04-30)
1346
+
1347
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1348
+
1349
+ ## [1.0.205](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.204...v1.0.205) (2024-04-30)
1350
+
1351
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1352
+
1353
+ ## [1.0.204](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.203...v1.0.204) (2024-04-30)
1354
+
1355
+ ### Features
1356
+
1357
+ - **create-vc-app:** new prompt with ability to add sample data module ([7816a8b](https://github.com/VirtoCommerce/vc-shell/commit/7816a8b2ce872f3ca7e54c7a328481edf4adb854))
1358
+
1359
+ ## [1.0.203](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.202...v1.0.203) (2024-04-25)
1360
+
1361
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1362
+
1363
+ ## [1.0.202](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.201...v1.0.202) (2024-04-25)
1364
+
1365
+ ### Features
1366
+
1367
+ - **dynamic:** saveChanges response (#207) ([a05313b](https://github.com/VirtoCommerce/vc-shell/commit/a05313bd0fc5b25b927570c31e14aea69c4a5ddd))
1368
+
1369
+ ## [1.0.201](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.200...v1.0.201) (2024-04-23)
1370
+
1371
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1372
+
1373
+ ## [1.0.200](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.199...v1.0.200) (2024-04-23)
1374
+
1375
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1376
+
1377
+ ## [1.0.199](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.198...v1.0.199) (2024-04-22)
1378
+
1379
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1380
+
1381
+ ## [1.0.198](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.197...v1.0.198) (2024-04-16)
1382
+
1383
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1384
+
1385
+ ## [1.0.197](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.196...v1.0.197) (2024-04-12)
1386
+
1387
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1388
+
1389
+ ## [1.0.196](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.195...v1.0.196) (2024-04-11)
1390
+
1391
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1392
+
1393
+ ## [1.0.195](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.194...v1.0.195) (2024-04-11)
1394
+
1395
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1396
+
1397
+ ## [1.0.194](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.193...v1.0.194) (2024-04-11)
1398
+
1399
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1400
+
1401
+ ## [1.0.193](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.192...v1.0.193) (2024-04-11)
1402
+
1403
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1404
+
1405
+ ## [1.0.192](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.191...v1.0.192) (2024-04-11)
1406
+
1407
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1408
+
1409
+ ## [1.0.191](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.190...v1.0.191) (2024-04-09)
1410
+
1411
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1412
+
1413
+ ## [1.0.190](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.189...v1.0.190) (2024-04-03)
1414
+
1415
+ ### Features
1416
+
1417
+ - **create-vc-app:** updated scaffold app, new prompts and removed redundant mocks ([e7a5b98](https://github.com/VirtoCommerce/vc-shell/commit/e7a5b98e8dcaf417841819677b0f4af0ee8ca0a9))
1418
+
1419
+ ## [1.0.189](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.188...v1.0.189) (2024-03-26)
1420
+
1421
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1422
+
1423
+ ## [1.0.188](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.187...v1.0.188) (2024-03-19)
1424
+
1425
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1426
+
1427
+ ## [1.0.187](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.186...v1.0.187) (2024-03-19)
1428
+
1429
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1430
+
1431
+ ## [1.0.186](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.185...v1.0.186) (2024-03-15)
1432
+
1433
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1434
+
1435
+ ## [1.0.185](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.184...v1.0.185) (2024-03-15)
1436
+
1437
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1438
+
1439
+ ## [1.0.184](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.183...v1.0.184) (2024-03-14)
1440
+
1441
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1442
+
1443
+ ## [1.0.183](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.182...v1.0.183) (2024-03-14)
1444
+
1445
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1446
+
1447
+ ## [1.0.182](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.181...v1.0.182) (2024-03-14)
1448
+
1449
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1450
+
1451
+ ## [1.0.181](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.180...v1.0.181) (2024-03-14)
1452
+
1453
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1454
+
1455
+ ## [1.0.180](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.179...v1.0.180) (2024-03-14)
1456
+
1457
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1458
+
1459
+ ## [1.0.179](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.178...v1.0.179) (2024-03-13)
1460
+
1461
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1462
+
1463
+ ## [1.0.178](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.177...v1.0.178) (2024-03-08)
1464
+
1465
+ ### Features
1466
+
1467
+ - shell locales moved to locales, expose locales ([9d6099e](https://github.com/VirtoCommerce/vc-shell/commit/9d6099ed2d43dba38a71a5e868ed335cf2bd8170))
1468
+
1469
+ ## [1.0.177](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.176...v1.0.177) (2024-03-08)
1470
+
1471
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1472
+
1473
+ ## [1.0.176](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.175...v1.0.176) (2024-03-07)
1474
+
1475
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1476
+
1477
+ ## [1.0.175](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.174...v1.0.175) (2024-03-07)
1478
+
1479
+ ### Features
1480
+
1481
+ - **create-vc-app:** remove redundant and dupe code, decouple mocks, remove demo mode from configs ([2b3fd6b](https://github.com/VirtoCommerce/vc-shell/commit/2b3fd6b945c21b5a3f4a177a7e6a183662eb480d))
1482
+
1483
+ ## [1.0.174](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.173...v1.0.174) (2024-03-06)
1484
+
1485
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1486
+
1487
+ ## [1.0.173](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.172...v1.0.173) (2024-03-06)
1488
+
1489
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1490
+
1491
+ ## [1.0.172](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.171...v1.0.172) (2024-03-06)
1492
+
1493
+ ### Features
1494
+
1495
+ - **create-vc-app:** added table actions ([4545c92](https://github.com/VirtoCommerce/vc-shell/commit/4545c92b5c48da897ad9631ed06f058f1c448e6a))
1496
+
1497
+ ## [1.0.171](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.170...v1.0.171) (2024-03-06)
1498
+
1499
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1500
+
1501
+ ## [1.0.170](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.169...v1.0.170) (2024-02-27)
1502
+
1503
+ ### Features
1504
+
1505
+ - **create-vc-app:** updated localizations ([ebb3839](https://github.com/VirtoCommerce/vc-shell/commit/ebb38390b1208da522281efd8a6e54f027d12b9d))
1506
+
1507
+ ## [1.0.169](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.168...v1.0.169) (2024-02-23)
1508
+
1509
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1510
+
1511
+ ## [1.0.168](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.167...v1.0.168) (2024-02-21)
1512
+
1513
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1514
+
1515
+ ## [1.0.167](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.166...v1.0.167) (2024-02-21)
1516
+
1517
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1518
+
1519
+ ## [1.0.166](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.165...v1.0.166) (2024-02-21)
1520
+
1521
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1522
+
1523
+ ## [1.0.165](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.164...v1.0.165) (2024-02-14)
1524
+
1525
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1526
+
1527
+ ## [1.0.164](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.163...v1.0.164) (2024-02-09)
1528
+
1529
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1530
+
1531
+ ## [1.0.163](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.162...v1.0.163) (2024-02-09)
1532
+
1533
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1534
+
1535
+ ## [1.0.162](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.161...v1.0.162) (2024-02-09)
1536
+
1537
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1538
+
1539
+ ## [1.0.161](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.160...v1.0.161) (2024-02-09)
1540
+
1541
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1542
+
1543
+ ## [1.0.160](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.159...v1.0.160) (2024-02-09)
1544
+
1545
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1546
+
1547
+ ## [1.0.159](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.158...v1.0.159) (2024-02-09)
1548
+
1549
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1550
+
1551
+ ## [1.0.158](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.157...v1.0.158) (2024-02-08)
1552
+
1553
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1554
+
1555
+ ## [1.0.157](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.156...v1.0.157) (2024-02-07)
1556
+
1557
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1558
+
1559
+ ## [1.0.156](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.155...v1.0.156) (2024-02-07)
1560
+
1561
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1562
+
1563
+ ## [1.0.155](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.154...v1.0.155) (2024-02-06)
1564
+
1565
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1566
+
1567
+ ## [1.0.154](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.153...v1.0.154) (2024-02-06)
1568
+
1569
+ ### Features
1570
+
1571
+ - **create-vc-app:** updated configs and locales ([e46ccf6](https://github.com/VirtoCommerce/vc-shell/commit/e46ccf680a12e82400ec03c3d7c72e4f5e3c2c68))
1572
+
1573
+ ## [1.0.153](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.152...v1.0.153) (2024-01-29)
1574
+
1575
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1576
+
1577
+ ## [1.0.152](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.151...v1.0.152) (2024-01-29)
1578
+
1579
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1580
+
1581
+ ## [1.0.151](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.150...v1.0.151) (2024-01-25)
1582
+
1583
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1584
+
1585
+ ## [1.0.150](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.149...v1.0.150) (2024-01-25)
1586
+
1587
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1588
+
1589
+ ## [1.0.149](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.148...v1.0.149) (2024-01-24)
1590
+
1591
+ ### Features
1592
+
1593
+ - **create-vc-app:** update package.json and useList composable ([f1ccde1](https://github.com/VirtoCommerce/vc-shell/commit/f1ccde11a9e1e2f91af1a4b82e2c4a072996e008))
1594
+ - **framework:** updated localization setup, i18n locales config, dynamic modules localization ([209b92f](https://github.com/VirtoCommerce/vc-shell/commit/209b92fe2bf95379d908064d553ab59e16928569))
1595
+
1596
+ ## [1.0.148](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.147...v1.0.148) (2024-01-16)
1597
+
1598
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1599
+
1600
+ ## [1.0.147](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.146...v1.0.147) (2024-01-12)
1601
+
1602
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1603
+
1604
+ ## [1.0.146](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.145...v1.0.146) (2024-01-11)
1605
+
1606
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1607
+
1608
+ ## [1.0.145](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.144...v1.0.145) (2024-01-10)
1609
+
1610
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1611
+
1612
+ ## [1.0.144](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.143...v1.0.144) (2024-01-10)
1613
+
1614
+ ### Features
1615
+
1616
+ - **create-vc-app:** update base favicon; common pages locales ([b284f33](https://github.com/VirtoCommerce/vc-shell/commit/b284f331f17b58c472fdc4c6c671962a646388b3))
1617
+
1618
+ ## [1.0.143](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.142...v1.0.143) (2024-01-10)
1619
+
1620
+ ### Features
1621
+
1622
+ - locales moved to app scope ([ee08999](https://github.com/VirtoCommerce/vc-shell/commit/ee089996fd204ada7b8320218680d47f3418dc68))
1623
+
1624
+ ## [1.0.142](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.141...v1.0.142) (2024-01-10)
1625
+
1626
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1627
+
1628
+ ## [1.0.141](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.140...v1.0.141) (2024-01-10)
1629
+
1630
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1631
+
1632
+ ## [1.0.140](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.139...v1.0.140) (2024-01-09)
1633
+
1634
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1635
+
1636
+ ## [1.0.139](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.138...v1.0.139) (2024-01-08)
1637
+
1638
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1639
+
1640
+ ## [1.0.138](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.137...v1.0.138) (2024-01-08)
1641
+
1642
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1643
+
1644
+ ## [1.0.137](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.136...v1.0.137) (2024-01-04)
1645
+
1646
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1647
+
1648
+ ## [1.0.136](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.135...v1.0.136) (2024-01-03)
1649
+
1650
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1651
+
1652
+ ## [1.0.135](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.134...v1.0.135) (2024-01-03)
1653
+
1654
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1655
+
1656
+ ## [1.0.134](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.133...v1.0.134) (2023-12-29)
1657
+
1658
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1659
+
1660
+ ## [1.0.133](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.132...v1.0.133) (2023-12-28)
1661
+
1662
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1663
+
1664
+ ## [1.0.132](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.131...v1.0.132) (2023-12-28)
1665
+
1666
+ ### Features
1667
+
1668
+ - **create-vc-app:** strict types ([f336f8d](https://github.com/VirtoCommerce/vc-shell/commit/f336f8daaddd5268f0c68a625bcb1dc7719f542f))
1669
+
1670
+ ## [1.0.131](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.130...v1.0.131) (2023-12-28)
1671
+
1672
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1673
+
1674
+ ## [1.0.130](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.129...v1.0.130) (2023-12-27)
1675
+
1676
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1677
+
1678
+ ## [1.0.129](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.128...v1.0.129) (2023-12-27)
1679
+
1680
+ ### Features
1681
+
1682
+ - **create-vc-app:** build as es6 module ([0452713](https://github.com/VirtoCommerce/vc-shell/commit/04527133e1e6351f1d5f6440b50e57b2b6fa1966))
1683
+
1684
+ ### Bug Fixes
1685
+
1686
+ - **sample:** update dependencies in package.json ([5c3e4a0](https://github.com/VirtoCommerce/vc-shell/commit/5c3e4a0ada021acc60480f1f57a0f599fa11a2db))
1687
+
1688
+ ## [1.0.128](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.127...v1.0.128) (2023-12-14)
1689
+
1690
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1691
+
1692
+ ## [1.0.127](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.126...v1.0.127) (2023-12-13)
1693
+
1694
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1695
+
1696
+ ## [1.0.126](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.125...v1.0.126) (2023-11-28)
1697
+
1698
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1699
+
1700
+ ## [1.0.125](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.124...v1.0.125) (2023-11-27)
1701
+
1702
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1703
+
1704
+ ## [1.0.124](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.123...v1.0.124) (2023-11-27)
1705
+
1706
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1707
+
1708
+ ## [1.0.123](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.122...v1.0.123) (2023-11-24)
1709
+
1710
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1711
+
1712
+ ## [1.0.122](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.121...v1.0.122) (2023-11-14)
1713
+
1714
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1715
+
1716
+ ## [1.0.121](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.120...v1.0.121) (2023-11-14)
1717
+
1718
+ ### Features
1719
+
1720
+ - strict type check in framework custom property binding in dynamic views Textfield dynamic component dynamic blade mounted state pass to composables ([4e46e67](https://github.com/VirtoCommerce/vc-shell/commit/4e46e679154da42b4f0194c193708ee581be2f1b))
1721
+
1722
+ ## [1.0.120](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.119...v1.0.120) (2023-11-09)
1723
+
1724
+ ### Bug Fixes
1725
+
1726
+ - **create-vc-app:** fix copy dot named files ([d05ca55](https://github.com/VirtoCommerce/vc-shell/commit/d05ca5560e1a405c4250265875a9c2cf3302955f))
1727
+
1728
+ ## [1.0.119](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.118...v1.0.119) (2023-11-07)
1729
+
1730
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1731
+
1732
+ ## [1.0.118](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.117...v1.0.118) (2023-11-06)
1733
+
1734
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1735
+
1736
+ ## [1.0.117](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.116...v1.0.117) (2023-11-06)
1737
+
1738
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1739
+
1740
+ ## [1.0.116](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.115...v1.0.116) (2023-11-02)
1741
+
1742
+ ### Features
1743
+
1744
+ - updated release in boilerplate and sample ([382265b](https://github.com/VirtoCommerce/vc-shell/commit/382265b1a740504b5a4de89cbb7cba38b3d74539))
1745
+
1746
+ ## [1.0.115](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.114...v1.0.115) (2023-11-02)
1747
+
1748
+ ### Features
1749
+
1750
+ - **@vc-shell/framework:** updated tsconfigs ([921d000](https://github.com/VirtoCommerce/vc-shell/commit/921d000de8a0ca1b3eed4712eb5cc87e6d6a6616))
1751
+ - **@vc-shell/create-vc-app:** changed boilerplate ([740915b](https://github.com/VirtoCommerce/vc-shell/commit/740915baea40f4ac25375679dac9e9a209ae1937))
1752
+
1753
+ ## [1.0.114](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.113...v1.0.114) (2023-10-25)
1754
+
1755
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1756
+
1757
+ ## [1.0.113](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.111...v1.0.113) (2023-10-25)
1758
+
1759
+ ### Features
1760
+
1761
+ - **@vc-shell/api-client:** Replace .env variables to command line args ([4bcfade](https://github.com/VirtoCommerce/vc-shell/commit/4bcfade6f0eee7f6e2b74ed898d5b90da1198da8))
1762
+
1763
+ ## [1.0.111](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.110...v1.0.111) (2023-10-17)
1764
+
1765
+ ### Features
1766
+
1767
+ - dynamic modules ([ed4af3a](https://github.com/VirtoCommerce/vc-shell/commit/ed4af3ad65e47b0d633d6e2eb23e9c90d73ff50d))
1768
+
1769
+ ## [1.0.110](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.109...v1.0.110) (2023-10-16)
1770
+
1771
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1772
+
1773
+ ## [1.0.109](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.108...v1.0.109) (2023-10-13)
1774
+
1775
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1776
+
1777
+ ## [1.0.108](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.107...v1.0.108) (2023-10-13)
1778
+
1779
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1780
+
1781
+ ## [1.0.107](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.106...v1.0.107) (2023-10-12)
1782
+
1783
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1784
+
1785
+ ## [1.0.106](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.105...v1.0.106) (2023-10-12)
1786
+
1787
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1788
+
1789
+ ## [1.0.105](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.104...v1.0.105) (2023-10-02)
1790
+
1791
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1792
+
1793
+ ## [1.0.104](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.103...v1.0.104) (2023-10-02)
1794
+
1795
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1796
+
1797
+ ## [1.0.103](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.102...v1.0.103) (2023-09-29)
1798
+
1799
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1800
+
1801
+ ## [1.0.102](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.101...v1.0.102) (2023-09-29)
1802
+
1803
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1804
+
1805
+ ## [1.0.101](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.100...v1.0.101) (2023-09-28)
1806
+
1807
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1808
+
1809
+ ## [1.0.100](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.99...v1.0.100) (2023-09-22)
1810
+
1811
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1812
+
1813
+ ## [1.0.99](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.98...v1.0.99) (2023-09-22)
1814
+
1815
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1816
+
1817
+ ## [1.0.98](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.97...v1.0.98) (2023-09-21)
1818
+
1819
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1820
+
1821
+ ## [1.0.97](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.96...v1.0.97) (2023-09-12)
1822
+
1823
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1824
+
1825
+ ## [1.0.96](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.95...v1.0.96) (2023-08-28)
1826
+
1827
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1828
+
1829
+ ## [1.0.95](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.94...v1.0.95) (2023-08-28)
1830
+
1831
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1832
+
1833
+ ## [1.0.94](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.93...v1.0.94) (2023-08-04)
1834
+
1835
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1836
+
1837
+ ## [1.0.93](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.92...v1.0.93) (2023-08-04)
1838
+
1839
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1840
+
1841
+ ## [1.0.92](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.91...v1.0.92) (2023-07-12)
1842
+
1843
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1844
+
1845
+ ## [1.0.91](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.90...v1.0.91) (2023-07-12)
1846
+
1847
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1848
+
1849
+ ## [1.0.90](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.89...v1.0.90) (2023-07-12)
1850
+
1851
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1852
+
1853
+ ## [1.0.89](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.88...v1.0.89) (2023-07-07)
1854
+
1855
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1856
+
1857
+ ## [1.0.88](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.87...v1.0.88) (2023-06-27)
1858
+
1859
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1860
+
1861
+ ## [1.0.87](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.86...v1.0.87) (2023-06-26)
1862
+
1863
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1864
+
1865
+ ## [1.0.86](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.85...v1.0.86) (2023-06-23)
1866
+
1867
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1868
+
1869
+ ## [1.0.85](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.84...v1.0.85) (2023-06-23)
1870
+
1871
+ ### Bug Fixes
1872
+
1873
+ - check permissions plugin ([cc65272](https://github.com/VirtoCommerce/vc-shell/commit/cc65272d933e29f427b1403df2bdd627b15dd1e6))
1874
+
1875
+ ## [1.0.84](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.83...v1.0.84) (2023-06-23)
1876
+
1877
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1878
+
1879
+ ## [1.0.83](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.82...v1.0.83) (2023-06-23)
1880
+
1881
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1882
+
1883
+ ## [1.0.82](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.81...v1.0.82) (2023-06-23)
1884
+
1885
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1886
+
1887
+ ## [1.0.81](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.80...v1.0.81) (2023-06-23)
1888
+
1889
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1890
+
1891
+ ## [1.0.80](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.79...v1.0.80) (2023-06-22)
1892
+
1893
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1894
+
1895
+ ## [1.0.79](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.78...v1.0.79) (2023-06-22)
1896
+
1897
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1898
+
1899
+ ## [1.0.78](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.77...v1.0.78) (2023-06-22)
1900
+
1901
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1902
+
1903
+ ## [1.0.77](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.76...v1.0.77) (2023-06-22)
1904
+
1905
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1906
+
1907
+ ## [1.0.76](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.75...v1.0.76) (2023-06-22)
1908
+
1909
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1910
+
1911
+ ## [1.0.75](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.74...v1.0.75) (2023-06-21)
1912
+
1913
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1914
+
1915
+ ## [1.0.74](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.73...v1.0.74) (2023-06-21)
1916
+
1917
+ ### Bug Fixes
1918
+
1919
+ - pass platformUrl to shell ([6265790](https://github.com/VirtoCommerce/vc-shell/commit/62657901ae6738883ed785e4f54507db85ba7d66))
1920
+
1921
+ ## [1.0.73](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.72...v1.0.73) (2023-06-08)
1922
+
1923
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1924
+
1925
+ ## [1.0.72](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.71...v1.0.72) (2023-06-08)
1926
+
1927
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1928
+
1929
+ ## [1.0.71](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.70...v1.0.71) (2023-06-02)
1930
+
1931
+ ### Features
1932
+
1933
+ - azure active directory signin ([46cee05](https://github.com/VirtoCommerce/vc-shell/commit/46cee052064434bdd143d744ca7557f5c0fd7e84))
1934
+ - **cli** create-vc-app scaffolding tool ([e6428ae](https://github.com/VirtoCommerce/vc-shell/commit/e6428ae654ba180971c6ab58f9abfa2452ca0e9b))
1935
+
1936
+ ### Bug Fixes
1937
+
1938
+ - fixed create-vc-app template ([f433fea](https://github.com/VirtoCommerce/vc-shell/commit/f433feaf4b75badeea427b61061a08b9a6056c8a))
1939
+
1940
+ ## [1.0.70](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.69...v1.0.70) (2023-05-18)
1941
+
1942
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1943
+
1944
+ ## [1.0.69](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.68...v1.0.69) (2023-04-26)
1945
+
1946
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1947
+
1948
+ ## [1.0.68](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.67...v1.0.68) (2023-04-24)
1949
+
1950
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1951
+
1952
+ ## [1.0.67](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.66...v1.0.67) (2023-04-18)
1953
+
1954
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1955
+
1956
+ ## [1.0.66](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.65...v1.0.66) (2023-04-17)
1957
+
1958
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1959
+
1960
+ ## [1.0.65](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.64...v1.0.65) (2023-04-17)
1961
+
1962
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1963
+
1964
+ ## [1.0.64](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.63...v1.0.64) (2023-04-14)
1965
+
1966
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1967
+
1968
+ ## [1.0.63](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.62...v1.0.63) (2023-04-14)
1969
+
1970
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1971
+
1972
+ ## [1.0.62](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.61...v1.0.62) (2023-04-13)
1973
+
1974
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1975
+
1976
+ ## [1.0.61](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.60...v1.0.61) (2023-04-13)
1977
+
1978
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1979
+
1980
+ ## [1.0.60](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.59...v1.0.60) (2023-03-30)
1981
+
1982
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1983
+
1984
+ ## [1.0.59](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.58...v1.0.59) (2023-03-29)
1985
+
1986
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1987
+
1988
+ ## [1.0.58](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.57...v1.0.58) (2023-03-24)
1989
+
1990
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1991
+
1992
+ ## [1.0.57](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.56...v1.0.57) (2023-03-22)
1993
+
1994
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1995
+
1996
+ ## [1.0.56](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.55...v1.0.56) (2023-03-20)
1997
+
1998
+ **Note:** Version bump only for package @vc-shell/create-vc-app
1999
+
2000
+ ## [1.0.55](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.54...v1.0.55) (2023-03-15)
2001
+
2002
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2003
+
2004
+ ## [1.0.54](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.53...v1.0.54) (2023-03-07)
2005
+
2006
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2007
+
2008
+ ## [1.0.53](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.52...v1.0.53) (2023-03-02)
2009
+
2010
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2011
+
2012
+ ## [1.0.52](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.51...v1.0.52) (2023-03-02)
2013
+
2014
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2015
+
2016
+ ## [1.0.51](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.50...v1.0.51) (2023-03-02)
2017
+
2018
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2019
+
2020
+ ## [1.0.50](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.49...v1.0.50) (2023-03-01)
2021
+
2022
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2023
+
2024
+ ## [1.0.49](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.48...v1.0.49) (2023-02-27)
2025
+
2026
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2027
+
2028
+ ## [1.0.48](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.47...v1.0.48) (2023-02-27)
2029
+
2030
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2031
+
2032
+ ## [1.0.47](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.46...v1.0.47) (2023-02-22)
2033
+
2034
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2035
+
2036
+ ## [1.0.46](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.45...v1.0.46) (2023-02-16)
2037
+
2038
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2039
+
2040
+ ## [1.0.45](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.44...v1.0.45) (2023-02-15)
2041
+
2042
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2043
+
2044
+ ## [1.0.44](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.43...v1.0.44) (2023-02-08)
2045
+
2046
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2047
+
2048
+ ## [1.0.43](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.42...v1.0.43) (2023-02-02)
2049
+
2050
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2051
+
2052
+ ## [1.0.42](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.41...v1.0.42) (2023-02-02)
2053
+
2054
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2055
+
2056
+ ## [1.0.41](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.40...v1.0.41) (2023-01-20)
2057
+
2058
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2059
+
2060
+ ## [1.0.40](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.39...v1.0.40) (2023-01-17)
2061
+
2062
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2063
+
2064
+ ## [1.0.39](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.38...v1.0.39) (2022-12-12)
2065
+
2066
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2067
+
2068
+ ## [1.0.38](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.37...v1.0.38) (2022-12-05)
2069
+
2070
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2071
+
2072
+ ## [1.0.37](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.36...v1.0.37) (2022-11-22)
2073
+
2074
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2075
+
2076
+ ## [1.0.36](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.35...v1.0.36) (2022-11-21)
2077
+
2078
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2079
+
2080
+ ## [1.0.35](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.34...v1.0.35) (2022-11-15)
2081
+
2082
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2083
+
2084
+ ## [1.0.34](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.33...v1.0.34) (2022-11-15)
2085
+
2086
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2087
+
2088
+ ## [1.0.33](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.32...v1.0.33) (2022-10-24)
2089
+
2090
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2091
+
2092
+ ## [1.0.32](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.31...v1.0.32) (2022-10-20)
2093
+
2094
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2095
+
2096
+ ## [1.0.31](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.30...v1.0.31) (2022-10-14)
2097
+
2098
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2099
+
2100
+ ## [1.0.30](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.29...v1.0.30) (2022-10-14)
2101
+
2102
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2103
+
2104
+ ## [1.0.29](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.28...v1.0.29) (2022-10-14)
2105
+
2106
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2107
+
2108
+ ## [1.0.28](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.27...v1.0.28) (2022-10-10)
2109
+
2110
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2111
+
2112
+ ## [1.0.27](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.26...v1.0.27) (2022-10-07)
2113
+
2114
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2115
+
2116
+ ## [1.0.26](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.25...v1.0.26) (2022-10-07)
2117
+
2118
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2119
+
2120
+ ## [1.0.25](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.24...v1.0.25) (2022-10-07)
2121
+
2122
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2123
+
2124
+ ## [1.0.24](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.23...v1.0.24) (2022-10-06)
2125
+
2126
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2127
+
2128
+ ## [1.0.23](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.22...v1.0.23) (2022-10-06)
2129
+
2130
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2131
+
2132
+ ## [1.0.22](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.21...v1.0.22) (2022-09-29)
2133
+
2134
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2135
+
2136
+ ## [1.0.21](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.20...v1.0.21) (2022-09-14)
2137
+
2138
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2139
+
2140
+ ## [1.0.20](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.19...v1.0.20) (2022-09-06)
2141
+
2142
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2143
+
2144
+ ## [1.0.19](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.17...v1.0.19) (2022-08-30)
2145
+
2146
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2147
+
2148
+ ## [1.0.17](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.16...v1.0.17) (2022-08-05)
2149
+
2150
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2151
+
2152
+ ## [1.0.16](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.14...v1.0.16) (2022-08-05)
2153
+
2154
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2155
+
2156
+ ## [1.0.14](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.13...v1.0.14) (2022-08-04)
2157
+
2158
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2159
+
2160
+ ## [1.0.13](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.12...v1.0.13) (2022-07-14)
2161
+
2162
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2163
+
2164
+ ## [1.0.12](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.11...v1.0.12) (2022-07-12)
2165
+
2166
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2167
+
2168
+ ## [1.0.11](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.10...v1.0.11) (2022-07-08)
2169
+
2170
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2171
+
2172
+ ## [1.0.10](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.9...v1.0.10) (2022-06-29)
2173
+
2174
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2175
+
2176
+ ## [1.0.9](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.8...v1.0.9) (2022-06-21)
2177
+
2178
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2179
+
2180
+ ## [1.0.8](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.7...v1.0.8) (2022-06-16)
2181
+
2182
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2183
+
2184
+ ## [1.0.7](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.6...v1.0.7) (2022-06-09)
2185
+
2186
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2187
+
2188
+ ## [1.0.6](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.5...v1.0.6) (2022-06-09)
2189
+
2190
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2191
+
2192
+ ## [1.0.5](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.4...v1.0.5) (2022-06-07)
2193
+
2194
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2195
+
2196
+ ## [1.0.4](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.3...v1.0.4) (2022-06-03)
2197
+
2198
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2199
+
2200
+ ## [1.0.3](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.2...v1.0.3) (2022-05-30)
2201
+
2202
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2203
+
2204
+ ## [1.0.2](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.1...v1.0.2) (2022-05-25)
2205
+
2206
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2207
+
2208
+ ## [1.0.1](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.0...v1.0.1) (2022-05-24)
2209
+
2210
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2211
+
2212
+ ## [1.0.0](https://github.com/VirtoCommerce/vc-shell/compare/v0.1.20...v1.0.0) (2022-05-13)
2213
+
2214
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2215
+
2216
+ ## [0.1.20](https://github.com/VirtoCommerce/vc-shell/compare/v0.1.19...v0.1.20) (2022-04-27)
2217
+
2218
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2219
+
2220
+ ## [0.1.19](https://github.com/VirtoCommerce/vc-shell/compare/v0.1.18...v0.1.19) (2022-04-19)
2221
+
2222
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2223
+
2224
+ ## [0.1.18](https://github.com/VirtoCommerce/vc-shell/compare/v0.1.17...v0.1.18) (2022-04-15)
2225
+
2226
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2227
+
2228
+ ## [0.1.17](https://github.com/VirtoCommerce/vc-shell/compare/v0.1.16...v0.1.17) (2022-04-15)
2229
+
2230
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2231
+
2232
+ ## [0.1.16](https://github.com/VirtoCommerce/vc-shell/compare/v0.1.15...v0.1.16) (2022-04-15)
2233
+
2234
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2235
+
2236
+ ## [0.1.15](https://github.com/VirtoCommerce/vc-shell/compare/v0.1.14...v0.1.15) (2022-04-15)
2237
+
2238
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2239
+
2240
+ ## [0.1.14](https://github.com/VirtoCommerce/vc-shell/compare/v0.1.13...v0.1.14) (2022-04-15)
2241
+
2242
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2243
+
2244
+ ## [0.1.13](https://github.com/VirtoCommerce/vc-shell/compare/v0.1.12...v0.1.13) (2022-04-14)
2245
+
2246
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2247
+
2248
+ ## [0.1.12](https://github.com/VirtoCommerce/vc-shell/compare/v0.1.11...v0.1.12) (2022-04-07)
2249
+
2250
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2251
+
2252
+ ## [0.1.11](https://github.com/VirtoCommerce/vc-shell/compare/v0.1.10...v0.1.11) (2022-04-05)
2253
+
2254
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2255
+
2256
+ ## [0.1.10](https://github.com/VirtoCommerce/vc-shell/compare/v0.1.9...v0.1.10) (2022-04-04)
2257
+
2258
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2259
+
2260
+ ## [0.1.9](https://github.com/VirtoCommerce/vc-shell/compare/v0.1.8...v0.1.9) (2022-04-01)
2261
+
2262
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2263
+
2264
+ ## [0.1.8](https://github.com/VirtoCommerce/vc-shell/compare/v0.1.7...v0.1.8) (2022-03-29)
2265
+
2266
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2267
+
2268
+ ## [0.1.7](https://github.com/VirtoCommerce/vc-shell/compare/v0.1.6...v0.1.7) (2022-03-17)
2269
+
2270
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2271
+
2272
+ ## [0.1.6](https://github.com/VirtoCommerce/vc-shell/compare/v0.1.5...v0.1.6) (2022-03-16)
2273
+
2274
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2275
+
2276
+ ## [0.1.5](https://github.com/VirtoCommerce/vc-shell/compare/v0.1.4...v0.1.5) (2022-03-16)
2277
+
2278
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2279
+
2280
+ ## [0.1.4](https://github.com/VirtoCommerce/vc-shell/compare/v0.1.3...v0.1.4) (2022-03-16)
2281
+
2282
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2283
+
2284
+ ## [0.1.3](https://github.com/VirtoCommerce/vc-shell/compare/v0.1.2...v0.1.3) (2022-03-14)
2285
+
2286
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2287
+
2288
+ ## [0.1.2](https://github.com/VirtoCommerce/vc-shell/compare/v0.1.1...v0.1.2) (2022-03-10)
2289
+
2290
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2291
+
2292
+ ## [0.1.1](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.123...v0.1.1) (2022-03-10)
2293
+
2294
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2295
+
2296
+ ## [0.0.123](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.122...v0.0.123) (2022-03-04)
2297
+
2298
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2299
+
2300
+ ## [0.0.122](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.121...v0.0.122) (2022-02-28)
2301
+
2302
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2303
+
2304
+ ## [0.0.121](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.120...v0.0.121) (2022-02-24)
2305
+
2306
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2307
+
2308
+ ## [0.0.120](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.119...v0.0.120) (2022-02-17)
2309
+
2310
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2311
+
2312
+ ## [0.0.119](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.117...v0.0.119) (2022-02-16)
2313
+
2314
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2315
+
2316
+ ## [0.0.117](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.116...v0.0.117) (2022-02-16)
2317
+
2318
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2319
+
2320
+ ## [0.0.116](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.115...v0.0.116) (2022-02-14)
2321
+
2322
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2323
+
2324
+ ## [0.0.115](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.114...v0.0.115) (2022-02-04)
2325
+
2326
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2327
+
2328
+ ## [0.0.114](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.113...v0.0.114) (2022-02-03)
2329
+
2330
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2331
+
2332
+ ## [0.0.113](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.112...v0.0.113) (2022-02-03)
2333
+
2334
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2335
+
2336
+ ## [0.0.112](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.111...v0.0.112) (2022-02-03)
2337
+
2338
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2339
+
2340
+ ## [0.0.111](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.110...v0.0.111) (2022-01-31)
2341
+
2342
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2343
+
2344
+ ## [0.0.110](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.109...v0.0.110) (2022-01-31)
2345
+
2346
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2347
+
2348
+ ## [0.0.109](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.108...v0.0.109) (2022-01-28)
2349
+
2350
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2351
+
2352
+ ## [0.0.108](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.107...v0.0.108) (2022-01-24)
2353
+
2354
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2355
+
2356
+ ## [0.0.107](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.106...v0.0.107) (2022-01-20)
2357
+
2358
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2359
+
2360
+ ## [0.0.106](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.105...v0.0.106) (2022-01-10)
2361
+
2362
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2363
+
2364
+ ## [0.0.105](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.104...v0.0.105) (2021-12-30)
2365
+
2366
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2367
+
2368
+ ## [0.0.104](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.103...v0.0.104) (2021-12-29)
2369
+
2370
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2371
+
2372
+ ## [0.0.103](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.102...v0.0.103) (2021-12-28)
2373
+
2374
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2375
+
2376
+ ## [0.0.102](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.101...v0.0.102) (2021-12-27)
2377
+
2378
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2379
+
2380
+ ## [0.0.101](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.100...v0.0.101) (2021-12-24)
2381
+
2382
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2383
+
2384
+ ## [0.0.100](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.99...v0.0.100) (2021-12-24)
2385
+
2386
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2387
+
2388
+ ## [0.0.99](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.98...v0.0.99) (2021-12-15)
2389
+
2390
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2391
+
2392
+ ## [0.0.98](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.97...v0.0.98) (2021-12-15)
2393
+
2394
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2395
+
2396
+ ## [0.0.97](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.96...v0.0.97) (2021-12-15)
2397
+
2398
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2399
+
2400
+ ## [0.0.96](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.95...v0.0.96) (2021-12-13)
2401
+
2402
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2403
+
2404
+ ## [0.0.95](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.94...v0.0.95) (2021-12-07)
2405
+
2406
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2407
+
2408
+ ## [0.0.94](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.93...v0.0.94) (2021-12-07)
2409
+
2410
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2411
+
2412
+ ## [0.0.93](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.92...v0.0.93) (2021-12-07)
2413
+
2414
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2415
+
2416
+ ## [0.0.92](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.91...v0.0.92) (2021-12-04)
2417
+
2418
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2419
+
2420
+ ## [0.0.91](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.90...v0.0.91) (2021-12-03)
2421
+
2422
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2423
+
2424
+ ## [0.0.90](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.89...v0.0.90) (2021-12-02)
2425
+
2426
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2427
+
2428
+ ## [0.0.89](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.88...v0.0.89) (2021-12-02)
2429
+
2430
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2431
+
2432
+ ## [0.0.88](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.87...v0.0.88) (2021-12-02)
2433
+
2434
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2435
+
2436
+ ## [0.0.87](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.86...v0.0.87) (2021-12-01)
2437
+
2438
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2439
+
2440
+ ## [0.0.86](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.85...v0.0.86) (2021-12-01)
2441
+
2442
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2443
+
2444
+ ## [0.0.85](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.84...v0.0.85) (2021-12-01)
2445
+
2446
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2447
+
2448
+ ## [0.0.84](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.83...v0.0.84) (2021-11-26)
2449
+
2450
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2451
+
2452
+ ## [0.0.83](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.82...v0.0.83) (2021-11-24)
2453
+
2454
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2455
+
2456
+ ## [0.0.82](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.81...v0.0.82) (2021-11-24)
2457
+
2458
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2459
+
2460
+ ## [0.0.81](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.80...v0.0.81) (2021-11-23)
2461
+
2462
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2463
+
2464
+ ## [0.0.80](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.79...v0.0.80) (2021-11-22)
2465
+
2466
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2467
+
2468
+ ## [0.0.79](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.78...v0.0.79) (2021-11-22)
2469
+
2470
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2471
+
2472
+ ## [0.0.78](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.77...v0.0.78) (2021-11-22)
2473
+
2474
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2475
+
2476
+ ## [0.0.77](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.76...v0.0.77) (2021-11-18)
2477
+
2478
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2479
+
2480
+ ## [0.0.76](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.75...v0.0.76) (2021-11-18)
2481
+
2482
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2483
+
2484
+ ## [0.0.75](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.74...v0.0.75) (2021-11-18)
2485
+
2486
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2487
+
2488
+ ## [0.0.74](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.73...v0.0.74) (2021-11-12)
2489
+
2490
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2491
+
2492
+ ## [0.0.73](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.71...v0.0.73) (2021-11-11)
2493
+
2494
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2495
+
2496
+ ## [0.0.71](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.70...v0.0.71) (2021-11-11)
2497
+
2498
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2499
+
2500
+ ## [0.0.70](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.69...v0.0.70) (2021-11-08)
2501
+
2502
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2503
+
2504
+ ## [0.0.69](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.68...v0.0.69) (2021-11-03)
2505
+
2506
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2507
+
2508
+ ## [0.0.68](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.67...v0.0.68) (2021-11-02)
2509
+
2510
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2511
+
2512
+ ## [0.0.67](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.66...v0.0.67) (2021-11-02)
2513
+
2514
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2515
+
2516
+ ## [0.0.66](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.65...v0.0.66) (2021-11-02)
2517
+
2518
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2519
+
2520
+ ## [0.0.65](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.64...v0.0.65) (2021-11-01)
2521
+
2522
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2523
+
2524
+ ## [0.0.64](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.63...v0.0.64) (2021-10-28)
2525
+
2526
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2527
+
2528
+ ## [0.0.63](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.62...v0.0.63) (2021-10-28)
2529
+
2530
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2531
+
2532
+ ## [0.0.62](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.61...v0.0.62) (2021-10-28)
2533
+
2534
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2535
+
2536
+ ## [0.0.61](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.60...v0.0.61) (2021-10-26)
2537
+
2538
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2539
+
2540
+ ## [0.0.60](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.59...v0.0.60) (2021-10-22)
2541
+
2542
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2543
+
2544
+ ## [0.0.59](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.58...v0.0.59) (2021-10-20)
2545
+
2546
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2547
+
2548
+ ## [0.0.58](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.57...v0.0.58) (2021-10-20)
2549
+
2550
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2551
+
2552
+ ## [0.0.57](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.56...v0.0.57) (2021-10-15)
2553
+
2554
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2555
+
2556
+ ## [0.0.56](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.55...v0.0.56) (2021-10-13)
2557
+
2558
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2559
+
2560
+ ## [0.0.55](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.54...v0.0.55) (2021-10-13)
2561
+
2562
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2563
+
2564
+ ## [0.0.54](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.53...v0.0.54) (2021-10-13)
2565
+
2566
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2567
+
2568
+ ## [0.0.53](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.52...v0.0.53) (2021-10-13)
2569
+
2570
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2571
+
2572
+ ## [0.0.52](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.51...v0.0.52) (2021-10-13)
2573
+
2574
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2575
+
2576
+ ## [0.0.51](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.50...v0.0.51) (2021-10-13)
2577
+
2578
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2579
+
2580
+ ## [0.0.50](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.49...v0.0.50) (2021-10-12)
2581
+
2582
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2583
+
2584
+ ## [0.0.49](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.48...v0.0.49) (2021-10-12)
2585
+
2586
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2587
+
2588
+ ## [0.0.48](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.47...v0.0.48) (2021-10-06)
2589
+
2590
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2591
+
2592
+ ## [0.0.47](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.46...v0.0.47) (2021-10-06)
2593
+
2594
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2595
+
2596
+ ## [0.0.46](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.45...v0.0.46) (2021-09-30)
2597
+
2598
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2599
+
2600
+ ## [0.0.45](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.44...v0.0.45) (2021-09-30)
2601
+
2602
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2603
+
2604
+ ## [0.0.44](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.43...v0.0.44) (2021-09-29)
2605
+
2606
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2607
+
2608
+ ## [0.0.43](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.42...v0.0.43) (2021-09-24)
2609
+
2610
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2611
+
2612
+ ## [0.0.42](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.41...v0.0.42) (2021-09-23)
2613
+
2614
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2615
+
2616
+ ## [0.0.41](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.40...v0.0.41) (2021-09-23)
2617
+
2618
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2619
+
2620
+ ## [0.0.40](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.39...v0.0.40) (2021-09-23)
2621
+
2622
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2623
+
2624
+ ## [0.0.39](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.38...v0.0.39) (2021-09-13)
2625
+
2626
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2627
+
2628
+ ## [0.0.38](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.37...v0.0.38) (2021-09-09)
2629
+
2630
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2631
+
2632
+ ## [0.0.37](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.36...v0.0.37) (2021-09-07)
2633
+
2634
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2635
+
2636
+ ## [0.0.36](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.35...v0.0.36) (2021-09-07)
2637
+
2638
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2639
+
2640
+ ## [0.0.35](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.34...v0.0.35) (2021-09-07)
2641
+
2642
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2643
+
2644
+ ## [0.0.34](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.33...v0.0.34) (2021-09-07)
2645
+
2646
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2647
+
2648
+ ## [0.0.33](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.32...v0.0.33) (2021-09-02)
2649
+
2650
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2651
+
2652
+ ## [0.0.32](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.31...v0.0.32) (2021-08-31)
2653
+
2654
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2655
+
2656
+ ## [0.0.31](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.30...v0.0.31) (2021-08-30)
2657
+
2658
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2659
+
2660
+ ## [0.0.30](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.29...v0.0.30) (2021-08-26)
2661
+
2662
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2663
+
2664
+ ## [0.0.29](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.28...v0.0.29) (2021-08-20)
2665
+
2666
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2667
+
2668
+ ## [0.0.28](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.27...v0.0.28) (2021-08-19)
2669
+
2670
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2671
+
2672
+ ## [0.0.27](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.26...v0.0.27) (2021-08-19)
2673
+
2674
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2675
+
2676
+ ## [0.0.26](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.25...v0.0.26) (2021-08-19)
2677
+
2678
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2679
+
2680
+ ## [0.0.25](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.24...v0.0.25) (2021-08-12)
2681
+
2682
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2683
+
2684
+ ## [0.0.24](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.23...v0.0.24) (2021-08-12)
2685
+
2686
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2687
+
2688
+ ## [0.0.23](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.22...v0.0.23) (2021-08-12)
2689
+
2690
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2691
+
2692
+ ## [0.0.22](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.21...v0.0.22) (2021-08-11)
2693
+
2694
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2695
+
2696
+ ## [0.0.21](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.20...v0.0.21) (2021-08-11)
2697
+
2698
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2699
+
2700
+ ## [0.0.20](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.19...v0.0.20) (2021-08-11)
2701
+
2702
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2703
+
2704
+ ## [0.0.19](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.18...v0.0.19) (2021-08-11)
2705
+
2706
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2707
+
2708
+ ## [0.0.18](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.17...v0.0.18) (2021-08-11)
2709
+
2710
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2711
+
2712
+ ## [0.0.17](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.16...v0.0.17) (2021-08-10)
2713
+
2714
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2715
+
2716
+ ## [0.0.16](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.15...v0.0.16) (2021-08-10)
2717
+
2718
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2719
+
2720
+ ## [0.0.15](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.14...v0.0.15) (2021-08-09)
2721
+
2722
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2723
+
2724
+ ## [0.0.14](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.13...v0.0.14) (2021-08-05)
2725
+
2726
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2727
+
2728
+ ## [0.0.13](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.12...v0.0.13) (2021-08-05)
2729
+
2730
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2731
+
2732
+ ## [0.0.12](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.11...v0.0.12) (2021-08-05)
2733
+
2734
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2735
+
2736
+ ## [0.0.11](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.10...v0.0.11) (2021-08-05)
2737
+
2738
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2739
+
2740
+ ## [0.0.10](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.9...v0.0.10) (2021-08-04)
2741
+
2742
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2743
+
2744
+ ## [0.0.9](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.8...v0.0.9) (2021-08-04)
2745
+
2746
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2747
+
2748
+ ## [0.0.8](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.7...v0.0.8) (2021-08-02)
2749
+
2750
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2751
+
2752
+ ## [0.0.7](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.6...v0.0.7) (2021-07-29)
2753
+
2754
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2755
+
2756
+ ## [0.0.6](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.5...v0.0.6) (2021-07-28)
2757
+
2758
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2759
+
2760
+ ## [0.0.5](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.4...v0.0.5) (2021-07-22)
2761
+
2762
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2763
+
2764
+ ## [0.0.4](https://github.com/VirtoCommerce/vc-shell/compare/v0.0.3...v0.0.4) (2021-07-21)
2765
+
2766
+ **Note:** Version bump only for package @vc-shell/create-vc-app
2767
+
2768
+ ## 0.0.3 (2021-07-20)
2769
+
2770
+ **Note:** Version bump only for package @vc-shell/create-vc-app