Skip to content

Commit

Permalink
Merge branch 'hotfix/2.4.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
jrebmann committed Apr 20, 2024
2 parents 45f3bca + 05f8942 commit 629150d
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 19 deletions.
12 changes: 3 additions & 9 deletions CHANGELOG.latest.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,10 @@
# 2.4.0 (2023-08-08)
## 2.4.1 (2024-04-20)


### Bug Fixes

* **release:** Fixed creation of the changelog for the first release 1.0.0 ([f1601f5](https://github.com/gitex-flow/gitex-flow-node/commits/f1601f508011edd3b51a0e41b7adf3370e3181a6)), closes [#79](https://github.com/gitex-flow/gitex-flow-node/issues/79)


### Features

* **gitex-flow :** Added command "gitex-flow changelog unreleased" to show unreleased changes ([6b1215a](https://github.com/gitex-flow/gitex-flow-node/commits/6b1215af3342d76df4608fc1cd091415958addab)), closes [#49](https://github.com/gitex-flow/gitex-flow-node/issues/49)
* **gitex-flow :** Added command "gitex-flow changelog update [version] [name]" to update the changelog manually ([35b0e95](https://github.com/gitex-flow/gitex-flow-node/commits/35b0e95596c0cda52724d7f19e9270bc30ef09cd)), closes [#61](https://github.com/gitex-flow/gitex-flow-node/issues/61)
* **prerelease:** Added prerelease command for alpha and beta versions ([1dc6180](https://github.com/gitex-flow/gitex-flow-node/commits/1dc618036406cd2a9969afb7b02a720e51da366f)), closes [#63](https://github.com/gitex-flow/gitex-flow-node/issues/63)
* **security:** Fixed dependency vulnerabilities ([3eb4bbe](https://github.com/gitex-flow/gitex-flow-node/commits/3eb4bbe6f4c9371b9debf3c5945c084f1cf94b73))
* **tools:** Fixed issue with large output of git commands by increasing maxBuffer to to infinite ([20fb706](https://github.com/gitex-flow/gitex-flow-node/commits/20fb706d4b7db190fce88a2bb60ceb9d08227326)), closes [#80](https://github.com/gitex-flow/gitex-flow-node/issues/80)



10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## 2.4.1 (2024-04-20)


### Bug Fixes

* **security:** Fixed dependency vulnerabilities ([3eb4bbe](https://github.com/gitex-flow/gitex-flow-node/commits/3eb4bbe6f4c9371b9debf3c5945c084f1cf94b73))
* **tools:** Fixed issue with large output of git commands by increasing maxBuffer to to infinite ([20fb706](https://github.com/gitex-flow/gitex-flow-node/commits/20fb706d4b7db190fce88a2bb60ceb9d08227326)), closes [#80](https://github.com/gitex-flow/gitex-flow-node/issues/80)



# 2.4.0 (2023-08-08)


Expand Down
16 changes: 8 additions & 8 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gitex-flow",
"version": "2.4.0",
"version": "2.4.1",
"description": "A git flow extension that provides some additional automation and feature improvements. The aim of the project is to offer a complete process chain in order to organize the releases of your projects as easily as possible. ",
"main": "build/src/index.js",
"typings": "build/src/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/avh/GitFlowBashExecuter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ export class GitFlowBashExecuter {
*/
private static execViaShell(cmd: string, executionFolder?: string): Promise<string> {
return new Promise((resolve, reject) => {
exec(cmd, { cwd: executionFolder }, (error, stdout, stderr) => {
exec(cmd, { cwd: executionFolder, maxBuffer: Infinity }, (error, stdout, stderr) => {
if (error) {
reject(error);
} else if (stderr) {
Expand Down

0 comments on commit 629150d

Please sign in to comment.