@qlover/create-app 0.1.17 → 0.1.21

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 CHANGED
@@ -1,26 +1,40 @@
1
- ## 0.1.16
1
+ # @qlover/create-app
2
2
 
3
- ## 0.1.17
3
+ ## 0.1.21
4
4
 
5
5
  ### Patch Changes
6
6
 
7
- -
7
+ #### 🐞 Bug Fixes
8
+
9
+ - add dry run script for release PRs and update changelog template formatting (#358)
10
+
11
+ #### ♻️ Refactors
12
+
13
+ - enhance commit flattening logic and improve tag existence check; clean up Changelog plugin (#358)
14
+
15
+ - update default log format and add logCommand option for enhanced flexibility in changelog generation (#358)
16
+ - Updated dependencies
17
+
18
+ ## 0.1.20
8
19
 
9
20
  ### Patch Changes
10
21
 
11
- - ### Bug Fixes
22
+ #### Features
23
+
24
+ - implement GitChangelog for improved changelog generation (#351)
25
+
26
+ - Introduced a new GitChangelog class to facilitate the generation of changelogs based on Git commit history.
27
+ - Added interfaces for PRCommit, CommitInfo, and FlatCommit to structure commit data.
28
+ - Updated Changelog plugin to utilize GitChangelog for fetching and formatting PR commits, replacing the previous conventional-changelog implementation.
29
+ - Enhanced default options for changelog types and formatting.
12
30
 
13
- - .gitignore no file ([#207](https://github.com/qlover/fe-base/issues/207)) ([e61d468](https://github.com/qlover/fe-base/commit/e61d4683a072048326205272d927e7e67b87ba70))
14
- - add pnpm install ([#248](https://github.com/qlover/fe-base/issues/248)) ([e1e9f48](https://github.com/qlover/fe-base/commit/e1e9f4841365c51e9b8ea7b01ac6fc70e35eec37))
15
- - release publish npm ([#327](https://github.com/qlover/fe-base/issues/327)) ([fa26d04](https://github.com/qlover/fe-base/commit/fa26d04eab2fa1ea4baa05c4d3502e5a873d5c8c))
31
+ #### 🐞 Bug Fixes
16
32
 
17
- ### Features
33
+ - add option to push changed labels to release PRs in workflow (#353)
18
34
 
19
- - add inversify ioc ([#270](https://github.com/qlover/fe-base/issues/270)) ([8c7ba06](https://github.com/qlover/fe-base/commit/8c7ba06bc5bef63d85c59a94737afac9be59138f))
20
- - add script-context ([#213](https://github.com/qlover/fe-base/issues/213)) ([e021441](https://github.com/qlover/fe-base/commit/e021441180d4c4bd89947b155d39224f89699fda))
21
- - feature yarn to pnpm ([#297](https://github.com/qlover/fe-base/issues/297)) ([c3e13d5](https://github.com/qlover/fe-base/commit/c3e13d509a752267d9be29e7a5ed609d24c309ce))
22
- - optz create-app deep ([#244](https://github.com/qlover/fe-base/issues/244)) ([c0a89ef](https://github.com/qlover/fe-base/commit/c0a89ef5dc2f3cc216b4fc1968b1b626c58947d5))
23
- - template context ([#241](https://github.com/qlover/fe-base/issues/241)) ([9fb3046](https://github.com/qlover/fe-base/commit/9fb3046e3e67c02e5fe4fea81a9a3ef8422e3013))
35
+ - Updated dependencies
36
+ - @qlover/fe-corekit@1.2.8
37
+ - @qlover/scripts-context@0.0.14
24
38
 
25
39
  ## 0.1.15 (2025-04-17)
26
40
 
@@ -24,7 +24,7 @@ jobs:
24
24
  - name: Install Node.js
25
25
  uses: actions/setup-node@v2
26
26
  with:
27
- node-version: '18.19.0'
27
+ node-version: '18.20.0'
28
28
 
29
29
  - name: Install Pnpm
30
30
  run: |
@@ -33,7 +33,7 @@ jobs:
33
33
  - name: Install Node.js
34
34
  uses: actions/setup-node@v2
35
35
  with:
36
- node-version: '18.19.0'
36
+ node-version: '18.20.0'
37
37
 
38
38
  - name: Install Pnpm
39
39
  run: |
@@ -83,7 +83,7 @@ jobs:
83
83
  - name: Install Node.js
84
84
  uses: actions/setup-node@v2
85
85
  with:
86
- node-version: '18.19.0'
86
+ node-version: '18.20.0'
87
87
 
88
88
  - name: Install Pnpm
89
89
  run: |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qlover/create-app",
3
- "version": "0.1.17",
3
+ "version": "0.1.21",
4
4
  "type": "module",
5
5
  "private": false,
6
6
  "main": "./dist/index.cjs",
@@ -43,11 +43,11 @@
43
43
  "access": "public"
44
44
  },
45
45
  "devDependencies": {
46
- "@qlover/env-loader": "^0.0.1"
46
+ "@qlover/env-loader": "^0.0.7"
47
47
  },
48
48
  "dependencies": {
49
- "@qlover/fe-corekit": "^1.2.2",
50
- "@qlover/scripts-context": "^0.0.11",
49
+ "@qlover/fe-corekit": "^1.2.8",
50
+ "@qlover/scripts-context": "^0.0.14",
51
51
  "commander": "^13.1.0",
52
52
  "ignore": "^7.0.3",
53
53
  "inquirer": "^12.3.2",