-
Notifications
You must be signed in to change notification settings - Fork 552
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
2.8.0 doesn't make any commits #205
Comments
same problem here, |
Looks like a538dce broke the build. The upgrade to inquirer change it's API. In 0.12.0 inquirer the interface was function prompt(questions: any[], callback: (answers: any) => void)) Now in 1.0.2 of inquirer the signature is function prompt(questions: any): Promise<answers:any> https://github.com/commitizen/cz-conventional-changelog/blob/7659b955a86a13a6ce997ce0ff9bbecf9ccc54be/index.js#L32 needs to be updated to use the new signature. |
See commitizen/cz-conventional-changelog#18 for proposed fix. |
#206 needs to be merged before the fix will be taken. |
ping @jimthedev, this still seems to be broken :( any updates? |
@LinusU This was merged and published. Are you using [email protected] and [email protected]? I just tested it in OSX and it seems to be working. |
Hmm, I just had a colleague that made a clean install the other day which it didn't work for... I'll have to check Monday which versions he was using... |
Still broken @ version |
@albinekb Can you let me know what version of cz-conventional-changelog (or another adapter) that you are using? |
I am running into the same issue.
|
I installed [email protected] and updated my adapter and was able to commit. I was unsuccessful when attempting to commit with: |
@zacharytelschow Those adapters probably need to implement the changes in the Inquirer 1.0 API. You can see these changes here: commitizen/cz-conventional-changelog@807b4e5d At the end of the day we probably need to have some compatibility checking between adapters and the commitizen cli so that if you try to commit and your adapter isn't compatible with the cli you're using then you're prompted to contact the adapter author. |
See #249 for a proposed solution for fixing this in a more long term way |
Since were now on version 4.x can this be closed? |
With version
2.8.0
I can no longer make any commits, where it usually prints the new commit, it doesn't print anything at all. No commit is created, no error message is printed, and the exit code is still0
.This is on OS X with zsh.
Reverting to 2.7.8 fixes the problem
The text was updated successfully, but these errors were encountered: