cloudcc-cli 2.2.5 → 2.2.7

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 (130) hide show
  1. package/.cloudcc-cache.json +38 -0
  2. package/README.md +1435 -522
  3. package/bin/cc.js +7 -2
  4. package/bin/index.js +4 -0
  5. package/java/com/cloudcc/core/BaseException.java +100 -0
  6. package/java/com/cloudcc/core/BusiException.java +43 -0
  7. package/java/com/cloudcc/core/CCService.java +3 -1
  8. package/java/com/cloudcc/core/StringUtils.java +7 -0
  9. package/java/com/cloudcc/core/TimeUtil.java +33 -0
  10. package/java/com/cloudcc/core/UserInfo.java +9 -0
  11. package/package.json +7 -1
  12. package/pom.xml +1 -1
  13. package/skill/BACKEND_CODE.md +114 -0
  14. package/skill/CLI_CHEATSHEET.md +90 -0
  15. package/skill/INSTALL_AND_BOOTSTRAP.md +59 -0
  16. package/skill/OBJECTS_AND_FIELDS.md +120 -0
  17. package/skill/REQUIREMENTS_BREAKDOWN.md +98 -0
  18. package/skill/SKILL.md +33 -0
  19. package/skill/VUE_CUSTOM_COMPONENT.md +50 -0
  20. package/src/api/backend-sdk-java.md +427 -0
  21. package/src/api/ccdk-sdk.md +1039 -0
  22. package/src/application/create.js +114 -0
  23. package/src/application/get.js +13 -0
  24. package/src/application/index.js +8 -0
  25. package/src/classes/doc.js +486 -0
  26. package/src/classes/index.js +1 -0
  27. package/src/mcp/cliRunner.js +61 -0
  28. package/src/mcp/index.js +84 -12
  29. package/src/mcp/readme.md +6 -3
  30. package/src/mcp/tools/Application Creator/handler.js +78 -0
  31. package/src/mcp/tools/Approval/handler.js +34 -151
  32. package/src/mcp/tools/Class Creator/handler.js +18 -15
  33. package/src/mcp/tools/Class Detail Retriever/handler.js +8 -9
  34. package/src/mcp/tools/Class Editor Guide/handler.js +5 -19
  35. package/src/mcp/tools/Class List Retriever/handler.js +8 -3
  36. package/src/mcp/tools/Class Publisher/handler.js +7 -9
  37. package/src/mcp/tools/Class Puller/handler.js +6 -65
  38. package/src/mcp/tools/Client Script Detail Retriever/handler.js +12 -18
  39. package/src/mcp/tools/Client Script Editor Guide/handler.js +9 -605
  40. package/src/mcp/tools/Client Script List Retriever/handler.js +30 -33
  41. package/src/mcp/tools/Client Script Publisher/handler.js +12 -11
  42. package/src/mcp/tools/Client Script Puller/handler.js +23 -30
  43. package/src/mcp/tools/CloudCC Development Overview/handler.js +11 -5
  44. package/src/mcp/tools/Component Creator/handler.js +12 -11
  45. package/src/mcp/tools/Component Detail Retriever/handler.js +12 -9
  46. package/src/mcp/tools/Component Editor Guide/handler.js +5 -22
  47. package/src/mcp/tools/Component List Retriever/handler.js +21 -18
  48. package/src/mcp/tools/Component Publisher/handler.js +25 -3
  49. package/src/mcp/tools/Component Puller/handler.js +13 -16
  50. package/src/mcp/tools/Dev Environment Creator/handler.js +5 -72
  51. package/src/mcp/tools/Dev Environment Validator/handler.js +5 -66
  52. package/src/mcp/tools/Developer Key Setup Guide/handler.js +11 -20
  53. package/src/mcp/tools/JSP Migrator/handler.js +842 -0
  54. package/src/mcp/tools/Menu Creator/handler.js +86 -0
  55. package/src/mcp/tools/Object Creator/handler.js +14 -6
  56. package/src/mcp/tools/Object Fields Creator/handler.js +9 -10
  57. package/src/mcp/tools/Object Fields Retriever/handler.js +6 -3
  58. package/src/mcp/tools/Object List Retriever/handler.js +10 -7
  59. package/src/mcp/tools/Scheduled Class Creator/handler.js +12 -16
  60. package/src/mcp/tools/Scheduled Class Detail Retriever/handler.js +7 -9
  61. package/src/mcp/tools/Scheduled Class List Retriever/handler.js +21 -23
  62. package/src/mcp/tools/Scheduled Class Publisher/handler.js +7 -9
  63. package/src/mcp/tools/Scheduled Class Puller/handler.js +6 -70
  64. package/src/mcp/tools/Trigger Creator/handler.js +12 -20
  65. package/src/mcp/tools/Trigger Detail Retriever/handler.js +7 -9
  66. package/src/mcp/tools/Trigger Editor Guide/handler.js +10 -35
  67. package/src/mcp/tools/Trigger List Retriever/handler.js +12 -4
  68. package/src/mcp/tools/Trigger Publisher/handler.js +8 -11
  69. package/src/mcp/tools/Trigger Puller/handler.js +12 -17
  70. package/src/menu/common.js +16 -0
  71. package/src/menu/create-object.js +94 -0
  72. package/src/menu/create-page.js +108 -0
  73. package/src/menu/create-script.js +108 -0
  74. package/src/menu/create-site.js +108 -0
  75. package/src/menu/create.js +54 -0
  76. package/src/menu/index.js +7 -0
  77. package/src/plugin/doc.js +801 -0
  78. package/src/plugin/index.js +1 -0
  79. package/src/plugin/pull.js +3 -0
  80. package/src/project/doc.js +378 -0
  81. package/src/project/index.js +1 -0
  82. package/src/script/doc.js +259 -0
  83. package/src/script/index.js +1 -0
  84. package/src/timer/index.js +1 -0
  85. package/src/triggers/doc.js +342 -0
  86. package/src/triggers/index.js +5 -0
  87. package/target/classes/com/cloudcc/core/BaseException.class +0 -0
  88. package/target/classes/com/cloudcc/core/BusiException.class +0 -0
  89. package/target/classes/com/cloudcc/core/CCService.class +0 -0
  90. package/target/classes/com/cloudcc/core/StringUtils.class +0 -0
  91. package/target/classes/com/cloudcc/core/TimeUtil.class +0 -0
  92. package/target/classes/com/cloudcc/core/UserInfo.class +0 -0
  93. package/template/lib/ccopenapi-0.0.4.jar +0 -0
  94. package/test/application.cli.test.js +30 -0
  95. package/test/classes.cli.test.js +121 -0
  96. package/test/fields.cli.test.js +69 -0
  97. package/test/mcp.cli.test.js +21 -0
  98. package/test/menu.cli.test.js +41 -0
  99. package/test/object.cli.test.js +64 -0
  100. package/test/plugin.cli.test.js +109 -0
  101. package/test/script.cli.test.js +101 -0
  102. package/test/timer.cli.test.js +107 -0
  103. package/test/trigger.cli.test.js +146 -0
  104. package/.vscode/settings.json +0 -3
  105. package/bin/mcp-svc.js +0 -13
  106. package/src/mcp/MCP/345/234/272/346/231/257/346/250/241/346/213/237.md +0 -8
  107. package/src/mcp/index-sse-svc.js +0 -126
  108. package/src/mcp/index-streamable-svc.js +0 -180
  109. package/src/mcp/tools/Class Detail Retriever/prompt.js +0 -37
  110. package/src/mcp/tools/Class Editor Guide/prompt.js +0 -468
  111. package/src/mcp/tools/Class Publisher/prompt.js +0 -40
  112. package/src/mcp/tools/Class Puller/prompt.js +0 -49
  113. package/src/mcp/tools/Client Script Creator/handler.js +0 -179
  114. package/src/mcp/tools/CloudCC Development Overview/prompt.js +0 -870
  115. package/src/mcp/tools/Component Editor Guide/prompt.js +0 -519
  116. package/src/mcp/tools/Component Publisher/prompt.js +0 -659
  117. package/src/mcp/tools/Dev Environment Creator/prompt.js +0 -273
  118. package/src/mcp/tools/Dev Environment Validator/prompt.js +0 -193
  119. package/src/mcp/tools/Developer Key Setup Guide/prompt.js +0 -71
  120. package/src/mcp/tools/Object Fields Retriever/prompt.js +0 -10
  121. package/src/mcp/tools/Object List Retriever/prompt.js +0 -10
  122. package/src/mcp/tools/ccdk/fetcher.js +0 -18
  123. package/src/mcp/tools/ccdk/handler.js +0 -98
  124. package/src/mcp/tools/ccdk/prompt.js +0 -453
  125. package/target/ccopenapi-0.0.3-classes.jar +0 -0
  126. package/target/ccopenapi-0.0.3.jar +0 -0
  127. package/target/maven-archiver/pom.properties +0 -3
  128. package/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst +0 -18
  129. package/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst +0 -19
  130. package/template/lib/ccopenapi-0.0.3.jar +0 -0
package/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # Usage Guide
2
- * Global Installation
2
+
3
+ - Global Installation
4
+
3
5
  ```
4
6
  // window
5
7
  npm i -g cloudcc-cli
@@ -7,7 +9,9 @@ npm i -g cloudcc-cli
7
9
  // macos
8
10
  sudo npm i -g cloudcc-cli
9
11
  ```
10
- * Configure MCP
12
+
13
+ - Configure MCP
14
+
11
15
  ```
12
16
  {
13
17
  "mcpServers": {
@@ -17,1609 +21,2518 @@ sudo npm i -g cloudcc-cli
17
21
  }
18
22
  }
19
23
  ```
24
+
25
+ # ReleaseV2.2.7
26
+
27
+ #### Release Date: 2026-3-20
28
+
29
+ #### Release Scope: Full
30
+
31
+ #### Release Content
32
+
33
+ - Optimization
34
+ - 规范mcp使用,必须调用cc命令
35
+ - 提供了skill,用于访问cc命令
36
+
37
+ # ReleaseV2.2.6
38
+
39
+ #### Release Date: 2026-2-25
40
+
41
+ #### Release Scope: Full
42
+
43
+ #### Release Content
44
+
45
+ - Optimization
46
+ - Add MCP tool for creating objects
47
+ - Add MCP tool for creating applications
48
+ - Add Supabase MCP overview
49
+ - Fix
50
+ - Fix component download compatibility with Windows path separators
51
+
20
52
  # ReleaseV2.2.5
53
+
21
54
  #### Release Date: 2026-1-19
55
+
22
56
  #### Release Scope: Full
57
+
23
58
  #### Release Content
24
- * Optimization
25
- * update .npmignore
26
59
 
60
+ - Optimization
61
+ - update .npmignore
27
62
 
28
63
  # ReleaseV2.2.4
64
+
29
65
  #### Release Date: 2026-1-19
66
+
30
67
  #### Release Scope: Full
68
+
31
69
  #### Release Content
32
- * Optimization
33
- * Add create object MCP
34
- * Add query object list MCP
35
- * Add trigger management MCP
36
- * Add custom component management MCP
37
- * Add client script management MCP
38
- * Add buildVersion, use new version when v2
39
- * Optimize configuration cache logic to avoid updating cached configuration every time
40
- * Add pull custom component functionality
41
- * Fix issue where class files could still be created even when configuration was missing
70
+
71
+ - Optimization
72
+ - Add create object MCP
73
+ - Add query object list MCP
74
+ - Add trigger management MCP
75
+ - Add custom component management MCP
76
+ - Add client script management MCP
77
+ - Add buildVersion, use new version when v2
78
+ - Optimize configuration cache logic to avoid updating cached configuration
79
+ every time
80
+ - Add pull custom component functionality
81
+ - Fix issue where class files could still be created even when configuration
82
+ was missing
42
83
 
43
84
  # ReleaseV2.2.3
85
+
44
86
  #### Release Date: 2025-12-11
87
+
45
88
  #### Release Scope: Full
89
+
46
90
  #### Release Content
