mattmc3 / antidote

https://getantidote.github.io - the cure to slow zsh plugin management
MIT License
855 stars 21 forks source link

Change log on update? #148

Closed Spirarel closed 9 months ago

Spirarel commented 1 year ago

Is there a way to view an aggregate change log when we run update? I seem to remember oh-my-zsh doing this and it was a welcome feature. Is that already replicable somehow or would it need some engineering effort?

Screenshot 2023-08-07 at 7 36 56 PM
mattmc3 commented 1 year ago

That's a clever idea. I already know the old and new git commit SHA for an update, so perhaps it would be as easy as:

oldsha=d6b5952; newsha=86ded5a
git log --oneline --ancestry-path ${oldsha}~1..${newsha}

But OMZ has quite the large script to accomplish this, so I don't want to make any promises.

mattmc3 commented 9 months ago

v.1.9.4 is now out with this feature. Thanks for the suggestion @Spirarel

Spirarel commented 9 months ago

I'm eager to see v1.9.5!