bulk-release 2.13.0 → 2.13.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/CHANGELOG.md +10 -0
- package/package.json +4 -4
- package/src/main/js/api/git.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
## [2.13.2](https://github.com/semrel-extra/zx-bulk-release/compare/v2.13.1...v2.13.2) (2023-12-19)
|
|
2
|
+
|
|
3
|
+
### Fixes & improvements
|
|
4
|
+
* perf: tweak up getCommits ([9206508](https://github.com/semrel-extra/zx-bulk-release/commit/9206508cdafbfd166734c804b4c68fe861de1f02))
|
|
5
|
+
|
|
6
|
+
## [2.13.1](https://github.com/semrel-extra/zx-bulk-release/compare/v2.13.0...v2.13.1) (2023-12-18)
|
|
7
|
+
|
|
8
|
+
### Fixes & improvements
|
|
9
|
+
* perf: update toposource ([539d55d](https://github.com/semrel-extra/zx-bulk-release/commit/539d55dbd660d651acee1c5939eb5f4e626c1d17))
|
|
10
|
+
|
|
1
11
|
## [2.13.0](https://github.com/semrel-extra/zx-bulk-release/compare/v2.12.2...v2.13.0) (2023-12-05)
|
|
2
12
|
|
|
3
13
|
### Fixes & improvements
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bulk-release",
|
|
3
3
|
"alias": "bulk-release",
|
|
4
|
-
"version": "2.13.
|
|
4
|
+
"version": "2.13.2",
|
|
5
5
|
"description": "zx-based alternative for multi-semantic-release",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"exports": {
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"build": "esbuild src/main/js/index.js --platform=node --outdir=target --bundle --format=esm --external:typescript"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@semrel-extra/topo": "^1.14.
|
|
28
|
+
"@semrel-extra/topo": "^1.14.1",
|
|
29
29
|
"cosmiconfig": "^9.0.0",
|
|
30
30
|
"queuefy": "^1.2.1",
|
|
31
31
|
"tar-stream": "^3.1.6",
|
|
@@ -33,9 +33,9 @@
|
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"c8": "^8.0.1",
|
|
36
|
-
"esbuild": "^0.19.
|
|
36
|
+
"esbuild": "^0.19.9",
|
|
37
37
|
"uvu": "^0.5.6",
|
|
38
|
-
"verdaccio": "^5.
|
|
38
|
+
"verdaccio": "^5.29.0"
|
|
39
39
|
},
|
|
40
40
|
"publishConfig": {
|
|
41
41
|
"access": "public"
|
package/src/main/js/api/git.js
CHANGED
|
@@ -90,7 +90,7 @@ export const getCommits = async (cwd, from, to = 'HEAD') => ctx(async ($) => {
|
|
|
90
90
|
const ref = from ? `${from}..${to}` : to
|
|
91
91
|
|
|
92
92
|
$.cwd = cwd
|
|
93
|
-
return (await $.raw`git log ${ref} --format=+++%s__%b__%h__%H --
|
|
93
|
+
return (await $.raw`git log ${ref} --format=+++%s__%b__%h__%H -- ${cwd}`)
|
|
94
94
|
.toString()
|
|
95
95
|
.split('+++')
|
|
96
96
|
.filter(Boolean)
|