47
- * Optimization
48
- * Add development environment setup MCP service
49
- * Add security key retrieval MCP service
50
- * Add Class management MCP service
51
- * Add custom component management MCP service
52
- * Configuration information prioritized from config
53
- * Fix script tag search logic
91
+
92
+ - Optimization
93
+ - Add development environment setup MCP service
94
+ - Add security key retrieval MCP service
95
+ - Add Class management MCP service
96
+ - Add custom component management MCP service
97
+ - Configuration information prioritized from config
98
+ - Fix script tag search logic
54
99
 
55
100
  # ReleaseV2.2.2
101
+
56
102
  #### Release Date: 2025-12-3
103
+
57
104
  #### Release Scope: Full
105
+
58
106
  #### Release Content
59
- * Optimization
60
- * Added links to development documentation and changelog to version check output
61
- * Upgraded Node dependencies to version 20
62
- * Added timestamp output to multiple files to enhance user experience
107
+
108
+ - Optimization
109
+ - Added links to development documentation and changelog to version check
110
+ output
111
+ - Upgraded Node dependencies to version 20
112
+ - Added timestamp output to multiple files to enhance user experience
63
113
 
64
114
  # ReleaseV2.2.1
115
+
65
116
  #### Release Date: 2025-11-24
117
+
66
118
  #### Release Scope: Full
119
+
67
120
  #### Release Content
68
- * Optimization
69
- * update other config
121
+
122
+ - Optimization
123
+ - update other config
70
124
 
71
125
  # ReleaseV2.2.0
126
+
72
127
  #### Release Date: 2025-11-24
128
+
73
129
  #### Release Scope: Full
130
+
74
131
  #### Release Content
75
- * Optimization
76
- * Update the packaging and parsing of Vue files
77
- * Add upload dependency tree to custom component
132
+
133
+ - Optimization
134
+ - Update the packaging and parsing of Vue files
135
+ - Add upload dependency tree to custom component
78
136
 
79
137
  # ReleaseV2.1.9
138
+
80
139
  #### Release Date: 2025-9-1
140
+
81
141
  #### Release Scope: Full
142
+
82
143
  #### Release Content
83
- * Optimization
84
- * getBaseUrl change orgId.
144
+
145
+ - Optimization
146
+ - getBaseUrl change orgId.
85
147
 
86
148
  # ReleaseV2.1.8
149
+
87
150
  #### Release Date: 2025-7-30
151
+
88
152
  #### Release Scope: Full
153
+
89
154
  #### Release Content
90
- * Optimization
91
- * pull timer/classes/triggers use name。
155
+
156
+ - Optimization
157
+ - pull timer/classes/triggers use name。
92
158
 
93
159
  # ReleaseV2.1.7
160
+
94
161
  #### Release Date: 2025-7-18
162
+
95
163
  #### Release Scope: Full
164
+
96
165
  #### Release Content
97
- * Optimization
98
- * timer pull change name。
99
- * classes pull change name。
166
+
167
+ - Optimization
168
+ - timer pull change name。
169
+ - classes pull change name。
100
170
 
101
171
  # ReleaseV2.1.6
172
+
102
173
  #### Release Date: 2025-7-18
174
+
103
175
  #### Release Scope: Full
176
+
104
177
  #### Release Content
105
- * Optimization
106
- * triggers pull change name。
178
+
179
+ - Optimization
180
+ - triggers pull change name。
107
181
 
108
182
  # ReleaseV2.1.5
183
+
109
184
  #### Release Date: 2025-7-3
185
+
110
186
  #### Release Scope: Full
187
+
111
188
  #### Release Content
112
- * Optimization
113
- * triggers temp add super(userInfo);
189
+
190
+ - Optimization
191
+ - triggers temp add super(userInfo);
114
192
 
115
193
  # ReleaseV2.1.4
194
+
116
195
  #### Release Date: 2025-7-2
196
+
117
197
  #### Release Scope: Full
198
+
118
199
  #### Release Content
119
- * Optimization
120
- * delete dead code
200
+
201
+ - Optimization
202
+ - delete dead code
121
203
 
122
204
  # ReleaseV2.1.3
205
+
123
206
  #### Release Date: 2025-7-2
207
+
124
208
  #### Release Scope: Full
209
+
125
210
  #### Release Content
126
- * Optimization
127
- * add pull all trggers
128
- * add pull all timer
129
- * add pull all script
211
+
212
+ - Optimization
213
+ - add pull all trggers
214
+ - add pull all timer
215
+ - add pull all script
130
216
 
131
217
  # ReleaseV2.1.2
218
+
132
219
  #### Release Date: 2025-7-1
220
+
133
221
  #### Release Scope: Full
222
+
134
223
  #### Release Content
135
- * Optimization
136
- * add pull all classes
224
+
225
+ - Optimization
226
+ - add pull all classes
137
227
 
138
228
  # ReleaseV2.1.1
229
+
139
230
  #### Release Date: 2025-5-23
231
+
140
232
  #### Release Scope: Full
233
+
141
234
  #### Release Content
142
- * Optimization
143
- * update openapi jar to 0.0.3
235
+
236
+ - Optimization
237
+ - update openapi jar to 0.0.3
144
238
 
145
239
  # ReleaseV2.1.0
240
+
146
241
  #### Release Date: 2025-5-21
242
+
147
243
  #### Release Scope: Full
244
+
148
245
  #### Release Content
149
- * Optimization
150
- * publish add ()
246
+
247
+ - Optimization
248
+ - publish add ()
151
249
 
152
250
  # ReleaseV2.0.9
251
+
153
252
  #### Release Date: 2025-5-16
253
+
154
254
  #### Release Scope: Full
255
+
155
256
  #### Release Content
156
- * Optimization
157
- * create triggers add ccobject。
257
+
258
+ - Optimization
259
+ - create triggers add ccobject。
158
260
 
159
261
  # ReleaseV2.0.8
262
+
160
263
  #### Release Date: 2025-5-16
264
+
161
265
  #### Release Scope: Full
266
+
162
267
  #### Release Content
163
- * Optimization
164
- * create triggers add ccobject。
268
+
269
+ - Optimization
270
+ - create triggers add ccobject。
165
271
 
166
272
  # ReleaseV2.0.7
273
+
167
274
  #### Release Date: 2025-5-16
275
+
168
276
  #### Release Scope: Full
277
+
169
278
  #### Release Content
170
- * Optimization
171
- * create triggers add ccobject。
279
+
280
+ - Optimization
281
+ - create triggers add ccobject。
172
282
 
173
283
  # ReleaseV2.0.6
284
+
174
285
  #### Release Date: 2025-5-13
286
+
175
287
  #### Release Scope: Full
288
+
176
289
  #### Release Content
177
- * Optimization
178
- * Optimize the request header and ensure that the source field is included to facilitate source tracking build1
290
+
291
+ - Optimization
292
+ - Optimize the request header and ensure that the source field is included to
293
+ facilitate source tracking build1
179
294
 
180
295
  # ReleaseV2.0.5
296
+
181
297
  #### Release Date: 2025-5-9
298
+
182
299
  #### Release Scope: Full
300
+
183
301
  #### Release Content
184
- * Optimization
185
- * Optimize the request header and ensure that the source field is included to facilitate source tracking
302
+
303
+ - Optimization
304
+ - Optimize the request header and ensure that the source field is included to
305
+ facilitate source tracking
186
306
 
187
307
  # ReleaseV2.0.4
308
+
188
309
  #### Release Date: 2025-4-8
310
+
189
311
  #### Release Scope: Full
312
+
190
313
  #### Release Content
191
- * Optimization
192
- * Optimize the plugin token acquisition logic to ensure that tokens are requested only in non-private versions
314
+
315
+ - Optimization
316
+ - Optimize the plugin token acquisition logic to ensure that tokens are
317
+ requested only in non-private versions
193
318
 
194
319
  # ReleaseV2.0.3
320
+
195
321
  #### Release Date: 2025-4-8
322
+
196
323
  #### Release Scope: Full
324
+
197
325
  #### Release Content
198
- * Optimization
199
- * Added CloudCCDev field initialization for configuration files and optimized error handling for obtaining plugin tokens
200
326
 
201
-
327
+ - Optimization
328
+ - Added CloudCCDev field initialization for configuration files and optimized
329
+ error handling for obtaining plugin tokens
330
+
202
331
  # ReleaseV2.0.2
332
+
203
333
  #### Release Date: 2025-4-2
334
+
204
335
  #### Release Scope: Full
336
+
205
337
  #### Release Content
206
- * Optimization
207
- * Fix baseUrl Prefix
338
+
339
+ - Optimization
340
+ - Fix baseUrl Prefix
208
341
 
209
342
  # ReleaseV2.0.1
343
+
210
344
  #### Release Date: 2025-4-2
345
+
211
346
  #### Release Scope: Full
347
+
212
348
  #### Release Content
213
- * Optimization
214
- * update error message
215
- * Add verification to the pull method
216
- * publish plugin change http
349
+
350
+ - Optimization
351
+ - update error message
352
+ - Add verification to the pull method
353
+ - publish plugin change http
217
354
 
218
355
  # ReleaseV2.0.0
356
+
219
357
  #### Release Date: 2025-4-2
358
+
220
359
  #### Release Scope: Full
360
+
221
361
  #### Release Content
222
- * Optimization
223
- * Simplify developer information configuration
224
- * Add component compilation error capture
225
- * change http methods
226
- * auto update ccopenapi.jar
362
+
363
+ - Optimization
364
+ - Simplify developer information configuration
365
+ - Add component compilation error capture
366
+ - change http methods
367
+ - auto update ccopenapi.jar
227
368
 
228
369
  # ReleaseV1.9.9
370
+
229
371
  #### Release Date: 2025-3-12
372
+
230
373
  #### Release Scope: Full
374
+
231
375
  #### Release Content
232
- * Optimization
233
- * update template code.
376
+
377
+ - Optimization
378
+ - update template code.
234
379
 
235
380
  # ReleaseV1.9.8
381
+
236
382
  #### Release Date: 2025-3-12
383
+
237
384
  #### Release Scope: Full
385
+
238
386
  #### Release Content
239
- * Optimization
240
- * update project template.
387
+
388
+ - Optimization
389
+ - update project template.
241
390
 
242
391
  # ReleaseV1.9.7
392
+
243
393
  #### Release Date: 2025-3-12
394
+
244
395
  #### Release Scope: Full
396
+
245
397
  #### Release Content
246
- * Optimization
247
- * add class test.
398
+
399
+ - Optimization
400
+ - add class test.
248
401
 
249
402
  # ReleaseV1.9.6
403
+
250
404
  #### Release Date: 2025-3-11
405
+
251
406
  #### Release Scope: Full
407
+
252
408
  #### Release Content
253
- * Optimization
254
- * change triggers function name
409
+
410
+ - Optimization
411
+ - change triggers function name
255
412
 
256
413
  # ReleaseV1.9.5
414
+
257
415
  #### Release Date: 2025-3-11
416
+
258
417
  #### Release Scope: Full
418
+
259
419
  #### Release Content
260
- * Optimization
261
- * plugin add component file
420
+
421
+ - Optimization
422
+ - plugin add component file
262
423
 
263
424
  # ReleaseV1.9.4
425
+
264
426
  #### Release Date: 2025-3-7
427
+
265
428
  #### Release Scope: Full
429
+
266
430
  #### Release Content
267
- * Optimization
268
- * upload class template
431
+
432
+ - Optimization
433
+ - upload class template
269
434
 
270
435
  # ReleaseV1.9.3
436
+
271
437
  #### Release Date: 2025-2-28
438
+
272
439
  #### Release Scope: Full
440
+
273
441
  #### Release Content
274
- * Optimization
275
- * Add the function of getting object field attributes
442
+
443
+ - Optimization
444
+ - Add the function of getting object field attributes
276
445
 
277
446
  # ReleaseV1.9.2
447
+
278
448
  #### Release Date: 2025-2-11
449
+
279
450
  #### Release Scope: Full
451
+
280
452
  #### Release Content
281
- * Optimization
282
- * change javaContentRegular
283
- * trigger add method name
453
+
454
+ - Optimization
455
+ - change javaContentRegular
456
+ - trigger add method name
284
457
 
285
458
  # ReleaseV1.9.1
459
+
286
460
  #### Release Date: 2025-2-10
461
+
287
462
  #### Release Scope: Full
463
+
288
464
  #### Release Content
