@corva/create-app 0.48.0-0-test-0718ceb → 0.48.0-2
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.
- package/common/python/.env +0 -9
- package/common/python/.env.sample +1 -17
- package/common/python/requirements.txt +1 -1
- package/lib/constants/manifest.js +18 -2
- package/lib/constants/package.js +20 -10
- package/lib/flows/lib/api.js +1 -3
- package/lib/flows/lib/manifest.js +31 -0
- package/lib/flows/steps/attach/prepare-data.js +1 -1
- package/lib/flows/steps/release/prepare-data.js +1 -1
- package/lib/flows/steps/rerun/prepare-data.js +1 -1
- package/lib/helpers/manifest.js +6 -9
- package/lib/helpers/resolve-app-runtime.js +24 -0
- package/lib/helpers/versioning.js +1 -2
- package/lib/main.js +36 -31
- package/package.json +2 -1
- package/templates/{javascript/scheduler → scheduler_data-time/javascript}/README.md +0 -0
- package/templates/scheduler_data-time/javascript/__test__/processor.spec.js +15 -0
- package/templates/scheduler_data-time/javascript/index.js +15 -0
- package/templates/{python/scheduler → scheduler_data-time/python}/README.md +0 -0
- package/templates/{python/scheduler → scheduler_data-time/python}/lambda_function.py +0 -0
- package/templates/{python/scheduler → scheduler_data-time/python}/test/__init__.py +0 -0
- package/templates/{python/scheduler → scheduler_data-time/python}/test/app_test.py +0 -0
- package/templates/{typescript/scheduler → scheduler_data-time/typescript}/README.md +0 -0
- package/templates/scheduler_data-time/typescript/__test__/processor.spec.ts +15 -0
- package/templates/scheduler_data-time/typescript/index.ts +8 -0
- package/templates/scheduler_depth/javascript/README.md +19 -0
- package/templates/scheduler_depth/javascript/__test__/processor.spec.js +17 -0
- package/templates/scheduler_depth/javascript/index.js +15 -0
- package/templates/scheduler_depth/python/README.md +31 -0
- package/templates/scheduler_depth/python/lambda_function.py +7 -0
- package/templates/{python/stream → scheduler_depth/python}/test/__init__.py +0 -0
- package/templates/scheduler_depth/python/test/app_test.py +10 -0
- package/templates/scheduler_depth/typescript/README.md +25 -0
- package/templates/scheduler_depth/typescript/__test__/processor.spec.ts +17 -0
- package/templates/scheduler_depth/typescript/index.ts +8 -0
- package/templates/scheduler_natural-time/javascript/README.md +19 -0
- package/templates/scheduler_natural-time/javascript/__test__/processor.spec.js +15 -0
- package/templates/scheduler_natural-time/javascript/index.js +15 -0
- package/templates/scheduler_natural-time/python/README.md +31 -0
- package/templates/scheduler_natural-time/python/lambda_function.py +7 -0
- package/templates/{python/task → scheduler_natural-time/python}/test/__init__.py +0 -0
- package/templates/scheduler_natural-time/python/test/app_test.py +10 -0
- package/templates/scheduler_natural-time/typescript/README.md +25 -0
- package/templates/scheduler_natural-time/typescript/__test__/processor.spec.ts +15 -0
- package/templates/scheduler_natural-time/typescript/index.ts +8 -0
- package/templates/{javascript/stream → stream_depth/javascript}/README.md +0 -0
- package/templates/stream_depth/javascript/__test__/processor.spec.js +20 -0
- package/templates/stream_depth/javascript/index.js +14 -0
- package/templates/{python/stream → stream_depth/python}/README.md +0 -0
- package/templates/stream_depth/python/lambda_function.py +7 -0
- package/templates/stream_depth/python/test/__init__.py +0 -0
- package/templates/stream_depth/python/test/app_test.py +16 -0
- package/templates/{typescript/stream → stream_depth/typescript}/README.md +0 -0
- package/templates/stream_depth/typescript/__test__/processor.spec.ts +20 -0
- package/templates/stream_depth/typescript/index.ts +8 -0
- package/templates/stream_time/javascript/README.md +19 -0
- package/templates/stream_time/javascript/__test__/processor.spec.js +14 -0
- package/templates/stream_time/javascript/index.js +14 -0
- package/templates/stream_time/python/README.md +31 -0
- package/templates/{python/stream → stream_time/python}/lambda_function.py +0 -0
- package/templates/stream_time/python/test/__init__.py +0 -0
- package/templates/{python/stream → stream_time/python}/test/app_test.py +0 -0
- package/templates/stream_time/typescript/README.md +25 -0
- package/templates/stream_time/typescript/__test__/processor.spec.ts +14 -0
- package/templates/stream_time/typescript/index.ts +8 -0
- package/templates/{javascript/task → task/javascript}/README.md +0 -0
- package/templates/task/javascript/__test__/processor.spec.js +16 -0
- package/templates/task/javascript/index.js +15 -0
- package/templates/{python/task → task/python}/README.md +0 -0
- package/templates/{python/task → task/python}/lambda_function.py +0 -0
- package/templates/task/python/test/__init__.py +0 -0
- package/templates/{python/task → task/python}/test/app_test.py +1 -1
- package/templates/{typescript/task → task/typescript}/README.md +0 -0
- package/templates/task/typescript/__test__/processor.spec.ts +16 -0
- package/templates/task/typescript/index.ts +8 -0
- package/templates/{javascript/ui → ui/javascript}/.env +0 -0
- package/templates/{javascript/ui → ui/javascript}/.env.sample +0 -0
- package/templates/{javascript/ui → ui/javascript}/.eslintrc +0 -0
- package/templates/{javascript/ui → ui/javascript}/.prettierrc +0 -0
- package/templates/{javascript/ui → ui/javascript}/README.md +0 -0
- package/templates/{javascript/ui → ui/javascript}/config-overrides.js +0 -0
- package/templates/{javascript/ui → ui/javascript}/gitignore +0 -0
- package/templates/{javascript/ui → ui/javascript}/src/App.css +0 -0
- package/templates/{javascript/ui → ui/javascript}/src/App.js +0 -0
- package/templates/{javascript/ui → ui/javascript}/src/AppSettings.js +0 -0
- package/templates/{javascript/ui → ui/javascript}/src/__tests__/TestExample.test.js +0 -0
- package/templates/{javascript/ui → ui/javascript}/src/assets/logo.svg +0 -0
- package/templates/{javascript/ui → ui/javascript}/src/constants.js +0 -0
- package/templates/{javascript/ui → ui/javascript}/src/index.js +0 -0
- package/templates/{javascript/ui → ui/javascript}/src/setupTests.js +0 -0
- package/templates/{typescript/ui → ui/typescript}/.env +0 -0
- package/templates/{typescript/ui → ui/typescript}/.env.sample +0 -0
- package/templates/{typescript/ui → ui/typescript}/.eslintrc +0 -0
- package/templates/{typescript/ui → ui/typescript}/.prettierrc +0 -0
- package/templates/{typescript/ui → ui/typescript}/README.md +0 -0
- package/templates/{typescript/ui → ui/typescript}/config-overrides.js +0 -0
- package/templates/{typescript/ui → ui/typescript}/gitignore +0 -0
- package/templates/{typescript/ui → ui/typescript}/src/App.css +0 -0
- package/templates/{typescript/ui → ui/typescript}/src/App.tsx +0 -0
- package/templates/{typescript/ui → ui/typescript}/src/AppSettings.tsx +0 -0
- package/templates/{typescript/ui → ui/typescript}/src/__tests__/TestExample.test.tsx +0 -0
- package/templates/{typescript/ui → ui/typescript}/src/assets/logo.svg +0 -0
- package/templates/{typescript/ui → ui/typescript}/src/constants.ts +0 -0
- package/templates/{typescript/ui → ui/typescript}/src/custom.d.ts +0 -0
- package/templates/{typescript/ui → ui/typescript}/src/index.js +0 -0
- package/templates/{typescript/ui → ui/typescript}/src/setupTests.ts +0 -0
- package/templates/{typescript/ui → ui/typescript}/tsconfig.json +0 -0
- package/CHANGELOG.md +0 -914
- package/templates/javascript/scheduler/__test__/processor.test.js +0 -19
- package/templates/javascript/scheduler/index.js +0 -15
- package/templates/javascript/scheduler/src/processor.js +0 -17
- package/templates/javascript/stream/__test__/processor.test.js +0 -44
- package/templates/javascript/stream/index.js +0 -15
- package/templates/javascript/stream/src/processor.js +0 -18
- package/templates/javascript/task/__test__/processor.test.js +0 -18
- package/templates/javascript/task/index.js +0 -16
- package/templates/javascript/task/src/processor.js +0 -17
- package/templates/typescript/scheduler/__test__/processor.spec.ts +0 -20
- package/templates/typescript/scheduler/index.ts +0 -8
- package/templates/typescript/scheduler/lib/processor.ts +0 -14
- package/templates/typescript/stream/__test__/processor.spec.ts +0 -43
- package/templates/typescript/stream/index.ts +0 -8
- package/templates/typescript/stream/lib/processor.ts +0 -16
- package/templates/typescript/task/__test__/processor.spec.ts +0 -27
- package/templates/typescript/task/index.ts +0 -8
- package/templates/typescript/task/src/processor.ts +0 -14
package/CHANGELOG.md
DELETED
|
@@ -1,914 +0,0 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
|
|
3
|
-
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
|
-
|
|
5
|
-
## [0.48.0-0](https://github.com/corva-ai/create-corva-app/compare/v0.47.0-2...v0.48.0-0) (2023-01-24)
|
|
6
|
-
|
|
7
|
-
## [0.47.0-2](https://github.com/corva-ai/create-corva-app/compare/v0.47.0-0...v0.47.0-2) (2023-01-20)
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
### Features
|
|
11
|
-
|
|
12
|
-
* **DC-4922:** moment version bump ([#248](https://corvaqa.atlassian.net/browse/248)) ([46bf93f](https://github.com/corva-ai/create-corva-app/commit/46bf93fe2a1b203cd8980d29dfd6a5463f089ade))
|
|
13
|
-
* **DC-4922:** update CI/CD config ([2c1316c](https://github.com/corva-ai/create-corva-app/commit/2c1316cf9baf5de0c05599d1c191b16b18b53c6f))
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
### Bug Fixes
|
|
17
|
-
|
|
18
|
-
* **DC-4770:** add lint stage to ci ([#247](https://corvaqa.atlassian.net/browse/247)) ([e524cd6](https://github.com/corva-ai/create-corva-app/commit/e524cd6d8080e3ff20a8e199e825a54feae7323c))
|
|
19
|
-
|
|
20
|
-
## [0.47.0-1](https://github.com/corva-ai/create-corva-app/compare/v0.47.0-0...v0.47.0-1) (2023-01-19)
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
### Features
|
|
24
|
-
|
|
25
|
-
* **DC-4922:** moment version bump ([f70013a](https://github.com/corva-ai/create-corva-app/commit/f70013a5f2281db9d45b5e67670d49d14704f76e))
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
### Bug Fixes
|
|
29
|
-
|
|
30
|
-
* **DC-4770:** add lint stage to ci ([#247](https://corvaqa.atlassian.net/browse/247)) ([e524cd6](https://github.com/corva-ai/create-corva-app/commit/e524cd6d8080e3ff20a8e199e825a54feae7323c))
|
|
31
|
-
|
|
32
|
-
## [0.47.0-0](https://github.com/corva-ai/create-corva-app/compare/v0.46.0-0...v0.47.0-0) (2023-01-10)
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
### Features
|
|
36
|
-
|
|
37
|
-
* **release command:** Add --remove-existing option when package version already exists ([#244](https://corvaqa.atlassian.net/browse/244)) ([c6ac5c7](https://github.com/corva-ai/create-corva-app/commit/c6ac5c71d5a0fe616d382871703789e011737caa))
|
|
38
|
-
|
|
39
|
-
## [0.46.0-1](https://github.com/corva-ai/create-corva-app/compare/v0.46.0-0...v0.46.0-1) (2023-01-10)
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
### Features
|
|
43
|
-
|
|
44
|
-
* **release command:** Add --remove-existing option when package version already exists ([#244](https://corvaqa.atlassian.net/browse/244)) ([c6ac5c7](https://github.com/corva-ai/create-corva-app/commit/c6ac5c71d5a0fe616d382871703789e011737caa))
|
|
45
|
-
|
|
46
|
-
## [0.46.0-0](https://github.com/corva-ai/create-corva-app/compare/v0.45.0-4...v0.46.0-0) (2022-12-20)
|
|
47
|
-
|
|
48
|
-
## [0.45.0-4](https://github.com/corva-ai/create-corva-app/compare/v0.45.0-3...v0.45.0-4) (2022-12-19)
|
|
49
|
-
|
|
50
|
-
## [0.45.0-3](https://github.com/corva-ai/create-corva-app/compare/v0.45.0-2...v0.45.0-3) (2022-12-13)
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
### Features
|
|
54
|
-
|
|
55
|
-
* **dc-4757:** allow to create app in existing folder ([648009d](https://github.com/corva-ai/create-corva-app/commit/648009d7388a072dc2832bd048c72c4a75a56e05))
|
|
56
|
-
|
|
57
|
-
## [0.45.0-2](https://github.com/corva-ai/create-corva-app/compare/v0.45.0-1...v0.45.0-2) (2022-12-12)
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
### Bug Fixes
|
|
61
|
-
|
|
62
|
-
* **dc-4718:** pass missing variable to error handler ([078343c](https://github.com/corva-ai/create-corva-app/commit/078343c986924e2f997222c490a77e381555e2a2))
|
|
63
|
-
|
|
64
|
-
## [0.45.0-1](https://github.com/corva-ai/create-corva-app/compare/v0.45.0-0...v0.45.0-1) (2022-12-12)
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
### Features
|
|
68
|
-
|
|
69
|
-
* **DR-112:** Add company-id mode and fixed several bugs ([7ce022a](https://github.com/corva-ai/create-corva-app/commit/7ce022acf775dac31a963fa23aaadc9ba525c5c0))
|
|
70
|
-
* **DR-112:** Fix getAllAssets method ([f57a2bc](https://github.com/corva-ai/create-corva-app/commit/f57a2bc4f6e5a5a59247c8e38f68bbc2c9f41086))
|
|
71
|
-
* **DR-112:** Fix getAllAssets method ([5717cba](https://github.com/corva-ai/create-corva-app/commit/5717cba0baa7cc16802537d5c9e99adfb1b880ec))
|
|
72
|
-
* **DR-112:** Fix lint errors ([6530df0](https://github.com/corva-ai/create-corva-app/commit/6530df00a66264dad6c8b81b00d110471f9810a1))
|
|
73
|
-
* **DR-112:** Fix options ([d2f99f0](https://github.com/corva-ai/create-corva-app/commit/d2f99f022f6a296ea41665dfacb06387bf6b9a92))
|
|
74
|
-
* **DR-112:** Fix options ([99372a1](https://github.com/corva-ai/create-corva-app/commit/99372a132607fc8347012ce3e64557a79e2df1dc))
|
|
75
|
-
* **DR-112:** Fix return type ([9d063e2](https://github.com/corva-ai/create-corva-app/commit/9d063e27a8303e356f5b090013b3f4dac953aa87))
|
|
76
|
-
* **yarn:** rollback yarn ([#238](https://corvaqa.atlassian.net/browse/238)) ([fadae8a](https://github.com/corva-ai/create-corva-app/commit/fadae8affb874e1250a04b3241738b8aecd3dc2e))
|
|
77
|
-
|
|
78
|
-
## [0.45.0-0](https://github.com/corva-ai/create-corva-app/compare/v0.44.0-2...v0.45.0-0) (2022-12-06)
|
|
79
|
-
|
|
80
|
-
## [0.44.0-2](https://github.com/corva-ai/create-corva-app/compare/v0.44.0-1...v0.44.0-2) (2022-12-06)
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
### Features
|
|
84
|
-
|
|
85
|
-
* **dr-4577:** add eslint-config-node to node templates ([#235](https://corvaqa.atlassian.net/browse/235)) ([35200dd](https://github.com/corva-ai/create-corva-app/commit/35200dd59d75622e5a3713b88d2e324a2d9b69a2))
|
|
86
|
-
|
|
87
|
-
## [0.44.0-1](https://github.com/corva-ai/create-corva-app/compare/v0.44.0-0...v0.44.0-1) (2022-12-06)
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
### Bug Fixes
|
|
91
|
-
|
|
92
|
-
* will take the default env from dotenv first ([9e692c5](https://github.com/corva-ai/create-corva-app/commit/9e692c568e12258311389647c7bcad44731e1102))
|
|
93
|
-
|
|
94
|
-
## [0.44.0-0](https://github.com/corva-ai/create-corva-app/compare/v0.43.0-4...v0.44.0-0) (2022-11-22)
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
### Bug Fixes
|
|
98
|
-
|
|
99
|
-
* **CQA-810:** using python 3.8 for tests ([#232](https://corvaqa.atlassian.net/browse/232)) ([c4f8da3](https://github.com/corva-ai/create-corva-app/commit/c4f8da34ce21dda548587e9f287ce230454c0385))
|
|
100
|
-
|
|
101
|
-
## [0.43.0-4](https://github.com/corva-ai/create-corva-app/compare/v0.43.0-3...v0.43.0-4) (2022-11-16)
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
### Bug Fixes
|
|
105
|
-
|
|
106
|
-
* **dc-4349:** hack for python under windows ([9f2e1a6](https://github.com/corva-ai/create-corva-app/commit/9f2e1a6cb7aec4cdf9ab58147e39cb85b165d181))
|
|
107
|
-
* resolve the target path for all the commands ([c1c3144](https://github.com/corva-ai/create-corva-app/commit/c1c3144b13b5ba906ebbbbb2e405e41b86c879a1))
|
|
108
|
-
|
|
109
|
-
## [0.43.0-3](https://github.com/corva-ai/create-corva-app/compare/v0.43.0-2...v0.43.0-3) (2022-11-15)
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
### Bug Fixes
|
|
113
|
-
|
|
114
|
-
* prevent error-out python on windows ([e3d6ef2](https://github.com/corva-ai/create-corva-app/commit/e3d6ef250b4e79607e4abafe8607d72c34b522f6))
|
|
115
|
-
|
|
116
|
-
## [0.43.0-2](https://github.com/corva-ai/create-corva-app/compare/v0.43.0-1...v0.43.0-2) (2022-11-11)
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
### Bug Fixes
|
|
120
|
-
|
|
121
|
-
* **dc-4456:** pop up exit code on error ([f6b84ec](https://github.com/corva-ai/create-corva-app/commit/f6b84ec61da182f48e9df2c93a04767cc8a1f2a8))
|
|
122
|
-
|
|
123
|
-
## [0.43.0-1](https://github.com/corva-ai/create-corva-app/compare/v0.43.0-0...v0.43.0-1) (2022-11-10)
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
### Features
|
|
127
|
-
|
|
128
|
-
* **dc-4432:** add .env.sample to backed apps ([054dde6](https://github.com/corva-ai/create-corva-app/commit/054dde694b9191fd1fa45682f91ebbc58f22236f))
|
|
129
|
-
|
|
130
|
-
## [0.43.0-0](https://github.com/corva-ai/create-corva-app/compare/v0.39.0-0...v0.43.0-0) (2022-11-08)
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
### Features
|
|
134
|
-
|
|
135
|
-
* **CQA-154:** added notification to qa-ui-validation channel ([0107784](https://github.com/corva-ai/create-corva-app/commit/0107784db8e60533f68d2886fb5bc837cc9dfa3d))
|
|
136
|
-
* **CQA-755:** Added possibility to store zip file after upload [ci skip] ([#224](https://corvaqa.atlassian.net/browse/224)) ([6835613](https://github.com/corva-ai/create-corva-app/commit/683561362b69683534b698749120ccf431cb8bd3))
|
|
137
|
-
* **CQA-785:** machine versions update ([#221](https://corvaqa.atlassian.net/browse/221)) ([71ba526](https://github.com/corva-ai/create-corva-app/commit/71ba5269a03bf5c11a43ce95d31c3d7d49fa5e2a))
|
|
138
|
-
* **DA-4259:** add rerun feature for re-run legacy wells ([#213](https://corvaqa.atlassian.net/browse/213)) ([75c1f90](https://github.com/corva-ai/create-corva-app/commit/75c1f9063def0fa01227b50861d507f4a0aafd78))
|
|
139
|
-
* **DC-4198:** use @corva/dc-platform-shared ([2bd94be](https://github.com/corva-ai/create-corva-app/commit/2bd94be9ae0f722edb37bff1533c40ab425a342a))
|
|
140
|
-
* **dc-4244:** create logger to show info messages ([#215](https://corvaqa.atlassian.net/browse/215)) ([c97aaa0](https://github.com/corva-ai/create-corva-app/commit/c97aaa01188f628632c266c207d70ffeedf374a6))
|
|
141
|
-
* **DC-4245:** Merge corva-deploy ([#217](https://corvaqa.atlassian.net/browse/217)) ([d61bc22](https://github.com/corva-ai/create-corva-app/commit/d61bc2214bd440e1bdca666417c049947415ea5a))
|
|
142
|
-
* **dc-4536:** Add python 3.9 support ([#225](https://corvaqa.atlassian.net/browse/225)) ([7df8c7e](https://github.com/corva-ai/create-corva-app/commit/7df8c7e1a8db5cce2ad82503e8f89e2adb0ed3fa))
|
|
143
|
-
* **release-command:** added api key ([54959eb](https://github.com/corva-ai/create-corva-app/commit/54959eb96ab7f9a37ed55dfc6d26137aacafc2c3))
|
|
144
|
-
* **ui apps readme update:** updated links in ui apps readme ([#218](https://corvaqa.atlassian.net/browse/218)) ([51db0b4](https://github.com/corva-ai/create-corva-app/commit/51db0b4d0f51de9a84ae0c4019e18b6d0020642c))
|
|
145
|
-
* use esm instead of commonjs ([#216](https://corvaqa.atlassian.net/browse/216)) ([700bf83](https://github.com/corva-ai/create-corva-app/commit/700bf839731e08aa6726ab21e8b79d96d62a3eff))
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
### Bug Fixes
|
|
149
|
-
|
|
150
|
-
* **DC-4017:** problem with excess params for a not scheduled task has been fixed ([c446d46](https://github.com/corva-ai/create-corva-app/commit/c446d465c52ba67d8f7e3a65b62f42698375d56d))
|
|
151
|
-
|
|
152
|
-
## [0.42.0-3](https://github.com/corva-ai/create-corva-app/compare/v0.42.0-2...v0.42.0-3) (2022-11-08)
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
### Features
|
|
156
|
-
|
|
157
|
-
* add python3.9 support ([f834164](https://github.com/corva-ai/create-corva-app/commit/f8341640f8e458066d0aab634aac39e92f71b338))
|
|
158
|
-
|
|
159
|
-
## [0.42.0-2](https://github.com/corva-ai/create-corva-app/compare/v0.42.0-1...v0.42.0-2) (2022-10-28)
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
### Features
|
|
163
|
-
|
|
164
|
-
* **CQA-755:** Added possibility to store zip file after upload [ci skip] ([a392f5c](https://github.com/corva-ai/create-corva-app/commit/a392f5c8a17e0e0c4d84f45ca98bd951ac93c579))
|
|
165
|
-
* **CQA-755:** fixed naming [ci skip] ([23865fe](https://github.com/corva-ai/create-corva-app/commit/23865febf729dc42bbde272e8177e9c5f2a47f1f))
|
|
166
|
-
|
|
167
|
-
## [0.42.0-1](https://github.com/corva-ai/create-corva-app/compare/v0.42.0-0...v0.42.0-1) (2022-10-26)
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
### Features
|
|
171
|
-
|
|
172
|
-
* **DR-4358:** add app to stream feature ([f828474](https://github.com/corva-ai/create-corva-app/commit/f82847465a2129fbdb75da440c4ad81fa068f066))
|
|
173
|
-
* **DR-4358:** add notification lib ([aad464e](https://github.com/corva-ai/create-corva-app/commit/aad464e02c7bbf9cf4b4c4c2336ed1620412c620))
|
|
174
|
-
* **DR-4358:** refactoring ([54f7872](https://github.com/corva-ai/create-corva-app/commit/54f787211ba1438aab057f3f5e7bfb618ffc4b8a))
|
|
175
|
-
* **DR-4358:** refactoring - fix lint ([9bc421b](https://github.com/corva-ai/create-corva-app/commit/9bc421b2375b1b1db9c351d6555b3bad2274cbcf))
|
|
176
|
-
* **DR-4358:** refactoring - rename files and titels ([f1106d7](https://github.com/corva-ai/create-corva-app/commit/f1106d7b816b8323ce43fa946a8f6ed7c5306dd1))
|
|
177
|
-
* **DR-4358:** update yarn lock file ([a267c32](https://github.com/corva-ai/create-corva-app/commit/a267c32c6c4f6bb9004a43ae36caeae96dc5fcea))
|
|
178
|
-
|
|
179
|
-
## [0.42.0-0](https://github.com/corva-ai/create-corva-app/compare/v0.41.0-3...v0.42.0-0) (2022-10-25)
|
|
180
|
-
|
|
181
|
-
## [0.41.0-3](https://github.com/corva-ai/create-corva-app/compare/v0.41.0-2...v0.41.0-3) (2022-10-24)
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
### Features
|
|
185
|
-
|
|
186
|
-
* **CQA-785:** machine versions update ([#221](https://corvaqa.atlassian.net/browse/221)) ([71ba526](https://github.com/corva-ai/create-corva-app/commit/71ba5269a03bf5c11a43ce95d31c3d7d49fa5e2a))
|
|
187
|
-
* **ui apps readme update:** updated links in ui apps readme ([#218](https://corvaqa.atlassian.net/browse/218)) ([51db0b4](https://github.com/corva-ai/create-corva-app/commit/51db0b4d0f51de9a84ae0c4019e18b6d0020642c))
|
|
188
|
-
|
|
189
|
-
## [0.41.0-2](https://github.com/corva-ai/create-corva-app/compare/v0.41.0-1...v0.41.0-2) (2022-10-18)
|
|
190
|
-
|
|
191
|
-
## [0.41.0-1](https://github.com/corva-ai/create-corva-app/compare/v0.40.0-1...v0.41.0-1) (2022-10-17)
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
### Features
|
|
195
|
-
|
|
196
|
-
* **DC-4245:** Merge corva-deploy ([f8d3ca4](https://github.com/corva-ai/create-corva-app/commit/f8d3ca4f72117f4211c7221ee110ed12f1f14d26))
|
|
197
|
-
* use esm instead of commonjs ([#216](https://corvaqa.atlassian.net/browse/216)) ([700bf83](https://github.com/corva-ai/create-corva-app/commit/700bf839731e08aa6726ab21e8b79d96d62a3eff))
|
|
198
|
-
|
|
199
|
-
## [0.41.0-0](https://github.com/corva-ai/create-corva-app/compare/v0.40.0-1...v0.41.0-0) (2022-10-11)
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
### Features
|
|
203
|
-
|
|
204
|
-
* use esm instead of commonjs ([#216](https://corvaqa.atlassian.net/browse/216)) ([700bf83](https://github.com/corva-ai/create-corva-app/commit/700bf839731e08aa6726ab21e8b79d96d62a3eff))
|
|
205
|
-
|
|
206
|
-
## [0.40.0-1](https://github.com/corva-ai/create-corva-app/compare/v0.40.0-0...v0.40.0-1) (2022-10-05)
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
### Features
|
|
210
|
-
|
|
211
|
-
* **CQA-154:** added notification to qa-ui-validation channel ([0107784](https://github.com/corva-ai/create-corva-app/commit/0107784db8e60533f68d2886fb5bc837cc9dfa3d))
|
|
212
|
-
* **dc-4244:** add awaiting for result ([810b430](https://github.com/corva-ai/create-corva-app/commit/810b43001fa791a7bd347467004beb046015a848))
|
|
213
|
-
* **dc-4244:** add console dirrectly writing ([14df909](https://github.com/corva-ai/create-corva-app/commit/14df909d334a8a6c9839b83ac4dfbbf2e27aac8f))
|
|
214
|
-
* **dc-4244:** change logger initialization ([0699f85](https://github.com/corva-ai/create-corva-app/commit/0699f85d8c631ea3ef428dec0ce01400abf9a10d))
|
|
215
|
-
* **dc-4244:** create logger to show info messages ([8c11ecb](https://github.com/corva-ai/create-corva-app/commit/8c11ecb9c8478e69fa25b1cd103328edda48c4f0))
|
|
216
|
-
* **dc-4244:** fix comments ([b461fae](https://github.com/corva-ai/create-corva-app/commit/b461fae4bc5bb8995b882604ab494ecf3b5c4988))
|
|
217
|
-
* **dc-4244:** keep silent variable ([bdab221](https://github.com/corva-ai/create-corva-app/commit/bdab2215957cbed8644c42117e7b0129a2ee4117))
|
|
218
|
-
* **dc-4244:** log operation was added into logger ([7c020f7](https://github.com/corva-ai/create-corva-app/commit/7c020f73cdd96fef74880a3dee8366acf1819751))
|
|
219
|
-
* **dc-4244:** replace logger on console log for result ([c413a3c](https://github.com/corva-ai/create-corva-app/commit/c413a3cccc4e1e0e2d6d9638d4eb5046101e77c1))
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
### Bug Fixes
|
|
223
|
-
|
|
224
|
-
* **OA-1638:** add silent to constants ([f2d33c9](https://github.com/corva-ai/create-corva-app/commit/f2d33c91b9cab20549c1ba6dd6b980f8062e16db))
|
|
225
|
-
|
|
226
|
-
## [0.40.0-0](https://github.com/corva-ai/create-corva-app/compare/v0.39.0-0...v0.40.0-0) (2022-09-27)
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
### Features
|
|
230
|
-
|
|
231
|
-
* **DC-4198:** use @corva/dc-platform-shared ([2bd94be](https://github.com/corva-ai/create-corva-app/commit/2bd94be9ae0f722edb37bff1533c40ab425a342a))
|
|
232
|
-
* **release-command:** added api key ([54959eb](https://github.com/corva-ai/create-corva-app/commit/54959eb96ab7f9a37ed55dfc6d26137aacafc2c3))
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
### Bug Fixes
|
|
236
|
-
|
|
237
|
-
* **DC-4017:** problem with excess params for a not scheduled task has been fixed ([c446d46](https://github.com/corva-ai/create-corva-app/commit/c446d465c52ba67d8f7e3a65b62f42698375d56d))
|
|
238
|
-
|
|
239
|
-
## [0.39.0-2](https://github.com/corva-ai/create-corva-app/compare/v0.39.0-1...v0.39.0-2) (2022-09-19)
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
### Features
|
|
243
|
-
|
|
244
|
-
* **DC-4198:** use @corva/dc-platform-shared ([2bd94be](https://github.com/corva-ai/create-corva-app/commit/2bd94be9ae0f722edb37bff1533c40ab425a342a))
|
|
245
|
-
|
|
246
|
-
## [0.39.0-1](https://github.com/corva-ai/create-corva-app/compare/v0.39.0-0...v0.39.0-1) (2022-09-16)
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
### Features
|
|
250
|
-
|
|
251
|
-
* **release-command:** added api key ([54959eb](https://github.com/corva-ai/create-corva-app/commit/54959eb96ab7f9a37ed55dfc6d26137aacafc2c3))
|
|
252
|
-
|
|
253
|
-
## [0.39.0-0](https://github.com/corva-ai/create-corva-app/compare/v0.38.0-2...v0.39.0-0) (2022-09-13)
|
|
254
|
-
|
|
255
|
-
## [0.38.0-2](https://github.com/corva-ai/create-corva-app/compare/v0.38.0-0...v0.38.0-2) (2022-09-07)
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
### Features
|
|
259
|
-
|
|
260
|
-
* **DC-3610:** make explicit check on runtime ([3104b50](https://github.com/corva-ai/create-corva-app/commit/3104b5013816b103c5f21a1389144295bdbc0bf7))
|
|
261
|
-
|
|
262
|
-
## [0.38.0-1](https://github.com/corva-ai/create-corva-app/compare/v0.38.0-0...v0.38.0-1) (2022-09-06)
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
### Features
|
|
266
|
-
|
|
267
|
-
* **DC-3610:** make explicit check on runtime ([3104b50](https://github.com/corva-ai/create-corva-app/commit/3104b5013816b103c5f21a1389144295bdbc0bf7))
|
|
268
|
-
|
|
269
|
-
## [0.38.0-0](https://github.com/corva-ai/create-corva-app/compare/v0.37.0-0...v0.38.0-0) (2022-08-30)
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
### Bug Fixes
|
|
273
|
-
|
|
274
|
-
* **DC-4019:** update warnings colors ([5c1ff1d](https://github.com/corva-ai/create-corva-app/commit/5c1ff1d8cbe67bcaafab8b9f7b64607334796354))
|
|
275
|
-
|
|
276
|
-
## [0.37.0-1](https://github.com/corva-ai/create-corva-app/compare/v0.37.0-0...v0.37.0-1) (2022-08-23)
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
### Bug Fixes
|
|
280
|
-
|
|
281
|
-
* **DC-4019:** update warnings colors ([5c1ff1d](https://github.com/corva-ai/create-corva-app/commit/5c1ff1d8cbe67bcaafab8b9f7b64607334796354))
|
|
282
|
-
|
|
283
|
-
## [0.35.0-2](https://github.com/corva-ai/create-corva-app/compare/v0.35.0-1...v0.35.0-2) (2022-08-15)
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
### Bug Fixes
|
|
287
|
-
|
|
288
|
-
* **dc-4075:** make consistent naming on create/zip ([44c644f](https://github.com/corva-ai/create-corva-app/commit/44c644f1570ca3cf2b35d09077616be647bb6193))
|
|
289
|
-
|
|
290
|
-
## [0.35.0-1](https://github.com/corva-ai/create-corva-app/compare/v0.34.0-7...v0.35.0-1) (2022-08-03)
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
### Bug Fixes
|
|
294
|
-
|
|
295
|
-
* **DC-4002:** missing/unmatching .nvmrc content ([12c55b4](https://github.com/corva-ai/create-corva-app/commit/12c55b4260a406011e803b259edbb255a28fbfb2))
|
|
296
|
-
|
|
297
|
-
## [0.35.0-0](https://github.com/corva-ai/create-corva-app/compare/v0.34.0-7...v0.35.0-0) (2022-08-03)
|
|
298
|
-
|
|
299
|
-
## [0.34.0-7](https://github.com/corva-ai/create-corva-app/compare/v0.34.0-6...v0.34.0-7) (2022-07-29)
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
### Bug Fixes
|
|
303
|
-
|
|
304
|
-
* **dc-3666:** Fix TS app `yarn start` crash ([ddbb252](https://github.com/corva-ai/create-corva-app/commit/ddbb252e69dd736ecf236aa4899e18d5061283a7))
|
|
305
|
-
|
|
306
|
-
## [0.34.0-6](https://github.com/corva-ai/create-corva-app/compare/v0.34.0-5...v0.34.0-6) (2022-07-29)
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
### Bug Fixes
|
|
310
|
-
|
|
311
|
-
* cleanup dependencies ([ece681a](https://github.com/corva-ai/create-corva-app/commit/ece681a94b100876b9572f5bdb7954895e5cc431))
|
|
312
|
-
|
|
313
|
-
## [0.34.0-5](https://github.com/corva-ai/create-corva-app/compare/v0.34.0-4...v0.34.0-5) (2022-07-29)
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
### Bug Fixes
|
|
317
|
-
|
|
318
|
-
* **dc-3970:** fallback to system node if nvm is missing ([8bcd2a8](https://github.com/corva-ai/create-corva-app/commit/8bcd2a892f23990be5b46027e8c3ad92819f9934))
|
|
319
|
-
|
|
320
|
-
## [0.34.0-4](https://github.com/corva-ai/create-corva-app/compare/v0.34.0-2...v0.34.0-4) (2022-07-26)
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
### Features
|
|
324
|
-
|
|
325
|
-
* **dc-3827:** allow to ignore dirs on zip ([#194](https://corvaqa.atlassian.net/browse/194)) ([3bb8e0b](https://github.com/corva-ai/create-corva-app/commit/3bb8e0bad2e2ed82f0c4de1d41ccf271fda13675))
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
### Bug Fixes
|
|
329
|
-
|
|
330
|
-
* **dc-3850:** add check for python3 in makefile ([ae98e18](https://github.com/corva-ai/create-corva-app/commit/ae98e183ecb1dddf73159286134d4be50043b6e8))
|
|
331
|
-
* missing await caused wizard to be broken ([ba24218](https://github.com/corva-ai/create-corva-app/commit/ba242184a0584a0dedbee97591d334edc2e76a1b))
|
|
332
|
-
|
|
333
|
-
## [0.34.0-3](https://github.com/corva-ai/create-corva-app/compare/v0.34.0-2...v0.34.0-3) (2022-07-25)
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
### Features
|
|
337
|
-
|
|
338
|
-
* **DC-3827:** fix ignoring ([964ee21](https://github.com/corva-ai/create-corva-app/commit/964ee218fd5eb3822c167d9829e73a89a87f8557))
|
|
339
|
-
|
|
340
|
-
## [0.34.0-2](https://github.com/corva-ai/create-corva-app/compare/v0.34.0-0...v0.34.0-2) (2022-07-25)
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
### Bug Fixes
|
|
344
|
-
|
|
345
|
-
* **DC-3804:** add nvmrc for node apps ([#186](https://corvaqa.atlassian.net/browse/186)) ([1cdd5e7](https://github.com/corva-ai/create-corva-app/commit/1cdd5e791e942fa4821e92e0566e70682344dbfd))
|
|
346
|
-
* **DC-3962:** add missing node16 runtime ([ddbfa5f](https://github.com/corva-ai/create-corva-app/commit/ddbfa5fae21aa00593a788619d8fba48920d2d65))
|
|
347
|
-
|
|
348
|
-
## [0.34.0-1](https://github.com/corva-ai/create-corva-app/compare/v0.34.0-0...v0.34.0-1) (2022-07-25)
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
### Bug Fixes
|
|
352
|
-
|
|
353
|
-
* add nvmrc for node apps ([9f86b9c](https://github.com/corva-ai/create-corva-app/commit/9f86b9c903257eb39e73ef5efd0db8f072a3bc74))
|
|
354
|
-
|
|
355
|
-
## [0.34.0-0](https://github.com/corva-ai/create-corva-app/compare/v0.33.0-2...v0.34.0-0) (2022-07-19)
|
|
356
|
-
|
|
357
|
-
## [0.33.0-2](https://github.com/corva-ai/create-corva-app/compare/v0.33.0-1...v0.33.0-2) (2022-07-19)
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
### Features
|
|
361
|
-
|
|
362
|
-
* **DC-3827:** add ignored files option ([0eab051](https://github.com/corva-ai/create-corva-app/commit/0eab0518d764627be04519d9e1614a6ca4511461))
|
|
363
|
-
|
|
364
|
-
## [0.33.0-1](https://github.com/corva-ai/create-corva-app/compare/v0.33.0-0...v0.33.0-1) (2022-07-13)
|
|
365
|
-
|
|
366
|
-
## [0.33.0-0](https://github.com/corva-ai/create-corva-app/compare/v0.32.0-0...v0.33.0-0) (2022-07-05)
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
### Features
|
|
370
|
-
|
|
371
|
-
* add release script to FE templates readme; ([e91255c](https://github.com/corva-ai/create-corva-app/commit/e91255cd3aed59c37f25bc10001a860a0ffabc96))
|
|
372
|
-
|
|
373
|
-
## [0.32.0-0](https://github.com/corva-ai/create-corva-app/compare/v0.31.0-1...v0.32.0-0) (2022-06-21)
|
|
374
|
-
|
|
375
|
-
## [0.31.0-1](https://github.com/corva-ai/create-corva-app/compare/v0.31.0-0...v0.31.0-1) (2022-06-15)
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
### Features
|
|
379
|
-
|
|
380
|
-
* **DC-3726:** bump node version up to 16 ([0c45f3c](https://github.com/corva-ai/create-corva-app/commit/0c45f3cd75255eaca29defeaf48e4b98876cb01d))
|
|
381
|
-
|
|
382
|
-
## [0.30.0-0](https://github.com/corva-ai/create-corva-app/compare/v0.29.0-1...v0.30.0-0) (2022-05-24)
|
|
383
|
-
|
|
384
|
-
## [0.29.0-1](https://github.com/corva-ai/create-corva-app/compare/v0.29.0-0...v0.29.0-1) (2022-05-11)
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
### Bug Fixes
|
|
388
|
-
|
|
389
|
-
* **dc-3572:** add missing ui ts devdependency ([e165d7a](https://github.com/corva-ai/create-corva-app/commit/e165d7ae5454239a3b2bfdd6f28053fc03d6c577))
|
|
390
|
-
|
|
391
|
-
## [0.29.0-0](https://github.com/corva-ai/create-corva-app/compare/v0.28.0-5...v0.29.0-0) (2022-05-10)
|
|
392
|
-
|
|
393
|
-
## [0.28.0-5](https://github.com/corva-ai/create-corva-app/compare/v0.28.0-3...v0.28.0-5) (2022-05-06)
|
|
394
|
-
|
|
395
|
-
## [0.28.0-4](https://github.com/corva-ai/create-corva-app/compare/v0.28.0-3...v0.28.0-4) (2022-05-06)
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
### Bug Fixes
|
|
399
|
-
|
|
400
|
-
* add missing files in dist ([a6bda3c](https://github.com/corva-ai/create-corva-app/commit/a6bda3cdcebb43f04471df4d6c6a3082f8a686c8))
|
|
401
|
-
|
|
402
|
-
## [0.28.0-3](https://github.com/corva-ai/create-corva-app/compare/v0.28.0-2...v0.28.0-3) (2022-05-06)
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
### Bug Fixes
|
|
406
|
-
|
|
407
|
-
* apply differences per language & package manager ([a9c2a55](https://github.com/corva-ai/create-corva-app/commit/a9c2a55c7644498b04482421931f64648ab89744))
|
|
408
|
-
|
|
409
|
-
## [0.28.0-2](https://github.com/corva-ai/create-corva-app/compare/v0.28.0-1...v0.28.0-2) (2022-05-04)
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
### Bug Fixes
|
|
413
|
-
|
|
414
|
-
* handle app settings pass ([6bb8bf3](https://github.com/corva-ai/create-corva-app/commit/6bb8bf3515948b478ac88da850639be908e94cab))
|
|
415
|
-
|
|
416
|
-
## [0.28.0-1](https://github.com/corva-ai/create-corva-app/compare/v0.28.0-0...v0.28.0-1) (2022-04-27)
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
### Features
|
|
420
|
-
|
|
421
|
-
* implement zip command ([20e2865](https://github.com/corva-ai/create-corva-app/commit/20e28651a5c180927c046b6e5dab29a8e4b99976))
|
|
422
|
-
|
|
423
|
-
## [0.28.0-0](https://github.com/corva-ai/create-corva-app/compare/v0.27.0-1...v0.28.0-0) (2022-04-26)
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
### Features
|
|
427
|
-
|
|
428
|
-
* add additional build step ([#168](https://corvaqa.atlassian.net/browse/168)) ([ff7ae9d](https://github.com/corva-ai/create-corva-app/commit/ff7ae9ddb6cd884c35463c2b20be9fd5a8d68fd9))
|
|
429
|
-
|
|
430
|
-
## [0.27.0-1](https://github.com/corva-ai/create-corva-app/compare/v0.27.0-0...v0.27.0-1) (2022-04-13)
|
|
431
|
-
|
|
432
|
-
## [0.27.0-0](https://github.com/corva-ai/create-corva-app/compare/v0.26.0-1...v0.27.0-0) (2022-04-12)
|
|
433
|
-
|
|
434
|
-
## [0.26.0-1](https://github.com/corva-ai/create-corva-app/compare/v0.24.0-0...v0.26.0-1) (2022-04-11)
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
### Features
|
|
438
|
-
|
|
439
|
-
* **CQA-601:** Updated circle executor for tests ([42496c7](https://github.com/corva-ai/create-corva-app/commit/42496c78b6b4ef88232487aa1ab8e41de29c9432))
|
|
440
|
-
* **DC-2969:** prompt package version bump on yarn zip ([8d0825f](https://github.com/corva-ai/create-corva-app/commit/8d0825f0fb9362636b4d95d3e79249d2309a0789))
|
|
441
|
-
* **DC-3035:** revert engines ([fbe6c2d](https://github.com/corva-ai/create-corva-app/commit/fbe6c2de87c972bf11a6c53e967f8ed6f93e8aa2))
|
|
442
|
-
* **DC-3035:** specify node version ([ebabf71](https://github.com/corva-ai/create-corva-app/commit/ebabf7142b0788f8984c20b9cd74d043bdb0d952))
|
|
443
|
-
* **DC-3189:** suppress yarn warnings ([13265ab](https://github.com/corva-ai/create-corva-app/commit/13265ab4c5ce8ee74c883696855b643d21347d64))
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
### Bug Fixes
|
|
447
|
-
|
|
448
|
-
* **CQA-603:** Modules install for tests ([34adc5d](https://github.com/corva-ai/create-corva-app/commit/34adc5d2ac8a48cb2275b514ed9b24002e63a364))
|
|
449
|
-
* **DC-2969:** fix PR comments ([6993822](https://github.com/corva-ai/create-corva-app/commit/69938227c85a4749daff04e48fa366094b31b3f8))
|
|
450
|
-
* **DC-3242:** fix small size view in initial template ([bf396b9](https://github.com/corva-ai/create-corva-app/commit/bf396b9cbdc29692d5cbaee5bb5741b36b251b3d))
|
|
451
|
-
|
|
452
|
-
## [0.26.0-0](https://github.com/corva-ai/create-corva-app/compare/v0.25.0-0...v0.26.0-0) (2022-03-30)
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
### Features
|
|
456
|
-
|
|
457
|
-
* **CQA-601:** Updated circle executor for tests ([42496c7](https://github.com/corva-ai/create-corva-app/commit/42496c78b6b4ef88232487aa1ab8e41de29c9432))
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
### Bug Fixes
|
|
461
|
-
|
|
462
|
-
* **CQA-603:** Modules install for tests ([34adc5d](https://github.com/corva-ai/create-corva-app/commit/34adc5d2ac8a48cb2275b514ed9b24002e63a364))
|
|
463
|
-
|
|
464
|
-
## [0.25.0-0](https://github.com/corva-ai/create-corva-app/compare/v0.24.0-4...v0.25.0-0) (2022-03-15)
|
|
465
|
-
|
|
466
|
-
## [0.24.0-4](https://github.com/corva-ai/create-corva-app/compare/v0.24.0-1...v0.24.0-4) (2022-03-15)
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
### Features
|
|
470
|
-
|
|
471
|
-
* **DC-3035:** revert engines ([fbe6c2d](https://github.com/corva-ai/create-corva-app/commit/fbe6c2de87c972bf11a6c53e967f8ed6f93e8aa2))
|
|
472
|
-
* **DC-3189:** suppress yarn warnings ([13265ab](https://github.com/corva-ai/create-corva-app/commit/13265ab4c5ce8ee74c883696855b643d21347d64))
|
|
473
|
-
|
|
474
|
-
## [0.24.0-3](https://github.com/corva-ai/create-corva-app/compare/v0.24.0-0...v0.24.0-3) (2022-03-11)
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
### Features
|
|
478
|
-
|
|
479
|
-
* **DC-2969:** prompt package version bump on yarn zip ([8d0825f](https://github.com/corva-ai/create-corva-app/commit/8d0825f0fb9362636b4d95d3e79249d2309a0789))
|
|
480
|
-
* **DC-3035:** revert engines ([fbe6c2d](https://github.com/corva-ai/create-corva-app/commit/fbe6c2de87c972bf11a6c53e967f8ed6f93e8aa2))
|
|
481
|
-
* **DC-3035:** specify node version ([ebabf71](https://github.com/corva-ai/create-corva-app/commit/ebabf7142b0788f8984c20b9cd74d043bdb0d952))
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
### Bug Fixes
|
|
485
|
-
|
|
486
|
-
* **DC-2969:** fix PR comments ([6993822](https://github.com/corva-ai/create-corva-app/commit/69938227c85a4749daff04e48fa366094b31b3f8))
|
|
487
|
-
|
|
488
|
-
## [0.24.0-2](https://github.com/corva-ai/create-corva-app/compare/v0.24.0-1...v0.24.0-2) (2022-03-10)
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
### Features
|
|
492
|
-
|
|
493
|
-
* **DC-3035:** revert engines ([fbe6c2d](https://github.com/corva-ai/create-corva-app/commit/fbe6c2de87c972bf11a6c53e967f8ed6f93e8aa2))
|
|
494
|
-
|
|
495
|
-
## [0.24.0-1](https://github.com/corva-ai/create-corva-app/compare/v0.23.0-1...v0.24.0-1) (2022-03-08)
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
### Features
|
|
499
|
-
|
|
500
|
-
* **DC-2969:** prompt package version bump on yarn zip ([8d0825f](https://github.com/corva-ai/create-corva-app/commit/8d0825f0fb9362636b4d95d3e79249d2309a0789))
|
|
501
|
-
* **DC-3051:** run release command for all app types ([5f7a2d8](https://github.com/corva-ai/create-corva-app/commit/5f7a2d850f29c903cf2c4cb6f83c63192519c192))
|
|
502
|
-
|
|
503
|
-
## [0.24.0-0](https://github.com/corva-ai/create-corva-app/compare/v0.23.0-2...v0.24.0-0) (2022-03-01)
|
|
504
|
-
|
|
505
|
-
## [0.23.0-2](https://github.com/corva-ai/create-corva-app/compare/v0.23.0-1...v0.23.0-2) (2022-02-21)
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
### Features
|
|
509
|
-
|
|
510
|
-
* **DC-3051:** run release command for all app types ([5f7a2d8](https://github.com/corva-ai/create-corva-app/commit/5f7a2d850f29c903cf2c4cb6f83c63192519c192))
|
|
511
|
-
|
|
512
|
-
## [0.23.0-1](https://github.com/corva-ai/create-corva-app/compare/v0.23.0-0...v0.23.0-1) (2022-02-17)
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
### Features
|
|
516
|
-
|
|
517
|
-
* **DC-2291:** add release script to FE dc apps ([fe1bda2](https://github.com/corva-ai/create-corva-app/commit/fe1bda29aa2b68d6912894353d731e73aadeb47b))
|
|
518
|
-
|
|
519
|
-
## [0.23.0-0](https://github.com/corva-ai/create-corva-app/compare/v0.22.0-0...v0.23.0-0) (2022-02-15)
|
|
520
|
-
|
|
521
|
-
## [0.22.0-0](https://github.com/corva-ai/create-corva-app/compare/v0.21.0-2...v0.22.0-0) (2022-02-01)
|
|
522
|
-
|
|
523
|
-
## [0.21.0-2](https://github.com/corva-ai/create-corva-app/compare/v0.21.0-1...v0.21.0-2) (2022-01-25)
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
### Bug Fixes
|
|
527
|
-
|
|
528
|
-
* **dc-2955:** get back -t option ([b6ffc5f](https://github.com/corva-ai/create-corva-app/commit/b6ffc5f38e818d038bf8c7346fa7183a18d97fa6))
|
|
529
|
-
|
|
530
|
-
## [0.21.0-1](https://github.com/corva-ai/create-corva-app/compare/v0.21.0-0...v0.21.0-1) (2022-01-21)
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
### Bug Fixes
|
|
534
|
-
|
|
535
|
-
* pass depth milestone ([abab200](https://github.com/corva-ai/create-corva-app/commit/abab20069f41bda35c2059102f1629a35575042f))
|
|
536
|
-
|
|
537
|
-
## [0.20.0-2](https://github.com/corva-ai/create-corva-app/compare/v0.20.0-1...v0.20.0-2) (2022-01-17)
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
### Bug Fixes
|
|
541
|
-
|
|
542
|
-
* **DC-2798:** add .env file ([42eb6fb](https://github.com/corva-ai/create-corva-app/commit/42eb6fb256c6b5238b449fa0d81bafa930dbbd91))
|
|
543
|
-
|
|
544
|
-
## [0.20.0-1](https://github.com/corva-ai/create-corva-app/compare/v0.20.0-0...v0.20.0-1) (2022-01-05)
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
### Bug Fixes
|
|
548
|
-
|
|
549
|
-
* allow to specify depth_milestone ([833d570](https://github.com/corva-ai/create-corva-app/commit/833d570ef11bc73605524d479db43e293bf2e31f))
|
|
550
|
-
|
|
551
|
-
## [0.20.0-0](https://github.com/corva-ai/create-corva-app/compare/v0.19.0-0...v0.20.0-0) (2022-01-04)
|
|
552
|
-
|
|
553
|
-
## [0.19.0-0](https://github.com/corva-ai/create-corva-app/compare/v0.18.0-1...v0.19.0-0) (2021-12-21)
|
|
554
|
-
|
|
555
|
-
## [0.18.0-1](https://github.com/corva-ai/create-corva-app/compare/v0.18.0-0...v0.18.0-1) (2021-12-20)
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
### Features
|
|
559
|
-
|
|
560
|
-
* **CQA-445:** DC local development test to CI config ([6a63221](https://github.com/corva-ai/create-corva-app/commit/6a6322182d02dbe56f8f50d3e406e04890c4a6fd))
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
### Bug Fixes
|
|
564
|
-
|
|
565
|
-
* **dc-2707:** check file existence before zipping it ([064add5](https://github.com/corva-ai/create-corva-app/commit/064add5b86dfb32073eb9f7b4d16f7d4f71d32c1))
|
|
566
|
-
|
|
567
|
-
## [0.17.0-2](https://github.com/corva-ai/create-corva-app/compare/v0.17.0-0...v0.17.0-2) (2021-12-07)
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
### Features
|
|
571
|
-
|
|
572
|
-
* add scheduler type option ([e2d3d3d](https://github.com/corva-ai/create-corva-app/commit/e2d3d3dcc7154d841b3da342a36a7edfbc8488e4))
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
### Bug Fixes
|
|
576
|
-
|
|
577
|
-
* diff app types, runtimes and templates ([7c52817](https://github.com/corva-ai/create-corva-app/commit/7c528173535b9a915372ec469df8043b3830e387))
|
|
578
|
-
|
|
579
|
-
## [0.17.0-1](https://github.com/corva-ai/create-corva-app/compare/v0.17.0-0...v0.17.0-1) (2021-12-03)
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
### Features
|
|
583
|
-
|
|
584
|
-
* add scheduler type option ([e2d3d3d](https://github.com/corva-ai/create-corva-app/commit/e2d3d3dcc7154d841b3da342a36a7edfbc8488e4))
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
### Bug Fixes
|
|
588
|
-
|
|
589
|
-
* diff app types, runtimes and templates ([7c52817](https://github.com/corva-ai/create-corva-app/commit/7c528173535b9a915372ec469df8043b3830e387))
|
|
590
|
-
|
|
591
|
-
## [0.17.0-0](https://github.com/corva-ai/create-corva-app/compare/v0.16.0-1...v0.17.0-0) (2021-11-23)
|
|
592
|
-
|
|
593
|
-
## [0.16.0-1](https://github.com/corva-ai/create-corva-app/compare/v0.16.0-0...v0.16.0-1) (2021-11-18)
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
### Bug Fixes
|
|
597
|
-
|
|
598
|
-
* add .idea to gitignore ([1d3c8d3](https://github.com/corva-ai/create-corva-app/commit/1d3c8d314ca6ce853e03f475c88c0bab5f0dde76))
|
|
599
|
-
|
|
600
|
-
## [0.16.0-0](https://github.com/corva-ai/create-corva-app/compare/v0.15.0-0...v0.16.0-0) (2021-11-09)
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
### Features
|
|
604
|
-
|
|
605
|
-
* **core:** upgrade template AppSettings.tsx to React.FC approach ([383203c](https://github.com/corva-ai/create-corva-app/commit/383203c5d4323f66218726de16be0a77da108f7e))
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
### Bug Fixes
|
|
609
|
-
|
|
610
|
-
* **templates:** move out React.FC syntax from AppSettings.tsx ([aaec071](https://github.com/corva-ai/create-corva-app/commit/aaec071cf5c546c226ad59133b5d28b29e968f58))
|
|
611
|
-
|
|
612
|
-
## [0.15.0-0](https://github.com/corva-ai/create-corva-app/compare/v0.14.0-0...v0.15.0-0) (2021-10-26)
|
|
613
|
-
|
|
614
|
-
## [0.14.0-0](https://github.com/corva-ai/create-corva-app/compare/v0.13.0-0...v0.14.0-0) (2021-10-12)
|
|
615
|
-
|
|
616
|
-
## [0.12.0-4](https://github.com/corva-ai/create-corva-app/compare/v0.12.0-3...v0.12.0-4) (2021-09-27)
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
### Features
|
|
620
|
-
|
|
621
|
-
* **DC-2203:** add eslint support for TS files ([251d41b](https://github.com/corva-ai/create-corva-app/commit/251d41bd09ae8db7a19475e37f1bc8bd5d43429c))
|
|
622
|
-
* **DC-2203:** add ts devDeps to template package.json ([352add5](https://github.com/corva-ai/create-corva-app/commit/352add5f1f399e6bd3c84bee70fdaf9fe936d3fb))
|
|
623
|
-
* **DC-2203:** copy js template to ts ([8f1cd55](https://github.com/corva-ai/create-corva-app/commit/8f1cd55758337b6a5966d84c6b91d7eb368d286f))
|
|
624
|
-
* **DC-2203:** copy tsconfig.json while zipping ([f3bcec1](https://github.com/corva-ai/create-corva-app/commit/f3bcec1b6aca09d47f07cb2582b5ee23cf4854a2))
|
|
625
|
-
* **DC-2203:** extract webpack TS rule ([4e66dc5](https://github.com/corva-ai/create-corva-app/commit/4e66dc51547f438963d36f8a5a69e09543f3ffb3))
|
|
626
|
-
* **DC-2203:** fix entry point ([7d5e9b7](https://github.com/corva-ai/create-corva-app/commit/7d5e9b7d0b90ce9aec8747b28770bdf91e59cf87))
|
|
627
|
-
* **DC-2203:** fix eslint rule ([f1c50ea](https://github.com/corva-ai/create-corva-app/commit/f1c50ea6fba6394a4aebb713b520f7690e44b815))
|
|
628
|
-
* **DC-2203:** move ui template to ui/js dir ([78dec63](https://github.com/corva-ai/create-corva-app/commit/78dec63db3175a452b648e33d5fc81004e697e02))
|
|
629
|
-
* **DC-2203:** show TypeScript option for ui apps ([7c8b612](https://github.com/corva-ai/create-corva-app/commit/7c8b612c6081cb2d16e860e4ae77c9a6ed137e8b))
|
|
630
|
-
* **DC-2203:** update ui ts template ([ced0092](https://github.com/corva-ai/create-corva-app/commit/ced00928ff274ddda80e5fe6bb55b5fa31cf5adc))
|
|
631
|
-
* **DC-2203:** use default create-react-app TS config ([69ced8a](https://github.com/corva-ai/create-corva-app/commit/69ced8a46a542914c930ac7613cf76469d884292))
|
|
632
|
-
* **DC-2203:** use regExp instead of string ([ce86a6d](https://github.com/corva-ai/create-corva-app/commit/ce86a6d497c729d4d61aa823f391deec9ea2def4))
|
|
633
|
-
* **DC-2203:** use ts template ([7b43431](https://github.com/corva-ai/create-corva-app/commit/7b43431d7f9c1b295cdc44774bd964f9c954e22e))
|
|
634
|
-
|
|
635
|
-
## [0.12.0-3](https://github.com/corva-ai/create-corva-app/compare/v0.12.0-2...v0.12.0-3) (2021-09-21)
|
|
636
|
-
|
|
637
|
-
## [0.12.0-2](https://github.com/corva-ai/create-corva-app/compare/v0.12.0-1...v0.12.0-2) (2021-09-21)
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
### Features
|
|
641
|
-
|
|
642
|
-
* add typescript app templates ([f256b39](https://github.com/corva-ai/create-corva-app/commit/f256b3970b4a2f426c6f87ddd10fe5c957757658))
|
|
643
|
-
* **DC-2167:** updated node templates to use latest sdk ([#118](https://corvaqa.atlassian.net/browse/118)) ([c9dc93a](https://github.com/corva-ai/create-corva-app/commit/c9dc93a07a48b06f4c0831bcd95aca4fd5b5504c))
|
|
644
|
-
|
|
645
|
-
## [0.12.0-1](https://github.com/corva-ai/create-corva-app/compare/v0.12.0-0...v0.12.0-1) (2021-09-20)
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
### Features
|
|
649
|
-
|
|
650
|
-
* **DC-2204:** Add .env file to gitignore ([cb598d6](https://github.com/corva-ai/create-corva-app/commit/cb598d654dcd78f20ce93c6dcf7bf4282cad47c9))
|
|
651
|
-
|
|
652
|
-
## [0.12.0-0](https://github.com/corva-ai/create-corva-app/compare/v0.11.0-0...v0.12.0-0) (2021-09-14)
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
### Features
|
|
656
|
-
|
|
657
|
-
* **DC-2132:** add scheduler type to manifest template ([#112](https://corvaqa.atlassian.net/browse/112)) ([4955186](https://github.com/corva-ai/create-corva-app/commit/4955186a4d2e5ee8c0d5a3e44ecd54752d561de3))
|
|
658
|
-
|
|
659
|
-
## [0.11.0-0](https://github.com/corva-ai/create-corva-app/compare/v0.10.0-0...v0.11.0-0) (2021-08-31)
|
|
660
|
-
|
|
661
|
-
## [0.10.0-0](https://github.com/corva-ai/create-corva-app/compare/v0.9.0-0...v0.10.0-0) (2021-08-18)
|
|
662
|
-
|
|
663
|
-
## [0.9.0-0](https://github.com/corva-ai/create-corva-app/compare/v0.8.0-0...v0.9.0-0) (2021-08-04)
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
### Bug Fixes
|
|
667
|
-
|
|
668
|
-
* **DC-1945:** Fix missing .gitignore problem ([d3e02b3](https://github.com/corva-ai/create-corva-app/commit/d3e02b369ea176419fb8b025293d30cc9d9e084a))
|
|
669
|
-
* **Redundant github actions:** Removed config ([e0653eb](https://github.com/corva-ai/create-corva-app/commit/e0653ebe25d7998e14b339df9c4a8e5c8ac68829))
|
|
670
|
-
|
|
671
|
-
## [0.8.0-2](https://github.com/corva-ai/create-corva-app/compare/v0.8.0-0...v0.8.0-2) (2021-08-03)
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
### Bug Fixes
|
|
675
|
-
|
|
676
|
-
* **DC-1945:** Fix missing .gitignore problem ([c9170aa](https://github.com/corva-ai/create-corva-app/commit/c9170aab82c2add8eaff8ee05359b10403712f45))
|
|
677
|
-
* **Redundant github actions:** Removed config ([e0653eb](https://github.com/corva-ai/create-corva-app/commit/e0653ebe25d7998e14b339df9c4a8e5c8ac68829))
|
|
678
|
-
|
|
679
|
-
## [0.8.0-1](https://github.com/corva-ai/create-corva-app/compare/v0.8.0-0...v0.8.0-1) (2021-07-31)
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
### Bug Fixes
|
|
683
|
-
|
|
684
|
-
* **Redundant github actions:** Removed config ([e0653eb](https://github.com/corva-ai/create-corva-app/commit/e0653ebe25d7998e14b339df9c4a8e5c8ac68829))
|
|
685
|
-
|
|
686
|
-
## [0.8.0-0](https://github.com/corva-ai/create-corva-app/compare/v0.7.0-4...v0.8.0-0) (2021-07-21)
|
|
687
|
-
|
|
688
|
-
## [0.7.0-4](https://github.com/corva-ai/create-corva-app/compare/v0.7.0-3...v0.7.0-4) (2021-07-19)
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
### Features
|
|
692
|
-
|
|
693
|
-
* **DC-1761:** Add doc links to UI readme. ([41b7d4b](https://github.com/corva-ai/create-corva-app/commit/41b7d4b437c976f64f70fa697c3f3af4eac38c59))
|
|
694
|
-
|
|
695
|
-
## [0.7.0-3](https://github.com/corva-ai/create-corva-app/compare/v0.7.0-2...v0.7.0-3) (2021-07-19)
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
### Bug Fixes
|
|
699
|
-
|
|
700
|
-
* **DC-1735:** Ensure latest version is used when creating app from CLI ([06d86fa](https://github.com/corva-ai/create-corva-app/commit/06d86faabeabc85eb5f2874c3b07d2334dc46ff2))
|
|
701
|
-
|
|
702
|
-
## [0.7.0-2](https://github.com/corva-ai/create-corva-app/compare/v0.7.0-0...v0.7.0-2) (2021-07-16)
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
### Features
|
|
706
|
-
|
|
707
|
-
* **DC-1735:** Ensure that latest create-corva-app is used when creating new UI app ([1b937e7](https://github.com/corva-ai/create-corva-app/commit/1b937e75379beb6357a3dd721cf18ee3f74a459d))
|
|
708
|
-
|
|
709
|
-
## [0.7.0-1](https://github.com/facebook/create-react-app/compare/v0.7.0-0...v0.7.0-1) (2021-07-09)
|
|
710
|
-
|
|
711
|
-
## [0.7.0-0](https://github.com/facebook/create-react-app/compare/v0.6.0-2...v0.7.0-0) (2021-07-08)
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
### Bug Fixes
|
|
715
|
-
|
|
716
|
-
* delete unsolicited export ([2c938ac](https://github.com/facebook/create-react-app/commit/2c938acf068d63166af0b33c9973fd3b8218b214))
|
|
717
|
-
|
|
718
|
-
## [0.6.0-2](https://github.com/facebook/create-react-app/compare/v0.6.0-1...v0.6.0-2) (2021-06-16)
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
### Features
|
|
722
|
-
|
|
723
|
-
* **CINF-297:** Version alignment ([dad4718](https://github.com/facebook/create-react-app/commit/dad4718d510d9fa54d7251182ea6602e37ad42ec))
|
|
724
|
-
|
|
725
|
-
## [0.6.0-1](https://github.com/facebook/create-react-app/compare/v0.6.0-0...v0.6.0-1) (2021-06-16)
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
### Features
|
|
729
|
-
|
|
730
|
-
* **CINF-297:** CI/CD ([9bb4ba1](https://github.com/facebook/create-react-app/commit/9bb4ba1fce8f1f2c1f21e6930bb4f27a4771836f))
|
|
731
|
-
* **CINF-297:** CI/CD ([7b2adb1](https://github.com/facebook/create-react-app/commit/7b2adb19b4681fa4505e2d70ad4d8041a4733878))
|
|
732
|
-
* **CINF-297:** CI/CD test ([5bb6071](https://github.com/facebook/create-react-app/commit/5bb607105fec2973ccb045d84c010d4f3112099f))
|
|
733
|
-
* **CINF-297:** CI/CD workflow ([c4248f6](https://github.com/facebook/create-react-app/commit/c4248f6c427a3a1a04a8d2807f5125c5e4c186d6))
|
|
734
|
-
* **CINF-297:** CI/CD workflow ([7be17ce](https://github.com/facebook/create-react-app/commit/7be17ce30a555d87e736cbf99b3dcdbc90fb548a))
|
|
735
|
-
* **CINF-297:** CI/CD workflow ([6779c9d](https://github.com/facebook/create-react-app/commit/6779c9df1ce94a41655f03055d9e847a56e894c3))
|
|
736
|
-
* **CINF-297:** CI/CD workflow ([08b4e49](https://github.com/facebook/create-react-app/commit/08b4e49850b73fbb2345140fd71ada2cbf736fed))
|
|
737
|
-
* **CINF-297:** CI/CD workflow ([98ebf01](https://github.com/facebook/create-react-app/commit/98ebf01ea17a84ca53ded759a08a4fae4da570fe))
|
|
738
|
-
* **CINF-297:** CI/CD workflow ([efdfe9c](https://github.com/facebook/create-react-app/commit/efdfe9cc57ab1496103ae850eacf1193c9b74e8b))
|
|
739
|
-
* **CINF-297:** CI/CD workflow ([af549a9](https://github.com/facebook/create-react-app/commit/af549a9af169f2d6155bb38cc0e1f7c852d59d5f))
|
|
740
|
-
* **CINF-297:** CI/CD workflow ([5a5909b](https://github.com/facebook/create-react-app/commit/5a5909bcf30f6da49225940eced754a2402fe611))
|
|
741
|
-
* **CINF-297:** CI/CD workflow ([dee28f1](https://github.com/facebook/create-react-app/commit/dee28f117743fa9b7ec6e7385cddc19681744259))
|
|
742
|
-
* **CINF-297:** CI/CD workflow ([c3603ab](https://github.com/facebook/create-react-app/commit/c3603ab5329d87085305c0b201e7fe53ecc9a037))
|
|
743
|
-
* **CINF-297:** CI/CD workflow ([9cd6ba3](https://github.com/facebook/create-react-app/commit/9cd6ba31947e7e1247b678975ab6d4af14299297))
|
|
744
|
-
|
|
745
|
-
## [0.6.0-0](https://github.com/facebook/create-react-app/compare/v0.5.0-0...v0.6.0-0) (2021-06-16)
|
|
746
|
-
|
|
747
|
-
## [0.5.0-0](https://github.com/facebook/create-react-app/compare/v0.2.29...v0.5.0-0) (2021-06-02)
|
|
748
|
-
|
|
749
|
-
### [0.4.3](https://github.com/facebook/create-react-app/compare/v0.4.0...v0.4.3) (2021-05-26)
|
|
750
|
-
|
|
751
|
-
## [0.4.0](https://github.com/facebook/create-react-app/compare/v0.3.7...v0.4.0) (2021-05-26)
|
|
752
|
-
|
|
753
|
-
### [0.3.7](https://github.com/facebook/create-react-app/compare/v0.3.0...v0.3.7) (2021-05-26)
|
|
754
|
-
|
|
755
|
-
## [0.3.0](https://github.com/facebook/create-react-app/compare/v0.2.29...v0.3.0) (2021-05-26)
|
|
756
|
-
|
|
757
|
-
### [0.2.29](https://github.com/facebook/create-react-app/compare/v0.2.28...v0.2.29) (2021-05-26)
|
|
758
|
-
|
|
759
|
-
### [0.2.28](https://github.com/facebook/create-react-app/compare/v0.2.27...v0.2.28) (2021-05-18)
|
|
760
|
-
|
|
761
|
-
### [0.2.27](https://github.com/facebook/create-react-app/compare/v0.2.25...v0.2.27) (2021-05-18)
|
|
762
|
-
|
|
763
|
-
### [0.2.26](https://github.com/facebook/create-react-app/compare/v0.2.25...v0.2.26) (2021-05-18)
|
|
764
|
-
|
|
765
|
-
### [0.2.25](https://github.com/facebook/create-react-app/compare/v0.2.23-rc.0...v0.2.25) (2021-05-14)
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
### Features
|
|
769
|
-
|
|
770
|
-
* **dc-1395:** update backend node app templates ([abc28be](https://github.com/facebook/create-react-app/commit/abc28be3a671893792be4c5752364120847e0ab7))
|
|
771
|
-
|
|
772
|
-
### [0.2.24](https://github.com/facebook/create-react-app/compare/v0.2.23-rc.0...v0.2.23) (2021-04-29)
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
### Features
|
|
776
|
-
|
|
777
|
-
* **dc-1395:** update backend node app templates ([abc28be](https://github.com/facebook/create-react-app/commit/abc28be3a671893792be4c5752364120847e0ab7))
|
|
778
|
-
|
|
779
|
-
### [0.2.23-rc.0](https://github.com/facebook/create-react-app/compare/v0.2.22-rc.2...v0.2.23-rc.0) (2021-04-07)
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
### Features
|
|
783
|
-
|
|
784
|
-
* **DC-1147:** Fixes template according to changes in App Header component ([04b9a1d](https://github.com/facebook/create-react-app/commit/04b9a1df5cbd90bfcfd85ca2702d9416942c9624))
|
|
785
|
-
|
|
786
|
-
### [0.2.22-rc.2](https://github.com/facebook/create-react-app/compare/v0.2.22-rc.1...v0.2.22-rc.2) (2021-03-17)
|
|
787
|
-
|
|
788
|
-
### [0.2.22-rc.1](https://github.com/facebook/create-react-app/compare/v0.2.22-rc.0...v0.2.22-rc.1) (2021-03-16)
|
|
789
|
-
|
|
790
|
-
### [0.2.22-rc.0](https://github.com/facebook/create-react-app/compare/v0.2.20...v0.2.22-rc.0) (2021-03-16)
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
### Bug Fixes
|
|
794
|
-
|
|
795
|
-
* **DC-1068:** Fixes zipAppSource script ([9f6cb03](https://github.com/facebook/create-react-app/commit/9f6cb03558129185530ffa7543d9e54fad0fd999))
|
|
796
|
-
|
|
797
|
-
### [0.2.21](https://github.com/facebook/create-react-app/compare/v0.2.18...v0.2.21) (2021-03-10)
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
### Bug Fixes
|
|
801
|
-
|
|
802
|
-
* **DC-1068:** Fix app template according to new devserver build approach ([24496b0](https://github.com/facebook/create-react-app/commit/24496b00ded323d570b149fef8dbefc7d343d086))
|
|
803
|
-
* **DC-1068:** Fixes zipAppSource script ([9f6cb03](https://github.com/facebook/create-react-app/commit/9f6cb03558129185530ffa7543d9e54fad0fd999))
|
|
804
|
-
|
|
805
|
-
### [0.2.20](https://github.com/facebook/create-react-app/compare/v0.2.19...v0.2.20) (2021-03-09)
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
### Bug Fixes
|
|
809
|
-
|
|
810
|
-
* **DC-1068:** Fix app template according to new devserver build approach ([24496b0](https://github.com/facebook/create-react-app/commit/24496b00ded323d570b149fef8dbefc7d343d086))
|
|
811
|
-
|
|
812
|
-
### [0.2.19](https://github.com/facebook/create-react-app/compare/v0.2.18...v0.2.19) (2021-03-04)
|
|
813
|
-
|
|
814
|
-
### [0.2.18](https://github.com/facebook/create-react-app/compare/v0.2.16...v0.2.18) (2021-02-19)
|
|
815
|
-
|
|
816
|
-
### [0.2.17](https://github.com/facebook/create-react-app/compare/v0.2.16...v0.2.17) (2021-02-18)
|
|
817
|
-
|
|
818
|
-
### [0.2.16](https://github.com/facebook/create-react-app/compare/v0.2.15...v0.2.16) (2021-02-16)
|
|
819
|
-
|
|
820
|
-
### [0.2.15](https://github.com/facebook/create-react-app/compare/v0.2.13...v0.2.15) (2021-02-11)
|
|
821
|
-
|
|
822
|
-
### [0.2.14](https://github.com/facebook/create-react-app/compare/v0.2.13...v0.2.14) (2021-02-08)
|
|
823
|
-
|
|
824
|
-
### [0.2.13](https://github.com/facebook/create-react-app/compare/v0.2.11...v0.2.13) (2021-02-07)
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
### Bug Fixes
|
|
828
|
-
|
|
829
|
-
* **DC-879:** adds cwd to git commit command ([cde7a1a](https://github.com/facebook/create-react-app/commit/cde7a1a94889d274dfad2793b699c3df804364a3))
|
|
830
|
-
|
|
831
|
-
### [0.2.12](https://github.com/facebook/create-react-app/compare/v0.2.11...v0.2.12) (2021-02-05)
|
|
832
|
-
|
|
833
|
-
### [0.2.11](https://github.com/facebook/create-react-app/compare/v0.2.9...v0.2.11) (2021-02-04)
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
### Bug Fixes
|
|
837
|
-
|
|
838
|
-
* **DC-879:** adding appPath ([5ea00d8](https://github.com/facebook/create-react-app/commit/5ea00d8eae15867fe6b5dbb164db15da048a7b1a))
|
|
839
|
-
* **DC-879:** moving isInGitRepository to the beginning of tryGitInit function ([f8847a5](https://github.com/facebook/create-react-app/commit/f8847a54d0b7cadf29f044c9c1759026004dc074))
|
|
840
|
-
|
|
841
|
-
### [0.2.10](https://github.com/facebook/create-react-app/compare/v0.2.9...v0.2.10) (2021-02-04)
|
|
842
|
-
|
|
843
|
-
### [0.2.9](https://github.com/facebook/create-react-app/compare/v0.2.8...v0.2.9) (2021-01-26)
|
|
844
|
-
|
|
845
|
-
### [0.2.8](https://github.com/facebook/create-react-app/compare/v0.2.7...v0.2.8) (2021-01-14)
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
### Features
|
|
849
|
-
|
|
850
|
-
* **DC-534:** Add asset selector to App create CLI ([c59e0a7](https://github.com/facebook/create-react-app/commit/c59e0a7199f562f327209532da5734e02b268e5c))
|
|
851
|
-
|
|
852
|
-
### [0.2.7](https://github.com/facebook/create-react-app/compare/v0.2.6...v0.2.7) (2020-12-31)
|
|
853
|
-
|
|
854
|
-
### [0.2.6](https://github.com/facebook/create-react-app/compare/v0.2.5...v0.2.6) (2020-12-31)
|
|
855
|
-
|
|
856
|
-
### [0.2.5](https://github.com/facebook/create-react-app/compare/v0.2.4...v0.2.5) (2020-12-31)
|
|
857
|
-
|
|
858
|
-
### [0.2.4](https://github.com/facebook/create-react-app/compare/v0.2.3...v0.2.4) (2020-12-29)
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
### Bug Fixes
|
|
862
|
-
|
|
863
|
-
* Delete copying manifest.json ([18afde2](https://github.com/facebook/create-react-app/commit/18afde28c4430f43bae47e0968505608d97860e8))
|
|
864
|
-
|
|
865
|
-
### [0.2.3](https://github.com/facebook/create-react-app/compare/v0.2.2...v0.2.3) (2020-12-28)
|
|
866
|
-
|
|
867
|
-
### [0.2.2](https://github.com/facebook/create-react-app/compare/v0.2.1...v0.2.2) (2020-12-22)
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
### Features
|
|
871
|
-
|
|
872
|
-
* **DC-506:** Adds props for App Header to support Last Annotation ([44efee8](https://github.com/facebook/create-react-app/commit/44efee8c84e7bd600ea86fb52906e7c528936da4))
|
|
873
|
-
* **DC-506:** Fixes props for the AppHeader ([b851c36](https://github.com/facebook/create-react-app/commit/b851c3629b59b47fb718d527b2aed99fba8479fd))
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
### Bug Fixes
|
|
877
|
-
|
|
878
|
-
* update command typo ([efe3c9a](https://github.com/facebook/create-react-app/commit/efe3c9ae652eb0e6a49779daeb10ba36d7bd69ba))
|
|
879
|
-
* update dependencies ([1619118](https://github.com/facebook/create-react-app/commit/161911837fcbb137cccbb08a243f58cf7f6ec2b6))
|
|
880
|
-
|
|
881
|
-
### [0.2.1](https://github.com/facebook/create-react-app/compare/v0.1.7...v0.2.1) (2020-10-27)
|
|
882
|
-
|
|
883
|
-
### [0.1.7](https://github.com/facebook/create-react-app/compare/v0.1.6...v0.1.7) (2020-10-22)
|
|
884
|
-
|
|
885
|
-
### [0.1.6](https://github.com/facebook/create-react-app/compare/v0.1.5...v0.1.6) (2020-10-21)
|
|
886
|
-
|
|
887
|
-
### [0.1.5](https://github.com/facebook/create-react-app/compare/v0.1.4...v0.1.5) (2020-10-21)
|
|
888
|
-
|
|
889
|
-
### [0.1.4](https://github.com/facebook/create-react-app/compare/v0.1.3...v0.1.4) (2020-10-19)
|
|
890
|
-
|
|
891
|
-
### [0.1.3](https://github.com/facebook/create-react-app/compare/v0.1.1...v0.1.3) (2020-10-15)
|
|
892
|
-
|
|
893
|
-
### [0.1.2](https://github.com/facebook/create-react-app/compare/v0.1.1...v0.1.2) (2020-10-15)
|
|
894
|
-
|
|
895
|
-
### [0.1.1](https://github.com/facebook/create-react-app/compare/v0.1.0...v0.1.1) (2020-10-13)
|
|
896
|
-
|
|
897
|
-
## [0.1.0](https://github.com/facebook/create-react-app/compare/v0.0.12...v0.1.0) (2020-10-13)
|
|
898
|
-
|
|
899
|
-
### [0.0.12](https://github.com/facebook/create-react-app/compare/v0.0.10...v0.0.12) (2020-10-13)
|
|
900
|
-
|
|
901
|
-
### [0.0.11](https://github.com/facebook/create-react-app/compare/v0.0.10...v0.0.11) (2020-10-13)
|
|
902
|
-
|
|
903
|
-
### 0.0.10 (2020-10-13)
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
### Features
|
|
907
|
-
|
|
908
|
-
* use app key as app component identificator ([a74cbce](https://github.com/facebook/create-react-app/commit/a74cbce1b4d5d3f24e4f4ac22a3c8533b98f1171))
|
|
909
|
-
* **dc-287:** Remove duplicated dependencies ([bf0ceb0](https://github.com/facebook/create-react-app/commit/bf0ceb0a09d24d1d7426b0ec8168f36467703563))
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
### Bug Fixes
|
|
913
|
-
|
|
914
|
-
* Fix app name for UI apps ([bb09287](https://github.com/facebook/create-react-app/commit/bb09287c75f29a82453858a772d8de54773ce22e))
|