@corva/create-app 0.26.0-0 → 0.26.0
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/CHANGELOG.md +36 -0
- package/package.json +1 -1
- package/template/ui/js/src/App.css +2 -1
- package/template/ui/ts/src/App.css +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,39 @@
|
|
|
2
2
|
|
|
3
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
4
|
|
|
5
|
+
## [0.26.0](https://github.com/corva-ai/create-corva-app/compare/v0.25.0...v0.26.0) (2022-04-28)
|
|
6
|
+
|
|
7
|
+
## [0.26.0-rc.0](https://github.com/corva-ai/create-corva-app/compare/v0.26.0-1...v0.26.0-rc.0) (2022-04-12)
|
|
8
|
+
|
|
9
|
+
## [0.26.0-1](https://github.com/corva-ai/create-corva-app/compare/v0.26.0-0...v0.26.0-1) (2022-04-12)
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
* **DC-3242:** fix small size view in initial template ([bf396b9](https://github.com/corva-ai/create-corva-app/commit/bf396b9cbdc29692d5cbaee5bb5741b36b251b3d))
|
|
15
|
+
|
|
16
|
+
## [0.26.0-0](https://github.com/corva-ai/create-corva-app/compare/v0.25.0-rc.0...v0.26.0-0) (2022-03-30)
|
|
17
|
+
|
|
18
|
+
## [0.26.0-rc.0](https://github.com/corva-ai/create-corva-app/compare/v0.26.0-1...v0.26.0-rc.0) (2022-04-12)
|
|
19
|
+
|
|
20
|
+
## [0.26.0-1](https://github.com/corva-ai/create-corva-app/compare/v0.24.0-0...v0.26.0-1) (2022-04-11)
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
### Features
|
|
24
|
+
|
|
25
|
+
* **CQA-601:** Updated circle executor for tests ([42496c7](https://github.com/corva-ai/create-corva-app/commit/42496c78b6b4ef88232487aa1ab8e41de29c9432))
|
|
26
|
+
* **DC-2969:** prompt package version bump on yarn zip ([8d0825f](https://github.com/corva-ai/create-corva-app/commit/8d0825f0fb9362636b4d95d3e79249d2309a0789))
|
|
27
|
+
* **DC-3035:** revert engines ([fbe6c2d](https://github.com/corva-ai/create-corva-app/commit/fbe6c2de87c972bf11a6c53e967f8ed6f93e8aa2))
|
|
28
|
+
* **DC-3035:** specify node version ([ebabf71](https://github.com/corva-ai/create-corva-app/commit/ebabf7142b0788f8984c20b9cd74d043bdb0d952))
|
|
29
|
+
* **DC-3189:** suppress yarn warnings ([13265ab](https://github.com/corva-ai/create-corva-app/commit/13265ab4c5ce8ee74c883696855b643d21347d64))
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
### Bug Fixes
|
|
33
|
+
|
|
34
|
+
* **CQA-603:** Modules install for tests ([34adc5d](https://github.com/corva-ai/create-corva-app/commit/34adc5d2ac8a48cb2275b514ed9b24002e63a364))
|
|
35
|
+
* **DC-2969:** fix PR comments ([6993822](https://github.com/corva-ai/create-corva-app/commit/69938227c85a4749daff04e48fa366094b31b3f8))
|
|
36
|
+
* **DC-3242:** fix small size view in initial template ([bf396b9](https://github.com/corva-ai/create-corva-app/commit/bf396b9cbdc29692d5cbaee5bb5741b36b251b3d))
|
|
37
|
+
|
|
5
38
|
## [0.26.0-0](https://github.com/corva-ai/create-corva-app/compare/v0.25.0-0...v0.26.0-0) (2022-03-30)
|
|
6
39
|
|
|
7
40
|
|
|
@@ -298,6 +331,9 @@ All notable changes to this project will be documented in this file. See [standa
|
|
|
298
331
|
## [0.6.0-0](https://github.com/facebook/create-react-app/compare/v0.5.0-0...v0.6.0-0) (2021-06-16)
|
|
299
332
|
|
|
300
333
|
## [0.5.0-0](https://github.com/facebook/create-react-app/compare/v0.2.29...v0.5.0-0) (2021-06-02)
|
|
334
|
+
## [0.4.0](https://github.com/facebook/create-react-app/compare/v0.4.0-rc.0...v0.4.0) (2021-06-16)
|
|
335
|
+
|
|
336
|
+
## [0.4.0-rc.0](https://github.com/facebook/create-react-app/compare/v0.2.29...v0.4.0-rc.0) (2021-06-02)
|
|
301
337
|
|
|
302
338
|
### [0.4.3](https://github.com/facebook/create-react-app/compare/v0.4.0...v0.4.3) (2021-05-26)
|
|
303
339
|
|
package/package.json
CHANGED