289
- * Optimization
290
- * class add javaContentRegular
291
- * change judge
465
+
466
+ - Optimization
467
+ - class add javaContentRegular
468
+ - change judge
292
469
 
293
470
  # ReleaseV1.9.0
471
+
294
472
  #### Release Date: 2025-2-10
473
+
295
474
  #### Release Scope: Full
475
+
296
476
  #### Release Content
297
- * Optimization
298
- * add pull code method
477
+
478
+ - Optimization
479
+ - add pull code method
299
480
 
300
481
  # ReleaseV1.8.9
482
+
301
483
  #### Release Date: 2025-2-6
484
+
302
485
  #### Release Scope: Full
486
+
303
487
  #### Release Content
304
- * Optimization
305
- * delete console
488
+
489
+ - Optimization
490
+ - delete console
306
491
 
307
492
  # ReleaseV1.8.8
493
+
308
494
  #### Release Date: 2025-2-6
495
+
309
496
  #### Release Scope: Full
497
+
310
498
  #### Release Content
311
- * Optimization
312
- * Adjust the logic of obtaining content in the client script
499
+
500
+ - Optimization
501
+ - Adjust the logic of obtaining content in the client script
313
502
 
314
503
  # ReleaseV1.8.7
504
+
315
505
  #### Release Date: 2025-2-5
506
+
316
507
  #### Release Scope: Full
508
+
317
509
  #### Release Content
318
- * Optimization
319
- * Adjust the logic of obtaining objects
510
+
511
+ - Optimization
512
+ - Adjust the logic of obtaining objects
320
513
 
321
514
  # ReleaseV1.8.6
515
+
322
516
  #### Release Date: 2025-2-5
517
+
323
518
  #### Release Scope: Full
519
+
324
520
  #### Release Content
325
- * Optimization
326
- * Adjust the logic of publishing client script to obtain token
521
+
522
+ - Optimization
523
+ - Adjust the logic of publishing client script to obtain token
327
524
 
328
525
  # ReleaseV1.8.5
526
+
329
527
  #### Release Date: 2025-1-24
528
+
330
529
  #### Release Scope: Full
530
+
331
531
  #### Release Content
332
- * Optimization
333
- * Rollback the create trigger folder function
532
+
533
+ - Optimization
534
+ - Rollback the create trigger folder function
334
535
 
335
536
  # ReleaseV1.8.3
537
+
336
538
  #### Release Date: 2025-1-22
539
+
337
540
  #### Release Scope: Full
541
+
338
542
  #### Release Content
339
- * Optimization
340
- * Adjust the encoding
543
+
544
+ - Optimization
545
+ - Adjust the encoding
341
546
 
342
547
  # ReleaseV1.8.2
548
+
343
549
  #### Release Date: 2025-1-21
550
+
344
551
  #### Release Scope: Full
552
+
345
553
  #### Release Content
346
- * Optimization
347
- * Create a project and stop checking the version upgrade。
348
- * Add custom object search
554
+
555
+ - Optimization
556
+ - Create a project and stop checking the version upgrade。
557
+ - Add custom object search
349
558
 
350
559
  # ReleaseV1.8.1
560
+
351
561
  #### Release Date: 2025-1-21
562
+
352
563
  #### Release Scope: Full
564
+
353
565
  #### Release Content
354
- * Optimization
355
- * Fix the path transmission issue of the VS Code plugin.
566
+
567
+ - Optimization
568
+ - Fix the path transmission issue of the VS Code plugin.
356
569
 
357
570
  # ReleaseV1.8.0
571
+
358
572
  #### Release Date: 2025-1-20
573
+
359
574
  #### Release Scope: Full
575
+
360
576
  #### Release Content
361
- * Optimization
362
- * Add folder for creating triggers and client scripts
577
+
578
+ - Optimization
579
+ - Add folder for creating triggers and client scripts
363
580
 
364
581
  # ReleaseV1.7.9
582
+
365
583
  #### Release Date: 2025-1-15
584
+
366
585
  #### Release Scope: Full
586
+
367
587
  #### Release Content
368
- * Optimization
369
- * Adjust create1 template.
588
+
589
+ - Optimization
590
+ - Adjust create1 template.
370
591
 
371
592
  # ReleaseV1.7.8
593
+
372
594
  #### Release Date: 2025-1-15
595
+
373
596
  #### Release Scope: Full
597
+
374
598
  #### Release Content
375
- * Optimization
376
- * Adjust create1 template.
599
+
600
+ - Optimization
601
+ - Adjust create1 template.
377
602
 
378
603
  # ReleaseV1.7.7
604
+
379
605
  #### Release Date: 2025-1-14
606
+
380
607
  #### Release Scope: Full
608
+
381
609
  #### Release Content
382
- * Optimization
383
- * Adjust time to schedule.
610
+
611
+ - Optimization
612
+ - Adjust time to schedule.
384
613
 
385
614
  # ReleaseV1.7.6
615
+
386
616
  #### Release Date: 2025-1-14
617
+
387
618
  #### Release Scope: Full
619
+
388
620
  #### Release Content
389
- * Optimization
390
- * Adjust the logic of obtaining token in the release class.
391
- * Adjust the logic of intercepting data content in the release component.
621
+
622
+ - Optimization
623
+ - Adjust the logic of obtaining token in the release class.
624
+ - Adjust the logic of intercepting data content in the release component.
392
625
 
393
626
  # ReleaseV1.7.5
627
+
394
628
  #### Release Date: 2025-1-13
629
+
395
630
  #### Release Scope: Full
631
+
396
632
  #### Release Content
397
- * Optimization
398
- * Adjust the logic of finding data.
399
- * Adjust the logic of obtaining configuration information for creating components and releasing components.
400
- * Adjust the prefix name of the setup service.
401
- * Add token caching strategy.
402
- * Adjust ignore files.
403
- * Add source code identification for custom classes/timer/triggers: // @SOURCE_CONTENT_START // @SOURCE_CONTENT_END
633
+
634
+ - Optimization
635
+ - Adjust the logic of finding data.
636
+ - Adjust the logic of obtaining configuration information for creating
637
+ components and releasing components.
638
+ - Adjust the prefix name of the setup service.
639
+ - Add token caching strategy.
640
+ - Adjust ignore files.
641
+ - Add source code identification for custom classes/timer/triggers: //
642
+ @SOURCE_CONTENT_START // @SOURCE_CONTENT_END
404
643
 
405
644
  # ReleaseV1.7.4
645
+
406
646
  #### Release Date: 2025-1-7
647
+
407
648
  #### Release Scope: Full
649
+
408
650
  #### Release Content
409
- * Optimization
410
- * Adjust date and time format
651
+
652
+ - Optimization
653
+ - Adjust date and time format
411
654
 
412
655
  # ReleaseV1.7.3
656
+
413
657
  #### Release Date: 2025-1-7
658
+
414
659
  #### Release Scope: Full
660
+
415
661
  #### Release Content
416
- * Optimization
417
- * Handle circular reference issues.
662
+
663
+ - Optimization
664
+ - Handle circular reference issues.
418
665
 
419
666
  # ReleaseV1.7.2
667
+
420
668
  #### Release Date: 2024-12-5
669
+
421
670
  #### Release Scope: Full
671
+
422
672
  #### Release Content
423
- * Optimization
424
- * Compatible with different sources.
673
+
674
+ - Optimization
675
+ - Compatible with different sources.
425
676
 
426
677
  # ReleaseV1.6.9
678
+
427
679
  #### Release Date: 2024-11-12
680
+
428
681
  #### Release Scope: Full
682
+
429
683
  #### Release Content
430
- * Optimization
431
- * Split compatible space logic.
684
+
685
+ - Optimization
686
+ - Split compatible space logic.
432
687
 
433
688
  # ReleaseV1.6.8
689
+
434
690
  #### Release Date: 2024-9-18
691
+
435
692
  #### Release Scope: Full
693
+
436
694
  #### Release Content
437
- * Optimization
438
- * Replace packagelock content.
695
+
696
+ - Optimization
697
+ - Replace packagelock content.
439
698
 
440
699
  # ReleaseV1.6.7
700
+
441
701
  #### Release Date: 2024-8-6
702
+
442
703
  #### Release Scope: Full
704
+
443
705
  #### Release Content
444
- * Optimization
445
- * Clean up Chinese.
706
+
707
+ - Optimization
708
+ - Clean up Chinese.
446
709
 
447
710
  # ReleaseV1.6.6
711
+
448
712
  #### Release Date: 2024-8-6
713
+
449
714
  #### Release Scope: Full
715
+
450
716
  #### Release Content
451
- * Optimization
452
- * Adjust the access logic of setup and apisvc addresses.
453
- * Improve the process of creating triggers.
717
+
718
+ - Optimization
719
+ - Adjust the access logic of setup and apisvc addresses.
720
+ - Improve the process of creating triggers.
454
721
 
455
722
  # ReleaseV1.6.5
723
+
456
724
  #### Release Date: 2024-5-14
725
+
457
726
  #### Release Scope: Full
727
+
458
728
  #### Release Content
459
- * Optimization
460
- * Adjust component management logic
729
+
730
+ - Optimization
731
+ - Adjust component management logic
461
732
 
462
733
  # ReleaseV1.6.4
734
+
463
735
  #### Release Date: 2024-5-13
736
+
464
737
  #### Release Scope: Full
738
+
465
739
  #### Release Content
466
- * Optimization
467
- * Check the validity of security tags
740
+
741
+ - Optimization
742
+ - Check the validity of security tags
468
743
 
469
744
  # ReleaseV1.6.3
745
+
470
746
  #### Release Date: 2024-5-13
747
+
471
748
  #### Release Scope: Full
749
+
472
750
  #### Release Content
473
- * Optimization
474
- * Remove development logs
751
+
752
+ - Optimization
753
+ - Remove development logs
475
754
 
476
755
  # ReleaseV1.6.2
756
+
477
757
  #### Release Date: 2024-5-13
758
+
478
759
  #### Release Scope: Full
760
+
479
761
  #### Release Content
480
- * Optimization
481
- * Add command to create client scripts
482
- * Add logic to initialize git repository in the create project command
483
- * Add token acquisition function
484
- * Add function to get object collection
485
- * Add function to get object record type collection
486
- * Add configuration switching function
762
+
763
+ - Optimization
764
+ - Add command to create client scripts
765
+ - Add logic to initialize git repository in the create project command
766
+ - Add token acquisition function
767
+ - Add function to get object collection
768
+ - Add function to get object record type collection
769
+ - Add configuration switching function
487
770
 
488
771
  # ReleaseV1.6.1
772
+
489
773
  #### Release Date: 2024-4-24
774
+
490
775
  #### Release Scope: Full
776
+
491
777
  #### Release Content
492
- * Optimization
493
- * Fix the logic of obtaining baseurl
778
+
779
+ - Optimization
780
+ - Fix the logic of obtaining baseurl
494
781
 
495
782
  # ReleaseV1.6.0
783
+
496
784
  #### Release Date: 2024-3-26
785
+
497
786
  #### Release Scope: Full
787
+
498
788
  #### Release Content
499
- * Optimization
500
- * Clean up useless files
501
- * Upgrade vs code plugin
789
+
790
+ - Optimization
791
+ - Clean up useless files
792
+ - Upgrade vs code plugin
502
793
 
503
794
  # ReleaseV1.5.9
795
+
504
796
  #### Release Date: 2024-3-11
797
+
505
798
  #### Release Scope: Full
799
+
506
800
  #### Release Content
507
- * Fix
508
- * Change the help document address
801
+
802
+ - Fix
803
+ - Change the help document address
509
804
 
510
805
  # ReleaseV1.5.8
806
+
511
807
  #### Release Date: 2024-3-11
808
+
512
809
  #### Release Scope: Full
810
+
513
811
  #### Release Content
514
- * Iteration
515
- * Add command to create classes.
516
- * Add command to create triggers.
517
- * Add command to create timers.
812
+
813
+ - Iteration
814
+ - Add command to create classes.
815
+ - Add command to create triggers.
816
+ - Add command to create timers.
518
817
 
519
818
  # ReleaseV1.5.7
819
+
520
820
  #### Release Date: 2024-2-22
821
+
521
822
  #### Release Scope: Full
823
+
522
824
  #### Release Content
523
- * Optimization
524
- * Close httpsAgent and httpAgent authentication for axios.
525
- * Modify the logic of generating versions.
526
- * Delete useless code, only keep cli code.
825
+
826
+ - Optimization
827
+ - Close httpsAgent and httpAgent authentication for axios.
828
+ - Modify the logic of generating versions.
829
+ - Delete useless code, only keep cli code.
527
830
 
528
831
  # ReleaseV1.5.6
832
+
529
833
  #### Release Date: 2024-1-3
834
+
530
835
  #### Release Scope: Full
836
+
531
837
  #### Release Content
532
- * Fix
533
- * Use build1 command for component packaging.
838
+
839
+ - Fix
840
+ - Use build1 command for component packaging.
534
841
 
535
842
  # ReleaseV1.5.5
843
+
536
844
  #### Release Date: 2023-12-26
845
+
537
846
  #### Release Scope: Full
847
+
538
848
  #### Release Content
539
- * Fix
540
- * Package ordinary commands.
849
+
850
+ - Fix
851
+ - Package ordinary commands.
541
852
 
542
853
  # ReleaseV1.5.4
854
+
543
855
  #### Release Date: 2023-12-25
856
+
544
857
  #### Release Scope: Full
858
+
545
859
  #### Release Content
546
- * Iteration
547
- * Add build2 command.
860
+
861
+ - Iteration
862
+ - Add build2 command.
548
863
 
549
864
  # ReleaseV1.5.3
865
+
550
866
  #### Release Date: 2023-11-21
867
+
551
868
  #### Release Scope: Full
869
+
552
870
  #### Release Content
553
- * Iteration
554
- * Close scoped check and automatically add scoped.
555
- * Add style without scoped prompt.
871
+
872
+ - Iteration
873
+ - Close scoped check and automatically add scoped.
874
+ - Add style without scoped prompt.
556
875
 
557
876
  # ReleaseV1.5.2
877
+
558
878
  #### Release Date: 2023-10-17
879
+
559
880
  #### Release Scope: Full
881
+
560
882
  #### Release Content
561
- * Iteration
562
- * Remove dependency installation and open vs code operation from creating template projects
563
- * Change the source address for obtaining version numbers, use Alibaba source to obtain version information
883
+
884
+ - Iteration
885
+ - Remove dependency installation and open vs code operation from creating
886
+ template projects
887
+ - Change the source address for obtaining version numbers, use Alibaba source
888
+ to obtain version information
564
889
 
565
890
  # ReleaseV1.5.1
891
+
566
892
  #### Release Date: 2023-09-20
893
+
567
894
  #### Release Scope: Full
895
+
568
896
  #### Release Content
569
- * Iteration
570
- * Add cloudccCreatePlugin command to create template files
897
+
898
+ - Iteration
899
+ - Add cloudccCreatePlugin command to create template files
571
900
 
572
901
  # ReleaseV1.5.0
902
+
573
903
  #### Release Date: 2023-09-19
904
+
574
905
  #### Release Scope: Full
906
+
575
907
  #### Release Content
576
- * Iteration
577
- * Modify the annotation information in the package of the template project
578
- * Change baseUrl to default configuration
579
- * Simplify the content of vue files in the template
580
- * Set default style and other configurations when packaging components
581
- * Modify the exclusion library list of the template
582
- * Add version prompt and document link
583
- * Optimize template
908
+
909
+ - Iteration
910
+ - Modify the annotation information in the package of the template project
911
+ - Change baseUrl to default configuration
912
+ - Simplify the content of vue files in the template
913
+ - Set default style and other configurations when packaging components
914
+ - Modify the exclusion library list of the template
915
+ - Add version prompt and document link
916
+ - Optimize template
584
917
 
585
918
  # ReleaseV1.4.9
919
+
586
920
  #### Release Date: 2023-8-23
921
+
587
922
  #### Release Scope: Full
923
+
588
924
  #### Release Content
589
- * Iteration
590
- * Optimize the format of the json file generated by the version information
925
+
926
+ - Iteration
927
+ - Optimize the format of the json file generated by the version information
591
928
 
592
929
  # ReleaseV1.4.8
930
+
593
931
  #### Release Date: 2023-8-23
932
+
594
933
  #### Release Scope: Full
934
+
595
935
  #### Release Content
596
- * Iteration
597
- * Generate version information json file
936
+
937
+ - Iteration
938
+ - Generate version information json file
598
939
 
599
940
  # ReleaseV1.4.7
941
+
600
942
  #### Release Date: 2023-8-3
943
+
601
944
  #### Release Scope: Full
945
+
602
946
  #### Release Content
603
- * Iteration
604
- * Optimize the version issue generated by H5 packaging
947
+
948
+ - Iteration
949
+ - Optimize the version issue generated by H5 packaging
605
950
 
606
951
  # ReleaseV1.4.6
952
+
607
953
  #### Release Date: 2023-8-3
954
+
608
955
  #### Release Scope: Full
956
+
609
957
  #### Release Content
610
- * Iteration
611
- * Optimize the version format generated by H5 packaging
958
+
959
+ - Iteration
960
+ - Optimize the version format generated by H5 packaging
612
961
 
613
962
  # ReleaseV1.4.5
963
+
614
964
  #### Release Date: 2023-8-2
965
+
615
966
  #### Release Scope: Full
967
+
616
968
  #### Release Content
617
- * Fix
618
- * Fix the issue of not creating version when packaging H5.
969
+
970
+ - Fix
971
+ - Fix the issue of not creating version when packaging H5.
619
972
 
620
973
  # ReleaseV1.4.4
974
+
621
975
  #### Release Date: 2023-8-2
976
+
622
977
  #### Release Scope: Full
978
+
623
979
  #### Release Content
624
- * Iteration
625
- * Support setting component loading mode for component release: lazy loading (lazy), startup loading (start).
980
+
981
+ - Iteration
982
+ - Support setting component loading mode for component release: lazy loading
983
+ (lazy), startup loading (start).
626
984
 
627
985
  # ReleaseV1.4.3
986
+
628
987
  #### Release Date: 2023-6-5
988
+
629
989
  #### Release Scope: Full
990
+
630
991
  #### Release Content
631
- * Fix
632
- * Use item.startsWith("V") to find the latest version
992
+
993
+ - Fix
994
+ - Use item.startsWith("V") to find the latest version
633
995
 
634
996
  # ReleaseV1.4.2
997
+
635
998
  #### Release Date: 2023-5-30
999
+
636
1000
  #### Release Scope: Full
1001
+
637
1002
  #### Release Content
638
- * Iteration
639
- * Optimize the logic of handling conflicts when packaging online
640
- * Add Stable packaging tag
641
- * Use item.startsWith("V13") to find the latest version
1003
+
1004
+ - Iteration
1005
+ - Optimize the logic of handling conflicts when packaging online
1006
+ - Add Stable packaging tag
1007
+ - Use item.startsWith("V13") to find the latest version
642
1008
 
643
1009
  # ReleaseV1.4.1
1010
+
644
1011
  #### Release Date: 2023-5-11
1012
+
645
1013
  #### Release Scope: Full
1014
+
646
1015
  #### Release Content
647
- * Iteration
648
- * Change the component release address to dynamic configuration.
649
- * Upgrade marked dependency.
650
- * Compatible with mac system for packaging h5 code command.
1016
+
1017
+ - Iteration
1018
+ - Change the component release address to dynamic configuration.
1019
+ - Upgrade marked dependency.
1020
+ - Compatible with mac system for packaging h5 code command.
651
1021
 
652
1022
  # ReleaseV1.4.0
1023
+
653
1024
  #### Release Date: 2023-4-13
1025
+
654
1026
  #### Release Scope: Full
1027
+
655
1028
  #### Release Content
656
- * Iteration
657
- * Change destroyTimeout to 20 minutes
1029
+
1030
+ - Iteration
1031
+ - Change destroyTimeout to 20 minutes
658
1032
 
659
1033
  # ReleaseV1.3.9
1034
+
660
1035
  #### Release Date: 2023-3-14
1036
+
661
1037
  #### Release Scope: Full
1038
+
662
1039
  #### Release Content
663
- * Iteration
664
- * Replace the method of obtaining the current branch name
1040
+
1041
+ - Iteration
1042
+ - Replace the method of obtaining the current branch name
665
1043
 
666
1044
  # ReleaseV1.3.8
1045
+
667
1046
  #### Release Date: 2023-3-9
1047
+
668
1048
  #### Release Scope: Full
1049
+
669
1050
  #### Release Content
670
- * Iteration
671
- * Remove tag restrictions, any tag can be created
672
- * Optimization
1051
+
1052
+ - Iteration
1053
+ - Remove tag restrictions, any tag can be created
1054
+ - Optimization
673
1055
 
674
1056
  # ReleaseV1.3.7
1057
+
675
1058
  #### Release Date: 2023-3-7
1059
+
676
1060
  #### Release Scope: Full
1061
+
677
1062
  #### Release Content
678
- * Iteration
679
- * Generate VUE_APP_PROJECT_VERSION before packaging, only include type
680
- * Optimization
1063
+
1064
+ - Iteration
1065
+ - Generate VUE_APP_PROJECT_VERSION before packaging, only include type
1066
+ - Optimization
681
1067
 
682
1068
  # ReleaseV1.3.6
1069
+
683
1070
  #### Release Date: 2023-2-22
1071
+
684
1072
  #### Release Scope: Full
1073
+
685
1074
  #### Release Content
686
- * Iteration
687
- * Close the addition of update log content in the version file
688
- * Optimization
1075
+
1076
+ - Iteration
1077
+ - Close the addition of update log content in the version file
1078
+ - Optimization
689
1079
 
690
1080
  # ReleaseV1.3.5
1081
+
691
1082
  #### Release Date: 2023-2-21
1083
+
692
1084
  #### Release Scope: Full
1085
+
693
1086
  #### Release Content
694
- * Iteration
695
- * Add concurrent packaging strategy
696
- * Automatically update version and date in the update log
697
- * Add update log content in the version file
698
- * Optimization
1087
+
1088
+ - Iteration
1089
+ - Add concurrent packaging strategy
1090
+ - Automatically update version and date in the update log
1091
+ - Add update log content in the version file
1092
+ - Optimization
699
1093
 
700
1094
  # ReleaseV1.3.3
1095
+
701
1096
  #### Release Date: 2023-2-17
1097
+
702
1098
  #### Release Scope: Full
1099
+
703
1100
  #### Release Content
704
- * Iteration
705
- * Add automatic destruction function for components, default destruction in 5 minutes.
706
- * Optimization
1101
+
1102
+ - Iteration
1103
+ - Add automatic destruction function for components, default destruction in 5
1104
+ minutes.
1105
+ - Optimization
707
1106
 
708
1107
  # ReleaseV1.3.2
1108
+
709
1109
  #### Release Date: 2023-2-15
1110
+
710
1111
  #### Release Scope: Full
1112
+
711
1113
  #### Release Content
712
- * Iteration
713
- * Add component label field for component upload
714
- * Optimization
1114
+
1115
+ - Iteration
1116
+ - Add component label field for component upload
1117
+ - Optimization
715
1118
 
716
1119
  # ReleaseV1.3.1
1120
+
717
1121
  #### Release Date: 2023-2-15
1122
+
718
1123
  #### Release Scope: Full
1124
+
719
1125
  #### Release Content
720
- * Iteration
721
- * Optimize batch release function
722
- * Optimization
1126
+
1127
+ - Iteration
1128
+ - Optimize batch release function
1129
+ - Optimization
723
1130
 
724
1131
  # ReleaseV1.3.0
1132
+
725
1133
  #### Release Date: 2023-2-14
1134
+
726
1135
  #### Release Scope: Full
1136
+
727
1137
  #### Release Content
728
- * Iteration
729
- * Remove packageJson import in httpjs
730
- * Optimization
1138
+
1139
+ - Iteration
1140
+ - Remove packageJson import in httpjs
1141
+ - Optimization
731
1142
 
732
1143
  # ReleaseV1.2.9
1144
+
733
1145
  #### Release Date: 2023-1-27
1146
+
734
1147
  #### Release Scope: Full
1148
+
735
1149
  #### Release Content
736
- * Iteration
737
- * Add tab name to version information
738
- * Optimization
1150
+
1151
+ - Iteration
1152
+ - Add tab name to version information
1153
+ - Optimization
739
1154
 
740
1155
  # ReleaseV1.2.8
1156
+
741
1157
  #### Release Date: 2022-12-14
1158
+
742
1159
  #### Release Scope: Full
1160
+
743
1161
  #### Release Content
744
- * Iteration
745
- * Close the closing time for component packaging
746
- * Optimization
1162
+
1163
+ - Iteration
1164
+ - Close the closing time for component packaging
1165
+ - Optimization
747
1166
 
748
1167
  # ReleaseV1.2.7
1168
+
749
1169
  #### Release Date: 2022-12-5
1170
+
750
1171
  #### Release Scope: Full
1172
+
751
1173
  #### Release Content
752
- * Iteration
753
- * Add detailed log output for project packaging
754
- * Optimization
1174
+
1175
+ - Iteration
1176
+ - Add detailed log output for project packaging
1177
+ - Optimization
755
1178
 
756
1179
  # ReleaseV1.2.6
1180
+
757
1181
  #### Release Date: 2022-11-21
1182
+
758
1183
  #### Release Scope: Full
1184
+
759
1185
  #### Release Content
760
- * Iteration
761
- * Replace component development template
762
- * Optimization
1186
+
1187
+ - Iteration
1188
+ - Replace component development template
1189
+ - Optimization
763
1190
 
764
1191
  # ReleaseV1.2.5
1192
+
765
1193
  #### Release Date: 2022-11-17
1194
+
766
1195
  #### Release Scope: Full
1196
+
767
1197
  #### Release Content
768
- * Iteration
769
- * Add component parameters for editing components
770
- * Optimization
1198
+
1199
+ - Iteration
1200
+ - Add component parameters for editing components
1201
+ - Optimization
771
1202
 
772
1203
  # ReleaseV1.2.4
1204
+
773
1205
  #### Release Date: 2022-11-17
1206
+
774
1207
  #### Release Scope: Full
1208
+
775
1209
  #### Release Content
776
- * Optimization
777
- * Change the automatic upgrade source to Alibaba source
1210
+
1211
+ - Optimization
1212
+ - Change the automatic upgrade source to Alibaba source
778
1213
 
779
1214
  # ReleaseV1.2.3
1215
+
780
1216
  #### Release Date: 2022-11-16
1217
+
781
1218
  #### Release Scope: Full
1219
+
782
1220
  #### Release Content
783
- * Optimization
784
- * Add detailed error information output to the release script
1221
+
1222
+ - Optimization
1223
+ - Add detailed error information output to the release script
785
1224
 
786
1225
  # ReleaseV1.2.2
1226
+
787
1227
  #### Release Date: 2022-11-12
1228
+
788
1229
  #### Release Scope: Full
1230
+
789
1231
  #### Release Content
790
- * Optimization
791
- * Obtain version information from Alibaba Cloud to improve compilation speed
1232
+
1233
+ - Optimization
1234
+ - Obtain version information from Alibaba Cloud to improve compilation speed
792
1235
 
793
1236
  # ReleaseV1.2.1
1237
+
794
1238
  #### Release Date: 2022-9-9
1239
+
795
1240
  #### Release Scope: Full
1241
+
796
1242
  #### Release Content
797
- * Fix
798
- * Add cloudcc-ccdk
1243
+
1244
+ - Fix
1245
+ - Add cloudcc-ccdk
799
1246
 
800
1247
  # ReleaseV1.2.0
1248
+
801
1249
  #### Release Date: 2022-8-24
1250
+
802
1251
  #### Release Scope: Full
1252
+
803
1253
  #### Release Content
804
- * Fix
805
- * Add tag creation function
1254
+
1255
+ - Fix
1256
+ - Add tag creation function
806
1257
 
807
1258
  # ReleaseV1.1.9
1259
+
808
1260
  #### Release Date: 2022-8-23
1261
+
809
1262
  #### Release Scope: Full
1263
+
810
1264
  #### Release Content
811
- * Fix
812
- * Add h5 packaging logic
1265
+
1266
+ - Fix
1267
+ - Add h5 packaging logic
813
1268
 
814
1269
  # ReleaseV1.1.8
1270
+
815
1271
  #### Release Date: 2022-7-20
1272
+
816
1273
  #### Release Scope: Full
1274
+
817
1275
  #### Release Content
818
- * Fix
819
- * When publishing in the cloud, if it is not synchronized online, force update the code
820
- * Optimize version setting logic, remove tag information from version number
1276
+
1277
+ - Fix
1278
+ - When publishing in the cloud, if it is not synchronized online, force update
1279
+ the code
1280
+ - Optimize version setting logic, remove tag information from version number
821
1281
 
822
1282
  # ReleaseV1.1.7
1283
+
823
1284
  #### Release Date: 2022-7-12
1285
+
824
1286
  #### Release Scope: Full
1287
+
825
1288
  #### Release Content
826
- * Fix
827
- * Low version nodejs cannot recognize ?.
1289
+
1290
+ - Fix
1291
+ - Low version nodejs cannot recognize ?.
828
1292
 
829
1293
  # ReleaseV1.1.5
1294
+
830
1295
  #### Release Date: 2022-7-7
1296
+
831
1297
  #### Release Scope: Full
1298
+
832
1299
  #### Release Content
833
- * Iteration
834
- * Add cloud packaging function
1300
+
1301
+ - Iteration
1302
+ - Add cloud packaging function
835
1303
 
836
1304
  # ReleaseV1.1.4
1305
+
837
1306
  #### Release Date: 2022-7-6
1307
+
838
1308
  #### Release Scope: Full
1309
+
839
1310
  #### Release Content
840
- * Iteration
841
- * Add identification for whether to download multi-language
1311
+
1312
+ - Iteration
1313
+ - Add identification for whether to download multi-language
842
1314
 
843
1315
  # ReleaseV1.1.3
1316
+
844
1317
  #### Release Date: 2022-6-23
1318
+
845
1319
  #### Release Scope: Full
1320
+
846
1321
  #### Release Content
847
- * Iteration
848
- * Write version information into env file for other business use
1322
+
1323
+ - Iteration
1324
+ - Write version information into env file for other business use
849
1325
 
850
1326
  # ReleaseV1.1.2
1327
+
851
1328
  #### Release Date: 2022-6-21
1329
+
852
1330
  #### Release Scope: Full
1331
+
853
1332
  #### Release Content
854
- * Iteration
855
- * Open the generation of readme files for the master branch of lightning-web
1333
+
1334
+ - Iteration
1335
+ - Open the generation of readme files for the master branch of lightning-web
856
1336
 
857
1337
  # ReleaseV1.1.1
1338
+
858
1339
  #### Release Date: 2022-6-17
1340
+
859
1341
  #### Release Scope: Full
1342
+
860
1343
  #### Release Content
861
- * Iteration
862
- * Add try and catch function for update check
1344
+
1345
+ - Iteration
1346
+ - Add try and catch function for update check
863
1347
 
864
1348
  # ReleaseV1.1.0
1349
+
865
1350
  #### Release Date: 2022-6-9
1351
+
866
1352
  #### Release Scope: Full
1353
+
867
1354
  #### Release Content
868
- * Iteration
869
- * Add DingTalk message notification
1355
+
1356
+ - Iteration
1357
+ - Add DingTalk message notification
870
1358
 
871
1359
  # ReleaseV1.0.9
1360
+
872
1361
  #### Release Date: 2022-5-7
1362
+
873
1363
  #### Release Scope: Full
1364
+
874
1365
  #### Release Content
875
- * Fix
876
- * Fix packaging tag setting issue
1366
+
1367
+ - Fix
1368
+ - Fix packaging tag setting issue
877
1369
 
878
1370
  # ReleaseV1.0.8
1371
+
879
1372
  #### Release Date: 2022-4-11
1373
+
880
1374
  #### Release Scope: Full
1375
+
881
1376
  #### Release Content
882
- * Iteration
883
- * Optimize the process of setting packaging tags
1377
+
1378
+ - Iteration
1379
+ - Optimize the process of setting packaging tags
884
1380
 
885
1381
  # ReleaseV1.0.7
1382
+
886
1383
  #### Release Date: 2022-4-8
1384
+
887
1385
  #### Release Scope: Full
1386
+
888
1387
  #### Release Content
889
- * Iteration
890
- * Add refined management of packaging tags
1388
+
1389
+ - Iteration
1390
+ - Add refined management of packaging tags
891
1391
 
892
1392
  # ReleaseV1.0.6
1393
+
893
1394
  #### Release Date: 2022-4-1
1395
+
894
1396
  #### Release Scope: Full
1397
+
895
1398
  #### Release Content
896
- * Iteration
897
- * Delete OT tags
1399
+
1400
+ - Iteration
1401
+ - Delete OT tags
898
1402
 
899
1403
  # ReleaseV1.0.5
1404
+
900
1405
  #### Release Date: 2022-4-1
1406
+
901
1407
  #### Release Scope: Full
1408
+
902
1409
  #### Release Content
903
- * Iteration
904
- * Add OT tags
1410
+
1411
+ - Iteration
1412
+ - Add OT tags
905
1413
 
906
1414
  # ReleaseV1.0.4
1415
+
907
1416
  #### Release Date: 2022-3-26
1417
+
908
1418
  #### Release Scope: Full
1419
+
909
1420
  #### Release Content
910
- * Iteration
911
- * Change version logic
1421
+
1422
+ - Iteration
1423
+ - Change version logic
912
1424
 
913
1425
  # ReleaseV1.0.3
1426
+
914
1427
  #### Release Date: 2022-3-25
1428
+
915
1429
  #### Release Scope: Full
1430
+
916
1431
  #### Release Content
917
- * Iteration
918
- * Add RC-99 deployment script
919
- * Add Release-99 release script
1432
+
1433
+ - Iteration
1434
+ - Add RC-99 deployment script
1435
+ - Add Release-99 release script
920
1436
 
921
1437
  # ReleaseV1.0.2
1438
+
922
1439
  #### Release Date: 2022-3-24
1440
+
923
1441
  #### Release Scope: Full
1442
+
924
1443
  #### Release Content
925
- * Iteration
926
- * Add scoped to limit style pollution
1444
+
1445
+ - Iteration
1446
+ - Add scoped to limit style pollution
927
1447
 
928
1448
  # ReleaseV0.9.9
1449
+
929
1450
  #### Release Date: 2022-3-9
1451
+
930
1452
  #### Release Scope: Full
1453
+
931
1454
  #### Release Content
932
- * Iteration
933
- * Add multi-language script support
1455
+
1456
+ - Iteration
1457
+ - Add multi-language script support
934
1458
 
935
1459
  # ReleaseV0.9.8
1460
+
936
1461
  #### Release Date: 2022-3-3
1462
+
937
1463
  #### Release Scope: Full
1464
+
938
1465
  #### Release Content
939
- * Optimization
940
- * Delete unnecessary print information
941
- * Compatible with vue@cli5.0
1466
+
1467
+ - Optimization
1468
+ - Delete unnecessary print information
1469
+ - Compatible with vue@cli5.0
942
1470
 
943
1471
  # ReleaseV0.9.7
1472
+
944
1473
  #### Release Date: 2022-2-15
1474
+
945
1475
  #### Release Scope: Full
1476
+
946
1477
  #### Release Content
947
- * Optimization
948
- * Use server function for project release
1478
+
1479
+ - Optimization
1480
+ - Use server function for project release
949
1481
 
950
1482
  # ReleaseV0.9.6
1483
+
951
1484
  #### Release Date: 2022-2-14
1485
+
952
1486
  #### Release Scope: Full
1487
+
953
1488
  #### Release Content
954
- * Optimization
955
- * Restore builderPlugin
1489
+
1490
+ - Optimization
1491
+ - Restore builderPlugin
956
1492
 
957
1493
  # ReleaseV0.9.5
1494
+
958
1495
  #### Release Date: 2022-2-10
1496
+
959
1497
  #### Release Scope: Full
1498
+
960
1499
  #### Release Content
961
- * Optimization
962
- * Add branch identification for Feishu notification
1500
+
1501
+ - Optimization
1502
+ - Add branch identification for Feishu notification
963
1503
 
964
1504
  # ReleaseV0.9.4
1505
+
965
1506
  #### Release Date: 2021-12-10
1507
+
966
1508
  #### Release Scope: Full
1509
+
967
1510
  #### Release Content
968
- * Optimization
969
- * Specify version number for automatic version update
1511
+
1512
+ - Optimization
1513
+ - Specify version number for automatic version update
970
1514
 
971
1515
  # ReleaseV0.9.3
1516
+
972
1517
  #### Release Date: 2021-12-10
1518
+
973
1519
  #### Release Scope: Full
1520
+
974
1521
  #### Release Content
975
- * Optimization
976
- * Update cc-sdk upload address
1522
+
1523
+ - Optimization
1524
+ - Update cc-sdk upload address
977
1525
 
978
1526
  # ReleaseV0.9.2
1527
+
979
1528
  #### Release Date: 2021-11-30
1529
+
980
1530
  #### Release Scope: Full
1531
+
981
1532
  #### Release Content
982
- * Optimization
983
- * Delete dist folder and then submit
1533
+
1534
+ - Optimization
1535
+ - Delete dist folder and then submit
984
1536
 
985
1537
  # ReleaseV0.9.1
1538
+
986
1539
  #### Release Date: 2021-11-29
1540
+
987
1541
  #### Release Scope: Full
1542
+
988
1543
  #### Release Content
989
- * Optimization
990
- * Optimize the logic of obtaining version number
1544
+
1545
+ - Optimization
1546
+ - Optimize the logic of obtaining version number
991
1547
 
992
1548
  # ReleaseV0.9.0
1549
+
993
1550
  #### Release Date: 2021-11-26
1551
+
994
1552
  #### Release Scope: Full
1553
+
995
1554
  #### Release Content
996
- * Iteration
997
- * Remove major version upgrade for GA
1555
+
1556
+ - Iteration
1557
+ - Remove major version upgrade for GA
998
1558
 
999
1559
  # ReleaseV0.8.9
1560
+
1000
1561
  #### Release Date: 2021-11-26
1562
+
1001
1563
  #### Release Scope: Full
1564
+
1002
1565
  #### Release Content
1003
- * Fix
1004
- * Unable to recognize uat environment
1566
+
1567
+ - Fix
1568
+ - Unable to recognize uat environment
1005
1569
 
1006
1570
  # ReleaseV0.8.8
1571
+
1007
1572
  #### Release Date: 2021-11-26
1573
+
1008
1574
  #### Release Scope: Full
1575
+
1009
1576
  #### Release Content
1010
- * Optimization
1011
- * Optimize the logic of obtaining tag index
1577
+
1578
+ - Optimization
1579
+ - Optimize the logic of obtaining tag index
1012
1580
 
1013
1581
  # ReleaseV0.8.7
1582
+
1014
1583
  #### Release Date: 2021-11-26
1584
+
1015
1585
  #### Release Scope: Full
1586
+
1016
1587
  #### Release Content
1017
- * Optimization
1018
- * Optimize the order of tagging
1588
+
1589
+ - Optimization
1590
+ - Optimize the order of tagging
1019
1591
 
1020
1592
  # ReleaseV0.8.6
1593
+
1021
1594
  #### Release Date: 2021-11-26
1595
+
1022
1596
  #### Release Scope: Full
1597
+
1023
1598
  #### Release Content
1024
- * Optimization
1025
- * Update the command to query tags
1599
+
1600
+ - Optimization
1601
+ - Update the command to query tags
1026
1602
 
1027
1603
  # ReleaseV0.8.5
1604
+
1028
1605
  #### Release Date: 2021-11-25
1606
+
1029
1607
  #### Release Scope: Full
1608
+
1030
1609
  #### Release Content
1031
- * Optimization
1032
- * RC adds the second version upgrade
1610
+
1611
+ - Optimization
1612
+ - RC adds the second version upgrade
1033
1613
 
1034
1614
  # ReleaseV0.8.4
1615
+
1035
1616
  #### Release Date: 2021-11-25
1617
+
1036
1618
  #### Release Scope: Full
1619
+
1037
1620
  #### Release Content
1038
- * Optimization
1039
- * Print version information
1621
+
1622
+ - Optimization
1623
+ - Print version information
1040
1624
 
1041
1625
  # ReleaseV0.8.3
1626
+
1042
1627
  #### Release Date: 2021-11-25
1628
+
1043
1629
  #### Release Scope: Full
1630
+
1044
1631
  #### Release Content
1045
- * Optimization
1046
- * Change the logic of generating version
1632
+
1633
+ - Optimization
1634
+ - Change the logic of generating version
1047
1635
 
1048
1636
  # ReleaseV0.8.2
1637
+
1049
1638
  #### Release Date: 2021-11-24
1639
+
1050
1640
  #### Release Scope: Full
1641
+
1051
1642
  #### Release Content
1052
- * Optimization
1053
- * Force exit if code push fails
1643
+
1644
+ - Optimization
1645
+ - Force exit if code push fails
1054
1646
 
1055
1647
  # ReleaseV0.8.1
1648
+
1056
1649
  #### Release Date: 2021-11-18
1650
+
1057
1651
  #### Release Scope: Full
1652
+
1058
1653
  #### Release Content
1059
- * Optimization
1060
- * The maximum version at the end of version is 1W
1654
+
1655
+ - Optimization
1656
+ - The maximum version at the end of version is 1W
1061
1657
 
1062
1658
  # ReleaseV0.8.0
1659
+
1063
1660
  #### Release Date: 2021-11-17
1661
+
1064
1662
  #### Release Scope: Full
1663
+
1065
1664
  #### Release Content
1066
- * Optimization
1067
- * Optimize the request triggering Jenkins
1665
+
1666
+ - Optimization
1667
+ - Optimize the request triggering Jenkins
1068
1668
 
1069
1669
  # ReleaseV0.7.9
1670
+
1070
1671
  #### Release Date: 2021-11-16
1672
+
1071
1673
  #### Release Scope: Full
1674
+
1072
1675
  #### Release Content
1073
- * Optimization
1074
- * Optimize the process of project packaging and pushing
1676
+
1677
+ - Optimization
1678
+ - Optimize the process of project packaging and pushing
1075
1679
 
1076
1680
  # ReleaseV0.7.8
1681
+
1077
1682
  #### Release Date: 2021-11-16
1683
+
1078
1684
  #### Release Scope: Full
1685
+
1079
1686
  #### Release Content
1080
- * Optimization
1081
- * Optimize cc-base-sdk packaging
1687
+
1688
+ - Optimization
1689
+ - Optimize cc-base-sdk packaging
1082
1690
 
1083
1691
  # ReleaseV0.7.7
1692
+
1084
1693
  #### Release Date: 2021-11-16
1694
+
1085
1695
  #### Release Scope: Full
1696
+
1086
1697
  #### Release Content
1087
- * Optimization
1088
- * Optimize cc-base-sdk packaging
1698
+
1699
+ - Optimization
1700
+ - Optimize cc-base-sdk packaging
1089
1701
 
1090
1702
  # ReleaseV0.7.6
1703
+
1091
1704
  #### Release Date: 2021-11-15
1705
+
1092
1706
  #### Release Scope: Full
1707
+
1093
1708
  #### Release Content
1094
- * Fix
1095
- * Optimize version information text
1709
+
1710
+ - Fix
1711
+ - Optimize version information text
1096
1712
 
1097
1713
  # ReleaseV0.7.5
1714
+
1098
1715
  #### Release Date: 2021-11-15
1716
+
1099
1717
  #### Release Scope: Full
1718
+
1100
1719
  #### Release Content
1101
- * Fix
1102
- * Optimize the logic of generating log files
1720
+
1721
+ - Fix
1722
+ - Optimize the logic of generating log files
1103
1723
 
1104
1724
  # ReleaseV0.7.4
1725
+
1105
1726
  #### Release Date: 2021-11-10
1727
+
1106
1728
  #### Release Scope: Full
1729
+
1107
1730
  #### Release Content
1108
- * Fix
1109
- * Add release time and publisher information to the update log
1731
+
1732
+ - Fix
1733
+ - Add release time and publisher information to the update log
1110
1734
 
1111
1735
  # ReleaseV0.7.3
1736
+
1112
1737
  #### Release Date: 2021-11-10
1738
+
1113
1739
  #### Release Scope: Full
1740
+
1114
1741
  #### Release Content
1115
- * Fix
1116
- * Set the encoding format for generating version
1742
+
1743
+ - Fix
1744
+ - Set the encoding format for generating version
1117
1745
 
1118
1746
  # ReleaseV0.7.2
1747
+
1119
1748
  #### Release Date: 2021-11-8
1749
+
1120
1750
  #### Release Scope: Full
1751
+
1121
1752
  #### Release Content
1122
- * Fix
1123
- * Optimize md2html logic
1753
+
1754
+ - Fix
1755
+ - Optimize md2html logic
1124
1756
 
1125
1757
  # ReleaseV0.7.1
1758
+
1126
1759
  #### Release Date: 2021-11-8
1760
+
1127
1761
  #### Release Scope: Full
1762
+
1128
1763
  #### Release Content
1129
- * Fix
1130
- * Modify the timing of generating version
1764
+
1765
+ - Fix
1766
+ - Modify the timing of generating version
1131
1767
 
1132
1768
  # ReleaseV0.7.0
1769
+
1133
1770
  #### Release Date: 2021-11-6
1771
+
1134
1772
  #### Release Scope: Full
1773
+
1135
1774
  #### Release Content
1136
- * Fix
1137
- * Publish to cdn after sdk packaging
1775
+
1776
+ - Fix
1777
+ - Publish to cdn after sdk packaging
1138
1778
 
1139
1779
  # ReleaseV0.6.9
1780
+
1140
1781
  #### Release Date: 2021-11-5
1782
+
1141
1783
  #### Release Scope: Full
1784
+
1142
1785
  #### Release Content
1143
- * Iteration
1144
- * Optimize sdk release process
1786
+
1787
+ - Iteration
1788
+ - Optimize sdk release process
1145
1789
 
1146
1790
  # ReleaseV0.6.8
1791
+
1147
1792
  #### Release Date: 2021-11-5
1793
+
1148
1794
  #### Release Scope: Full
1795
+
1149
1796
  #### Release Content
1150
- * Iteration
1151
- * Optimize npm trigger update logic
1797
+
1798
+ - Iteration
1799
+ - Optimize npm trigger update logic
1152
1800
 
1153
1801
  # ReleaseV0.6.7
1802
+
1154
1803
  #### Release Date: 2021-11-4
1804
+
1155
1805
  #### Release Scope: Full
1806
+
1156
1807
  #### Release Content
1157
- * Iteration
1158
- * Optimize update logic judgment
1808
+
1809
+ - Iteration
1810
+ - Optimize update logic judgment
1159
1811
 
1160
1812
  # ReleaseV0.6.6
1813
+
1161
1814
  #### Release Date: 2021-11-4
1815
+
1162
1816
  #### Release Scope: Full
1817
+
1163
1818
  #### Release Content
1164
- * Iteration
1165
- * Optimize update check logic
1819
+
1820
+ - Iteration
1821
+ - Optimize update check logic
1166
1822
 
1167
1823
  # ReleaseV0.6.5
1824
+
1168
1825
  #### Release Date: 2021-11-4
1826
+
1169
1827
  #### Release Scope: Full
1828
+
1170
1829
  #### Release Content
1171
- * Iteration
1172
- * Optimize prompt information
1173
- * Put version into dist folder
1830
+
1831
+ - Iteration
1832
+ - Optimize prompt information
1833
+ - Put version into dist folder
1174
1834
 
1175
1835
  # ReleaseV0.6.4
1836
+
1176
1837
  #### Release Date: 2021-11-3
1838
+
1177
1839
  #### Release Scope: Full
1840
+
1178
1841
  #### Release Content
1179
- * Iteration
1180
- * Optimize code structure
1181
- * Change the location of readme.html generation
1842
+
1843
+ - Iteration
1844
+ - Optimize code structure
1845
+ - Change the location of readme.html generation
1182
1846
 
1183
1847
  # ReleaseV0.6.3
1848
+
1184
1849
  #### Release Date: 2021-11-1
1850
+
1185
1851
  #### Release Scope: Full
1852
+
1186
1853
  #### Release Content
1187
- * Iteration
1188
- * Optimize code structure
1854
+
1855
+ - Iteration
1856
+ - Optimize code structure
1189
1857
 
1190
1858
  # ReleaseV0.6.2
1859
+
1191
1860
  #### Release Date: 2021-11-1
1861
+
1192
1862
  #### Release Scope: Full
1863
+
1193
1864
  #### Release Content
1194
- * Iteration
1195
- * Add base-sdk release program
1196
- * Optimize project structure, split module code
1865
+
1866
+ - Iteration
1867
+ - Add base-sdk release program
1868
+ - Optimize project structure, split module code
1197
1869
 
1198
1870
  # ReleaseV0.6.1
1871
+
1199
1872
  #### Release Date: 2021-11-1
1873
+
1200
1874
  #### Release Scope: Full
1875
+
1201
1876
  #### Release Content
1202
- * Iteration
1203
- * Add git name of the publisher
1204
- * Optimize the prompt information when the trigger is not found
1877
+
1878
+ - Iteration
1879
+ - Add git name of the publisher
1880
+ - Optimize the prompt information when the trigger is not found
1205
1881
 
1206
1882
  # ReleaseV0.6.0
1883
+
1207
1884
  #### Release Date: 2021-10-28
1885
+
1208
1886
  #### Release Scope: Full
1887
+
1209
1888
  #### Release Content
1210
- * Iteration
1211
- * Optimize project directory structure
1889
+
1890
+ - Iteration
1891
+ - Optimize project directory structure
1212
1892
 
1213
1893
  # ReleaseV0.5.9
1894
+
1214
1895
  #### Release Date: 2021-10-28
1896
+
1215
1897
  #### Release Scope: Full
1898
+
1216
1899
  #### Release Content
1217
- * Iteration
1218
- * Optimize cli update command, add npm registry
1900
+
1901
+ - Iteration
1902
+ - Optimize cli update command, add npm registry
1219
1903
 
1220
1904
  # ReleaseV0.5.8
1905
+
1221
1906
  #### Release Date: 2021-10-28
1907
+
1222
1908
  #### Release Scope: Full
1909
+
1223
1910
  #### Release Content
1224
- * Iteration
1225
- * Optimize the deployment file path of readme file
1911
+
1912
+ - Iteration
1913
+ - Optimize the deployment file path of readme file
1226
1914
 
1227
1915
  # ReleaseV0.5.7
1916
+
1228
1917
  #### Release Date: 2021-10-28
1918
+
1229
1919
  #### Release Scope: Full
1920
+
1230
1921
  #### Release Content
1231
- * Iteration
1232
- * Optimize package.config configuration
1922
+
1923
+ - Iteration
1924
+ - Optimize package.config configuration
1233
1925
 
1234
1926
  # ReleaseV0.5.5
1927
+
1235
1928
  #### Release Date: 2021-10-21
1929
+
1236
1930
  #### Release Scope: Full
1931
+
1237
1932
  #### Release Content
1238
- * Iteration
1239
- * Add RC environment
1933
+
1934
+ - Iteration
1935
+ - Add RC environment
1240
1936
 
1241
1937
  # ReleaseV0.5.4
1938
+
1242
1939
  #### Release Date: 2021-10-21
1940
+
1243
1941
  #### Release Scope: Full
1942
+
1244
1943
  #### Release Content
1245
- * Iteration
1246
- * Add md2html method and put the file into public
1944
+
1945
+ - Iteration
1946
+ - Add md2html method and put the file into public
1247
1947
 
1248
1948
  # ReleaseV0.5.3
1949
+
1249
1950
  #### Release Date: 2021-10-20
1951
+
1250
1952
  #### Release Scope: Full
1953
+
1251
1954
  #### Release Content
1252
- * Fix
1253
- * Fix Feishu robot trigger
1955
+
1956
+ - Fix
1957
+ - Fix Feishu robot trigger
1254
1958
 
1255
1959
  # ReleaseV0.5.2
1960
+
1256
1961
  #### Release Date: 2021-10-20
1962
+
1257
1963
  #### Release Scope: Full
1964
+
1258
1965
  #### Release Content
1259
- * Fix
1260
- * Fix uat trigger address
1966
+
1967
+ - Fix
1968
+ - Fix uat trigger address
1261
1969
 
1262
1970
  # ReleaseV0.5.1
1971
+
1263
1972
  #### Release Date: 2021-10-20
1973
+
1264
1974
  #### Release Scope: Full
1975
+
1265
1976
  #### Release Content
1266
- * Fix
1267
- * Fix production trigger address
1977
+
1978
+ - Fix
1979
+ - Fix production trigger address
1268
1980
 
1269
1981
  # ReleaseV0.5.0
1982
+
1270
1983
  #### Release Date: 2021-10-20
1984
+
1271
1985
  #### Release Scope: Full
1986
+
1272
1987
  #### Release Content
1273
- * Optimization
1274
- * Replace packaging command prompt
1988
+
1989
+ - Optimization
1990
+ - Replace packaging command prompt
1275
1991
 
1276
1992
  # ReleaseV0.4.9
1993
+
1277
1994
  #### Release Date: 2021-10-20
1995
+
1278
1996
  #### Release Scope: Full
1997
+
1279
1998
  #### Release Content
1280
- * Optimization
1281
- * Add test group robot notification
1282
- * Add automatic deployment of lightning-app
1999
+
2000
+ - Optimization
2001
+ - Add test group robot notification
2002
+ - Add automatic deployment of lightning-app
1283
2003
 
1284
2004
  # ReleaseV0.4.8
2005
+
1285
2006
  #### Release Date: 2021-10-19
2007
+
1286
2008
  #### Release Scope: Full
2009
+
1287
2010
  #### Release Content
1288
- * Fix
1289
- * Add Feishu robot reminder for build
2011
+
2012
+ - Fix
2013
+ - Add Feishu robot reminder for build
1290
2014
 
1291
2015
  # ReleaseV0.4.7
2016
+
1292
2017
  #### Release Date: 2021-10-19
2018
+
1293
2019
  #### Release Scope: Full
2020
+
1294
2021
  #### Release Content
1295
- * Fix
1296
- * Fix build trigger prompt
2022
+
2023
+ - Fix
2024
+ - Fix build trigger prompt
1297
2025
 
1298
2026
  # ReleaseV0.4.6
2027
+
1299
2028
  #### Release Date: 2021-10-19
2029
+
1300
2030
  #### Release Scope: Full
2031
+
1301
2032
  #### Release Content
1302
- * Fix
1303
- * Fix dev trigger address
2033
+
2034
+ - Fix
2035
+ - Fix dev trigger address
1304
2036
 
1305
2037
  # ReleaseV0.4.5
2038
+
1306
2039
  #### Release Date: 2021-10-18
2040
+
1307
2041
  #### Release Scope: Full
2042
+
1308
2043
  #### Release Content
1309
- * Optimization
1310
- * Add command to trigger automated deployment: ltntestproduction
2044
+
2045
+ - Optimization
2046
+ - Add command to trigger automated deployment: ltntestproduction
1311
2047
 
1312
2048
  # ReleaseV0.4.4
2049
+
1313
2050
  #### Release Date: 2021-10-18
2051
+
1314
2052
  #### Release Scope: Full
2053
+
1315
2054
  #### Release Content
1316
- * Optimization
1317
- * Add commands to trigger automated deployment: ltndev, ltnuat, cloudcc-ui
2055
+
2056
+ - Optimization
2057
+ - Add commands to trigger automated deployment: ltndev, ltnuat, cloudcc-ui
1318
2058
 
1319
2059
  # ReleaseV0.4.3
2060
+
1320
2061
  #### Release Date: 2021-10-8
2062
+
1321
2063
  #### Release Scope: Full
2064
+
1322
2065
  #### Release Content
1323
- * Iteration
1324
- * Fix packaging instructions
2066
+
2067
+ - Iteration
2068
+ - Fix packaging instructions
1325
2069
 
1326
2070
  # ReleaseV0.4.2
2071
+
1327
2072
  #### Release Date: 2021-10-14
2073
+
1328
2074
  #### Release Scope: Full
2075
+
1329
2076
  #### Release Content
1330
- * Iteration
1331
- * Optimize npm packaging command
2077
+
2078
+ - Iteration
2079
+ - Optimize npm packaging command
1332
2080
 
1333
2081
  # ReleaseV0.4.1
2082
+
1334
2083
  #### Release Date: 2021-10-8
2084
+
1335
2085
  #### Release Scope: Full
2086
+
1336
2087
  #### Release Content
1337
- * Iteration
1338
- * Update npm to https
2088
+
2089
+ - Iteration
2090
+ - Update npm to https
1339
2091
 
1340
2092
  # ReleaseV0.4.0
2093
+
1341
2094
  #### Release Date: 2021-9-29
2095
+
1342
2096
  #### Release Scope: Full
2097
+
1343
2098
  #### Release Content
1344
- * Iteration
1345
- * Remove Version.json, write version information directly into Version.vue
2099
+
2100
+ - Iteration
2101
+ - Remove Version.json, write version information directly into Version.vue
1346
2102
 
1347
2103
  # ReleaseV0.3.9
2104
+
1348
2105
  #### Release Date: 2021-9-29
2106
+
1349
2107
  #### Release Scope: Full
2108
+
1350
2109
  #### Release Content
1351
- * Iteration
1352
- * Use version.json to control release version information
2110
+
2111
+ - Iteration
2112
+ - Use version.json to control release version information
1353
2113
 
1354
2114
  # ReleaseV0.3.8
2115
+
1355
2116
  #### Release Date: 2021-9-29
2117
+
1356
2118
  #### Release Scope: Full
2119
+
1357
2120
  #### Release Content
1358
- * Iteration
1359
- * Input package.json for packaging format
1360
- * Only one version information can be selected
1361
- * Add branch information to version information
2121
+
2122
+ - Iteration
2123
+ - Input package.json for packaging format
2124
+ - Only one version information can be selected
2125
+ - Add branch information to version information
1362
2126
 
1363
2127
  # ReleaseV0.3.7
2128
+
1364
2129
  #### Release Date: 2021-9-28
2130
+
1365
2131
  #### Release Scope: Full
2132
+
1366
2133
  #### Release Content
1367
- * Iteration
1368
- * Change the display order of Tag
2134
+
2135
+ - Iteration
2136
+ - Change the display order of Tag
1369
2137
 
1370
2138
  # ReleaseV0.3.6
2139
+
1371
2140
  #### Release Date: 2021-9-26
2141
+
1372
2142
  #### Release Scope: Full
2143
+
1373
2144
  #### Release Content
1374
- * Iteration
1375
- * Update the tag information, update the local tag data first
2145
+
2146
+ - Iteration
2147
+ - Update the tag information, update the local tag data first
1376
2148
 
1377
2149
  # ReleaseV0.3.5
2150
+
1378
2151
  #### Release Date: 2021-9-24
2152
+
1379
2153
  #### Release Scope: Full
2154
+
1380
2155
  #### Release Content
1381
- * Iteration
1382
- * Add cc-sdk packaging automation tool
2156
+
2157
+ - Iteration
2158
+ - Add cc-sdk packaging automation tool
1383
2159
 
1384
2160
  # ReleaseV0.3.4
2161
+
1385
2162
  #### Release Date: 2021-9-14
2163
+
1386
2164
  #### Release Scope: Full
2165
+
1387
2166
  #### Release Content
1388
- * Iteration
1389
- * Upgrade to install
2167
+
2168
+ - Iteration
2169
+ - Upgrade to install
1390
2170
 
1391
2171
  # ReleaseV0.3.3
2172
+
1392
2173
  #### Release Date: 2021-9-14
2174
+
1393
2175
  #### Release Scope: Full
2176
+
1394
2177
  #### Release Content
1395
- * Iteration
1396
- * Fix Bug
2178
+
2179
+ - Iteration
2180
+ - Fix Bug
1397
2181
 
1398
2182
  # ReleaseV0.3.2
2183
+
1399
2184
  #### Release Date: 2021-9-14
2185
+
1400
2186
  #### Release Scope: Full
2187
+
1401
2188
  #### Release Content
1402
- * Iteration
1403
- * Fix Bug
2189
+
2190
+ - Iteration
2191
+ - Fix Bug
1404
2192
 
1405
2193
  # ReleaseV0.3.1
2194
+
1406
2195
  #### Release Date: 2021-9-14
2196
+
1407
2197
  #### Release Scope: Full
2198
+
1408
2199
  #### Release Content
1409
- * Iteration
1410
- * Fix Bug
2200
+
2201
+ - Iteration
2202
+ - Fix Bug
1411
2203
 
1412
2204
  # ReleaseV0.3.0
2205
+
1413
2206
  #### Release Date: 2021-9-14
2207
+
1414
2208
  #### Release Scope: Full
2209
+
1415
2210
  #### Release Content
1416
- * Iteration
1417
- * Add automatic update detection function
1418
- * Add multiple Tags addition function
2211
+
2212
+ - Iteration
2213
+ - Add automatic update detection function
2214
+ - Add multiple Tags addition function
1419
2215
 
1420
2216
  # ReleaseV0.2.9
2217
+
1421
2218
  #### Release Date: 2021-9-9
2219
+
1422
2220
  #### Release Scope: Full
2221
+
1423
2222
  #### Release Content
1424
- * Iteration
1425
- * Set type and version in package, add -
2223
+
2224
+ - Iteration
2225
+ - Set type and version in package, add -
1426
2226
 
1427
2227
  # ReleaseV0.2.8
2228
+
1428
2229
  #### Release Date: 2021-9-9
2230
+
1429
2231
  #### Release Scope: Full
2232
+
1430
2233
  #### Release Content
1431
- * Iteration
1432
- * Set type and version in package
2234
+
2235
+ - Iteration
2236
+ - Set type and version in package
1433
2237
 
1434
2238
  # ReleaseV0.2.7
2239
+
1435
2240
  #### Release Date: 2021-9-8
2241
+
1436
2242
  #### Release Scope: Full
2243
+
1437
2244
  #### Release Content
1438
- * Iteration
1439
- * Ga->GA
2245
+
2246
+ - Iteration
2247
+ - Ga->GA
1440
2248
 
1441
2249
  # ReleaseV0.2.6
2250
+
1442
2251
  #### Release Date: 2021-8-25
2252
+
1443
2253
  #### Release Scope: Full
2254
+
1444
2255
  #### Release Content
1445
- * Iteration
1446
- * Update template
2256
+
2257
+ - Iteration
2258
+ - Update template
1447
2259
 
1448
2260
  # ReleaseV0.2.5
2261
+
1449
2262
  #### Release Date: 2021-8-20
2263
+
1450
2264
  #### Release Scope: Full
2265
+
1451
2266
  #### Release Content
1452
- * Iteration
1453
- * Change the prompt for entering version number
1454
- * Write the version number into package.json.
1455
- * Optimize main.js template.
2267
+
2268
+ - Iteration
2269
+ - Change the prompt for entering version number
2270
+ - Write the version number into package.json.
2271
+ - Optimize main.js template.
1456
2272
 
1457
2273
  # ReleaseV0.2.4
2274
+
1458
2275
  #### Release Date: 2021-8-13
2276
+
1459
2277
  #### Release Scope: Full
2278
+
1460
2279
  #### Release Content
1461
- * Iteration
1462
- * Improve template
2280
+
2281
+ - Iteration
2282
+ - Improve template
1463
2283
 
1464
2284
  # ReleaseV0.2.3
2285
+
1465
2286
  #### Release Date: 2021-8-13
2287
+
1466
2288
  #### Release Scope: Full
2289
+
1467
2290
  #### Release Content
1468
- * Iteration
1469
- * Update template
2291
+
2292
+ - Iteration
2293
+ - Update template
1470
2294
 
1471
2295
  # ReleaseV0.2.2
2296
+
1472
2297
  #### Release Date: 2021-8-13
2298
+
1473
2299
  #### Release Scope: Full
2300
+
1474
2301
  #### Release Content
1475
- * Iteration
1476
- * Add publish script
2302
+
2303
+ - Iteration
2304
+ - Add publish script
1477
2305
 
1478
2306
  # ReleaseV0.2.1
2307
+
1479
2308
  #### Release Date: 2021-8-12
2309
+
1480
2310
  #### Release Scope: Full
2311
+
1481
2312
  #### Release Content
1482
- * Iteration
1483
- * Default custom third-party for the unit
2313
+
2314
+ - Iteration
2315
+ - Default custom third-party for the unit
1484
2316
 
1485
2317
  # ReleaseV0.2.0
2318
+
1486
2319
  #### Release Date: 2021-8-12
2320
+
1487
2321
  #### Release Scope: Full
2322
+
1488
2323
  #### Release Content
1489
- * Iteration
1490
- * Test
2324
+
2325
+ - Iteration
2326
+ - Test
1491
2327
 
1492
2328
  # ReleaseV0.1.9
2329
+
1493
2330
  #### Release Date: 2021-8-12
2331
+
1494
2332
  #### Release Scope: Full
2333
+
1495
2334
  #### Release Content
1496
- * Iteration
1497
- * Test
2335
+
2336
+ - Iteration
2337
+ - Test
1498
2338
 
1499
2339
  # ReleaseV0.1.8
2340
+
1500
2341
  #### Release Date: 2021-8-12
2342
+
1501
2343
  #### Release Scope: Full
2344
+
1502
2345
  #### Release Content
1503
- * Iteration
1504
- * Correct
2346
+
2347
+ - Iteration
2348
+ - Correct
1505
2349
 
1506
2350
  # ReleaseV0.1.7
2351
+
1507
2352
  #### Release Date: 2021-8-12
2353
+
1508
2354
  #### Release Scope: Full
2355
+
1509
2356
  #### Release Content
1510
- * Iteration
1511
- * Add 4 parameters bizType, compDesc, category, belongOrgFlag to the component release interface.
2357
+
2358
+ - Iteration
2359
+ - Add 4 parameters bizType, compDesc, category, belongOrgFlag to the component
2360
+ release interface.
1512
2361
 
1513
2362
  # ReleaseV0.1.6
2363
+
1514
2364
  #### Release Date: 2021-8-11
2365
+
1515
2366
  #### Release Scope: Full
2367
+
1516
2368
  #### Release Content
1517
- * Iteration
1518
- * Optimize logic.
2369
+
2370
+ - Iteration
2371
+ - Optimize logic.
1519
2372
 
1520
2373
  # ReleaseV0.1.5
2374
+
1521
2375
  #### Release Date: 2021-8-10
2376
+
1522
2377
  #### Release Scope: Full
2378
+
1523
2379
  #### Release Content
1524
- * Iteration
1525
- * Optimize logic.
2380
+
2381
+ - Iteration
2382
+ - Optimize logic.
1526
2383
 
1527
2384
  # ReleaseV0.1.4
2385
+
1528
2386
  #### Release Date: 2021-8-9
2387
+
1529
2388
  #### Release Scope: Full
2389
+
1530
2390
  #### Release Content
1531
- * Iteration
1532
- * Add optimized deployment logic
2391
+
2392
+ - Iteration
2393
+ - Add optimized deployment logic
1533
2394
 
1534
2395
  # ReleaseV0.1.3
2396
+
1535
2397
  #### Release Date: 2021-8-6
2398
+
1536
2399
  #### Release Scope: Full
2400
+
1537
2401
  #### Release Content
1538
- * Iteration
1539
- * Configurable baseUrl
2402
+
2403
+ - Iteration
2404
+ - Configurable baseUrl
1540
2405
 
1541
2406
  # ReleaseV0.1.2
2407
+
1542
2408
  #### Release Date: 2021-7-27
2409
+
1543
2410
  #### Release Scope: Full
2411
+
1544
2412
  #### Release Content
1545
- * Iteration
1546
- * Optimize dev and release scripts
2413
+
2414
+ - Iteration
2415
+ - Optimize dev and release scripts
1547
2416
 
1548
2417
  # ReleaseV0.1.1
2418
+
1549
2419
  #### Release Date: 2021-7-23
2420
+
1550
2421
  #### Release Scope: Full
2422
+
1551
2423
  #### Release Content
1552
- * Iteration
1553
- * Add batch compilation function
1554
- * Add dev and release function scripts
2424
+
2425
+ - Iteration
2426
+ - Add batch compilation function
2427
+ - Add dev and release function scripts
1555
2428
 
1556
2429
  # ReleaseV0.1.0
2430
+
1557
2431
  #### Release Date: 2021-7-15
2432
+
1558
2433
  #### Release Scope: Full
2434
+
1559
2435
  #### Release Content
1560
- * Iteration
1561
- * Close the generation of Map files
1562
- * Optimize prompt information
2436
+
2437
+ - Iteration
2438
+ - Close the generation of Map files
2439
+ - Optimize prompt information
1563
2440
 
1564
2441
  # ReleaseV0.0.9
2442
+
1565
2443
  #### Release Date: 2021-7-7
2444
+
1566
2445
  #### Release Scope: Full
2446
+
1567
2447
  #### Release Content
1568
- * Iteration
1569
- * Add token and source to request header
2448
+
2449
+ - Iteration
2450
+ - Add token and source to request header
1570
2451
 
1571
2452
  # ReleaseV0.0.8
2453
+
1572
2454
  #### Release Date: 2021-7-2
2455
+
1573
2456
  #### Release Scope: Full
2457
+
1574
2458
  #### Release Content
1575
- * Iteration
1576
- * Close packaging dependency control
2459
+
2460
+ - Iteration
2461
+ - Close packaging dependency control
1577
2462
 
1578
2463
  # ReleaseV0.0.7
2464
+
1579
2465
  #### Release Date: 2021-7-2
2466
+
1580
2467
  #### Release Scope: Full
2468
+
1581
2469
  #### Release Content
1582
- * Iteration
1583
- * Close packaging dependency control
1584
- * Change the color of the prompt log
2470
+
2471
+ - Iteration
2472
+ - Close packaging dependency control
2473
+ - Change the color of the prompt log
1585
2474
 
1586
2475
  # ReleaseV0.0.6
2476
+
1587
2477
  #### Release Date: 2021-6-15
2478
+
1588
2479
  #### Release Scope: Full
2480
+
1589
2481
  #### Release Content
2482
+
1590
2483
  * Optimize project creation and compilation
1591
2484
 
1592
2485
  # ReleaseV0.0.5
2486
+
1593
2487
  #### Release Date: 2021-6-15
2488
+
1594
2489
  #### Release Scope: Full
2490
+
1595
2491
  #### Release Content
1596
- * Iteration
1597
- * Force css to be inline in js
2492
+
2493
+ - Iteration
2494
+ - Force css to be inline in js
1598
2495
 
1599
2496
  # ReleaseV0.0.4
2497
+
1600
2498
  #### Release Date: 2021-6-15
2499
+
1601
2500
  #### Release Scope: Full
2501
+
1602
2502
  #### Release Content
1603
- * Iteration
1604
- * Replace compiler
2503
+
2504
+ - Iteration
2505
+ - Replace compiler
1605
2506
 
1606
2507
  # ReleaseV0.0.3
2508
+
1607
2509
  #### Release Date: 2021-6-15
2510
+
1608
2511
  #### Release Scope: Full
2512
+
1609
2513
  #### Release Content
1610
- * Iteration
1611
- * Optimize logic
2514
+
2515
+ - Iteration
2516
+ - Optimize logic
1612
2517
 
1613
2518
  # ReleaseV0.0.2
2519
+
1614
2520
  #### Release Date: 2021-6-15
2521
+
1615
2522
  #### Release Scope: Full
2523
+
1616
2524
  #### Release Content
1617
- * Iteration
1618
- * Optimize template files
2525
+
2526
+ - Iteration
2527
+ - Optimize template files
1619
2528
 
1620
2529
  # ReleaseV0.0.1
2530
+
1621
2531
  #### Release Date: 2021-6-15
2532
+
1622
2533
  #### Release Scope: Full
2534
+
1623
2535
  #### Release Content
1624
- * Iteration
1625
- * Add initial version
2536
+
2537
+ - Iteration
2538
+ - Add initial version